Berkeley CSUA MOTD:Entry 42678
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/04/04 [General] UID:1000 Activity:popular
4/4     

2006/4/5-7 [Computer/SW/Languages/Java] UID:42678 Activity:nil
4/5     http://www.zefhemel.com/archives/2004/08/16/why-java-sucks
        Just wondering if java-philes might agree with some of the
        sentiments listed (being a c++ person myself)
        \_ Java sucks for many reasons.  C++ sucks for many more.
           \_ I think C++ will be around and useful long after Java has
              gone to the grave. I'm not saying C++ is great, by the way.
        \_ The author is right on some issues but given how very wrong
           he is on others I suspect he is right more on accident than
           he is on others I suspect he is right more by accident than
           anything else.  Yes there is a large domain that encompasses
           J2EE development, and a senior engineer needs to know them.
           That's what being a senior engineer is all about.  You think
           people get these kinds of salaries cause they look sexy in
           suspenders and grease stained tshirts?  Yes there are lots
           of Java libaraies out there, the horror!
2025/04/04 [General] UID:1000 Activity:popular
4/4     

You may also be interested in these entries...
2013/4/29-5/18 [Computer/SW/Languages/C_Cplusplus, Computer/SW/Compilers] UID:54665 Activity:nil
4/29    Why were C and Java designed to require "break;" statements for a
        "case" section to terminate rather than falling-through to the next
        section?  99% of the time poeple want a "case" section to terminate.
        In fact some compilers issue warning if there is no "break;" statement
        in a "case" section.  Why not just design the languages to have
        termination as the default behavior, and provide a "fallthru;"
	...
2013/5/1-18 [Computer/SW/Languages/Java, Computer/Theory] UID:54669 Activity:nil
5/1     What's the difference between CS and Computer Engineering?
        http://holykaw.alltop.com/top-ten-paying-degrees-for-college-graduates
        \_ One is science and the other is engineering.
        \_ From http://en.wikiquote.org/wiki/Computer_science
           'A folkloric quotation ... states that "computer science is no more
           about computers than astronomy is about telescopes."  The design
	...
2013/3/5-26 [Computer/SW/Languages/Java] UID:54618 Activity:nil
3/5     Three emergency Java updates in a month. Why do I have a feeling
        that the third one won't be the last one?
        \_ Bingo!
	...
2012/12/18-2013/1/24 [Computer/SW/Languages/Perl] UID:54561 Activity:nil
12/18   Happy 25th birthday Perl, and FUCK YOU Larry Wall for fucking up
        the computer science formalism that sets back compilers development
        back for at least a decade:
        http://techcrunch.com/2012/12/18/print-happy-25th-birthday-perl
        \_ I tried to learn Perl but was scared away by it.  Maybe scripting
           lanauages have to be like that in order to work well?
	...
2012/12/4-18 [Computer/SW/Languages/Java] UID:54544 Activity:nil
12/4    Holy cow, everyone around me in Silicon Valley is way beyond
        middle class according to Chinni's definition:
        http://en.wikipedia.org/wiki/American_middle_class
        \_ Let's set our goals higher:
           http://en.wikipedia.org/wiki/Upper_middle_class_in_the_United_States
           \_ How about this one?
	...
2012/10/29-12/4 [Science/Disaster, Computer/SW/Languages/Java, Politics/Domestic/President/Bush] UID:54516 Activity:nil
10/29   Go Away Sandy.
        \_ Sorry, Coursera is performing preventive maintenance for this
           class site ahead of Hurricane Sandy. Please check back in 15 minutes.
           class site ahead of Hurricane Sandy. Please check back in 15
           minutes.
        \_ Bitch.
	...
