vote up 16 vote down star
9

This is the inverse of the "What programming language do you wish would catch on?" question.

I was a Delphi programmer for many years, and I still appreciate its power, but I dislike verbose programming languages. So I would love to see Pascal put out to pasture.

The same goes for BASIC in any form, despite the fact that it's the language I cut my teeth on. When I look at cathedrals of beauty like Haskell and REBOL, BASIC just makes me cringe. (VB.NET is tolerable, but barely. It has a few nice language features I'd like to see moved to C#.)

My dislike of Pascal and VB.NET is subjective. They are powerful languages, but I dislike their syntax esthetically.

Try to explain your reasoning, if you can, even if it's just "I don't like its syntax."

This question is not meant to be a flame war, argumentative, or hateful. It's meant to be a straightforward, honest discussion of programmers' dislikes.

flag
show 13 more comments

44 Answers

prev 1 2
vote up 4 vote down

Natural.

While a significant improvement over COBOL, its parent language, Natural and its companion Adabas never made the jump into the relational database world. Its continuing use only perpetuates the mainframe green-screen/batch processing model of the 1970s. And it's still in active use at the major universities in Texas and other states. Higher Ed ought to lead the way, not trail behind with the dinosaurs.

Fundamental problems are the mainframe's 8 character program name limit which discourages the use of sub-programs, use of sub-routines instead of true functions, vast amounts of global data, inability to dynamically query tables, COBOLesque verbosity, lack of direct ODBC connectivity, absence of SQL support, requirement of using pre-defined indexes to read data, etc.

link|flag
vote up -3 vote down

Scheme and the tar-pit of parentheses always makes me cringe when I reminisce on my college days.

link|flag
vote up -1 vote down

Java, and by extension C#.

link|flag
vote up 5 vote down

VB6, VBA, VBS.

VB.NET is on thin ice in my book, too :)

link|flag
vote up 1 vote down

RPM specfiles and the morass that comes with them. Undocumented calls and attributes atop the complexity of make. Yuck.

link|flag
vote up 1 vote down

VB6. Wait a second, MS has already killed it.

link|flag
vote up 0 vote down

maybe the languages that basically do the same things in the same manner should die, leaving one behind. So that the poor people selecting a language for the next project do not get confused to hell.

Yes I am talking to you, "pythonic" languages!

link|flag
show 2 more comments
vote up -6 vote down

C#

  • Was only invented to combat Java.
  • Is only available for Windows (Yes, I know there is Mono, but I think they are moving on a legal minefield).
link|flag
1  
.NET is a published and open standard, Mono is completely legal and legitimate – lagerdalek Dec 17 '08 at 6:27
vote up 4 vote down

Wow.. no one has mentioned Classic ASP. You don't see it much, but it gives me shivers any time I see it. I know there's still some classic ASP apps out there (sadly). Classic ASP is one of those things that should definitely die off and be replaced.

link|flag
vote up 1 vote down

My #1 vote goes to Tcl.

Others I'm not particularly fond of: Javascript, Perl, Ruby, Python, PHP, original ASP, VB (typically weak typed, unstructured, or poor tooling/IDE support)

For comparison, languages I do like: C#, Java, C/C++ (typically strongly typed, strongly structured, great tooling/IDE support, very large development community, most likely to land you a job!)

link|flag
show 1 more comment
vote up 10 vote down

Coldfusion. I would love to see Coldfusion die, now.
I'm not saying you can't do anything with it but.. it's such a pain to work with.

link|flag
vote up 0 vote down

VBScript gets my vote for the abomination awards especially as part of ASP Classic. No way to include files other than SSI or using FileSystemObject (ugh).

oh and variable prefixes are dumb too.

link|flag
vote up 4 vote down

InstallScript; the scripting language for InstallShield. It is a excellent example of absent design (almost as bad as Windows batch files). He are a few examples, in no particular order.

  • No dynamic memory allocation.
  • Lists can only contain strings or integers. Not records.
  • Supports only a single compilation unit; i.e. all code has to be included in the main source file (Setup.Rul).
  • Cannot handle include filenames longer than 128 characters

The runtime library is riddles with ad-hoc design:

  • There is a function called Enable(x) which can do any number of things, depending on the value of x: the backbutton, switch hourglass on/off, toggle file copy status display, toggle creating of uninstallation data, toggle DIFx support for 32/64 bit platform.
  • The SetTitle(title, pointsize, color) function displays a title in the main window's title bar or inside the mainwindow, depending on the value of the "color" parameter. If it is set to the special value BACKGROUNDCAPTION, the title is displayed in the main window's title bar.
link|flag
show 2 more comments
vote up 1 vote down

XML Comments in Visual Studio

It might write itself as soon as you finish the /// but it wastes alot of vertical space.

/// <summary>
/// Blabla
/// </summary>
/// <param name="strFilePath">bleble</param>
public void LoadXMLFromFile(string strFilePath)

Javadoc is much more lightweight and comfortable, and still provides the same functionality. Don't need an IDE to write it eighter. Seriously, would you even consider writing the above xml by hand if it didn't write itself automaticly?

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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