|
The website works with Wemf and Google Analytics, but they are giving me very different results; WEMF counts 10 - 30 % more page views than Google Analytics... Why can this be?
Google Analytics works only with JavaScript enabled, yes - but I don't think...
Started by swalkner on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I've never seen analytics packages match up 100%, usually.
Possibilities of why the numbers are off.
|
|
Just started working on a basic grid analysis algorithm in JavaScript but I have come up against an error that is perplexing me.
var max = 9; var testArray = new Array( ['7', '3', '9', '6', '4', '1', '5', '2', '8'], ['1', '8', '2', '7', '5', '3', '4',...
Started by Nick on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
I've just.
The first for as:
for( i = 0; i <= (max - 2); i++ ) {
Well, this is working for me...
|
|
The following code works fine in FF chrome etc but not IE, anyone know why?
Basically everything works accept the replacement of the image attribute
$("#container #main_image img#largeId").attr({ src: largePath });
Even the rest of the function ie the...
Started by DanC on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Have you used Fiddler to see if the image is being requested?
This always works for me: $("#foo.
|
Ask your Facebook Friends
|
When I type this into the Visual Studio 2008 immediate window:
? .9 - .8 5
It gives me this as the answer:
0. 55511151231257827
The documentation says that a double has 15-16 digits of precision, but it's giving me a result with 32 digits of precision...
Started by raven on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
The leading zeros are due to the exponent part of the floating point number's internal representation... .
The leading zeros are not significant/part of the precision (as far as the floating point number is concerned -- mathematically speaking, they are significant) .
|
|
So I have this going on:
# apt-get update Get:1 http://ftp.us.debian.org etch Release.gpg [1032B] Hit http://ftp.us.debian.org etch Release (...bunch more of this elided...) Hit http://ftp.us.debian.org etch/contrib Sources Fetched 68.8kB in 1s (37.4kB...
Started by chaos on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
The keyring is kept in the file /etc/apt/trusted.gpg (not to be confused with the related but not very interesting... .
Try doing this and running apt-get again:
apt-key update
apt-key is a program that is used to manage a keyring of gpg keys for secure apt .
|
|
I have several procedures on this machine and this is the only query that is giving me a boolean value (at least I think it is a boolean value) in my PHP code. When I substitute this procedure with another one, this value goes away. Is there a problem...
Started by jim on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
DELIMITER '//' CREATE PROCEDURE....
But still use ';' on the inner query.
You need to "DELIMITER='//';" before the procedure and then use "END//" .
First of all there's a syntax error, in that you're using ';' both for the inner query and the create procedure .
|
|
I get this problem when I visit my domain.com. I have compared this with my other website with the SAME set-up (just different username!!!) For some reason that website works and this one doesn't.
Forbidden You don't have permission to access / on this...
Started by alex on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The first depends on the OS you're running — are you sure the user you should add to the groups is called apache and not www-data ?
The second is that you have your wsgi script under the directory wsgi... .
There are three potential problems that I notice.
|
|
I created the following two C++ files:
Stack.cpp
#include<iostream> using namespace std; const int MaxStack = 10000; const char EmptyFlag = '\0'; class Stack { char items[MaxStack]; int top; public: enum { FullStack = MaxStack, EmptyStack = -1 }...
Started by Mithrax on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Code into a new file....
You need to move the contents of the class Stack { .. .
You should extract Stack class definition into Stack.h file and then #include "Stack.h" into both Stack.cpp and StackTest.cpp .
Because StackTest.cpp unaware of what Stack is.
|
|
So I have these vehicles, many different types of them. Every type has its own table, with many attributes. Then I have a "vehicles" table, which holds the ids and types of all the vehicles in every table. Vehicles can have photos, so I have a "photos...
Started by Luka on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Why not make.
Table then create a many-to-many relationship between vehicles and equipment .
|
|
I think I understand the concept of a delegate in C# as a pointer to a method, but I cant find any good examples of where it would be a good idea to use them. What are some examples that are either significantly more elegant/better with delegates or cant...
Started by Alex on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
You could pass.
Asynchronously), and you want me to call some method (let's say "AlertWhenDone")...
|