9
votes
What is important to keep in mind when designing a database?
Establish consistent naming standards up-front. It will save several minutes of unnecessary thinking in the long run. (This may read as irony, but I am serious.)
And don't abbreviate anythi …
2
votes
What programming languages will be around in 100 years?
Based on my personal experience where I work, Visual Basic 6 will still be in use a hundred years from now.
I am not happy about this fact.
…
11
votes
How many parameters are too many?
Some code I've worked with in the past used global variables just to avoid passing too many parameters around.
Please don't do that!
(Usually.)
…
0
votes
A good C# book
I'll admit that I'm a little strange, but the book that did the most for me in learning C# was actually the language specification (available …
15
votes
What is your best/funniest/annoying performance tuning experience?
A few months ago I was working on a point-of-sale system that runs on small laptop computers. There were a variety of laptops that were used, and they all were running Windows XP, but many of them …
0
votes
What are the best movies about Geeks/Programmers/Hackers. (for inspiration)
I can't believe no one has said TRON yet. A movie by computers, for compute—uh, programmers.
…
0
votes
Is there a meaningful correlation between spelling and programming ability?
I would be surprised if presented evidence that good spelling and good programming correlate. Good spelling and good programming both are based on the level of experience in performing the respecti …
0
votes
Hello world: what did your first ever computer program do ?
My first program was written in the autumn of 1987 in GW-BASIC on a Tandy 1000.
The program wrote my name on the screen....
a THOUSAND times!!!!!!!
…
6
votes
How to name variables.
One rule I always follow is this: if a variable encodes a value that is in some particular units, then those units have to be part of the variable name. Example:
int postalCodeDista …
0
votes
How to name variables.
I learned not to ever use single-letter variable names back in my VB3 days. The problem is that if you want to search everywhere that a variable is used, it's kinda hard to search on a single lette …
-1
votes
Do you generate nicely formatted HTML?
One of the two reasons that I am not crazy about Web development is the fact that HTML always looks like a code generator just vomited before exploding.
Everything I do is formatte …
1
vote
2
votes
Will computers ever be too fast?
Will the programs we create in the
future require a year or more's worth
of current PC cycles to compile?
Yes.
When I first started programming on a …
1
vote
Why is Syntactic Sugar sometimes considered a bad thing?
I have always understood "syntactic sugar" to refer to any syntax added to an existing language that do not extend the capabilities of the language. Otherwise, anything less direct than binary mach …
