Search Results

5
votes

What should every programmer know?

If you want to be the best possible programmer, you need to understand how the "magic" works. Others have suggested learning about compilers, and that's a good start. I would even say every serious …
1
vote

Humor in code

One of my favorites was a file with in the header something like // Author: Mike and a bit later, in a function, something like // Mike: whoever wrote this code should be put against th …
0
votes

How many parameters are too many?

It heavily depends on the environment you're working in. Take for example javascript. In javascript the best way to pass in parameters is using objects with key/value pairs, which in practice means …
0
votes

How do you get a co-worker to use 3rd party code?

I once was up against this decision, on a PHP system. I ended up building my own grid component, because I didn't like any of the existing ones. It's one of those projects that seems simple at firs …
4
votes

What appear to be the more lucrative programming skills at the moment?

You need to make a distinction between hot and high-priced. What drives a high salary is not how much demand there is for something, but how much demand there is compared to the number of people wi …
0
votes

Why do software engineers hate writing documentation?

I would say it boils down to a few reasons, inherent in how the minds of programmers work. Programmers hate maintaining old code. They want to write new code, to feel like they move …
0
votes

Hello world: what did your first ever computer program do ?

The first one I ever did that wasn't copied from a book was a VB 3 program for calculating a particular mathematical equation, to make my maths homework go quicker. I like to think back with pride …
3
votes

What programming practice that you once liked have you since changed your mind about?

Requiring all code to be clean code, even if it is already working. In academic environments there is such a focus on clean code that the temptation afterward is big to always clean up ugly …
1
vote

How can I convince my co-programmers not to do paranoid “just to be sure programming”?

Every line of code is an opportunity for bugs. Writing lines of code that don't influence the behavior of the program increases bugs without any benefit. I would lie in wait until a bug cro …