Live data from Hacker News

Poll: What's Your Most Disliked Programming Language?

news.ycombinator.com

1–10 of 366 posts

Re: Poll: What's Your Most Disliked Programming Language?

#4
The programming languages that would make me the most sad/angry/annoyed I don't use, so it's difficult to make a choice. I suppose I'll have to go with Javascript because it's the de facto 'Web language' which people use to force me to evaluate arbitrary code whenever I want to read anything on the Web. Even with a sandbox that seems a terrible idea.

If we're talking about programming languages I hate but still use, I'd have to go with Python. I spend most of my time writing Haskell, and Python's dynamic typing puts me on edge. I might spend half an hour evaluating a Python script only for it to throw an AttributeError because I mistyped some function name or passed the wrong type.

Does anyone know a static analysis tool for Python? I found one a while back but when I tried it it threw (you guessed it) an AttributeError on NoneType.

Re: Poll: What's Your Most Disliked Programming Language?

#9
post #4

The programming languages that would make me the most sad/angry/annoyed I don't use , so it's difficult to make a choice. I suppose I'll have to go with Javascript because it's the de facto 'Web language' which people use to force me to evaluate arbitrary code whenever I want to read anything on the Web. Even with a sandbox that seems a terrible idea. If we're talking about programming languages I hate but still use…

pylint catches most such common errors.
Post reply on HN