Search Results

1
vote

When do you use an IDE?

I usually use the IDE only for debugging (which IDE depends on the language/platform), and use my personal editor for the actual editing of code. I feel that using one editor for everything …
3
votes

To STL or !STL, that is the question…

I think it's a typical build vs buy scenario. However, I think that in this case I would almost always 'buy', and use STL - or a better solution (something from Boost perhaps), before rolling my o …
35
votes

Why should I capitalize my SQL keywords?

I think the latter is more readable. You can easily separate the keywords from table and column names, etc. …
0
votes

What word processor do you use for technical papers?

I like DocBook and use FOP to create PDFs from it. …
4
votes

type* var Vs. type *var - which one is better?

I prefer the * attached to the variable name, it makes multiple variable declarations clear: int *x, y; Note that only x is a pointer, that is less clear with …