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

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
  • External configuration files determine what language features are available
  • No namespaces
  • Functions within many functional groups have wildly varying names
  • No namespaces
  • Inconsistent grammar

Oh, and did I mention that PHP doesn't have namespaces? It's amazing what you take for granted when you use a language that does have them. Like, say, your programs to actually be traceable without having to wonder which file function X was defined in.

link|flag
show 12 more comments
vote up 38 vote down

I'd like HTML, JavaScript and CSS to die; only to resurrect as three perfectly implemented languages in all browsers.

Web-development is hard.

link|flag
1  
I'd like HTML and CSS to die, and Javascript to thrive! – eyelidlessness Oct 22 '08 at 9:07
2  
I'd prefer if their souls combined into just one perfectly implemented language... – Bill the Lizard Oct 22 '08 at 12:58
show 7 more comments
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 at 15:08
show 8 more comments
vote up 30 vote down

Windows batch files. No design, unintuitive syntax, lots of warts and kludges. Just plain bad.

link|flag
1  
Pretty needlessly verbose though – Vinko Vrsalovic Oct 22 '08 at 10:44
show 2 more comments
vote up 28 vote down

C++ for me, so vote me down ;-) Reasoning non-virtual functions, the rites around it. It's just the worst of C with the worst of any kind of OO languages. So yes indeed you are perfectly right, I'm biased.

Regards

link|flag
show 15 more comments
vote up 25 vote down

PERL, period!

Actually any language that requires ugly prefixes in variables, maybe even different prefixes depending on the datatype of the variable.

Example:

for (int $i; $i < 10; $i = $i + 1)
{
     print("Hello World No $i!");
}
link|flag
show 6 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 17 vote down

What about all XML based markup languages? They are so terrible to read and write that I'd rather read a custom DOM-dump instead of them. Also it's often used for other things than representing DOM trees.

XML neither has a clear concepts on interpreting it when you want something else than DOM. Also there's more than one way to define named attributes for tags and the result is not nice to watch at.

CSS is another my favorite 'banishable' markup language. No browser handles it same way and you need basic hacks to make anything near-satisfying with it. CSS is also one of those languages that have tons of syntax for representing exactly same things over and over again.

Yet few worth mentioning on my list are C++ and it's sequel C++0x. C++ is a living horror movie with tons of superfluous syntactic elements that have been added into C while the actual practical value of them were ignored. C++0x puts even better by introducing lambdas in the same manner. CBloatBloat is actually something that ought not ever exist.

Also many C++ programmers are using the C++'s added bloat in inconsistent manner, thinking they are making fast software because c++ is branded fast, while their use of virtual methods and class instantiations is slowing their software tenfold.

As a little extra C++ ABI sucks enough so that writing wrappers for other programming languages cannot be made from within the language like what you could do if you were wrapping C. Despite that all C++ has been used in wide variety of projects which is annoying. It's only fortunate that there's not cool C++ libraries that'd be needed to be ported to other languages.

link|flag
1  
And a very ignorant post as well, at least when it comes to C++ :) – Nemanja Trifunovic Oct 22 '08 at 20:51
3  
You'd rather have what? .csv? .ini? .yaml??? XML is human readable, machine readable, testable and extensible. An extraordinarily powerful concept, and unique. – annakata Jan 21 at 10:10
show 4 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 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 15 vote down

Fortran and Cobol are top on my list. They are both not that bad, well Cobol actually is, but what makes them so bad is that they are widely in use and should be replaced IMHO. Die, die, die. Then maybe Haskell (aka Gofer); not widely in use but ugly as hell.

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

I think no language should die. Every language is here for a reason and that should be respected. Though, some languages are old enough to retire. ;-)

BTW: VB.NET (not VBScript or VB for Applications) is a great language and development environment. Read this blog entry by Kathleen Dollard: What a C# Coder Should Know Before They Write VB

Disclaimer: The original question was "Which language should die?"

link|flag
show 4 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 10 vote down

How about actionscript < 3.0

  • Mainly used for evil purposes and by non-programmers.
  • Horrible syntax
  • Incosistent naming conventions (it seems as the language is programmed by 4 people who at the end of the dev cycle just copy pasted their code together)
  • Knowledge of all t3h h4cks is required
  • as discoverable as a yeti
  • prehistoric documentation
  • breaks search engine crawling unless with major work-arounds
  • Although claimed cross-platform, not consistently so => major head-aches.

I worked with 2.0 for 6 months, 1.0 as an experiment. Never tried 3.0 so that's why I give it the advantage of doubt in my first line.

I figure there are done some things that amaze, but most amaze because they are done in AS. So it's kind of a neverending circle there. Also, it gave us the ability to make interfaces for our FLV's, but they are in AS 3.0 I figure.

link|flag
show 5 more comments
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 9 vote down

If Fortran vanished wouldn't bug me too much

link|flag
show 2 more comments
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 7 vote down

Visual Basic and all its derivatives (.net, for applications, etc)

link|flag
show 3 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
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 5 vote down

VB6, VBA, VBS.

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

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 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 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 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

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 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 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
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.