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

1 2 next
vote up 72 vote down check

Visual Basic for Applications, and generally any language that tries to perpetuate the myth that programming is actually very easy and only looks hard because programmers insist on using weird symbols.

Argue the merits of syntax all you like, but it's clear that VB's syntax is designed to appeal to people without a programming background, and that worries me. If you find braces and terse syntax scary, then you're probably not cut out for programming, and you definitely shouldn't be writing "clever spreadsheets" that will inevitably end up as a critical part of your company's infrastructure before blowing up magnificently and leaving the curly-braces crowd to clean up the mess.

link|flag
1  
Python only misses braces, not terseness ;) (unless you consider removing all indentation and newlines "improving" code) – Tetha Oct 22 '08 at 9:56
1  
It is better to have an untidy macro or half-baked code to do a repetitive task than nothing. VBA is not to replace a programmer, it is to replace tedium and the absence of programmers. – Remou Oct 22 '08 at 10:09
show 12 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
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 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 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 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 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 -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 – johnc Dec 17 '08 at 6:27
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 1 vote down

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

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 5 vote down

VB6, VBA, VBS.

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

link|flag
vote up -1 vote down

Java, and by extension C#.

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 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 1 vote down

PICK (PICK/BASIC) - for similar reasons listed in the previous post about MUMPS. Yeah, it's a BASIC flavor, but cannot be compared to Visual Basic.

Link to PICK OS. Short quote: "See also - MUMPS - another language of the 60s with an integrated database."

If I started out in the 60's I'd hope to be retired by now too.

link|flag
vote up -2 vote down

I really don't like...

Java

Javascript

HTML/XML

CSS

SQL.

The dynamic web package is a kludge of 4-5 different languages with disjoint models. That's terrible design and needs to be thrown out and rebuilt.

SQL is, quite simply, a hassle to really process with. Needs to be a real procedural language.

As for Java? Slow, over-verbose, ginormous VM, hassle to do anything with, the build systems are nightmares.

link|flag
show 5 more comments
vote up 10 vote down

FoxPro

It does nothing that other languages can't do better and/or easier.

link|flag
vote up 5 vote down

I wish my school would retire Java, it is a scourge of the earth. How am I supposed to get excited about writing a java compiler in java for the jvm, geez.

Also, php should maybe be next to go, it impossibly to structure a project reasonably in it.

On a side note, I think we should all follow Steve Gibson lead and start writing everything in ASM, including websites. What too hard for you? Find a new career.

sarcasm?

link|flag
vote up 4 vote down

SAS (and the SAS system).

  • Record based,
  • terrible syntax,
  • proprietary
  • very difficult to extend

The slogan for SAS should be: There's half a way to do it (and it'll cost you $3,000 / month to hear it).

(Long live R [S], Matlab and gack, even Python Numpy)

link|flag
vote up 0 vote down

Well, thinking on this question, you make me thing that woul'd be best to kill some category of programmers, than a programming-languate itself!

If you have a problem with that language, maybe you've choosen... poorly ;) for what you were trying to create :)

link|flag
vote up 16 vote down