Cache (8192 bytes)
www.zefhemel.com/archives/2004/08/16/why-java-sucks
Eclipse I can be very productive, I can probably code faster in Java using Eclipse than in any other language (including PHP and Python), debugging is easy, errors can be found quickly and easily. But as any platform does to some extent: Java sucks, and I'll tell you why. Swing I haven't used it a lot myself, thankfully, but to me it seems too complicated, slow and on top of all: ugly. When I use an OS, I like consistent behaviour and looks. I don't want some friggin' purple, slow, ugly looking window on my screen that eats away half of my memory. That's why IBM developed SWT which uses native widgets supplied by the OS. Not only is this a lot faster and uses less memory, it looks better too. Proposed Swing slogan: "Sure it looks like shit, but at least it does so consistently on all operating systems. " J2EE J2EE is the Java way to build "Enterprise Applications". I have some experience with the Servlet/JSP part of it and it works reasonably well. One thing though: Sun loves XML Every servlet you create, every JSP taglibrary tag you write has to be registered in an XML file. KeyTopic is work around the servlet registration problem (by using only a single servlet). I also briefly looked at EJB, that's even much, much worse. Every EJB has like an interface file, home-thing file, remote-thing file, and a couple of XML files attached to it. Most of this can be generated automatically by using applications like XDoclets, but still, it's a mess. It's confusing, complex, and most importantly: so much more complex than it has to be. I'll just quote the list, to make it more clear: + You need to be proficient in object-oriented analysis and design (OOA/D), design patterns (GoF, J2EEDP), and integration patterns. You should be intimately familiar with UML, especially class, object, interaction, and state diagrams. You should be able to decompile a class file and comprehend basic byte code instructions. You should also be familiar with the JavaBeans component model for UI widgets. JavaBeans are also used in JSP to isolate business logic from the presentation tier. You also need to understand the implications of the object-relation impedance mismatch, how it will affect your business objects' interactions with a relational database, and its performance consequences. You should also learn how to package and deploy applications on it, and be able to monitor its performance and tune it. It's so much choice that I just don't know what to choose and what the implications will be. This is a major reason why I hesitated to start with Java, it's just so amazingly overwhelming and complex. Purity Basically the only proper way to write your software in Java is system independent; On the server side this usually isn't the biggest problem, but when you do client stuff, you might want to use the system tray in Windows. Oh sorry, I bought this really cool OS that has all those cool features, but now I can't use them because that'd affect my purity. With Java 15 (not out yet) some stupid decissions were made. Generics in Java use a wipe-mechanism to retain backward compatibility with previous Java versions. Some of the drawbacks are these: + No parameter type information is retained on a generic collection. You can't ask what the type parameters were of a certain collection at run-time, for example. Some smaller things + The Classpath: As a beginner you'll always have problems with the classpath. Java can't find the class you're trying to use, says the package declaration is wrong. The only reason they're here is for speed's sake, and to complicate things more. NET 20 will have CLR support built-in for generics and won't use a hack, like the wiping that will be used in Java 15; there's a lot less choice in application frameworks (they basically all come from Microsoft); there are value types and reference types, which are, arguably, more natural than primitives and object types; C# is a more feature rich (and in my opinion better) language than Java; Gideon at August 16th, 2004 at 1:05 pm 2 Gideon: Why would you want methods to be objects? Doesn't that go against what methods are supposed to do? By Jaap at August 16th, 2004 at 4:46 pm 3 I think he means you can't treat them like objects. You can't pass them to for example a function as if it were an object. In languages such as Python, everything is an object, including methods and classes. Marten Veldthuis at August 16th, 2004 at 11:31 pm 5 I'm not so very fond of Ruby (too perl-ish). But I never heard of Ruby On Rails either, looks like it deserves to be looked at. By Zef Hemel at August 17th, 2004 at 6:53 am 6 Admin, please erase the previous two jiMMy & replace with this one. KDE,Gnome in toy-languages or risk being labelled as simply TOYS. Moves 10 steps forward, 10 steps back Back in early days, these very same language designers bitched about C++ most powerful features (templates & operator overloading): 1 to complex to master/implement/blah blah 2 subject to abuse Their recommendation - we dont need it, can be easily replicated: 1 use manual error-prone to cut and paste to mimic template 2 use extremely verbose methods to mimic operators *** class_subtract(class_divide(class_add(class_multiply(2,3),5), 6),1); Guess what, templates finally make their way back, these very same features, they trashed... Does it take them that long to see the light at the end of the tunnel? These very same language designers, who once trashed C++ most powerful features, finally seen the light that Bjarne long saw values in multi-paradigms... It's slow and sometimes bureaucratic, but it has from the beginning software engineering in mind, and this is cool at specification and design time, because there's not surprises. J2EE maybe is too complex for web developing, but it's really a distributed processing framework that has the top mark in distributed application benchmarking (look for DNA sequencing), so you maybe are trying to kill flies with a cannon... A really good thing: little amount of keywords (compared with C++ and C#) and consistent syntax (at least in 14). NET and forget the Microsoft almost aquired CF a few yaers ago because it was so good. If you haven't tried it don't knock it, I have respect for your article because you have actually used JAVA and can talk properly about it. NET platform has one big disadvantage: It is created by Microsoft, microsoft owns the platform and that is bad. In java you are independent from the platform and that is a huge advantage. And swing is not slow, en looks really good, but only if you use it right. Java rules By Tjerk at December 5th, 2004 at 7:05 pm 10. I have some radical new ways, implementing which, java can even surpass assembly speeds. do some research before start writing stuff on the web By Sam at February 18th, 2005 at 8:50 pm 13. do some study first before writing on the web By Sam at February 18th, 2005 at 8:51 pm 14. I have been programming C++, C, perl, php and a few others for years. Out of boredom, I started reading some Java books, to really get into it -- I only had a superficial knowledge of the language. My very first impression: why does a dynamically allocated and garbage collected language need static arrays, for instance? That's just one of the things I didn't like - I think some choices are just plain wrong - but in general I must say that it does get most things right. Now, when you start reading about the rest - it's a complete and utter mess - a nonsense of acronyms, technologies that sound like vaporware, and plain old marketing. I see absolutely no need of having this sort of complexity - what happened to KISS? what happened to writing tools that serve a specific purpose well? I have been making a list of the different technologies I need to explore that are common to a Java developer and I have 2 By george at February 21st, 2005 at 7:58 am 15. cool discussion By Anonymous at March 8th, 2005 at 10:55 am 17. It takes time to appreciate the finer things, unfortunately as you focus is obvious you'll stay in the dark ages. once you get on, it never stops - the marketing folks at Sun/Oracle, etc keep adding new crap that your boss thinks the company ...