0
votes
2answers
82 views
Null pointer exception error
When I run my program I get this error nullPointerException: null.
import model.*;
import java.awt.*;
import java.awt.event.*;
import java.text.*;
import javax.swing.*;
public c …
0
votes
4answers
48 views
is this a valid xpath and if so what does it mean ?
/html/body/input[@id='query' and @name='query' and @value='Search Text']
29
votes
21answers
2k views
Why is “null” present in C# and java?
We noticed that lots of bugs in our software developed in C# (or java) cause a NullReferenceException.
Is there a reason why "null" has even been included in the language?
After …
1
vote
3answers
85 views
How do Download Managers download huge files on HTTP without multiple requests?
I was downloading a 200MB file yesterday with FlashGet in the statistics it showed that it was using the HTTP1.1 protocol.
I was under the impression that HTTP is a request-respons …
0
votes
2answers
154 views
how are libraries written for programming languages? [closed]
Hey guys, Here's a question for ya!, How are libraries written so that others can use them?. Meaning things like stdio.h and iostream etc. Some of the functions inside these libs a …
28
votes
11answers
573 views
How does it know where my value is in memory?
When I write a program and tell it int c=5, it puts the value 5 into a little bit of it's memory, but how does it remember which one? The only way I could think of would be to have …
1
vote
2answers
113 views
How does virtualization software work?
Hi,
I wonder how virtualization software such as VirtualBox or VMWare Workstation works? How can they create a virtual environment that is taken as a separate computer by operatin …
-2
votes
1answer
139 views
How does Google Analytics authenticate a website?
Just looking for some general information on how the Google Analytics javascript code placed on the bottom of each page authenicates a website.
Obviously there is a tracking code …
5
votes
6answers
415 views
Is there a good reason I see VARCHAR(255) used so often (as opposed to another length)?
In multiple courses, books, and jobs, I have seen text fields defined as VARCHAR(255) as kind of the default for "shortish" text. Is there any good reason that a length of 255 is …
2
votes
1answer
125 views
How is mime type of an uploaded file determined by browser?
I have a web app where the user needs to upload a .zip file. On the server-side, I am checking the mime type of the uploaded file, to make sure it is application/x-zip-compressed …
16
votes
7answers
1k views
What’s the algorithm behind sleep() ?
Now there's something I always wondered: how is sleep() implemented ?
If it is all about using an API from the OS, then how is the API made ?
Does it all boil down to using speci …
6
votes
13answers
908 views
How malloc() and free() work
Hi,
I am curious to know about the in details about how the malloc and free works.
int main()
{
unsigned char *p = (unsigned char*)malloc(4*sizeof(unsigned char));
memse …
1
vote
1answer
82 views
How do GUI builders work?
I'm curious, how does a GUI builder/designer work? My guess ( for Java ), is that it actually creates a JFrame and overrides the events in some way. However, this is only a guess.
…
18
votes
5answers
2k views
Why does Java’s hashCode() in String use 31 as a multiplier?
In Java, the hash code for a String object is computed as
s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1]
using int arithmetic, where s[i] is the ith character of the string, n is t …
5
votes
8answers
662 views
How many random elements before MD5 produces collisions?
I've got an image library on Amazon S3. For each image, I md5 the source URL on my server plus a timestamp to get a unique filename. Since S3 can't have subdirectories, I need to s …