The XML-based build languages of Ant, Nant, and MSBuild (someone already mentioned Make, so I'll skip it), to be replaced by real scripting-language-based build tools with uncluttered syntax and actual powers of abstraction for the removal of duplication, such as Rake, Buildr, and Gant.

link|flag
show 2 more comments
vote up 17 vote down

Classic ASP, for its lack of everything

link|flag
1  
Not a language though, is it? It's an API that you can use with various languages, at least VBScript, Javascript and Perl. – Mark Baker Oct 24 '08 at 15:34
show 2 more comments
vote up -2 vote down

+1 on delphi the unit testing and refactoring tools are absolutely poor particularly with legacy project

Another reason bds (their IDE) leaks memory all over the shop (previous versions are much better)

Another reason, no support for the language, borland kinda ditched it nad now they dont know what to do with it

link|flag
vote up 9 vote down

VBA - God I hate that stuff. It caused me 3 months of pain, it doesn't behave how you expect and it will throw the most obscure errors I have ever seen from any language.

link|flag
vote up 0 vote down

Any language with a flat memory model randomly addressable by pointers and manual memory management. That includes C and C++. I don't really want them to die, but I want people to stop using them when they aren't writing either a driver, a graphics routine or some other situation where the runtime requirements are super restrictive or they've discovered a CPU bottleneck or GC inefficiency in profiling.

link|flag
vote up 0 vote down

I don't suppose that there are still any Coral 66 programmers out there (are there?), but it still lives on in my memory. And I wish it wouldn't.

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

Make... as in Makefiles.

And if you claim that it isn't a language then you've obviously never had the privilege of dealing with a legacy build system that has literally thousands of lines.


$ wc common/makefiles/*
  2077   9812  85757 common/makefiles/Makefile.common
   539   2013  16827 common/makefiles/Makefile.main
   177    641   6986 common/makefiles/Makefile.patches
   542   1873  21240 common/makefiles/Makefile.release
  3335  14339 130810 total

And that's for a project with less than 100klocs in the C and H files.

Don't even get me started on what's in there, suffice it to say that if programming were magic then make would be the darkest of the dark arts. Next to this stuff even the likes of perl and bash look like simple consistent well designed languages.

link|flag
1  
Unfortunately there is often no realistic alternative to make. – JesperE Jan 6 '09 at 15:08
show 8 more comments
vote up 18 vote down

MUMPS (Massachusetts General Hospital Utility Multi-Programming System)

  • ugly syntax
  • significant whitespace (in some places)
  • context-dependent meaning of keywords (quit)
  • lack of datatypes
  • no stackframes (routine calls are hidden gotos)
  • one letter abbreviations for commands

see Wikipedia http://en.wikipedia.org/wiki/MUMPS

link|flag
show 6 more comments
vote up 5 vote down

This is difficult, to say the least, especially because I hate about any language, for various reasons. (even though python is working hard on shaking that statement).

For example, I hate to have nontrivial production code in C. Imagine building a large compiler in C. Yes, it works, and its fast, but in general, you are going to slam your head into a wall, because implementing simple optimizations result in programming more and more and more and more and then even more, and then, there is a pointer mistake and you can spend 3 days debugging, just to learn that someone of your coworkers did a mistake? bleh.
On the other hand, I don't want C to disappear. To some extent, C is a good compiler platform. It just works everywhere (Ha. Platforms that have no C-Compiler on them are no real platforms, just toys. :P). Furthermore, C has amazing compilers lying around, so compiling into C will result in a cruel speedup for your application.

On the other hand, consider Haskell. One fellow hardcore-functional programmer (he even is a professor researching parallel processing techniques using functional languages.) He discarded haskell, because "haskell is too academic". Heh. My thoughts. Building a simple thing that reads numbers from stdin and dumps them on stdout is a chore in Haskell, at least in my opinion, no matter how nice and fun things grow later on.
On the other hand, looking at Haskell taught me a few very interesting concepts (think the theory of monads). It would be ungrateful to want a language that taught you very interesting things to die / vanish / whatever.

Furthermore, I hate all languages, that try to restrict me in order to makes things "easier". Great. Because C++ f****d it's implementation of multiple inheritance up, Java has no MI anymore. (From what I know, in C++, you have to resolve problems in MI hierachies by hand. This implies that, given 3 projects and 2 programmers, you will end up with at least 6 implementations of MI an each will have 3 subtle bugs that will fall on your face if you use the MI implementation there and you are sure that everything works). However, No one considered for example Common Lisps implementation of Inheritance (or, pythons. in general, Linearizing MI. (And dont start with Interface Inheritance. Yes, you can inherit multiple interfaces so the interface is consistent, but in the current project, I still would have to implement the same code about 23 times (I counted))). Here, MI is well defined and -- even though it still is a bit tricky to use properly -- well usable. But ok, someone might not understand whats going on and thus, we need to remove that feature. Bleh.
Similar rants can be held for Makros, great in Lisp, hirrible in C, even worse with Templaces in C++. Thus, no one has them anymore, creating a syntactic barrier at refactoring.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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