0
votes
Does an application-wide exception handler make sense?
Consider writing a context manager and using the with statement.
…
1
vote
Infinite loops - top or bottom?
When writing code for myself I use for(;;). Other people tend to be confused by its syntax and so for code that other people must see/use, I use while(true).
…
52
votes
What programming language do you wish would quietly retire?
PHP. There are dozens if not hundreds of pages across the Internet that tell why PHP is a bad programming language, but I'll repeat the really good points here:
No namespaces
…
5
votes
How many screens do you need?
Just one very large screen, with multiple workspaces that you can switch between at the press of a button.
…
2
votes
When writing code do you wrap text or not?
I wrap between columns 72 and 76, indenting the next line one level more than the beginning of the statement.
Edit: To clarify, I wrap manually.
…
0
votes
Python 3.0 and language evolution
gcc regularly changes how it handles C++ almost every minor release. Of course, this is more a consequence of gcc tightening how they follow the rules, and less of C++ itself changing.
…
0
votes
Best editing environment for python
geany can automatically detect if a file uses tabs or spaces, and how many, for indentation purposes.
…
