What are five things you hate about your favorite language? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T03:43:22Z http://stackoverflow.com/feeds/question/282329 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language 123 What are five things you hate about your favorite language? brian d foy 2008-11-11T22:14:43Z 2009-11-09T03:35:37Z <p>There's been a cluster of Perl-hate on Stackoverflow lately, so I thought I'd bring my <a href="http://use.perl.org/~brian%5Fd%5Ffoy/journal/32556" rel="nofollow">"Five things you hate about your favorite language"</a> question to StackOverflow. Take your favorite language and tell me five things you hate about it. Those might be things that just annoy you, admitted design flaws, recognized performance problems, or any other category. You just have to hate it, and it has to be your favorite language.</p> <p>Don't compare it to another language, and don't talk about languages that you already hate. Don't talk about the things you like in your favorite language. I just want to hear the things that you hate but tolerate so you can use all of the other stuff, and I want to hear it about the language you wished other people would use.</p> <p>I ask this whenever someone tries to push their favorite language on me, and sometimes as an interview question. If someone can't find five things to hate about his favorite tool, he don't know it well enough to either advocate it or pull in the big dollars using it. He hasn't used it in enough different situations to fully explore it. He's advocating it as a culture or religion, which means that if I don't choose his favorite technology, I'm wrong.</p> <p>I don't care that much which language you use. Don't want to use a particular language? Then don't. You go through due diligence to make an informed choice and still don't use it? Fine. Sometimes the right answer is "You have a strong programming team with good practices and a lot of experience in Bar. Changing to Foo would be stupid."</p> <p><hr /></p> <p>This is a good question for code reviews too. People who really know a codebase will have all sorts of suggestions for it, and those who don't know it so well have non-specific complaints. I ask things like "If you could start over on this project, what would you do differently?" In this fantasy land, users and programmers get to complain about anything and everything they don't like. "I want a better interface", "I want to separate the model from the view", "I'd use this module instead of this other one", "I'd rename this set of methods", or whatever they really don't like about the current situation. That's how I get a handle on how much a particular developer knows about the codebase. It's also a clue about how much of the programmer's ego is tied up in what he's telling me.</p> <p>Hate isn't the only dimension of figuring out how much people know, but I've found it to be a pretty good one. The things that they hate also give me a clue how well they are thinking about the subject.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282342#282342 64 Answer by Tony the Pony for What are five things you hate about your favorite language? Tony the Pony 2008-11-11T22:21:00Z 2008-11-11T22:21:00Z <p>C# / .NET:</p> <ul> <li>Classes should be sealed by default</li> <li>There should be no <code>lock</code> statement - instead, you should have specific locking objects, and there should be methods such as <code>Acquire</code> which return disposable lock tokens. Corollary: there shouldn't be a monitor for every object.</li> <li><code>GetHashCode()</code> and <code>Equals()</code> shouldn't be in <code>System.Object</code> - not everything's suitable for hashing. Instead, have an <code>IdentityComparer</code> which does the same thing, and keep the <code>IComparer&lt;T&gt;</code>, <code>IComparable&lt;T&gt;</code>, <code>IEqualityComparer&lt;T&gt;</code> and <code>IEquatable&lt;T&gt;</code> interfaces for custom comparisons.</li> <li>Poor support for immutability</li> <li>Poor way of discovering extension methods - it should be a much more conscious decision than just the fact that I'm using a namespace.</li> </ul> <p>Those were off the top of my head - ask me tomorrow and I'll come up with a different 5 :)</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282356#282356 3 Answer by zmf for What are five things you hate about your favorite language? zmf 2008-11-11T22:24:56Z 2009-01-06T22:18:52Z <p>My language du jour is Java. Here is what I hate about it:</p> <p>5.) Lack of pointers<br /> 4.) Exception catching<br /> 3.) The Boolean type<br /> 2.) BigDecimal type<br /> 1.) C# fanboys and Java fanboys </p> <p><code>Boolean</code> can be null. I find this counterintuitive. </p> <p><code>BigDecimal</code> is a library and not a language feature. My annoyance with <code>BigDecimal</code> and <code>Exception</code> catching stems mainly from writing test classes that have to jump through a bunch of hoops to get actual work done. I should clarify I'm annoyed by these things, I'm not about to lobby for changes.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282359#282359 25 Answer by grieve for What are five things you hate about your favorite language? grieve 2008-11-11T22:26:42Z 2008-11-11T22:26:42Z <p><strong>C++</strong></p> <ol> <li>Template Syntax</li> <li>Diamond Inheritance issues</li> <li>The plethora/lack of standard libraries that modern languages have (though boost comes close).</li> <li>IOStreams</li> <li>The syntax used around IOStreams</li> </ol> <p><strong>Python</strong></p> <ol> <li>Spaces are meaningful (sometimes)</li> <li>underscored keywords</li> <li>Limited thread support (at least currently)</li> <li>"self" instead of "this"</li> <li>Spaces are meaningful (sometimes)</li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282360#282360 6 Answer by Claudiu for What are five things you hate about your favorite language? Claudiu 2008-11-11T22:26:52Z 2008-11-12T08:09:00Z <p>Python:</p> <ul> <li>Too slow!</li> <li>list operations don't return the list, so you can't do list.append(4).append(5). (I mean a reference to the same list, not a copy). This is a minor gripe; it's only come up a few times.</li> <li>statements don't return values (if, print, while, for, etc). This is only a problem when dealing with lambdas. </li> <li>lambdas can only be one expression. There's no real need for this restriction, as they are equivalent to functions in every other way. What if I want a button press event which calls two functions? I'd need to create a named function to supply that functionality to an action listener, while doing "lambda: f1(); f2()" would not hurt.</li> <li>you can only put standard a-zA-Z_0-9 as names. Having functions like "true?" and "+" would be great. Of course, this could lead to terrible obfuscation, but I'm not saying we immediately rename all functions to "p@$%3". Which do you find clearer to read: "dec2bin" or "dec->bin"? ("store_results" or "storeResults") or "store-results"? </li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282361#282361 26 Answer by Michael Burr for What are five things you hate about your favorite language? Michael Burr 2008-11-11T22:27:42Z 2008-11-11T22:27:42Z <p>C</p> <ul> <li>string manipulation. </li> </ul> <p>Having to deal manually with the string buffers is an error-prone pain. Since so much computing is really moving and modifying strings (computers aren't used quite as much for big number-crunching stuff as people thought they'd be way back when), it's really nice to be able to use managed languages or C++'s string objects to deal with these. When I have to do it in straight C, it feels like swimming in quicksand.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282365#282365 30 Answer by Don for What are five things you hate about your favorite language? Don 2008-11-11T22:31:21Z 2009-01-12T00:13:44Z <p>Java</p> <ul> <li>Generics type erasure (i.e. no reified generics)</li> <li>Inability to catch multiple exceptions (of different types) in a single catch block</li> <li>Lack of destructors (finalize() is a very poor substitute)</li> <li>No support for closures or treating functions as data (anonymous inner classes are a very verbose substitute)</li> <li>Checked exceptions in general, or more specifically, making unrecoverable exceptions checked (e.g. SQLException)</li> <li>No language-level support for literal collections</li> <li>No type-inference when constructors of generic classes are called, i.e. the type parameter(s) must be repeated on both sides of the '='</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282366#282366 21 Answer by Greg Hewgill for What are five things you hate about your favorite language? Greg Hewgill 2008-11-11T22:31:35Z 2008-11-11T22:45:44Z <p>Python:</p> <ul> <li>Lack of static typing</li> <li>Default argument handling (specifically the fact that you can <a href="http://stackoverflow.com/questions/146329/what-is-the-worst-gotcha-youve-experienced#147877"><em>change</em> the default argument</a> for future callers!)</li> <li>Too many required underscores (constructors must be called <code>__init__</code>)</li> <li>Lack of proper private members and functions (convention just says that most things that start with underscore are private, except for all the stuff like <code>__getattr__</code> that isn't)</li> <li>Funny syntax for <code>print</code>ing to a file (but they're fixing that in Python 3)</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282371#282371 8 Answer by okoman for What are five things you hate about your favorite language? okoman 2008-11-11T22:32:36Z 2008-12-05T17:53:34Z <p>PHP:</p> <ul> <li>One can never be sure that certain <em>almost common</em> extensions are available on all webservers.</li> <li>tries to be everything in future ( goto, closures, ... )</li> <li>many security risks for unexperienced users</li> <li>more operator overloading would be nice</li> <li>all the poor programmers that don't learn how to make it work properly, and give it a bad name</li> </ul> <p>Nevertheless PHP is <em>the</em> (scripting) language. ;-)</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282376#282376 2 Answer by Uri for What are five things you hate about your favorite language? Uri 2008-11-11T22:35:19Z 2008-11-11T22:35:19Z <p>I use Java, and my biggest beef is the inefficiency of string operations. when you use the + operator. Seriously, can't the compiler figure out how many strings I'm adding and then generate the StringBuffer stuff in the background for me? </p> <p>Often code that uses + is more readable than a sequence of StringBuffers operations.</p> <p>Also, I hate the redundancy between native arrays and the collection framework. The syntax for .toArray() is extremely ugly. </p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282382#282382 16 Answer by Bill the Lizard for What are five things you hate about your favorite language? Bill the Lizard 2008-11-11T22:38:47Z 2008-11-11T23:18:40Z <p>C</p> <ul> <li>Socket syntax. <li>No function overloading. <li>C-style strings. <li>Buffer overruns. <li>Cryptic syntax. I don't know how many times I've looked up stuff like atoi, slapped my forehead, and shouted "Of course!" </ul> <p>EDIT: Okay, I could probably come up with more if I resorted to more library code (like I did with sockets, but those are particularly bad), but I already felt like I was cheating for picking on C. So many languages exist only to take the good parts of C and replace the bad that it's kind of like beating a dead horse.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282383#282383 42 Answer by Ryan Delucchi for What are five things you hate about your favorite language? Ryan Delucchi 2008-11-11T22:38:59Z 2008-11-11T22:38:59Z <p>Five things I hate about Java (which presently my favorite language) in no particular order.</p> <ol> <li>As much as I am a fan of Java Generics, there are a lot of oddities that arise from the way it was designed. As such there a myriad of annoying limitations with generics (some of which are the result of type-erasure).</li> <li>The way Object.clone() and the Cloneable interfaces work is totally broken.</li> <li>Instead of taking the high-road and making everything an object (a.la. SmallTalk), Sun wimped out created two distinct categories of data-types: Objects and primitives. As a result there are now <em>two</em> representations for fundamental data types and wierd curiosities such as boxing/unboxing and not being able to put primitives in a Collection.</li> <li>Swing is too complex. Don't get me wrong: there's a lot of cool stuff one can do with Swing but it is a great example of over-engineering.</li> <li>This final complaint is equally the fault of Sun and those whom have written XML libraries for Java. Java XML libraries are way too complicated. In order to simply read in an XML file, I often have to worry about what parser I am using: DOM or SAX? The APIs for each is equally confusing. Native support in the language for <strong>easily</strong> parsing/writing XML would be very nice.</li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282388#282388 4 Answer by Ken Gentle for What are five things you hate about your favorite language? Ken Gentle 2008-11-11T22:40:53Z 2008-11-11T22:40:53Z <p>Groovy/Grails</p> <ol> <li>Duck-Typing</li> <li>Convention over Configuration, assuming you know the Convention</li> <li>Everything you hate about Spring</li> <li>Everything you hate about Hibernate</li> <li>[Groovy] common operations across collections aren't (but recent releases improve this)</li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282392#282392 41 Answer by Chris Jefferson for What are five things you hate about your favorite language? Chris Jefferson 2008-11-11T22:41:21Z 2008-11-12T00:26:24Z <p>C++</p> <ul> <li>Far too easy to randomly corrupt memory and create almost impossible-to-find bugs (although, valgrind goes a long way towards fixing this).</li> <li>Template error messages.</li> <li>When using templates it's easy to end up having to include everything in one file, and then get stupid compile times.</li> <li>Standard library is a joke in the modern age (still no threads or network by default?)</li> <li>Lots of nasty little bits of C poking through (in particular, all the conversions between short/int/unsigned/etc..)</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282394#282394 287 Answer by MusiGenesis for What are five things you hate about your favorite language? MusiGenesis 2008-11-11T22:43:29Z 2009-08-12T15:16:00Z <p><strong>English</strong>:</p> <ul> <li>Inconsistent spelling</li> <li>Multiple-use tokens ("She's said 'Bob's Bob's "own worst enemy."'", e.g.)</li> <li>Swear words are kinda worn out</li> <li>Lack of non-gender-specific pronouns ("he/she", "they" or "it" are the only choices)</li> <li>Shared with Canada et.al.</li> </ul> <p>Add more in the comments if you've got 'em.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282395#282395 10 Answer by Gamecat for What are five things you hate about your favorite language? Gamecat 2008-11-11T22:44:07Z 2008-11-11T22:44:07Z <p>Delphi:</p> <ul> <li>IDE is a bit unstable.</li> <li>Code insight is sometimes confused.</li> <li>Debugging is sometimes buggy.</li> <li>Updating several project files can be cumbersome.</li> <li>If starting up when one or more packages are unavailable, the error message is popped several times.</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282408#282408 7 Answer by Stephan Eggermont for What are five things you hate about your favorite language? Stephan Eggermont 2008-11-11T22:48:39Z 2008-11-11T22:48:39Z <p>Smalltalk</p> <ul> <li>I don't want to develop in java, delphi, c#, or ruby anymore (which is impractical as the main development languages in my company are c#, delphi and java).</li> <li>Left-to-right evaluation.</li> <li>Has a class comment but no method comment (at least in Squeak)</li> <li>No real standard library, lots of differences in details</li> <li>Lack of namespaces</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282415#282415 12 Answer by David Thornley for What are five things you hate about your favorite language? David Thornley 2008-11-11T22:50:52Z 2008-11-11T22:50:52Z <p>Common Lisp:</p> <ol> <li>Keywords are often too wordy.</li> <li>Library support is pitiful.</li> <li>Doesn't work well in OSes that want to handle memory more strictly.</li> <li>Doesn't have good facilities for interacting with the OS.</li> <li>The "loop" facility is not well defined, and sure doesn't look Lispy.</li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282420#282420 0 Answer by Marty for What are five things you hate about your favorite language? Marty 2008-11-11T22:52:34Z 2008-11-11T22:52:34Z <p>Python: Array part-selection doesn't give you what you asked for. </p> <p>a[1] gives you one element<br /> a[1:2] gives you one element, not [ a[1], a[2] ]<br /> a[1:3] gives 2 elements </p> <p>I hate that, but maybe that's just because I mostly work in Verilog. </p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282436#282436 24 Answer by I GIVE TERRIBLE ADVICE for What are five things you hate about your favorite language? I GIVE TERRIBLE ADVICE 2008-11-11T23:02:02Z 2008-11-11T23:14:45Z <p>I'll do PHP as I like it at times and python will be done way too much.</p> <ul> <li><p>No namespace; everything is in a kind of very big namespace which is hell in bigger environments</p></li> <li><p>Lack of standards when it comes to functions: array functions take a needle as a first argument, haystack as second (see <a href="http://ca3.php.net/manual/en/function.array-search.php" rel="nofollow">array_search</a>). String functions often take the haystack first, needle second (see <a href="http://ca3.php.net/manual/en/function.strpos.php" rel="nofollow">strpos</a>). Other functions just use different naming schemes: <a href="http://ca3.php.net/manual/en/function.bin2hex.php" rel="nofollow">bin2hex</a>, <a href="http://ca3.php.net/manual/en/function.strtolower.php" rel="nofollow">strtolower</a>, <a href="http://ca3.php.net/manual/en/function.cal-to-jd.php" rel="nofollow">cal_to_jd</a> </p> <p>Some functions have weird return values, out of what is normal: This forces you to have a third variable declared out of nowhere while PHP could efficiently interpret an empty array as false with its type juggling. There are near no other functions doing the same.</p> <pre><code>$var = preg_match_all('/regexp/', $str, $ret); echo $var; //outputs the number of matches print_r($ret); //outputs the matches as an array </code></pre></li> <li><p>The language (until PHP6) does its best to respect a near-retarded backward compatibility, making it carry bad practices and functions around when not needed (see <a href="http://ca3.php.net/manual/en/function.mysql-escape-string.php" rel="nofollow">mysql_escape_string</a> vs. <a href="http://ca3.php.net/manual/en/function.mysql-real-escape-string.php" rel="nofollow">mysql_real_escape_string</a>).</p></li> <li><p>The language evolved from a templating language to a full-backend one. This means anybody can output anything when they want, and it gets abused. You end up with template engines for a templating language...</p></li> <li><p>It sucks at importing files. You have 4 different ways to do it (include, include_once, require, require_once), they are all slow, very slow. In fact the whole language is slow. At least, pretty slower than python (even with a framework) and RoR from what I gather.</p></li> </ul> <p>I still like PHP, though. It's the chainsaw of web development: you want a small to medium site done real fast and be sure anybody can host it (although configs may differ)? PHP is right there, and it's so ubiquitous it takes only 5 minutes to install a full LAMP or WAMP stack. Well, I'm going back to working with python now...</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282439#282439 5 Answer by Lance Roberts for What are five things you hate about your favorite language? Lance Roberts 2008-11-11T23:03:05Z 2008-11-11T23:03:05Z <p>VBA (including MS Office IDE):</p> <p>1) Poor Documentation<br /> 2) Poor Error Messages<br /> 3) Inadequate Array Manipulation Routines<br /> 4) Having to repeat types for DIM statements<br /> 5) Won't print in color (have to buy 3rd party addin) </p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282445#282445 3 Answer by staticsan for What are five things you hate about your favorite language? staticsan 2008-11-11T23:04:27Z 2008-11-11T23:04:27Z <p>I have a book exploring all sorts of projects in <a href="http://en.wikipedia.org/wiki/SNOBOL" rel="nofollow">SNOBOL</a>. The first chapter explores the history and culture around SNOBOL programming and language and spends some time making the argument that a good programmer likes a language not because of its flaws but in <em>in spite</em> of them. </p> <p>My favourite language is <a href="http://en.wikipedia.org/wiki/Icon_programming_language" rel="nofollow">Icon</a>/<a href="http://unicon.sourceforge.net/" rel="nofollow">Unicon</a>. But there are still things that annoy me about it:</p> <ol> <li>It's not well known or all that popular.</li> <li>It has a much smaller library compared to PHP, Perl, Java, etc. Database access is done via ODBC, which is actually quite annoying.</li> <li>For all it's otherwise excellentt list handling, I miss PHP's built-in <code>explode()</code> and <code>implode()</code>.</li> <li>It doesn't have a table constant. Lists, yes, tables, no.</li> <li>It is a compiled (actually translated) language.</li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282505#282505 28 Answer by Myrddin Emrys for What are five things you hate about your favorite language? Myrddin Emrys 2008-11-11T23:29:13Z 2008-12-10T04:48:30Z <p>Ruby has many flaws related to its speed, but I don't hate those. It also has flaws with the community evangelism going overboard, but that doesn't really bother me. These are what I hate:</p> <ul> <li>Closures (blocks) have 4 different creation syntaxes, and none of them are optimal. The elegant syntax is incomplete and ambiguous with hashes, and the full syntax is ugly.</li> <li>The community tends to be against real documentation, favoring 'read the code'. I find this childish and lazy.</li> <li>Metaprogramming abuse, particularly in libraries, makes bugs a nightmare to track down.</li> <li>On a related note, pervasive metaprogramming makes a comprehensive IDE difficult, if not impossible, to make.</li> <li><p>The way block passing to functions is done is silly. There is no reason blocks should be passed outside the parameter list, or have odd special syntax to access (yield). I am of the opinion that blocks should have been given a less ambiguous syntax (or hashes could have used different delimiters; perhaps &lt;> rather than {}), and passing as parameters to methods should have been just like all other parameters.</p> <pre><code>object.method(1, {|a| a.bar}, "blah") </code></pre> <p>These oddities, like the block must be the last parameter passed and passing more than one block is different with longer syntax, really annoy me.</p></li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282524#282524 4 Answer by Jeremy Reagan for What are five things you hate about your favorite language? Jeremy Reagan 2008-11-11T23:34:47Z 2008-11-11T23:34:47Z <p>Coldfusion</p> <ol> <li>Compile Time for large Flash Forms.</li> <li>Dynamic Variable Types (Sometimes I hate them.)</li> <li>Lack of features in CFScript.</li> <li>CFTable (Can never get it to display right).</li> <li>The lack of chart types left out of CFChart.</li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282542#282542 23 Answer by BoltBait for What are five things you hate about your favorite language? BoltBait 2008-11-11T23:44:18Z 2008-11-11T23:44:18Z <p><strong>Javascript</strong></p> <ol> <li>numbers as strings - Math can be frustrating when numbers are intpreted as strings. 5 + 2 = 52? Grrr...</li> <li>permissions - all the best stuff requires permission from the user!</li> <li>screen updates - The browser must be in the steady state to update the screen. There doesn't seem to be a way to force the screen to update in the middle of a script.</li> <li>Slow - although Google's Chrome is nice...</li> <li>Browser differences make using the language a [censored].</li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282574#282574 42 Answer by too much php for What are five things you hate about your favorite language? too much php 2008-11-11T23:59:12Z 2008-11-11T23:59:12Z <p>PHP:</p> <p>1) Forces me to make unnecessary variables:</p> <pre><code>$parts = explode('|', $string); $first = $parts[0]; </code></pre> <p>2) An implementation of lambdas so lame it is roughly equivalent to using eval() and so hidiously wrong I have never used it (see www.php.net/create_function).</p> <p>3) A try/catch system which can only catch about 80% of errors that might occur.</p> <p>4) Regex support just as lame as lambda support because it has to be written inside regular strings, making one of the most hard-to-learn programming tools about three times as difficult. And PHP is supposed to be an "easy" language?!?!?</p> <p>5) No way to safely pull stuff out of $_POST without writing it twice or building your own function, or using the '@' operator:</p> <pre><code>$x = isset($_POST['foo']['bar']) ? $_POST['foo']['bar'] : null; </code></pre> <p>6) Bonus answer: '@'. If you can't be bothered writing your code correctly, just add '@', and too bad for anyone who has to debug your code later.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282618#282618 69 Answer by jTresidder for What are five things you hate about your favorite language? jTresidder 2008-11-12T00:26:19Z 2008-11-12T00:26:19Z <p><strong>Javascript</strong>:</p> <ol> <li><p>It's fugly</p></li> <li><p>All the coolest things are insanely complex, but then, all the coolness is also wrapped up in such a small amount of code that you feel stupid for struggling to follow it</p></li> <li><p>'+' is an absurd choice of operator for concatenation in a weakly-typed language. Were they <em>trying</em> to scare off the noobs?</p></li> <li><p>It's a cross-browser compatibility minefield (never mind if it's even turned on or not)</p></li> <li><p>It's generally untrusted - associated with scummery such as blocking the back button, pop-ups that never die, etc.</p></li> <li><p>Did I mention that it's fugly?</p></li> </ol> <p>If it wasn't for jQuery, I'd probably still hate it as much as I used to :)</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282686#282686 29 Answer by Brad Gilbert for What are five things you hate about your favorite language? Brad Gilbert 2008-11-12T01:10:28Z 2009-05-06T17:56:36Z <h2>Perl</h2> <ul> <li><p>Mixed use of sigils</p> <pre><code>my @array = ( 1, 2, 3 ); my $array = [ 4, 5, 6 ]; my $one = $array[0]; # not @array[0], you would get the length instead my $four = $array-&gt;[0]; # definitely not $array[0] my( $three, $four ) = @array[1,2]; my( $five, $six ) = @$array[1,2]; # coerce to array first my $length_a = @array; my $length_s = @$array; my $ref_a = \@array; my $ref_s = $array; </code></pre> <ul> <li><p>For example <strong>none</strong> of these are the same:</p> <pre><code>$array[0] # First element of @array @array[0] # Slice of only the First element of @array %array[0] # Syntax error $array-&gt;[0] # First element of an array referenced by $array @array-&gt;[0] # Deprecated first element of @array %array-&gt;[0] # Invalid reference $array{0} # Element of %array referenced by string '0' @array{0} # Slice of only one element of %array referenced by string '0' %array{0} # Syntax error $array-&gt;{0} # Element of a hash referenced by $array @array-&gt;{0} # Invalid reference %array-&gt;{0} # Deprecated Element of %array referenced by string '0' </code></pre></li> </ul> <p>In <code>Perl6</code> it is <a href="http://dev.perl.org/perl6/doc/design/syn/S09.html" rel="nofollow">written</a>:</p> <pre><code>my @array = ( 1, 2, 3 ); my $array = [ 4, 5, 6 ]; my $one = @array[0]; my $four = $array[0]; # $array.[0] my( $three, $four ) = @array[1,2]; my( $five, $six ) = $array[1,2]; my $length_a = @array.length; my $length_s = $array.length; my $ref_a = @array; my $ref_s = $array; </code></pre></li> <li><p>Lack of true OO</p> <pre><code>package my_object; # fake constructor sub new{ bless {}, $_[0] } # fake properties/attributes sub var_a{ my $self = shift @_; $self-&gt;{'var_a'} = $_[0] if @_; $self-&gt;{'var_a'} } </code></pre> <p>In <code>Perl6</code> it is <a href="http://dev.perl.org/perl6/doc/design/syn/S12.html" rel="nofollow">written</a>:</p> <pre><code>class Dog is Mammal { has $.name = "fido"; has $.tail is rw; has @.legs; has $!brain; method doit ($a, $b, $c) { ... } ... } </code></pre></li> <li><p>Poorly designed regex features</p> <pre><code>/(?=regexp)/; # look ahead /(?&lt;=fixed-regexp)/; # look behind /(?!regexp)/; # negative look ahead /(?&lt;!fixed-regexp)/; # negative look behind /(?&gt;regexp)/; # independent sub expression /(capture)/; # simple capture /(?:don't capture)/; # non-capturing group /(?&lt;name&gt;regexp)/; # named capture /[A-Z]/; # character class /[^A-Z]/; # inverted character class # '-' would have to be the first or last element in # the character class to include it in the match # without escaping it /(?(condition)yes-regexp)/; /(?(condition)yes-regexp|no-regexp)/; /\b\s*\b/; # almost matches Perl6's &lt;ws&gt; /(?{ print "hi\n" })/; # run perl code </code></pre> <p>In <code>Perl6</code> it is <a href="http://dev.perl.org/perl6/doc/design/syn/S05.html" rel="nofollow">written</a>:</p> <pre><code>/ &lt;?before pattern&gt; /; # lookahead / &lt;?after pattern&gt; /; # lookbehind / regexp :: pattern /; # backtracking control / ( capture ) /; # simple capture / $&lt;name&gt;=[ regexp ] /; # named capture / [ don't capture ] /; # non-capturing group / &lt;[A..Z]&gt; /; # character class / &lt;-[A..Z]&gt; /; # inverted character class # you don't generally use '.' in a character class anyway / &lt;ws&gt; /; # Smart whitespace match / { say 'hi' } /; # run perl code </code></pre></li> <li><p>Lack of multiple dispatch</p> <pre><code>sub f( int $i ){ ... } # err sub f( float $i ){ ... } # err sub f($){ ... } # occasionally useful </code></pre> <p>In <code>Perl6</code> it is <a href="http://dev.perl.org/perl6/doc/design/syn/S06.html" rel="nofollow">written</a>:</p> <pre><code>multi sub f( int $i ){ ... } multi sub f( num $i ){ ... } multi sub f( $i where $i == 0 ){ ... } multi sub f( $i ){ ... } # everything else </code></pre></li> <li><p>Poor Operator overloading</p> <pre><code>package my_object; use overload '+' =&gt; \&amp;add, ... ; </code></pre> <p>In <code>Perl6</code> it is <a href="http://dev.perl.org/perl6/doc/design/syn/S13.html" rel="nofollow">written</a>:</p> <p><pre><code>multi sub infix:&lt;+&gt; (Us $us, Them $them) | (Them $them, Us $us) { ... } </code></pre></li> </ul></p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282693#282693 1 Answer by pheze for What are five things you hate about your favorite language? pheze 2008-11-12T01:14:31Z 2008-11-12T01:14:31Z <p>C++</p> <ol> <li>It takes so much time to make a simple snippet of code.</li> <li>for(std::vector::const_iterator iter = [...]</li> <li>vector.remove() doesn't remove.</li> <li>vector.push_front() doesn't exist.</li> <li>header files</li> <li>No lambda</li> <li>No automatic empty virtual destructor if there is at least one virtual function. </li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282714#282714 6 Answer by wnoise for What are five things you hate about your favorite language? wnoise 2008-11-12T01:25:07Z 2008-11-12T01:25:07Z <p>Haskell:</p> <ol> <li>Space leaks from lazy evaluation.</li> <li>Numeric Hierarchy not constructed with regard to mathematical abstractions.</li> <li>Strict monadic IO can make it harder to debug.</li> <li>The big implementations handle I/O in ways that don't seem quite compatible with the standard. (In particular, outputting characters only outputs the low 8 bits -- and then code gets built that uses this assumption to do binary I/O. Ick.)</li> <li>Associativity of ($) operator could be changed to make some expressions prettier.</li> </ol> <p>Most of these don't rise to the level of hate, and there are people trying to fix or construct solid workarounds for each of these.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282879#282879 18 Answer by Kendall Helmstetter Gelner for What are five things you hate about your favorite language? Kendall Helmstetter Gelner 2008-11-12T03:01:42Z 2008-11-12T03:01:42Z <p>Objective C</p> <p>1) No namespaces, just manual naming conventions - I don't mind the that in terms of class separation, but I do miss being able to import all class definitions in a namespace in a single line (like import com.me.somelibrary.*).</p> <p>2) Libraries still have some holes in important areas like RegEx support.</p> <p>3) Property syntax is a bit clumsy, requiring three lines (in two separate files) to declare a property.</p> <p>4) I like the retain/release model, but it is easier than it should be to release a reference and then accidentally make use of it later.</p> <p>5) Although not really a language feature, XCode is so intertwined with use of Objective C I can't help thinking about that aspect... basically the autocompletion, is very iffy. It's more like a system that rewards you for finding something you want exists, and then presents it as a choice afterwards. But then I suppose I never have liked autocomplete engines.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282973#282973 9 Answer by Asrrin29 for What are five things you hate about your favorite language? Asrrin29 2008-11-12T03:54:41Z 2008-11-12T03:54:41Z <p>VB6</p> <ol> <li>Windows only.</li> <li>No longer supported.</li> <li>Arrays can start at any number, rather then all being normalized to 0.</li> <li>compiled applications depends on many dll's to run properly.</li> <li>Many complicated controls like a browser control or complicated pieces of code tend to break the IDE when you run code uncompiled, but work just fine when compiled.</li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/283186#283186 2 Answer by Malkocoglu for What are five things you hate about your favorite language? Malkocoglu 2008-11-12T06:41:12Z 2008-11-12T06:41:12Z <p>C/C++</p> <ol> <li>Lack of integral SWAP functionality</li> <li>Template Syntax</li> <li>You can not #define a #define (no multi-pass)</li> <li>Structure packing incompatibilities between compilers</li> <li>char is signed or unsigned ?</li> </ol> <p>Java</p> <ol> <li>Immutability on the edge</li> <li>No ref keyword like C#</li> <li>try/catch blocks everywhere</li> <li>Poor runtime performance</li> <li>All string related stuff</li> </ol> <p>Python</p> <ol> <li>No "main" (I'm used to it !)</li> <li>underscored keywords</li> <li>Limited thread support</li> <li>"self" instead of "this"</li> <li>Lack of C/C++ like syntax</li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/283364#283364 1 Answer by Enrico Campidoglio for What are five things you hate about your favorite language? Enrico Campidoglio 2008-11-12T08:54:43Z 2008-11-12T08:54:43Z <p>C#</p> <ul> <li>Generic parameters are invariant</li> <li>Overridable class members must explicitly be marked as <em>virtual</em></li> </ul> <p>Java</p> <ul> <li>Missing unsigned numeric data types</li> <li>Primitive data types aren't objects</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/285891#285891 12 Answer by Orion Edwards for What are five things you hate about your favorite language? Orion Edwards 2008-11-13T00:09:46Z 2008-11-13T00:09:46Z <p>Ruby is my favourite language, here's what I don't like:</p> <ul> <li>Green threads + blocking C libraries = giant fail</li> <li>SO PAINFULLY SLOW</li> <li>The standard library itself is inconsistent with it's use of bang! methods</li> <li>Module include + extend is messy.</li> <li>"Open Classes" can't be scoped - I want to add a String#dostuff, but I don't want that to leak into all the third party libraries</li> <li>No binary deployment packaging solution.</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/286856#286856 7 Answer by StingyJack for What are five things you hate about your favorite language? StingyJack 2008-11-13T13:00:22Z 2008-11-14T15:00:46Z <p>VB.NET</p> <ul> <li>The behavior AndAlso / OrElse and And / Or seems backwards. Perhaps they should be switched.</li> <li>When can only be used for exception catching. The ability to do a When conditional would be nice for some other things. </li> <li>There is no friggin Refactoring in the VS IDE (not really the language's fault) like there is with c#</li> <li>"Not Is Nothing". Yes, this has been remedied by IsNot, but for some reason I see the Not Is being used too often. (I see it much more frequently with devs who speak english as a second language, does it make better sense from that angle?)</li> <li>It doesn't require the () on ToString() and most functions. (Leads to sloppy coding habits)</li> <li>Having to do " _ " when breaking a line.</li> <li>It allows optional parameters. (Leads to sloppy coding habits)</li> <li>declaring an array is done by UpperBound and not by capacity. "Dim arr(2) as String" will actually hold 3 elements. </li> </ul> <p>EDIT: One more I just realized while debugging - Having "=" be a comparison and assignment. </p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/286919#286919 82 Answer by Jeremiah Peschka for What are five things you hate about your favorite language? Jeremiah Peschka 2008-11-13T13:38:32Z 2008-11-13T13:38:32Z <p>Wow, I'm surprised that SQL hasn't made it up here yet. Guess that means nobody loves it :)</p> <ul> <li>Inconsistent syntax across implementations</li> <li>Subtle code differences can have massive performance ramifications for seemingly obscure reasons</li> <li>Poor support for text manipulation</li> <li>Easy cost of entry but steep learning curve towards mastering the language</li> <li>Minimal standardization across the community for best practices, this includes syntax style.</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/287094#287094 10 Answer by mabwi for What are five things you hate about your favorite language? mabwi 2008-11-13T14:37:57Z 2008-11-13T14:37:57Z <p><strong>PHP</strong></p> <ol> <li>No debugging features if you don't control the server, and even then they kinda suck</li> <li>The extreme amount of bad PHP code floating around gives all PHP programmers a bad name</li> <li>Inconsistent function naming</li> <li>Inability to have a static typed variable if I want one (I'm a big fan of dynamic typing 90% of the time)</li> <li>REGISTER_GLOBALS is the devil</li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/288826#288826 2 Answer by osiire for What are five things you hate about your favorite language? osiire 2008-11-14T00:00:49Z 2008-11-14T00:00:49Z <p>Objective Caml</p> <ol> <li>Lack of namespace facilicty.</li> <li>Wordy class and object nortation.</li> <li>Complex build system.</li> <li>Inconvenient to make infix.</li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/288870#288870 1 Answer by orip for What are five things you hate about your favorite language? orip 2008-11-14T00:24:12Z 2008-11-14T00:24:12Z <p>Python:</p> <ul> <li>speed</li> <li>static analysis (lack of)</li> <li>anonymous functions limited to one expression</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/288876#288876 1 Answer by MattK311 for What are five things you hate about your favorite language? MattK311 2008-11-14T00:29:15Z 2008-11-14T00:29:15Z <p>VB.NET</p> <p>1) If Not x Is "foo" (instead of &lt;> "foo")<br /> 2) "OrElse" and "AndAlso" short circuit (instead of simply "Or" and "And", which act differently)<br /> 3) Nothing (instead of Null)</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/288931#288931 4 Answer by utku_karatas for What are five things you hate about your favorite language? utku_karatas 2008-11-14T00:59:57Z 2008-11-14T00:59:57Z <p>Delphi (aka Object Pascal), I'll talk about the native version, not .NET.</p> <ul> <li>Var blocks!</li> <li>Interfaces in the language are designed with COM usage in mind - thus more complex than say in C# or Java. ie. Reference counting involved unless you disable it explicitly.</li> <li>No <code>try except finally end;</code></li> <li><p>Object creation too explicit:</p> <pre><code>var obj: TMyObject; ... obj := TMyObject.Create; try ... finally obj.Free; end; </code></pre></li> </ul> <p>Instead something like </p> <pre><code>auto obj: TMyObject; // compiler adds the default constructor call and the destructor call in a try/finally block. </code></pre> <ul> <li>OK, the language is so good I can't really think of any more so I'm pushing myself here: Builtin types such as string, integer.. or enums would better have methods. ie. <code>i.ToString</code> instead of <code>IntToStr(i)</code>.</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/288951#288951 1 Answer by Joshua Swink for What are five things you hate about your favorite language? Joshua Swink 2008-11-14T01:13:38Z 2008-11-14T01:13:38Z <p>Ruby:</p> <ul> <li>Significant whitespace. For the interpreter, end of line = end of statement, unless it looks like the statement ought to continue (or you explicitly escape the newline).</li> <li>Slow</li> <li>Online documentation not as good as Python's (in defense, Python's is excellent)</li> <li>Did I mention slow?</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/289364#289364 2 Answer by Adam K. Johnson for What are five things you hate about your favorite language? Adam K. Johnson 2008-11-14T06:27:52Z 2008-11-14T06:27:52Z <p>Python:</p> <ol> <li>Global Interpreter Lock - Dealing with this complicates parallel processing.</li> <li>Lambdas functions are a bit clunky.</li> <li>No built-in ordered-dictionary type.</li> <li>Depending on how Python is compiled, it can use either UCS-2 vs UCS-4 for the internal Unicode encoding, many string operators and iterators may have unexpected results for multi-byte characters that exceed the default width. String slicing and iteration depend on the bit width rather than checking and counting characters. (Most other programming languages do similar things as well and have similarly odd behavior with these characters.)</li> <li>There are inconsistencies surrounding GUI frameworks for Python.</li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/291346#291346 4 Answer by dragonjujo for What are five things you hate about your favorite language? dragonjujo 2008-11-14T20:45:55Z 2008-11-14T20:45:55Z <p>Python</p> <ul> <li>Errors/Exceptions are vague when debugging</li> <li>I don't use it at work</li> <li>using __init__, __repr__, __str__, etc in classes </li> <li>Can't simply compile an executable (.exe or otherwise)</li> <li>Some other thing that I haven't tried doing yet, but I'm sure will bug me</li> </ul> <p>And to all those C-ish language programmers, self makes more sense to me than this, because the object is referring to its self</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/292306#292306 1 Answer by jmuk for What are five things you hate about your favorite language? jmuk 2008-11-15T08:18:54Z 2008-11-15T08:18:54Z <p>Ruby</p> <ol> <li>No type inference</li> <li>Methods/functions are not first-class objects</li> <li>Scope of variables is not lexical although scope of block variables is lexical</li> <li>def inside def</li> <li>the difference between super and super()</li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/292397#292397 11 Answer by peterchen for What are five things you hate about your favorite language? peterchen 2008-11-15T10:35:47Z 2008-11-15T10:35:47Z <p>C++</p> <ul> <li><p><strong>Strings.</strong><br /> They are not interoperable with platform strings, so you end up using std::vector half of the time. The copy policy (copy on write or deep copy) is not defined, so performance guarantees can not be given for straightforward syntax. Sometimes they rely on STL algorithms that are not very intuitive to use. To many libraries roll their own which are unfortunately much more comfortable to use. Unless you have to combine them. </p></li> <li><p><strong>Variety of string representations</strong><br /> Now, this is a little bit of a platform problem - but I still hope it would have been better when a less obstinate standard string class would have been available earlier. The following string representations I use frequently: </p> <ul> <li>generic LPCTSTR, </li> <li>LPC(W)STR allocated by CoTaskMemAlloc, </li> <li>BSTR, _bstr _t</li> <li>(w)string, </li> <li>CString, </li> <li>std::vector</li> <li>a roll-my-own class (<em>sigh</em>) that adds range checking and basic operations to a (w)char * buffer of known length</li> </ul></li> <li><p><strong>Build model.</strong><br /> I am sick to death of all the time spent muddling around with who-includes-what, forward declarations, optimizing precompiled headers and includes to keep at least incremental build times bearable, etc. It was great in the eighties, but now? There are so many hurdles to packing up a piece of code so it can be reused that even moms dog gets bored listening to me.</p></li> <li><p><strong>Hard to parse</strong><br /> This makes external tools especially hard to write, and get right. And today, we C++ guys are lacking mostly in the tool chain. I love my C# reflection and delegates but I can live without them. Without great refactoring, I can't.</p></li> <li><p><strong>Threading is to hard</strong><br /> Language doesn't even recognize it (by now), and the freedoms of the compiler - while great - are to painful.</p></li> <li><p><strong>Static and on-demand initialization</strong> Technically, I cheat here: this is another puzzle piece in the "wrap up code for reuse": It's a nightmare to get something initialized only when it is needed. The best solution to all other redist problems is throwing everything into headers, this problem says "neeener - you cannot".</p></li> </ul> <p><hr /></p> <p>Granted, a lot of that is beyond strict language scope, but IMO the entire toolchain needs to be judged and needs to evolve. </p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/292407#292407 1 Answer by leppie for What are five things you hate about your favorite language? leppie 2008-11-15T10:48:55Z 2008-11-15T10:48:55Z <p>Scheme:</p> <ul> <li>Lack of users/small community</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/313395#313395 1 Answer by Demur Rumed for What are five things you hate about your favorite language? Demur Rumed 2008-11-24T04:12:33Z 2009-09-10T08:45:42Z <p>I feel that a favorite language is impossible to choose. Dynamic typing and static typing can't quite be compared, so I'll just list which of which I use</p> <p>C++:</p> <ul> <li>Template metaprogramming syntax is ugly. An implicit <code>::value</code> would make it much more concise</li> <li><code>-&gt;.</code> Why can't the compiler figure out that I'm doing a <code>ptr.thing</code> and just do <code>-&gt;</code> for me?</li> <li>I hate whitespace. So the whole <code>vector&lt;vector&lt;int&gt;&gt;</code> has to be <code>vector&lt;vector&lt;int&gt; &gt;</code> makes me get the jitters and then I can't focus whenever I see that line of code and I end up trying to figure out a way to use <code>int[][]</code> or something</li> <li>Macros. I personally love the concept of macros. But with C++, I that the system is a hack</li> <li>I'm a hater of <code>;</code></li> </ul> <p>Python:</p> <ul> <li>Strings being immutable. Makes it so I can't just do string[4]="b"</li> <li>Lists being implicitly copied by reference. Which leaks into [[0]<em>width]</em>height issues</li> <li>Lack of tail recursion (I had to rig IDLE to not spit out 1000s of error messages whenever I mistyped a recursive function)</li> <li>Dictionaries keys not accepting lists/dicts</li> <li>Lack of deep scopes. When I do a list comprehension, I don't want the variable in it to affect the outer scope</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/313405#313405 3 Answer by Theran for What are five things you hate about your favorite language? Theran 2008-11-24T04:24:58Z 2008-11-24T04:24:58Z <p>Python:</p> <ul> <li>Slow for number crunching. This wouldn't be much of a problem except it...</li> <li>Doesn't come with an easy way to include C code with your program that automatically gets compiled when imported.</li> <li>We still have to live with stupid integer division rules until py3k takes over.</li> <li>We still have to live with goodies like imap and izip being in a separate module until py3k takes over.</li> <li>We have to do a lot of work before py3k can take over.</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/314450#314450 1 Answer by Mike Dunlavey for What are five things you hate about your favorite language? Mike Dunlavey 2008-11-24T15:18:20Z 2008-11-24T15:18:20Z <p>The lack of a preprocessor in C#.</p> <p>I know they left it out because some folks can abuse it, but I think they threw the baby out with the bathwater. Code generation is regarded as a good thing, and in C++ the preprocessor was my first-line code generator.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/314589#314589 12 Answer by Zarkonnen for What are five things you hate about your favorite language? Zarkonnen 2008-11-24T16:04:07Z 2008-11-24T16:04:07Z <p>Five things I hate about Java:</p> <ul> <li>No first-class functions.</li> <li>No type inference.</li> <li>Lack of sane defaults in eg graphics.</li> <li>NullPointerException not containing more information about what is null.</li> <li>The proliferation of pointlessly "configurable" frameworks/service provider interfaces/factory classes/dependency injection systems. The configurability is almost never used, DRY is violated egregiously, and code quadruples in size and halves in legibility.</li> </ul> <p>I know, I should check out Scala.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/321775#321775 0 Answer by DoctaJonez for What are five things you hate about your favorite language? DoctaJonez 2008-11-26T19:01:34Z 2008-11-26T19:01:34Z <p>C#</p> <p>It's very difficult for me to pull apart my favourite language! Here are mine in no particular order.</p> <ul> <li>You cannot choose when to call the constructor (this()) from an overloaded constructor.</li> <li>You cannot assign to "this"</li> <li>The Goto statement! Why the heck is it in there??? That's so 1960s.</li> <li>Linq to Sql doesn't support inheritance (not C# specific, but it bugs me)</li> <li>Reflection is "too damn slow" (said in the style of James T Kirk).</li> </ul> <p>That's my 5, I'm out!</p> <p><em>Docta</em></p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/321863#321863 6 Answer by J.F. Sebastian for What are five things you hate about your favorite language? J.F. Sebastian 2008-11-26T19:26:10Z 2008-11-26T19:26:10Z <h1>Python</h1> <ul> <li><p>1-3: There is no <em>one obvious</em> choice of packaging/build/documenting system (such as Perl's <code>cpan</code>, <code>POD</code> or Ruby's <code>gem</code>, <code>rake</code>, <code>rdoc</code>). </p></li> <li><p>4: Python 3.0 is incompatible enough to require two source branches (2.x and 3.x) for every single Python project. But Python 3.0 is <em>not</em> incompatible enough to justify it. Most py3k advantages are too subtle.</p></li> <li><p>5: Jython, IronPython, CPython are incompatible.</p></li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/321920#321920 1 Answer by Paul Nathan for What are five things you hate about your favorite language? Paul Nathan 2008-11-26T19:46:32Z 2008-11-26T19:46:32Z <p><strong>C++</strong></p> <ul> <li><p>The inconsistencies in the libraries related to char* and std::string. All C++ libs should take std::strings.</p></li> <li><p>Characters are not bytes with respect to iostream. I do a lot of byte-oriented work. Having a "byte" type and a "character" type would significantly make it simpler. That, too, would permit scaling to Unicode somewhat easier. </p></li> <li><p>Bit operations should be easy on a value. I should be able to access and set the n'th bit of a value without playing AND/OR dancing.</p></li> <li><p>The lack of a standardized interface for GUIs. This is where Microsoft has really been able to position themselves well with C#. A standard interface binding that OS makers provide would go really far for my work. </p></li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/321925#321925 0 Answer by Adam Davis for What are five things you hate about your favorite language? Adam Davis 2008-11-26T19:48:47Z 2008-11-26T19:48:47Z <p>its it's</p> <p>your you're</p> <p>their there they're</p> <p><em>/tongue in cheek</em></p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/321966#321966 3 Answer by kristina for What are five things you hate about your favorite language? kristina 2008-11-26T20:04:12Z 2008-11-26T20:04:12Z <p><strong>JavaScript</strong></p> <ol> <li><p>Function object syntax:</p> <pre><code>f = new Function( "foo", "bar", "return foo+bar;" ); </code></pre> <p>(It takes n arguments, the first n-1 are arguments for the function, then nth is the actual function, in string form. Which is just silly.)</p></li> <li><p>Function arguments can be repeated.</p> <pre><code>f = new Function( "foo", "foo", "return foo;" ); </code></pre> <p>The last repetition is the only one ever used, though:</p> <pre><code>f( "bye", "hi" ) // returns "hi" f( "hi" ) // returns undefined </code></pre></li> <li><p>E4X should just die. My users are always complaining that it doesn't work the way they think it will. Let's face it, when you need a page and a half of psuedocode for a setter, it's time to rethink things.</p></li> <li><p>A standard notion of stdin/stdout/stderr (and files!) would be nice.</p></li> <li><p>null != undefined</p> <p>It's irritating to have to handle them both. Sometimes it's useful, but most languages manage to limp along fine with one.</p></li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/322000#322000 16 Answer by Nathan Long for What are five things you hate about your favorite language? Nathan Long 2008-11-26T20:17:00Z 2009-04-16T21:16:37Z <h2>Spanish</h2> <ol> <li><p><strong>Irregular verbs.</strong> All the common ones are irregular, too. First person of "ir" is "voy"?? That does not follow the "o" "as" "a" "an" "amos" rule at all. </p></li> <li><p><strong>What is up with the subjunctive?</strong> "El que tenga sed" - he who is thirsty, hypothetically speaking. Do we really need to conjugate this differently?</p></li> <li><p><strong>Venezuelans.</strong> How come Venezuelans are always leaving out the s in the middle of words like "mosca?" Come on people, it's right there in the spelling. I thought your language was phonetic.</p></li> <li><p><strong>Vocabulary.</strong> "Peel" and "rind" and "skin" and "husk" and "shell" are all "cascara" to you? Just "the outside part, who cares about the texture or edibility?" Sloppy.</p></li> <li><p><strong>Corazón.</strong> OK, so this is not so much linguistic as cultural. Why do all Spanish songs contain the word "corazón" (heart)? I mean seriously, even in Spanish 1101 I could understand half the song lyrics, because I knew this one word. You've got to come up with some new subject matter. Somebody start translating They Might Be Giants into Spanish - they sing about all kinds of weird stuff.</p></li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/327230#327230 1 Answer by D.Shawley for What are five things you hate about your favorite language? D.Shawley 2008-11-29T05:44:01Z 2008-11-29T05:44:01Z <p>Another vote for C++ here... still my favorite with a few close followers - C and Python. Here's my current hate list in no particular order:</p> <ul> <li>Plethora of integer types inherited from C - way too many problems caused by signed vs. unsigned mistakes</li> <li>Copy constructors and assignment operators - why can't the compiler create one from the other automatically?</li> <li>Variable argument madness - va_list just doesn't work with objects and I'm so sick of problems created with sprintf(), snprintf(), vsnprintf(), and all of their relatives.</li> <li>Template implementation is required to be fully visible at compile time - I'm thinking of the lack of "export" implementations or at least usable ones</li> <li>Lack of support for properties - I want to have a read-only member like "a.x" that can be read publicly and only assigned internally. I really hate the "val=obj.getX()" and "obj.setX(val)". I really want properties with access control and a consistent syntax.</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/339871#339871 2 Answer by Norman Ramsey for What are five things you hate about your favorite language? Norman Ramsey 2008-12-04T08:17:58Z 2008-12-04T08:17:58Z <p><strong>Lua</strong></p> <p>I love programming in Lua, but here's what burns me:</p> <ol> <li>There's no way to write down an API in the language---nothing like a C .h file or Java interface</li> <li>The language has first-class functions but somebody forgot to tell the people who designed the libraries.</li> <li>The syntax for writing a function is way too heavyweight.</li> <li>Syntax is split between statements and expressions.</li> <li>The expression form is impoverished: there's no 'let' form, there's no true conditional expression, ...</li> </ol> <p>Despite all of which I will insist that Lua is fabulously great :-)</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/339916#339916 3 Answer by namin for What are five things you hate about your favorite language? namin 2008-12-04T08:42:50Z 2008-12-04T08:42:50Z <p><strong>F#</strong></p> <ol> <li><p>Type inference is limited. </p> <ol> <li><p>It propagates forward only.</p></li> <li><p>F# won't try to infer an object type based on the methods and properties used: you'll get "lookup of indeterminate object type" errors when it doesn't have a clue.</p></li> </ol></li> <li><p>One cannot mix floats and ints: 1 + 2.3 is a type error.</p></li> <li><p>It's a little awkward to have to create a builder object in order to define a monad or computation expression. In Haskell or Scala, you can define the monad operations directly on the monadic object.</p></li> <li><p>Though the #light syntax is preferred, the indentation rules are sometimes not very intuitive or become cumbersome.</p></li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/344606#344606 3 Answer by skiphoppy for What are five things you hate about your favorite language? skiphoppy 2008-12-05T17:32:47Z 2008-12-05T17:32:47Z <p>Perl 5:</p> <ol> <li>All the really good stuff nowadays seems to require mod_perl, which has low availability everywhere I want to go.</li> <li>Some really incredible functionality can be encapsulated in modules, but what is under the hood is often fragile or frightening: source filters, typeglobs, whatever Moose is doing...</li> <li>DateTime is brilliant but still made some very bad design decisions (<a href="http://marc.info/?l=perl-datetime&amp;m=110451908609630&amp;w=2" rel="nofollow">not returning a stopwatch duration when subtracting two DateTime objects</a>)</li> <li>Dual-lifed modules in core and on CPAN still cause conflicts</li> <li>module authors still put interactive stuff in their module configuration scripts so that they can't be automatically installed</li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/344716#344716 2 Answer by hasen j for What are five things you hate about your favorite language? hasen j 2008-12-05T18:18:36Z 2008-12-22T05:02:32Z <p><strong>Python</strong></p> <ul> <li><code>__init__</code></li> <li>some libraries are awkward, like smtplib</li> <li>'self' has to be in the method declaration !!!</li> <li>(for pre-3.0) somewhat poor unicode support</li> <li>lack of inline try-catch </li> <li>no direct reference to "this"/current module (instead have to use <code>sys.modules[__name__]</code>)</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/347124#347124 17 Answer by Daniel Cassidy for What are five things you hate about your favorite language? Daniel Cassidy 2008-12-07T02:16:16Z 2008-12-07T02:23:07Z <p><strong>JavaScript</strong>:</p> <ul> <li><p>The <code>Object</code> prototype can be modified. Every single object in your program gets new properties, and something probably breaks.</p></li> <li><p>All objects are hash maps, but it's difficult to safely use them as such. In particular, if one of your keys happens to be <code>__proto__</code>, you're in trouble.</p></li> <li><p>No object closure at function reference time. In fact, no object closure at all -- instead, <code>this</code> is set whenever a function is called with object notation or the <code>new</code> operator. Results in much confusion, particularly when creating event callbacks, because <code>this</code> isn't set to what the programmer expects.</p> <ul> <li>Corollary: calling a function <em>without</em> object notation or the <code>new</code> operator results in <code>this</code> being set equal to the global object, resulting in much breakage.</li> </ul></li> <li><p>Addition operator overloaded to also perform string concatenation, despite the two operations being fundamentally different. Results in pain when a value you expect to be a number is in fact a string.</p></li> <li><p><code>==</code> and <code>!=</code> operators perform type coercion. Comparisons between different types involve a list of rules that no mortal can remember in full. This is mitigated by the existence of <code>===</code> and <code>!==</code> operators.</p></li> <li><p>Both <code>null</code> and <code>undefined</code> exist, with subtly different, yet redundant meanings. Why?</p></li> <li><p>Weird syntax for setting up prototype chains.</p></li> <li><p><code>parseInt(s)</code> expects a C-style number, so treats values with leading zeroes as octal, etc. You can at least <code>parseInt(s, 10)</code> but the default behaviour is confusing.</p></li> <li><p>No block scope.</p></li> <li><p>Can declare the same variable more than once.</p></li> <li><p>Can use a variable without declaring it, in which case it's global and probably breaks your program.</p></li> <li><p><code>with { }</code>.</p></li> <li><p><strong>Really</strong> difficult to document with JavaDoc like tools.</p></li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/347134#347134 1 Answer by Tetha for What are five things you hate about your favorite language? Tetha 2008-12-07T02:33:46Z 2009-03-09T21:41:55Z <p>I can add another one for Python:</p> <p>Given a list <code>l = [l1, l2, ..., ln]</code>, then <code>repr(l) = [repr(l1), repr(l2), ..., repr(ln)]</code>, but <code>str(l) != [str(l1), str(l2), ..., str(ln)] (str(l) = repr(l))</code>. This was decided because there <em>could</em> be obscure entries in the list like <code>l = ["foo], [bar,", "],["]</code> and <code>str(l)</code> would return <code>"[foo], [bar, ], []"</code> which "could confuse users". However, this makes <code>str</code> impossible to use for just dumping data, since list kills the "just dump data in a readable format". Augh!</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/347139#347139 3 Answer by Rob Wells for What are five things you hate about your favorite language? Rob Wells 2008-12-07T02:40:21Z 2008-12-11T00:22:03Z <p>Not that I hate my mother tongue but a couple of points that humour me.</p> <p>Spelling! That is, English spelling is revenge for German grammar!</p> <p>Oh, and different sounds for the same spelling! Cough, bough, through, rough, thorough, thought, and hiccough.</p> <p>This is why ghoti spells fish!</p> <ul> <li>gh from rough</li> <li>o from women</li> <li>ti from nation</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/347672#347672 9 Answer by Andreas Grech for What are five things you hate about your favorite language? Andreas Grech 2008-12-07T15:19:00Z 2008-12-07T15:19:00Z <p><strong>JavaScript</strong></p> <ul> <li><p>Every script is executed in a single global 'namespace'...something which you have to look out for when working with scripts from different sources</p></li> <li><p>If a variable is used but hasnt been defined before hand, it is considered a global variable</p></li> <li><p>Browser vendors making up standards as they please, making coding for us developers using such a beautiful language harder than it should be</p></li> <li><p>Case-Sensitivity - considering that there is no decent IDE for developing js with compile-time checking</p></li> <li><p>Workarounds (such as the use of <code>hasOwnProperty</code> method) to perform some, otherwise simple operations.</p></li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/349867#349867 3 Answer by Iain for What are five things you hate about your favorite language? Iain 2008-12-08T15:29:46Z 2008-12-08T15:29:46Z <p>ActionScript / AS3</p> <ul> <li>No abstract classes</li> <li>No private constructors (so singleton is a hack)</li> <li>No typed arrays before FP10</li> <li>Compile/publish time is ludicrously slow in Flash IDE</li> <li>Performance of built in functions (e.g. Math) is slow</li> </ul> <p>Otherwise it's actually a good language - much better than JavaScript, contrary to popular belief, and a million times better than something like PHP.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/354877#354877 3 Answer by Henk for What are five things you hate about your favorite language? Henk 2008-12-10T01:53:22Z 2008-12-10T01:53:22Z <p>Scheme</p> <ul> <li>Lack of static typing</li> <li>No static function overloading (due to the above) leading to long names for field accessors</li> <li>No unified object system</li> <li>Kinda slow</li> <li>Relatively small community</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/373593#373593 1 Answer by Soviut for What are five things you hate about your favorite language? Soviut 2008-12-17T03:40:18Z 2008-12-17T03:40:18Z <p>MEL (Maya Expression Language):</p> <ul> <li><strong>Single dimensions arrays:</strong> Forcing me to manually sync two or more lists, or use delimited strings to simulate more complex data structures. Naturally, they're immutable too.</li> <li><strong>Single threaded and slow:</strong> Causing the entire Maya application to hang while it completes a task. Bonus points for not being able to kill long operations, instead having to close and re-open Maya.</li> <li><strong>Script sourcing paths aren't recursive:</strong> Meaning every directory you want to store scripts in must all be added to the script path.</li> <li><strong>No namespaces:</strong> Forcing the inconsistent use of naming conventions to make sure global procedures don't collide.</li> <li><strong>Modal commands:</strong> Each command is modal, meaning the Create, Modify, and Query operations are all handled by setting flags. This also forced the developers to cause most of the commands to return arrays</li> <li><strong>Inconsistent command style:</strong> Most array commands actually return arrays, but the Tokenize command has to take an array as a reference which it then populates, rather than spitting out an array. This among other inconsistencies.</li> </ul> <p>These and several other reasons are why AutoDesk adopted Python as a secondardy scripting language, which brings up a few other annoying factors:</p> <ul> <li><strong>Not all MEL commands are supported:</strong> Most are, but every now and then you find yourself having to use the mel() function to execute some arbitrary code. What's worse is all the annoying escaping you have to do to it.</li> <li><strong>Inherited the modal command style:</strong> Gotta use the same create=True, query=True, edit=True stuff.</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/385617#385617 2 Answer by Jay Bazuzi for What are five things you hate about your favorite language? Jay Bazuzi 2008-12-22T05:18:42Z 2008-12-22T05:18:42Z <p><strong>.NET</strong> framework (the libraries)</p> <ul> <li>Nested types rarely used (e.g. <code>MessageBoxButton</code> should be <code>MessageBox.Button</code>)</li> <li>Mutable structs (<code>Rect</code>, <code>Point</code>)</li> <li>Too much stuff in <code>System</code> namespace</li> <li>Too many different notions of equality (<code>Object.Equals</code>, <code>Object.ReferenceEquals</code>, <code>operator ==</code>, <code>operator !=</code>, <code>IComparable.CompareTo() == 0</code>)</li> <li>Arrays have mutable members but immutable length.</li> </ul> <p>And one more:</p> <ul> <li>XmlSerialization doesn't work with immutable types</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/385625#385625 9 Answer by Jay Bazuzi for What are five things you hate about your favorite language? Jay Bazuzi 2008-12-22T05:36:30Z 2008-12-22T05:36:30Z <p><strong>C#</strong></p> <ul> <li>I wish I could <code>switch()</code> on any type, and that <code>case</code> could be any expression</li> <li>Can't use object initializer syntax with 'readonly' fields / <code>private set</code> autoprops. Generally, I want help with immutability.</li> <li>Use of <code>{}</code> for namespace <strong>and</strong> class <strong>and</strong> method <strong>and</strong> property/indexer blocks <strong>and</strong> multi-statement blocks <strong>and</strong> array initializers. Makes it hard to figure out where you are when they're far apart of mismatched.</li> <li>I hate writing <code>(from x in y ... select).Z()</code>. I don't want to have to fall back to method call syntax because the query syntax is missing something.</li> <li>I want a <code>do</code> clause on query syntax, which is like <code>foreach</code>. But it's not really a query then. </li> </ul> <p>I'm really reaching here. I think C# is fantastic, and it's hard to find much that's broken.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/385635#385635 3 Answer by Dinah for What are five things you hate about your favorite language? Dinah 2008-12-22T05:47:11Z 2008-12-22T05:47:11Z <p><strong>C#</strong></p> <p>Most of my gripes have to do with assuming C++ conventions were automatically the best choice for C#</p> <ul> <li><strong>No statics allowed in Class interfaces.</strong> It's still part of the class. Why can't it be part of the interface?! I've had to create such stupid hack-y work-arounds for this.</li> <li><strong>Case sensitivity.</strong> I know it would ruin legacy apps at this point but why wasn't case-insensitivity not the rule from the beginning</li> </ul> <p>Bonus one for <strong>.NET</strong> (not C# specific)</p> <ul> <li><strong>Compiler not smart enough.</strong> In .NET 3.x, the compiler can figure out "var" at compile time so why not other common optimizations? We all know the string vs. StringBuilder / immutable vs. mutable thing. Why doesn't the compiler convert it for you when in many cases it's obvious that StringBuilder is better than multiple concat.s? i'm sure there are tons of other optimizations that the compiler could do for us by default (with option to overrule) and save us tons of time.</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/408534#408534 2 Answer by cgranade for What are five things you hate about your favorite language? cgranade 2009-01-03T03:08:09Z 2009-01-03T03:08:09Z <p><strong>C++:</strong></p> <ul> <li>Lack of symbolic import.</li> <li>Over-obsession with C compatibility.</li> <li>Ridiculously complicated preprocessor.</li> <li>Template errors are nearly incomprehensible.</li> <li>No garbage collection.</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/409039#409039 2 Answer by Breton for What are five things you hate about your favorite language? Breton 2009-01-03T13:33:55Z 2009-01-03T13:33:55Z <p>Javascript;</p> <ol> <li>the dynamic binding of "this" is very confusing and dangerous if you don't know exactly what you're doing. </li> <li>a function declaration requires the keyword "function". It's not the typing I object to, it's the reading it when I want to do something slightly clever. Hrm now I think of it maybe that's a plus. Discourages me from doing clever things.</li> <li>As a result of number 2, it's often less code (in terms of characters) to just copy/paste a code segment than to declare it as a function, if it's a fairly short idiom. This unfortunately promotes bad practice, especially in my own code. </li> <li>Javascript makes motions at being a functional language by having first class functions and closures, but there's no way to verify referential transparency in a function, at either runtime or compile time. Without this, some architectures become either risky or bulky.</li> <li>Its fantastically bad reputation, and thus my inability to say "I program in javascript" to anyone without being laughed at.</li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/409074#409074 1 Answer by ahmet demir for What are five things you hate about your favorite language? ahmet demir 2009-01-03T14:09:53Z 2009-01-03T14:09:53Z <p>C is my favorite but it is also horrible.</p> <ul> <li>It has the worst pre-processor ever. Why didn't they use something like m4?</li> <li>The whole header vs source file model is broken. Pascal got it right with units. </li> <li>It needs case ranges in the switch statement. </li> <li>Unions and casts from void* break the type system. This makes garbage collectors impossible.</li> <li>No nested functions. GNU C has this, but it should be standard.</li> <li>No boundary checking for allocated memory. There are tools that discover this but they don't detect errors where a piece of code miscalculates an address and writes to an allocated region which isn't related at all. I hate the whole pointer arithmetic.</li> <li>No bounds checking for arrays.</li> <li>Too many issues regarding portability. Even wchar_t differs across platforms.</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/410238#410238 2 Answer by Evgeny for What are five things you hate about your favorite language? Evgeny 2009-01-04T01:33:35Z 2009-01-04T01:33:35Z <p><strong>C#</strong></p> <p>It's a great language, especially with LINQ, but <em>generics support is poor</em> compared to C++. It had so much potential, but the current implementation is only useful for strongly-typed collections and similar trivial things. Some examples of where it falls down:</p> <ul> <li>A generic argument cannot be restricted to enums (only classes or structs).</li> <li>A generic argument cannot be a static class. Why? This seems like a completely artifical restriction.</li> <li>You cannot specify that a generic type must have a constructor with a certain signature because you cannot have constructors on interfaces. Why not? It's just another method with the special name ".ctor".</li> <li>Similarly, you cannot specify that a generic type must have a static method, because those also cannot be declared on interface. Something like <code>static T Parse(string s)</code> would often come in useful.</li> <li>The compiler is too eager in prohibiting some casts which the programmer knows would actually work, so they require uglyness like <code>(TheRealType)(object)value</code></li> <li>No covariance, eg. <code>IList&lt;string&gt;</code> cannot be converted to <code>IList&lt;object&gt;</code>, even though <code>string[]</code> can be converted to <code>object[]</code>. (Microsoft might be fixing this in C# 4.0, though.)</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/410260#410260 3 Answer by Logan Serman for What are five things you hate about your favorite language? Logan Serman 2009-01-04T01:46:34Z 2009-01-04T01:46:34Z <p>PHP</p> <ol> <li>No constructor overloading</li> <li>Inconsistent function naming (str_replace, but strtolower)</li> <li>define() does not replace the global variable literally like C++ does.</li> <li>When combining with XHTML, statements like the if-statement must start out with no indentation, even though the XHTML is indented if you want to keep the XHTML indentation consistent.</li> </ol> <p>Ex:</p> <p>You must type:</p> <pre><code>&lt;?php if($x == NULL) { ?&gt; &lt;p&gt;&lt;?= $x . ' is null' ?&gt;&lt;/p&gt; &lt;?php } ?&gt; </code></pre> <ol> <li>Error catching is awful</li> </ol> <p>(not sure why SO changed #5 to #1 again but whatever)</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/417733#417733 1 Answer by Gregg Lind for What are five things you hate about your favorite language? Gregg Lind 2009-01-06T19:09:21Z 2009-01-06T19:09:21Z <p><strong>R (R-Project for statistics)</strong></p> <ol> <li>Terrible, terrible string support</li> <li>Surprisingly difficult for some simple descriptive tasks, like cross-tabulation</li> <li>Large data set manipulation is done in-memory.</li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/423516#423516 1 Answer by era for What are five things you hate about your favorite language? era 2009-01-08T07:27:34Z 2009-01-08T07:27:34Z <p><strong>Emacs Lisp</strong></p> <ul> <li>There is not enough of a commercial market to be coding in elisp full time</li> <li>GNU Emacs vs XEmacs incompatibilities</li> <li>Nested functions in Scheme are neat, I wish elisp had the concept [1]</li> <li>The do loop or some other facility for simply looping over a list is not standard (granted, you can now mapc with a lambda) [1]</li> <li>There should be a shorthand for (function (lambda (...))) [1]</li> </ul> <p>[1] Of course, one of the beautiful things about Lisp is that it's not hard to fix these things in your own code with a one-liner. Still it irks me that it's not built in.</p> <p>Good question; I'm a bit embarrassed that I couldn't come up with better things to hate, but honestly, your honor, there is not much to hate.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/424563#424563 3 Answer by Niko for What are five things you hate about your favorite language? Niko 2009-01-08T15:09:33Z 2009-01-08T19:13:50Z <p><strong>Self</strong></p> <ul> <li>No real code browser, instead hundreds of small windows flying around. </li> <li>Only a research project, not stable enough, no active community.</li> <li>No decently fast version for Linux or Windows. Only Mac OS X.</li> <li>No support of standard keyboard commands.</li> <li>Oh! And the documentation on writing native plugins is so outdated!</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/424664#424664 1 Answer by SpoonMeiser for What are five things you hate about your favorite language? SpoonMeiser 2009-01-08T15:29:46Z 2009-01-08T15:29:46Z <p>Python.</p> <p>Although the weird way python deals with scope has been mentioned, the worst consequence of it, I feel, is that this is valid:</p> <pre><code>import random def myFunction(): if random.choice(True, False): myString = "blah blah blah" print myString </code></pre> <p>That is, inside the if block is the same scope as the rest of the function, meaning that variable declaration can occur inside condional branches, and be accessed outside of them. Most languages will either prevent you doing this, or at least offer you some kind of strict mode.</p> <p>This function will sometimes succeed, and sometimes throw an exception. Although this is a contrived example, this could lead to some subtle problems.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/425557#425557 3 Answer by peSHIr for What are five things you hate about your favorite language? peSHIr 2009-01-08T19:32:09Z 2009-03-06T08:29:22Z <p>C# (well, part of it is the VisualStudio IDE, I guess):</p> <ul> <li>No covariance (yet), like <code>Class&lt;D&gt;</code> cannot be used in place of <code>Class&lt;B&gt;</code> even though type <code>D</code> derives from type <code>B</code>. </li> <li>Graphic designers don't support generic based inheritance (or inheritance from abstract classes), even though the inheritance itself works just fine if you work around the designer problems by adding extra inheritance levels just so designers always see concrete non-generic variants of your code.</li> <li>No constructor inheritance</li> <li>No constructors in where clauses of generic type parameters</li> <li>VisualStudio seems to have a tendency to mysteriously check out files (like project files and/or unit test definitions) when opening a solution, even though the files do not seem to actually get altered.</li> </ul> <p>Could be different list if you ask me again tomorrow. Even though the covariance and designer trouble will be in my top 5 until they are solved (which covariance hopefully will be in C# 4.0...).</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/428745#428745 6 Answer by PhiLho for What are five things you hate about your favorite language? PhiLho 2009-01-09T16:25:59Z 2009-01-09T16:25:59Z <h2>Lua</h2> <p>I love this language, but there are some things that bug me for years!</p> <ul> <li>No (built-in) support of binary operations (as of 5.1, it might come with 5.2).</li> <li>Should have a built-in binary buffer implementation, allowing for example in place long string concatenation.</li> <li>I know it doesn't fit well in the syntax, but sometime I miss longVariableName++ or verboseVariableName += 5.</li> <li>Reference assumes knowledge of C (I have it but it is a minus for newcomers) and defers some help to C reference! And sometime it is too terse.</li> <li>It is starting to have a good deal of libraries, but you have to get them from various places. On the other hand, the download is very small! ;-)</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/434132#434132 4 Answer by Sean Edwards for What are five things you hate about your favorite language? Sean Edwards 2009-01-12T00:47:42Z 2009-01-12T00:47:42Z <p>Lua:</p> <ul> <li>I understand the reasons, but seriously. Variables should be local by default, with a <code>global</code> keyword, not vice versa.</li> <li>I'm in general not a huge fan of the do/end style semantics. I much prefer C-style braces.</li> <li>Dynamic typing. I know, some of you go "Huh?" but I've been entirely spoiled by knowing exactly what type of data will be in a given variable. Constant <code>if (type(var) == "string") then stuff() end</code> is a pain.</li> <li>Variables need not be defined before they're used. I would much rather be explicit about what I'm trying to do than risk a typo causing what I like to call "wacky beans".</li> </ul> <p>PHP:</p> <ul> <li>Again, dynamic typing.</li> <li>Lack of closures. I know, you can do <code>$function($arg);</code> but that doesn't count.</li> <li>Yet again, variables can be used before being defined. I have a personal policy of always explicitly initializing any variable to a known value before I use it, and I extend that to whatever best practices documents I have any sort of control over.</li> </ul> <p>C/C++:</p> <ul> <li>Headers = pain in the neck. </li> <li>No support for closures. (I'm excited for C++0x, which has them.)</li> <li>Static typing. "Wait," you say. "You just said you don't like dynamic typing!" Yes, I did say that. But static typing can be a pain in the butt too. (If given a choice I'd still pick static typing.) Optimally I'd like a language that was statically typed by default, but supported a dynamic type as well. (And I'd also like a pony, and fifty billion dollars, and the world, please.)</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/434137#434137 2 Answer by surprise_ for What are five things you hate about your favorite language? surprise_ 2009-01-12T00:50:58Z 2009-01-12T00:50:58Z <p>Ruby:</p> <ol> <li>It's damn slow</li> <li>The egotistical community</li> <li>It's not quite smalltalk</li> <li>Errors when calling methods on nil rather than just returning nil à la Objective C</li> <li>Non-native threading </li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/434280#434280 3 Answer by feonixrift for What are five things you hate about your favorite language? feonixrift 2009-01-12T02:43:48Z 2009-01-12T02:43:48Z <p>C:</p> <ul> <li>Lack of distinction between function pointers (executable) and data pointers (you really don't want to execute this).</li> <li>Extreme unreadability. Making code look like it does what it does is orders of magnitude more difficult than making it do the task in the first place.</li> <li>Lack of clear support for lisp-think. Doing functional things is possible, barely, but it's not clear.</li> <li>Serious inconsistency between libraries about how error codes are returned.</li> <li>Antiquated string handling. The strings aren't strings, they're null-terminated blobs. This is all manner of wince-worthy.</li> </ul> <p>Lisp:</p> <ul> <li>() involves hitting the shift key. Every time I'm doing a lot of lisp, I swap it and [].</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/513989#513989 2 Answer by WolfmanDragon for What are five things you hate about your favorite language? WolfmanDragon 2009-02-05T00:18:34Z 2009-02-05T00:18:34Z <p>Java: </p> <ul> <li>No procedural coding, it compiles into procedural code, So let me Use it!</li> <li>No multiple inheritance, trying to do the same thing with 15,000 intefaces suck.</li> <li>Date class, do I need to say more.</li> <li>That I cannot use polymorphism to it full extent. Java will not override with different parameter types being to trigger.</li> <li>I cant think of a fifth reason,if I do i'm come back and edit this post.</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/564207#564207 1 Answer by Andrew Szeto for What are five things you hate about your favorite language? Andrew Szeto 2009-02-19T06:48:55Z 2009-02-19T06:48:55Z <p><strong>Python</strong></p> <ul> <li>slow</li> <li>I finally got used to the print statement, and now there's this print function??? (py3k)</li> <li>never got py2exe or cxFreeze working</li> <li>not standardized (minor nitpicking)</li> <li>recursion depth only 100 (iirc)</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/564273#564273 3 Answer by Chris Lutz for What are five things you hate about your favorite language? Chris Lutz 2009-02-19T07:24:03Z 2009-02-19T07:24:03Z <p><strong>Perl</strong></p> <p>I love this language, and I don't want to add things that have already been used, but no one has mentioned this yet, so I'll throw it on the pot. When I used this feature, I found it to be the most horrible experience of my life (and I've worked in assembly language):</p> <ul> <li>The <code>write()</code> and <code>format()</code> functions.</li> </ul> <p>They have the single worst, ugliest, most horrifying syntax imaginable, and yet they don't manage to give you <em>any</em> more functionality than you could already achieve with some (infinitely prettier) <code>printf()</code> work. <em>No one</em> should <em>ever</em> try to use those two functions to do any output, simply because of how bad they are.</p> <p>I'm sure someone will disagree, but when I looked into them, hoping they would solve my problem, I found them to be a "world of pain" (to quote the Big Lebowski), and hope that Perl6 has either done away with them or, better, completely rewritten them to be somewhat more usable and useful.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/564388#564388 1 Answer by Jon Ericson for What are five things you hate about your favorite language? Jon Ericson 2009-02-19T08:22:36Z 2009-03-12T22:44:37Z <h2>Oracle SQL</h2> <ol> <li><p>The <code>DUAL</code> table. </p></li> <li><p>Can't <code>GROUP BY</code> an alias.</p></li> <li><p>I can never remember the syntax for analytic functions and so I forget/am too lazy to use them.</p></li> <li><p>Lack of combined <code>LIKE</code> and <code>IN</code> conditional operator. (After 10g there's a <code>REGEX_LIKE</code> operator that could do the trick, though.)</p></li> <li><p>Awkward concatenation syntax.</p></li> </ol> <p>SQL isn't really my favorite language, but it's one of the top three I use everyday. There are probably more items, but these are the ones at the top of my mind. </p> <p>I have a whole slew of problems with <code>SQL*PLUS</code>. I wrote a Perl replacement that does what I'd like from the command line and I use <a href="http://www.emacswiki.org/cgi-bin/wiki/sql.el" rel="nofollow"><code>sql.el</code></a> in <code>Emacs</code> for interactive <code>SQL</code> sessions. These tools help me work around my <code>SQL*PLUS</code> issues.</p> <p><hr /></p> <p>Speaking of which:</p> <h2>Perl</h2> <ol> <li><p>"Only <code>perl</code> can parse Perl." (But this is mostly an issue in syntax highlighting, which I don't prefer to use much anymore for any language.)</p></li> <li><p>I'm sometimes surprised by "the simple (but occasionally surprising) rule...: It looks like a function, therefore it is function, and precedence doesn't matter." (From <code>perlfunc(1)</code>)</p></li> <li><p>Dereferencing complex data structures can be confusing at times. I can't decide if this is a true flaw in Perl or just a consequence of having really powerful data structure facilities. Either way, I can normally get it right by taking a few minutes to think about what I'm doing.</p></li> <li><p>No option to cause system calls to raise their errors like the DBI module. (Thanks to brian d foy, I now know the <code>autodie</code> module on CPAN does this, but I'd like it built-in.)</p></li> <li><p>Warnings and strictures not enabled by default in scripts. (The <code>-e</code> option would turn them off for command line use.)</p></li> </ol> <p>Again, there are bound to be more things, but these are issues I've noticed recently. I'd add the need for <code>=over</code> and <code>=back</code> and the quirky <code>L&lt;...&gt;</code> syntax in <code>POD</code>, but maybe that ought to be a separate list.</p> <p><hr /></p> <p>Now for the trifecta:</p> <h2>KornShell</h2> <ol> <li><p>Sourcing a file with arguments replaces the values of the parent script's arguments. (Executing <code>. file arg1</code> puts <code>arg1</code> in <code>$1</code>.) </p></li> <li><p><code>ksh</code> is not an ideal interactive shell and defaults to <code>vi</code> key-bindings, rather than <code>emacs</code>. (My solution is to use <code>bash</code> for interactive shells.)</p></li> <li><p>Common utilities (such as <code>grep</code>) are implemented differently across different platforms thereby preventing perfect portability. Some useful commands need to be installed on some platforms and are part of the OS core on others.</p></li> <li><p>The syntax for conditionals is overly heavy. (<code>if [ ... ]; then ... fi</code>)</p></li> <li><p>Although it is Turing Complete, you are eventually going to want to move up to a more expressive language like Perl.</p></li> </ol> <p>One solution for #4 is to get used to short circuit evaluation:</p> <pre><code>[ ... ] &amp;&amp; ... </code></pre> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/567742#567742 1 Answer by Ellery Newcomer for What are five things you hate about your favorite language? Ellery Newcomer 2009-02-19T23:41:17Z 2009-02-19T23:41:17Z <p>D</p> <ul> <li>we have in operator, but no !in operator?</li> <li>dynamic array 'length' property - ya canna do <p><p><code>array.length += 512;</code></li> <li>no exit statement - as in python's sys.exit(), etc. Sure, you can call C's exit, but unflushed output don't get flushed</li> <li>associative array literals + string literals suck <p> string literals found as is inside an associative array literal are interpreted as static, thus this <p> <code>char[][char[]] hash = ["hello":"world","goodbye":"angels"];</code> <p> doesn't work without some extra casting due to different length string literals despite<br> a. I didn't ask it to be interpreted as static arrays<br> b. static arrays aren't allowed in associative arrays anyways</li> <li>cyclic dependencies disallowed (want to port that java lib? Have fun redesigning the class hierarchy)</li> </ul> <p>Someone check me on these; not sure if they are all still relevant.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/568225#568225 2 Answer by smcameron for What are five things you hate about your favorite language? smcameron 2009-02-20T03:55:34Z 2009-02-20T04:56:27Z <p>C</p> <ol> <li>bit fields -- they aren't well specified by the language and how they work is compiler dependent and architecture dependent.</li> <li>It's often hard to find where a particular symbol is defined in a large mass of code, esp. if that symbol is produced by a macro. Which reminds me...</li> <li>The preprocessor is a rather ugly hack, amenable to all sorts of abuse.</li> <li>lack of standard sized integers (remedied by uint*_t lately, but there is lots and lots of old code floating around out there with custom typedefs or #defines for DWORD, WORD, BYTE, etc.)</li> <li>Lack of something akin to Perl's cpan.org (would love to be wrong about that one.)</li> </ol> <p>Edit: While thinking about a CPAN for C, I thought... what would I call such a thing, and thought of "ccan", and googling it, I came across this: <a href="http://ccan.ozlabs.org/" rel="nofollow">http://ccan.ozlabs.org/</a></p> <p>It seems to be as yet in its infancy though.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/576558#576558 0 Answer by Frew for What are five things you hate about your favorite language? Frew 2009-02-23T04:43:35Z 2009-02-23T18:54:20Z <p>I'm going out on a limb since I can't really use it full time, but I'll try anyway!</p> <p><strong>Perl 6</strong></p> <ol> <li>func("frew") != func ("frew") <ul> <li>It annoys me, but there is good reason for it. In Perl 5 print (5 + 6) * 10 <em>still</em> gets me every now and then</li> </ul></li> <li>It may be easier to parse than Perl 5 in a lot of places, but it still kills my editor sometimes</li> <li>It still has a lot of the line noise Perl 5 which scares a lot of people. That means it's harder to get them excited etc.</li> <li>There are no libraries yet. <ul> <li>This will be a non issue if Perl 6 does indeed end up supporting Perl 5, but that may be a burden not worth bearing.</li> </ul></li> <li>There's no REPL, or what rubyists would call irb.<br /> <ul> <li>A solid interactive Perl 6 with tab completion, color coding, etc, would make using and learning it so much nicer. </li> </ul></li> <li>Currently the <a href="http://svn.pugscode.org/pugs/docs/Perl6/Spec/" rel="nofollow">documentation</a> is basically the English spec. Not exactly an easy read.</li> <li>I know it's a stupid cliche, but it's not out yet! <ul> <li>(I am allowed to complain because I am helping :-P)</li> </ul></li> </ol> <p>The first three are the language; the rest aren't really the language itself but the fact that it's not out yet.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/641611#641611 2 Answer by sipwiz for What are five things you hate about your favorite language? sipwiz 2009-03-13T05:54:45Z 2009-03-13T05:54:45Z <p>C#</p> <ol> <li>The foreach command bombing out when an object in the collection being enumerated changes,</li> <li>UI controls spitting the dummy because they were accessed on the wrong thread. Surely all the dispatcher.invoke calls can be moved into the CLR plumbing,</li> <li>PInvoke, marshalling etc.,</li> <li>The wasted two years I spent learning remoting,</li> <li>It's not as sexy as Ruby.</li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/643896#643896 1 Answer by Steve Melnikoff for What are five things you hate about your favorite language? Steve Melnikoff 2009-03-13T18:04:16Z 2009-03-13T18:04:16Z <p><strong>C</strong></p> <ul> <li>It's so flexible and powerful that it's really easy to write really awful, or downright dangerous code (or, if you prefer, "with great power comes great responsibility").</li> <li>'=' for assignment, and '==' for equality; easy to confuse in 'if' statements.</li> <li>The implementation of a number of fundamental parts of the language are compiler-dependent; e.g. the size of the basic types, order of bits in bitfields, padding and byte order in unions.</li> <li>Bitfields aren't parameterisable (i.e. you can array of ints, but you can't have an array of bits).</li> <li>String handling could be improved.</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/734942#734942 2 Answer by BlairHippo for What are five things you hate about your favorite language? BlairHippo 2009-04-09T16:23:32Z 2009-04-09T16:23:32Z <p>I know I'm late to the party, but hate is timeless!</p> <p><b>Java</b></p> <ul><li><strong>Runtime.exec().</strong> So, if I don't manually clear the STDOUT and STDERR buffers, my code will hang? Wow. Die, plz.</li> <li><strong>Null Pointer Exceptions.</strong> Responsible programming means I have to treat most objects like they're unexploded bombs, which is kind of a pisser in an object-oriented language. And when the inevitable happens I kinda need to know <em>which</em> object blew up in my face, but Java apparently feels telling me would be cheating.</li> <li><strong>File I/O.</strong> Why do I have to jump through this many hoops to read a dang text file? And when copying files, I have to funnel the source file into my code and manually handle the output byte buffer? You're serious?</li> <li><strong>Primitives vs. Primitive Wrappers.</strong> Note that Java now has a number of features that allow you to treat primitives and their wrapper objects as interchangeable in some places, but not in others; don't worry, the compiler will let you know which is which. This feels like a hack to work around a fundamentally broketastic design decision. And it is.</li> <li><strong>XML.</strong> I have this dirt-simple little XML file I need to create and I have to do <em>what?</em></li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/736285#736285 2 Answer by dfa for What are five things you hate about your favorite language? dfa 2009-04-09T23:57:54Z 2009-04-10T11:39:28Z <p><strong>Java</strong></p> <ol> <li>checked exceptions</li> <li>type erasure</li> <li>missing operator overloading (e.g. for BigInteger/BigDecimal)</li> <li>missing regexp/date/durations/complex literals</li> <li>poor support for immutability </li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/737519#737519 2 Answer by TokenMacGuy for What are five things you hate about your favorite language? TokenMacGuy 2009-04-10T12:45:34Z 2009-07-13T06:11:42Z <p><strong>Python</strong></p> <ul> <li>No statements in <code>lambda</code>s. GRRRR</li> <li><code>foo( a for b in c if d )</code> feels wrong, it surprises me every time I get away with it. Shouldin't it be <code>foo( (a for b in c if d) )</code>? </li> <li>Can i have a dict comprehension?</li> <li>map and filter operators have special syntax in list comprehensions, how about something for reduce? or sort?</li> <li>Just by having a <code>yield</code> statement in it, a function is magically transformed into a generator, and its interface changes completely. Also, that generator cannot do any work before the first <code>next()</code>. at least, not without using a function that returns a generator.</li> </ul> <p><strong>JavaScript</strong></p> <ul> <li>No brief syntax for making modular code libraries. You have to call a function that returns a dictionary of public methods. And you have to edit that in (at least) two places every time you alter the interface of your module.</li> <li>Creating closures involves returning it from a function that returns a function from ('sup dog) yo' function. Clutter!</li> <li><code>for each ( foo )</code> syntax and behavior feels like an afterthought.</li> <li>Knowing when your code will actually run (and in what order) is more of a dark-art. The only way to get it right for sure is put everything (yes, that too) in one big file. and even then you still need to wait for a document.onload</li> <li>Am i missing something? is there no trivial way to get json serialized values without building them by hand? (yes jQuery can do this, sort of). </li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/913921#913921 2 Answer by james woodyatt for What are five things you hate about your favorite language? james woodyatt 2009-05-27T04:25:07Z 2009-05-27T04:25:07Z <p><strong>Objective Caml</strong></p> <ol> <li><p><em>Non-concurrent garbage collector.</em> I can write multi-threaded programs all day long, but they're only ever going to get one of my eight cores at a time. This makes me sad.</p></li> <li><p><em>No type classes (or their moral equivalent).</em> There's Furuse-san's <a href="http://web.yl.is.s.u-tokyo.ac.jp/~furuse/gcaml/" rel="nofollow">GCaml</a>, but it's A) not quite as good as type classes, and B) not in the INRIA distribution.</p></li> <li><p><em>Badly in need of a Cocoa bridge.</em> Seriously. If I wrote more code with actual interfaces to DNA-based life forms, then I'd probably break down and write the damned thing myself. Why hasn't anybody else done this yet?</p></li> <li><p><em>Functors are abominable.</em> Seriously, modules ought to be first-class values. There should be only one kind of function. Read <a href="http://gallium.inria.fr/~montagu/publications/2009/talks/slides@popl09:fzip.pdf" rel="nofollow">Montagu and Rémy</a> before you flame me for this.</p></li> <li><p><em>Should use LLVM for its back-end.</em> Who do I have to murder to get OCaml to compile for my stupid little ARM6 core?</p></li> </ol> <p>So yeah, I have some issues. I still love the language to pieces. It's totally awesome.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/919861#919861 1 Answer by Cordilow for What are five things you hate about your favorite language? Cordilow 2009-05-28T08:52:52Z 2009-05-28T09:23:20Z <p>Python:</p> <p>1) It's a scripting language and not a fully compiled one (I'd prefer to be able to compile binaries—I don't care about bytecode). This is very annoying if I have to use very many libraries (i.e. everyone who uses my program has to install all the libraries, and this basically means no normal people will be able to, or have the patience to, properly set it up—unless I do a ton of work that should be unnecessary). I know ways to make binaries, but they don't <em>always</em> work, and I'm guessing they bundle the interpreter in the binaries anyhow (and I don't want that). Now, if I could get a bytecode compiler that would include copies of all the files that I imported (and only those) to be placed in my program's folder, that might be a suitable compromise (then no one would have to download extra libraries and such). It would also be nice if the compiled python files could be compressed into a single file with one specified as the file to run the program before this is done.</p> <p>2) It seems a bit buggy at times; there have been a few times when code that was supposed to work simply did not (there were no programmer errors), particularly code relating to such as "from moduleX import *", and other import-related issues, as well as some issues pertaining to global and local variables.</p> <p>3) Maximum recursion depth could be higher. There has been at least one time when I felt that I needed it to go higher.</p> <p>4) No switch statement (let alone one that allows for numbers, strings and ranges)</p> <p>5) The newer Python versions seem to be doing away with a lot of useful string operations, and they don't seem to have simple documentation on how to do the same things without them.</p> <p>6) Forced automatic garbage collection (I'd like to be <em>able</em> to do it manually, although not necessarily forced to do so).</p> <p>7) No pre-made Timer class without the use of a GUI (well, there might be one, but after all the searching I've done, it's sure not convenient to find! I actually did find something, but it didn't work at all when I tried it.) By a timer, I mean the sort that will execute a specified function every x seconds, with the ability to turn it off when desired, etc.</p> <p>8) People in the community who give examples rarely tell what modules they imported, and how they imported them.</p> <p>9) There's not a lot of support for integration with Lua.</p> <p>10) There doesn't seem to be a way to add an extra function to a particular instance of a class (and not the entire class at large), unless you dynamically add an object variable to that class with the object having the needed function (but still, you have to make another class just for that).</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/919957#919957 2 Answer by Jonas Kölker for What are five things you hate about your favorite language? Jonas Kölker 2009-05-28T09:21:41Z 2009-05-28T09:21:41Z <p><strong>C</strong></p> <ol> <li><strong>No parametric polymorphism</strong> (i.e. C++ templates). It makes writing reusable data structures and algorithms a pain (and there's hardly any static checking). See for instance the comparator argument to qsort and bsearch: the comparator takes void pointers :(</li> <li><strong>No library of data structures</strong>. I really hate writing my own hash table. I also really hate scouring the web for a library of reusable data structures. Especially if it turns out to be incomplete.</li> <li><strong>Strings</strong>. Inefficient representation, unwieldy if you make it sane, too hard to safely input a string. No standard for <code>snprintf</code>. Too hard to create a format string with <code>sprintf</code>, then use that to create a string with <code>sprintf</code> again, in a safe way.</li> <li><strong>Only lexical macros</strong>. If different compilers expects function annotation in different places, I have to put the same <code>HAS_NO_SIDE_EFFECTS</code> in different places. Why can't I just grab the function, switch over the compiler type, and then insert it at the right place by a macro call?</li> <li><strong>No portable libraries for common functionality</strong>. For sockets and threading, I use SDL---a frigging <em>game</em> library. For .ini-style parsers, the only library I could find which was packaged for ubuntu, I posted on the daily wtf (it calculates an array of hash values, then does a linear scan through it...)</li> </ol> <p><strong>C++</strong></p> <ol> <li><strong>Template syntax is heavy and unweildy</strong>. Let's see, <code>for(map&lt;string, int&gt;::const_iterator it = mymap.begin(); it != mymap.end(); ++it)</code>.</li> <li><strong>Design errors in the STL</strong>. Should changing allocation strategy for your vector really change its <em>type</em>?</li> <li><strong>Overly complex type system</strong>. Type T1 has a convert-to-T2 method, and T2 has an implicit from-T1 constructor. Which is called? How does overloading, overriding and multiple inheritance interact? Poorly, I guess...</li> <li><strong>Incredibly long and unwieldy error messages from templates</strong>. You know what I mean...</li> <li><strong>References means you can't see output parameters at call sites</strong>. In C, you can guess what <code>foo(bar, &amp;baz)</code> can and can't modify.</li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/956967#956967 1 Answer by G B for What are five things you hate about your favorite language? G B 2009-06-05T16:57:59Z 2009-06-05T16:57:59Z <p>1 - indentation</p> <p>2 - indentation</p> <p>3 - indentation</p> <p>4 - indentation</p> <p>5 - indentation</p> <p>I'll let you guess the language. :-)</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/957137#957137 1 Answer by A. Scagnelli for What are five things you hate about your favorite language? A. Scagnelli 2009-06-05T17:35:45Z 2009-06-05T17:35:45Z <p><strong>VBA</strong> (because you thought your language was bad)</p> <ol> <li>Whitespace inside a line is rigidly enforced.</li> <li>Statements just end, and require a " _" to break to the next line, but not every line can be broken. </li> <li>No ++,--,+=,-= statements. Seriously? </li> <li>Arrays can begin at any index, not just 0. </li> <li>Some types (i.e.: fixed-point "Decimal" value) must be subtypes of Variant, and aren't available as their own type. </li> <li>!= and &lt;>. </li> <li>"=" is used as both comparator and assigning, instead of splitting into "=" and "==". </li> <li>"Option Explicit".</li> <li>UI hasn't been updated since 2000.</li> <li>Office2k7 didn't upgrade to VB.NET</li> <li>Most object models are non-sensical and overly verbose.</li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/989478#989478 1 Answer by Gregory Higley for What are five things you hate about your favorite language? Gregory Higley 2009-06-12T23:18:11Z 2009-06-12T23:18:11Z <p><strong>REBOL</strong></p> <p>REBOL is <em>among</em> my favorite languages. I can't say that I have a favorite, though Haskell ranks pretty high as well.</p> <ol> <li><p>Its odd syntax scares off many developers before they even give it a try.</p> <pre>use [email rules url] [ <pre><code>; A small DSL that sends email to people about URLs. rules: [ some [ into [ set email email! set url url! (send/subject email url reform [ "Check Out" url ]) ] ] ] ; Global context notify: func [ [catch] dsl [block!] ] [ unless parse dsl rules [ throw make error! "You screwed up somehow." ] ] </code></pre> <p>]</p> <p>notify [ [ a@b.com <a href="http://www.google.com" rel="nofollow">http://www.google.com</a> ] [ b@c.com <a href="http://www.yahoo.com" rel="nofollow">http://www.yahoo.com</a> ] ]</pre></p></li> <li><p>Recursive dialects are very easy to validate with <code>PARSE</code> but very difficult to evaluate. (Stacks can be helpful here.)</p></li> <li>REBOL has very poor integration with many popular technologies, particularly XML. I suspect this is partly arrogance, because the REBOL <code>BLOCK!</code> datatype can do almost everything XML can do. However, the real world has XML in it.</li> <li>No Unicode.</li> <li>Thanks to AltMe, REBOL's user community is very insular. I can understand why they want to use AltMe. It's written in REBOL and shows off its strengths. Unfortunately it also puts them off on their own little island.</li> </ol> <p>The upcoming REBOL 3 will hopefully fix many of these issues, except for the last one.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/989499#989499 2 Answer by Frank Schwieterman for What are five things you hate about your favorite language? Frank Schwieterman 2009-06-12T23:25:49Z 2009-06-12T23:25:49Z <p>c#:</p> <p>1) static methods must be a member of a class</p> <p>2) static extension methods can only be added to static classes</p> <p>3) The implementation of interface functions are not marked with something like 'override' to show they are from a base class or interface (making it hard to ensure you're overriding the method you expect (with correct signature) with just code review).</p> <p>I just have 3. I guess thats pretty good.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/999207#999207 1 Answer by Rado for What are five things you hate about your favorite language? Rado 2009-06-16T01:12:23Z 2009-06-16T01:12:23Z <p>First post, so take it easy on me :) ... Awesome community site, btw!</p> <p>I tried reading all other C# replies just so mine doesn't overlap</p> <p><strong>C#</strong> ... In no particular order:</p> <p>1) No fallthrough for cases in switch statements. And if there is no fallthrough ... why does one have to explicitly type break; anyway? It's just retarded and confusing since it implies the ability to not have the break;!!! </p> <p>2) Can't declare a variable with the same name in a child scope, but you can declare a variable by the same name as a class variable? Either allow both or disallow both. Otherwise, it doesn't make sense. </p> <p>3) No optional/default parameters in functions</p> <p>4) Exceptions in finally{} should be implicitly caught for every line. Or at least, just the NullReferenceException exception. For instance, after accessing a db, one should always clean up. So, the finally block should look something like this:</p> <pre><code>finally { if(par1 != null) par1.Dispose(); if(comm != null) comm.Dispose(); if(conn != null) conn.Dispose(); } </code></pre> <p>It would be so much cleaner if it could be written as:</p> <pre><code>finally { par1.Dispose(); comm.Dispose(); conn.Dispose(); } </code></pre> <p>But, no ... you have to check if you are accessing a null object, otherwise it may throw a NullReferenceException from the finally block .. and who really needs exceptions in the finally block anyway?</p> <p>5) Generics: you can specify new() to be able to instantiate your generic objects, but that object needs to have a default constructor. Why can't you specify a signature instead so one doesn't need to create empty constructors if it doesn't already have them and just use the constructors it does have. </p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/999273#999273 1 Answer by Apocalisp for What are five things you hate about your favorite language? Apocalisp 2009-06-16T01:48:09Z 2009-06-16T01:48:09Z <h2>Haskell.</h2> <ol> <li>The Prelude is imported by default.</li> <li>The scope of type classes is universal.</li> <li>Modules are not first-class.</li> <li>Types cannot depend on values.</li> <li>Monad does not unify with Functor.</li> </ol> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/999459#999459 1 Answer by jimx for What are five things you hate about your favorite language? jimx 2009-06-16T03:34:47Z 2009-06-16T03:49:55Z <p>Python:</p> <p>I am still a moderate user for python, so my complaints might just well be lock of knowledge or mis-usage. Comments are welcome. I do love this language.</p> <ol> <li>Poor thread support and GIL. If you'd like to take use of multicore platform, most of the python programmers would probably recommend multiprocessing or some sort, don't use threading. It wouldn't give you the performance you are expecting.</li> <li>property only for instance variable. _class_var = property(classmethod(some_method)) just wouldn't work. How can I get a property wrapped class variable?</li> <li>no access control. All access controls are syntax mangling. Like private is __private, protect is _protected, etc... And hope that everyone programs python follows the naming convention. Come on, we can do better than that.</li> <li>I agree the python philosophy of being simple and clear syntax but some simple and clear syntax not being supported seems lock of good judgement, in my opinion. Such as, a++, ++a, a-- and --a, self-de/increment, what's wrong with those? foo = (a > b ? a : b) unary operation, what's wrong with those? (I know py2.6 has something similar introduced, but given the massive support of almost every other language for those simple syntax, why reinventing the wheel? why not just follow the best practice? Shouldn't a good thing just keep in its good "form"?)</li> <li>Program to interface. Python has no interface or abstract class concept (py3k has something called abc), everything is concrete. Providing an "interface" or "abstract" keyword to build class skeleton and guard class inheritance and extension wouldn't be a bad idea I think. It helps on top-down design. Currently, I just have to fill the each of methods with NotImplementedError, quite a tedious job.</li> <li>I have to add this. version less than 3.x has str and unicode types. This is a true nightmare. It makes ascii and non-ascii/unicode mixing most likely to fail (bad, bad)</li> </ol> <p>I saw people complains about speed. I don't get that. Its an interpret language, code not compile to machine code until runtime, that's just the nature of it. You can't compare speed from an interpret language to a compiled one. As far as I can see, among the interpret/scripting languages, python isn't slow.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/1001479#1001479 5 Answer by SadSido for What are five things you hate about your favorite language? SadSido 2009-06-16T13:27:33Z 2009-06-16T13:27:33Z <p><strong>My own top-5 "what do I really hate in c++":</strong></p> <p>[5] Automatic generation of constructors, destructor and assignment operator. Man, whenever I don't declare something in the class, it means <em>I DON'T NEED IT</em>, not <em>I FORGOT IT</em>. Do you, compilers, hear me?!</p> <p>[4] Template syntax. Oh, do I really need to type all these "&lt;" and ">", whenever I decide to extract definitions from the class body?</p> <p>[3] Strings. Jeez, I am fed up with "const char*", I have to handle NULL situations, I have to waste O(N) to get its length, I have to allocate a buffer for concat operations.</p> <p>[2] Macroprocessing. Whenever I do not understand, what is going on with my compiler, I start looking for a macro.</p> <p>[1] Operator overloading. I see the code "A + B * C" and I cannot say a word what this code is about, until I see the actual types of A, B and C.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/1005241#1005241 18 Answer by Znr4123 for What are five things you hate about your favorite language? Znr4123 2009-06-17T05:20:46Z 2009-06-25T20:15:29Z <p>How about five things I hate about "Things I hate about some language lists"? :D</p> <p><strong>5- Painting an orange red doesn't make it an apple.</strong></p> <p>When a language is designed, the designers typically have in mind what it's useful for. Using it for something completely different <em>can</em> work, but complaining when it doesn't is just dumb. Take Python. I'm sure either someone has or someone will some day make a utility to create exe's from Python code. Why on God's earth would you <em>want</em> to do that? It would be neat&mdash;don't get me wrong&mdash;but it has no use. So stop complaining about it!</p> <p>A well-designed project would likely contain code from multiple languages. That's not to say you cannot complete a project with only one language. Some projects may be well within the abilities of whatever language you are using.</p> <p><strong>4- Are you standing on wooden legs?</strong></p> <p>The platform can be a large influence of what the language can do. With nowadays garbage collectors, or well even pascals early attempt at "garbage collection", can aid in memory fade (maybe malloc more ram??). Computers are faster and so of course, we expect more out of our languages. And quite frankly, we probably should. However, there is a huge price to pay for the convenience of the compiler to create hash tables or strings or a variety of other concepts. These things may not be inherit to the platform of which they are used. To say they are easy to include to a language just tells me you may not have a leg to stand on.</p> <p><strong>3- Who's fault is it really?</strong></p> <p>Bugs. You know. I love bugs. Why do I love bugs. Because it means I get to keep my job. Without bugs, there would be many closed pizza shops. However, users hate bugs. But here is a little splash of cold water. Every bug <em>is</em> the programmers fault. Not the language's. A language with such a strict syntax that would significantly reduce how many bugs were possible to generated would be a completely useless language. It's abilities could probably be counted on one hand. You want flexibility or power? You've got bugs. Why? Because your not perfect, and you make mistakes. Take a really identifiable example in C:</p> <pre><code>int a[10]; for (int idx = 0; idx &lt; 15; idx++) a[idx] = 10; </code></pre> <p>We all know what that's going to do. However, what maybe some of us don't realize is.. that functionality can be very beneficial. Depending on what you are doing. Buffer overruns are the cost of that functionality. That code above. If I actually released that to the public. That's again.. say it with me.. "My fault". Not C's for allowing me to do it.</p> <p><strong>2- Shouldn't we put that in the recycle bin?</strong></p> <p>It's very easy to point at a feature in a language we don't understand because we don't use it often and call it stupid. Complain that it's there etc. Goto's always entertain me. People always complain about goto's being in a language. Yet I bet your last program included a type of goto. If you have ever used a break or a continue, you've used a goto. That's what it is. Granted, it's a "safe" goto, but it is what it is. Goto's have there uses. Whether "implicit" gotos like continue or break are used or explicit gotos (using the actual keyword "goto" for whatever language). Not that language developers are flawless, but typically... if functionality has existed since the dawn of time (for that language). Likely that aspect is a defining quality of that language. Meaning.. it's being used and likely is not hanging around because of backwards compatibility. It's being used today. As in 5 minutes ago. And used properly. Well.. arguably someone is using it improperly as well, but that relates to #3 on my list.</p> <p><strong>1. - Everything is an object.</strong></p> <p>Ok.. this one is really a subset of #2. But this is by far the most annoying complaint I see in hate lists. Not everything is an object. There are a great many of concepts that do not belong or need to be objects. Putting things where they don't belong is just ugly and can decrease efficiency of a program. Sure. Maybe not much depending on the language. This also relates to #5. This means... yes. Global are ok. Functions as apposed to static methods are ok. Combining OO programming with global functions is ok. Now.. that doesn't mean we should all go out and "free" our code from it's object models either. When designing a section of code or a whole project, what happens behind the scenes <em>should</em> be considered when putting it together. Not only where that concept lives and many other factors. Why wrap global functions within classes or name space concepts if it serves no purpose? Take static member variables. That greatly amuses me because.. well..Depending on the language and implementation of course, but generally speaking, you just declared a global. Yes, there are some reasons to wrap these non-OO concepts in OO wrappers. One of course being self documenting code. That can make sense. So.. like I say. Don't go out and "free" your code. But any good modern language will have a global concept outside of it's OO modeling. Yes I'm specifically meaning to point out that an OO programming language without a global concept most likely has a serious design flaw. Again though.. depends on the intention and design of the language so I'm not attempting to pick on any specific language and there are far too many to analyze right here. Anywho, Consider where the code should live and be the most effective. Adding a bunch of flare to something which doesn't add functionality or support just wares down the keyboard faster. It doesn't do anybody any good. Well.. unless you like brownie points from the person who probably incorrectly taught you that everything is an object.</p> <p>In short, programming isn't just mindlessly tapping on the keyboard. There are a lot of design considerations to any project. I know it's cliche, but you have to look at it from every angle. Even with nowadays type-safe languages. You don't just chuck code out and expect it to work well. Sure.. it may work, but it may not be the right way to go about it. Overall, pick the language and format that is best suited for the specific job AND the environment. But <em>no</em> language takes away the thought behind it. If your not thinking.. your just typing.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/1090890#1090890 1 Answer by Paul Delhanty for What are five things you hate about your favorite language? Paul Delhanty 2009-07-07T07:45:57Z 2009-07-07T07:45:57Z <p>Haskell:</p> <ul> <li>Space leaks - a price paid for laziness by default - maybe too high a price?</li> <li>Even pure functions like <code>head</code> and <code>tail</code> can invoke <code>error</code> and boot you out to <code>IO</code>.</li> <li><code>fail</code> from <code>Monad</code> - bring back <code>MonadZero</code>.</li> <li>The <code>Num</code> class - <code>(+)</code> should have been in <code>AdditiveGroup</code> or similar.</li> <li>That <code>Monad</code> is not an <code>Applicative</code>.</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/1117951#1117951 1 Answer by quant_dev for What are five things you hate about your favorite language? quant_dev 2009-07-13T06:32:59Z 2009-07-13T06:32:59Z <p><strong>C++</strong> lack of good refactoring tools, lack of checked exceptions</p> <p><strong>Java</strong> lack of templates, lack of <code>const</code> keyword</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/1168412#1168412 2 Answer by mythogen for What are five things you hate about your favorite language? mythogen 2009-07-22T21:37:33Z 2009-07-22T21:37:33Z <p>Objective-C / Cocoa / Cocoa Touch: </p> <ul> <li>Lack of namespaces</li> <li>Difficulty using primitive values with any of the interesting and powerful techniques of Cocoa, e.g., distributed objects, notifications, KVO</li> <li>Inconsistency with the use of the shortcut dot syntax for accessing properties, often having to use the full length accessors</li> <li>No GC on the iPhone, and generally GC came rather late to an otherwise highly dynamic language</li> <li>Inconsistent library support, at least in Cocoa Touch; some very basic things have only recently gotten high level support, e.g., audio handling.</li> <li>Lack of blocks!</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/1404161#1404161 1 Answer by Yacoby for What are five things you hate about your favorite language? Yacoby 2009-09-10T08:55:18Z 2009-09-10T09:00:35Z <p><strong>PHP</strong> </p> <ul> <li>Almost every standard function is in the global scope</li> <li>Inconsistent function argument order</li> <li>Inconsistent function naming</li> <li>Case insensitive functions</li> <li>Script may behave differently depending on the config files</li> <li>Terrible error catching</li> <li>Being able to use undefined variables</li> <li>In some cases having to assign a result to a variable before it can be used in a function</li> </ul> <p>And far more subjectively:</p> <ul> <li>Dynamic Typing</li> </ul> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/1545774#1545774 1 Answer by Gautham Ganapathy for What are five things you hate about your favorite language? Gautham Ganapathy 2009-10-09T19:59:12Z 2009-10-09T19:59:12Z <p>Common Lisp</p> <ul> <li>Lack of standard libraries for more modern features (sockets, threads, ...)</li> <li>Could use a standardized UI that maps to the native windowing system</li> <li>Scheme's ability to assign a lambda expression to a variable and use the variable directly as a function call looks neater that APPLY for FUNCALL. Side effect of having multiple name spaces, I guess</li> <li>Standardized source-level packaging system for libraries so that they could be easily used from multiple implementations</li> </ul> <p>I wonder what a strongly-typed lisp would be like</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/1545946#1545946 1 Answer by Pavel Minaev for What are five things you hate about your favorite language? Pavel Minaev 2009-10-09T20:39:51Z 2009-10-09T20:39:51Z <p>Haskell (with all GHC extensions, not just the base Haskell'98 spec).</p> <p>There's exactly one thing that I hate about it: it's not mainstream.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/1555597#1555597 0 Answer by Brad for What are five things you hate about your favorite language? Brad 2009-10-12T16:34:16Z 2009-10-12T16:34:16Z <p>C#</p> <p>1) Lack of practical ability to write generics for value types. For example, any idiot (well most idiots) can write a routine that calculates the standard deviation of a list of int, float, double, etc in C++, it is straightforward to write, easy to read and performs as fast non-generic code. I think if you can write something in C# that is close to hitting any one of these 3 without being ridiculous on the other 2, you are a really great programmer.</p> <p>2) Covariance and contra variance, although this is being added to 4.</p> <p>3) Extremely poor documentation of LINQ (alright, not really part of the language).</p> <p>4) Trying to use foreach/iterators when I want to do the same thing every time except something slightly different the last time (such as concatate a bunch of strings with commas between them and the word and between the last two). If I write it with an IEnumerable, it is hard to write and read, and with a for (int i=0 i &lt; ...) it isn't much better and it is less efficient.</p> <p>5) I know I am going to get complaints about this, but lack of checked exceptions. This does not need to be implemented the way it is in java (The framework developers do make some very good points on why they didn't do this), but I would be happy with a compiler warning users who don't like checked exceptions can turn off.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/1650025#1650025 0 Answer by kaleissin for What are five things you hate about your favorite language? kaleissin 2009-10-30T14:10:09Z 2009-10-30T14:10:09Z <p>I can't believe it, my favorite Python pet peeves still haven't been mentioned:</p> <ol> <li><p>(Prior to 3.x) Relative imports look like absolute imports.</p> <pre><code>import foo </code></pre> <p>Does this import foo from the directory you're standing in or from the sys.path?</p></li> <li>Zipped eggs, leading to a sys.path full of shite. Zipped eggs means you can't use <code>grep</code> and <code>find</code> (to among other things debug problem 1)! Fortunately, there's pip. Use pip.</li> <li>Some of the included batteries are unpythonic. It grates to use them.</li> <li>Might be the fault of distro's and packagers, but still: sourcefile-encoding set to fscking ASCII on install/compile. WTF? Means I have to put the "# coding: UTF-8"-stuff in every single .py I ever make.</li> </ol> <p>Py3k fixes several of my other pet peeves, by for instance insisting that strings are unicode and that 8-bit-stuff are treated differently...</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/1698964#1698964 0 Answer by Kinopiko for What are five things you hate about your favorite language? Kinopiko 2009-11-09T03:35:37Z 2009-11-09T03:35:37Z <h1>Perl</h1> <p>I dislike anything in Perl which makes me either type or think about things which I don't want to think about.</p> <p><strong>1. use</strong></p> <pre><code> use Module; my $var = Module-&gt;new (options); </code></pre> <p>Here "use" doesn't serve any purpose. Modules should be pulled in by the compiler as required. I don't want to type <code>use</code>.</p> <p><strong>2. Idiosyncrasies in libraries</strong></p> <p>Every module on CPAN seems to have its own idiosynchratic calling conventions and options. For every new module I use I have to pore over difficult-to-read documentation to find out calling conventions - do I pass a reference to a hash, a list, or what? Do I get back a list or a reference or what? Does it return an error or does it <code>die</code> or what? Even the core modules are like this. In many cases it is necessary to resort to trial and error. I want some kind of convention or best practice so I don't have to work so hard figuring these things out.</p> <p><strong>3. Subroutines don't have parameters</strong></p> <p>For a language like Perl which is so concise, the fact that I have to keep writing</p> <pre><code> my ($x, $y, $z) = @_; </code></pre> <p>at the top of every subroutine is annoying. I want to have</p> <pre><code>sub a ($x, $y, $z) </code></pre> <p><strong>4. Too many choices of modules</strong></p> <p>There are far too many similar modules doing almost the same thing. The CPAN cats need to be herded, and somebody should put some of the more fruity modules in the "fruit cellar". I'm not going to name names.</p> <p><strong>5. Shebang and other blah</strong></p> <p>Shebang is annoying. Also all the <code>use warnings;</code> blah should have been switched on by default by now. It's time to be rid of Perl 4/PHP style programming.</p>