2
votes
15answers
263 views
When do you prefer to code?
I personally prefer to code late at night. I don't know why but I feel more productive then. At first I thought it might be because of the silence but I usually code while listening to music or the …
10
votes
15answers
372 views
What coding style for error checking is better and why?
What coding style for error checking is better and why?
(leave Exceptions away, imagine we do not have them)
int foo()
{
int errCode = some_system_call();
if (errCode != OK) …
9
votes
How to master Regular Expressions?
Tutorials:
http://www.regular-expressions.info/tutorial.html - One great tutorial on regex
Online Test …
