vote up 4 vote down star

While developing software, developers always tend to curse about some language specifics, "improvements" that made language less understandable, buggy.

What obstacles / improvements have you met, that you'd be pleased no one ever invented / introduced?

My 2 cents:

I cursed for 3 days at delphi 2009. I had an internal compiler error, with no clue what I was doing wrong. It turned out I couldn't inherit a Generic class declared in another unit.

edit: moved to community wiki, as some of comments suggested

flag
4  
community wiki, please – codymanix Oct 11 at 11:09
2  
+1 for "burning in hell" – Smalltown2000 Oct 11 at 11:11
This should be community wiki. – Geo Oct 11 at 11:15

closed as subjective and argumentative by Geo, simonn, Pascal Thivent, blowdart, 01 Oct 11 at 14:44

7 Answers

vote up 5 vote down check

Python. Because whitespace shouldn't be meaningful except where absolutely necessary. :-D *ducks*

C++. A nasty hack on top of C to allow OOP, resulting in horrific syntax and a lack of garbage collection, instead of the ground-up redesign needed for OOP like Java or C#. *ducks again*

MUMPS. The name says it all.

Perl5's OOP infrastructure - feels like a nasty hack on top of a language that wasn't originally intended to be OOP.

link|flag
2  
+1 for C++. I refuse to duck; let the flaming commence... – Smalltown2000 Oct 11 at 11:13
1  
C++ maybe... but python's whitespace syntax enforces good syntax... which is good , right? – aviraldg Oct 11 at 11:15
MUMPS... what an incredible invention... see: thedailywtf.com/Articles/A_Case_of_the_MUMPS.aspx/… – Jesper Oct 11 at 11:23
1  
PHP also wasn't designed as an OOP language.. nowadays everything must be OOP :) – juraj.blahunka Oct 11 at 11:31
2  
PHP is essentially like HTML, with C tacked on, with OOP stuck on it with nose snot. – aviraldg Oct 11 at 11:34
vote up 4 vote down

n-Tiered design. The next time I inherit a "solution" that contains a functionally empty "BusinessObjects" project, I'm going to strangle someone. I'm amazed that this pattern is still so prevalent 15 years after I first encountered it. As I said in another answer, layering is great for lasagna, but it isn't automatically a good choice for all software.

http://thedailywtf.com/articles/the-mythical-business-layer.aspx

link|flag
3  
I like the lasagna comparison :-D – Johannes Rudolph Oct 11 at 11:55
laughed a lot :-D – juraj.blahunka Oct 11 at 11:59
So long as people aren't putting business logic in their GUI (note that I didn't say presentation layer!). Ever try maintaining an app that has all the code under button-click events on the form? – TrueWill Oct 11 at 14:05
Any code should be well-encapsulated in classes and/or functions (and not in button-click events, as you say), but this does not mean that it necessarily should be separated by layers per se. A simple example would be code that loads a DataTable from a database and sets it as the DataSource for a GridView. A common (anti-) pattern that I've seen is where the form instantiate a business object that itself instantiates a data object that loads the DataTable and returns it to the business object which itself returns it to the form. In this case, the business object is useless ... – MusiGenesis Oct 11 at 14:30
... (what I called "functionally empty" in my answer). – MusiGenesis Oct 11 at 14:31
vote up 1 vote down

Any and all "improvments" to BASIC. BASIC was a broken thing from the start. VB was an attempt to fix it but -- FAIL. Then VB.Net was made, so that by the time people realized the mess that they were in, they'd be knee deep in hell.

link|flag
I agree with you up to VB.NET. While I would much rather program in C#, the main differences are just syntax. Even automated tools can transpose code between the .NET languages. – TrueWill Oct 11 at 14:08
I agree with TrueWill here. At its core, BASIC is just a way of declaring variables, specifying for loops and if blocks and case statements etc., organizing methods, accessing object properties and so on. Some people like "end" statements, some people like curly braces and semi-colons. In the end (or in the ";") it doesn't make much difference. – MusiGenesis Oct 11 at 16:29
vote up 3 vote down

Big Ball of Mud architectures, although in that case it's more a lack of invention rather than a new one.

link|flag
vote up 1 vote down

To be honest I would like to see Java burning in Hell or at least they should create a complete remake of it (I know there is already one called C#).

link|flag
1  
Do you mean C# is a complete remake of Hell? – MusiGenesis Oct 11 at 11:50
lol you saved my day.. – codymanix Oct 11 at 23:10
vote up 4 vote down

Singleton Pattern (also known as Global Variable in Disguise Pattern).

link|flag
What is wrong with singleton? – codymanix Oct 11 at 11:12
1  
The same things that are wrong with globals: they are far too easy to abuse. – Matthew Scharley Oct 11 at 11:26
1  
@codymanix, read for example: code.google.com/p/google-singleton-detector/… – Jesper Oct 11 at 11:27
+1. Beat me to it! – TrueWill Oct 11 at 13:59
vote up 2 vote down

Big Design Up Front

link|flag
I agree with the "big", not the rest. – peterchen Oct 11 at 11:59
1  
Do you mean Big Up Front Design (BUFD)? – Pascal Thivent Oct 11 at 12:04
Personally I think we might be better served by retiring the term BDUF. We Agile practitioners have alienated many skilled developers with this argument, and given the impression that there is no design in Agile (untrue). I believe talking about the Last Responsible Moment instead is one small step towards healing the gap. People take up arms when they feel criticized. Instead we can show them the benefits of Agile techniques. – TrueWill Oct 11 at 14:25

Not the answer you're looking for? Browse other questions tagged or ask your own question.