0
votes
2answers
33 views
How to determine at runtime the path to a Mavenized Eclipse project directory
Total Maven newbie, trying (along with the rest of a sizeable team) to convert a monstrous pile of legacy code from ant over to Maven. It's working reasonably well, but I'm having …
34
votes
63answers
3k views
What’s the most painful product to develop against?
I know this is subjective and not really a question. I won't feel bad if it is closed, but I'm curious about this.
I was recently learning some details about a project that uses M …
116
votes
22answers
5k views
Database Development Mistakes Made by AppDevelopers
What are common database development mistakes made by application developers?
26
votes
34answers
3k views
What are the Worst Software Project Failures Ever?
Is there a good list of "worst software project failures ever" in the history of software development?
For example in Canada a "gun registry" project spent around two billion doll …
28
votes
77answers
3k views
What infuriates you the most when maintaining others’ code?
Maybe infuriate is not the politically correct term, but what kind of code would qualify for a genuine face palm?
Addendum:
For me, it's the misuse of technology. The group of peo …
23
votes
41answers
3k views
What “bad practice” do you do, and why?
Well, "good practice" and "bad practice" are tossed around a lot these days - "Disable assertions in release builds", "Don't disable assertions in release builds", "Don't use goto. …
6
votes
15answers
346 views
Arguments against zip files as source control
What arguments can be used against using zip files of source code as a form of version control?
In general each developer is working on their own program and has a responsibility …
28
votes
33answers
3k views
Worst PHP practice found in your experience?
What are the worst practices found in PHP code?
Some examples:
Use of $array[reference] without single quotes
Instance "hidden" variables into inclusion files, which are needed …
2
votes
10answers
306 views
most illiterate code snippet that you saw in your practice [closed]
Do you ever saw code like this in your practice?
bool b;
...
if(b == true)
{
}
or
if {
if {
if {
...
}
else {...}
}
else {...} …
10
votes
13answers
2k views
Cocoa Bad Habits
What are those bad habits you've developed since you've started coding in Cocoa?
I think making a list of bad habits and actively adding to it and, more importantly, breaking thos …
26
votes
9answers
2k views
How Is PHP Done the Right Way?
I keep hearing about how often php results in lousy code and practices. Given these criticisms and popularity of the language, what are best practices (in general) to insure that …
0
votes
8answers
173 views
Common Class names that indicate bad design or code smell [closed]
Possible Duplicate:
Smelly class names?
I've come to the conclusion that certain words in class names indicate the possibility of poor design in a Java application.
Help …
17
votes
17answers
831 views
Embedded systems worst practices?
What would you consider "worst practices" to follow when developing an embedded system?
Some of my ideas of what not to do are:
Avoid abstracting the hardware layer, instead spr …
-3
votes
3answers
132 views
How can I access CGI parameters without using CGI.pm?
How can I access GET/POST arguments in a Perl script without using CGI.pm's param() method? I'd rather not parse $ENV{'QUERY_STRING'}, if possible.
6
votes
22answers
1k views
Worst Java practice found in your experience?
Similar to this question...
What are the worst practices you actually found in Java code?
Mine are:
using instance variables in servlets (it's not just bad practice but bug, ac …
