Search Results

0
votes

What are your must-have tools?

It's hard to beat coffee and common sense, but they're the tools you need for life in general, not specifically programming. For linux development, I'd second the PuTTY recommendation, but …
0
votes

Centos or Debian as a server OS ?

There was a time when Debian was definitely technically better, particularly in terms of package management. Red Hat, and therefore CentOS, have caught up a lot and there's really not a lot in it n …
0
votes

What to write in the header comments of a code file?

For C++ header files I tend to put -*-c++-*- on the first line so that Emacs knows it's a C++ file (otherwise the .h extension means it gets treated as C, which do …
0
votes

How did you first get interested in programming?

I, like I suspect most programmers of my age, started with BASIC on one of the home computers of the time (in my case mostly a BBC B at school; it was a few years before I had my own computer). In …
0
votes

How did you first get interested in programming?

When I was 11 we went on a family holiday and my Dad took a copy of K&R that he'd just bought; naturally I read it from cover to cover before he had a chance to pick it up. It was a few years b …
8
votes

What is your (least) favorite syntax gotcha?

We've all done the other way round; am I the only person who has written x == 1; and spent ages wondering why x wasn't changing? …
0
votes

What’s the golden code/comment ratio?

I don't suppose anyone can give you figures, but it should be far higher in header files than in source. I'd expect the header file for a class to document all the classes/functions/etc pub …
4
votes

What Linux shell should I use?

The problem with csh is that it's crap for scripting, as explained here. There's no real reason why you shoul …
0
votes

Why should I use an IDE?

I'm not sure there's a clear dividing line between a text editor and an IDE. You have the likes of Notepad at one end of the scale, and the best modern IDEs at the other, but there are a lot of thi …
0
votes

Amazing programming achievements

I remember on various home computers there were quite a few programs that changed screen mode half way down the screen. All fairly clever, but I can understand how they did it, you count hsync inte …
9
votes

What is your best programmer joke?

How many hardware engineers does it take to change a lightbulb? None, we can work around it in software. How many software engineers does it take to change a lightbulb? None, we'll just put …
539
votes

What is your best programmer joke?

A physicist, an engineer and a programmer were in a car driving over a steep alpine pass when the brakes failed. The car was getting faster and faster, they were struggling to get round the corners …
0
votes

What was your biggest *nix blooper?

I had a nasty keyboard with a big return key that extended to where ~ was meant to be, so when I tried to do "rm -rf ~" I lost a lot more than I intended. It could have been a lot worse, I …