Search Results

11
votes
17answers
1k views

C++ example of Coding Horror or Brilliant Idea?

At a previous employer, we were writing binary messages that had to go "over the wire" to other computers. Each message had a standard header something like: class Header { int …
0
votes

How do you pronounce the following computer/programming terms:

Knuth = Kuh-Nooth with the emphasis on the second syllable Gif is a soft "G". Some time ago, I had read on a Unisys (patent holder) website that it was a hard G. All other references (incl …
1
vote

Is there a need to use assembly these days?

It is worthwhile to have an know assembly even if you don't use it. I helps in understanding what is going on in your higher level languages. I was amazed when I was in college at how many Java p …
2
votes

Writing maintainable code

Plenty of whitespace. - High density code is hard to comprehend. If you have more than 6 lines wihtout a blank line, then that group is probably not a cohesive thought/idea/operation. Good …
4
votes

Should developers be given laptops or desktops?

Laptops are good if you want to travel, but otherwise I want power and screen real-estate. …
6
votes

Great programming quotes

My other car is a cdr …
2
votes

What is the worst class/variable/function name you have ever encountered

In the old FORTRAN days, we were linking to a vendor library who had no sense of a naming convention, and used simple variables like x any y in the global namespace. Linking to their library was a …
15
votes

What was your biggest *nix blooper?

I was cleaning out a local directory, so: rm -rf * No problem, except that it left those little .xxx resource files, so: rm -rf .* …
7
votes

What optimizations today are going to be useless tomorrow?

Many architecture specific things are temporary. For instance, it used to be the fastest way to compute a DFT (Discrete Fourier Transform) was to store the sin and cosine values in memory. Now it …
1
vote

Which single book should every manager read?

"Software Project Survival Guide" by Steve McConnell. It covers the basics on software project management in a very concise manner. Helps connect between mgt and programmer. The more verb …
3
votes

Will .net take over c/c++ any time?

This is similar to what a professor of mine said in the early 80s - PASCAL should be used for everything. I don't think so. Different languages have different purposes. The problem is that people …