Originally posted by LacrosseBoss
Things I hate about a language
Collapse
X
-
-
yes it does. And when I posted this I was referring to all languages with semicolons with those as examples. They all just piss me off. The problem I had when I took C++ in school was that we were given a compiler that ran in Linux but my Linux partition on my school issued laptop wasn't working. So I tried work arounds but free internet stuff sucked and I resorted to coding apps in Notepad and having friends test them.
This is where the problem came from. I will say when you have a compiler to direct you to an error, it's much easier. They say you learn from your mistakes, well I definately did that time!Comment
-
Originally posted by AtliC++:
Pointers are annoying but yet they give you so much control.
I for one would be very sad if we lost them.
C# :
There is no way to know the current index in a foreach loop.
PHP:
$.. its everywhere!
My two cents though:
c++:
The amount of code you have to write to get something simple going... and the amount you have to write to get something complicated going as well.
vb .Net:
How annoyed I get when I have to write
Code:dim test as integer
Code:int test;
php / ASP:
How it mixes design and implementation. The code is in the page!
html:
Well this is in compliance, and it looks funny in mozilla. Well now its fixed for mozilla, but in safari and ie this picture is off on the moon. Well lets fix that. Oh now mozilla has the damn text way over there... continue until someone gets shot. Oh, and the multitude of items out there that you shouldn't use anymore... but still exist. Example: <blink></blink>. I think there's a KKK for the blink tag, on that note.Comment
-
C++: taking 5 minutes to compile, save, and run a program just to test something, when in python I just open the interpreter. (nitpick)Comment
-
html:
Well this is in compliance, and it looks funny in mozilla. Well now its fixed for mozilla, but in safari and ie this picture is off on the moon. Well lets fix that. Oh now mozilla has the damn text way over there... continue until someone gets shot. Oh, and the multitude of items out there that you shouldn't use anymore... but still exist. Example: <blink></blink>. I think there's a KKK for the blink tag, on that note.Comment
-
Originally posted by drhowarddrfineThose of us who know html don't have any such problems.
I sware to God, that language is just a pain. Sadly, its not the language's fault either!Comment
-
-
Originally posted by blackjack2150I forgot to mention that you must add "throws IOException" to the header of the methods which deal with user input.
Yeah I'll give you that one, that can be a pain. It's nice when ann app can just let you miss exceptions unless you want them caught individually.Comment
-
Originally posted by pbmodsJavaScript: Internet Explorer
Sorry, that doesn't really count, does it?
PHP: Built-ins aren't object-oriented (yet).
JavaScript: (kind of along the lines of the first line in my post) having to do things differently in every browser.Comment
-
Originally posted by gitsof course this counts ;) but since it is not really a javascript-problem, that browser-things ARE annoying ...Comment
-
Originally posted by drhowarddrfineI believe it's the difference between Microsoft's JScript and standard javascript. We should all be using DOM methods now anyway which is where a lot of people get into problems with incompatabiliti es. (That is, by NOT using the DOM).Comment
-
Originally posted by DeManlanguages that use "dim" (eg v.basic) always used to amuse me,.....it served as a reminder that the computer was not so bright without good instruction.... ..Comment
Comment