15
votes
11answers
1k views
How many developers are there in the world?
What is the total number of software developers in the world?
And to respond to the inevitable "How do you define a software developer?" -- I'll answer two ways:
Define it as "Anyone who writes …
14
votes
7answers
543 views
C programming : How does free know how much to free?
In C programming, you can pass any kind of pointer you like as an argument to free, how does it know the size of the allocated memory to free? Whenever I pass a pointer to some function, I have to …
11
votes
7answers
10k views
How can I get a file’s size in C?
How can I find out the size of a file? I opened with an application written in C.
I would like to know the size, because I want to put the content of the loaded file into a string, which I alloc …
7
votes
5answers
559 views
Why are Oracle table/column/index names limited to 30 characters?
I can understand that many years ago there would be this kind of limitation, but nowadays surely this limit could easily be increased. We have naming conventions for objects, but there is always a …
7
votes
2answers
149 views
Size in CSS with slash
What does the slash mean here: "font-size: 100%/120%"?
7
votes
5answers
492 views
Can someone explain this template code that gives me the size of an array?
template<typename T, size_t n>
size_t array_size(const T (&)[n])
{
return n;
}
The part that I don't get is the parameters for this template function. What happens with the array when …
7
votes
4answers
4k views
How to efficiently count the number of keys/properties of an object in JavaScript?
What's the fastest way to count the number of keys/properties of an object? It it possible to do this without iterating over the object? i.e. without doing
var count = 0;
for (k in myobj) if …
6
votes
6answers
607 views
How Big can a Python Array Get?
In Python,
how big can an array/list get? I need an array about 12000 elements large... is that okay? - will I still be able to run array/list methods such as sorting, etc?
Thanks so much,
Ed
5
votes
6answers
456 views
What size to pick for a (n)varchar column?
In a slightly heated discussion on TDWTF a question arose about the size of varchar columns in a DB.
For example, take a field that contains the name of a person (just name, no surname). It's quite …
5
votes
10answers
954 views
GCC C++ “Hello World” program -> .exe is 500kb big when compiled on Windows. How can I reduce its size?
Hello,
I just recently started learning C++ - I am using nuwen's version of MingW on Windows, using NetBeans as an IDE (I have also MSDN AA Version of MSVC 2008, though I don't use it very often).
…
5
votes
4answers
210 views
Max length of an openID
I'm planning to add openid support for a web application I'm building. I can't seem to find the maximum length of a valid openid so I can store it in my database. I've seen some vague references to …
5
votes
8answers
626 views
size() Vs empty() in vector - why empty() is preferred?
While debugging something, I saw the STL vector::empty() implementation:
bool empty() const
{return (size() == 0); }
I believe, whenever we are probing the emptiness of vector it is always …
5
votes
1answer
199 views
How to fill the screen with video preview on Windows Mobile
Hi,
I am creating an application for video capturing on Windows Mobile device. In the MainFrame there are menu and status window (custom window). The video size width:height ratio is 4:3 so in the …
4
votes
10answers
341 views
Why is that data structures usually have a size of 2^n ?
Is there a historical reason or something ? I've seen quite a few times something like char foo[256]; or #define BUF_SIZE 1024. Even I do mostly only use 2^n sized buffers, mostly because I think it …
4
votes
9answers
132 views
What can I do to make jar / classes smaller?
I'm developing a Java Applet, and reducing the size of the binary code will make the applet open faster and will improve the user experience.
Is there anything I can do to reduce the size of classes …
