May 22, 2007
The Top 10 Open-Source Destinations at the 2007 JavaOne Conference. This year's Conference celebrates the free and open software environment with a new Open Source...
More »
May 22, 2007
Top 10 Destinations for Enterprise Developers at the 2007 JavaOne Conference. Here are 10 must-see destinations and some related recommendations for enterprise developers at...
More »
|
 |
October 16, 2006
October 16, 2006
(See intro for a background and caveats on these coding advice blog entries.)
If you've been coding in C, you've probably picked up the habit of initializing all your fields:
char *foo = NULL;
int bar = 0;
This is necessary, because in C, memory can be left uninitialized, so there's no telling what value foo will have before it is assigned something.
...
More »
October 16, 2006
Read the first in a series of introductory articles about new projects that make developing interactive and dynamic web applications easier.
More »
|