Slashdot Mirror


User: Crazen

Crazen's activity in the archive.

Stories
0
Comments
39
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 39

  1. Can't believe it still runs 1.6 on Dell Releases Streak Source Code · · Score: 1

    It's amazing that they gave it a premium price and are shipping with 1.6.

  2. Utterly Ridiculous! on MA High School Forces All Students To Buy MacBooks · · Score: 1

    Please call and complain and remember to vote them out come election time. Your tax dollars should not go towards teaching kids how to use the current version of one (closed) vendors software. More math and science, less Britney, Bieber and iPhoto.

  3. Like their design aesthetics.... on Apple Takes Action Over Australian Logos · · Score: 1

    I HATE HATE apple's philosophy. Caretakers of the Walled Garden and proprietary habits I curse thee! Just keep making other people learn from your designers...

  4. Or.... on C# and Java Weekday Languages, Python and Ruby For Weekends? · · Score: 1

    It's quite a stretch to make such an assumption, and I'm disappointed that it's /. front page worthy. As a professional programmer, my weekend computing time is usually spent catching up on articles. I try to avoid thinking about work as much as possible, unless I get an "aha" moment, or a major issue comes up (which thankfully is rare). I would imagine other possible explanations of this behavior to be: 1) People who are not professional programmers (e.g. sysadmins, tinkerers, etc...) prefer the languages that forgo things like compile steps, strict typing, etc... 2) People who are rapid prototyping ideas use scripting languages 3) People who are trying to get "home server open source projects" like photo apps, forums, etc... running or enhanced are asking the questions. Not to say the scripting languages are bad, they definitely have a place, but IMO the maintainability and quality of languages like Java are far more important when your risking more than personal time.

  5. Commercial versions? on DARPA Builds Smarter Version of Microsoft's Clippy · · Score: 1

    If there are commercial versions of this, then why haven't the non-classified aspects of it been open sourced?

  6. Re:My recommendations for a PHP reading list on Recommended Reading List for PHP · · Score: 1

    Objections to Ruby, Perl, insert scripting language here: weak typing and no compile step

  7. My recommendations for a PHP reading list on Recommended Reading List for PHP · · Score: 0, Flamebait

    If you're building a personal home page, then look at the other posts for recommendations. If you're building something that other people will have to maintain, and is supposed to generate a significiant amount of income, or is dependent on it, read anything by Scott Meyers And then: Head First Java, 2nd Ed. C++ How to Program (4th Edition)

  8. Geez, what a headline on Google Wins a Court Battle · · Score: 1

    Slashdot = Google Marketting? Nevermind what the trial was about...

  9. VB is crap on Is Visual Basic a Good Beginner's Language? · · Score: 1

    Can't believe MS is wasting it's time on that POS. Java or C# is good for begineers. I'd recommend Java over C# mostly because Mono is significantly inferior to the JVM on Linux. Not to mention maturity. And if you're running your servers on Windows for anything but exchange, you've got bigger problems.

  10. PHP for the enterprise? on Taking the Sting Out of PHP 5 Programming · · Score: -1, Flamebait

    It's a horrible trend to see scripting languages with loose typing (e.g. a variale can be a string or a number) and poor OO implementations trying to passed off as "Enterprise" class application development platforms. The "P" languages mean crappy maintainability and scalability. Although if you don't have a qualified empowered architect on hand, and outsource most of your development, pass it off to tradesmen instead of engineers or hire a team of fresh students right out of school, I guess this is better than the alternative.

  11. What's taking so long? on Red Hat Wants Xen In Linux Kernel · · Score: 1

    Why isn't this here already?

  12. Why does Acrobat Reader install a BHO? on Adobe Acrobat Toolbar Worse than Malware? · · Score: 1

    I never figured out why reader installs a BHO. I always disable it, and notice no detrimental effects. Of course I also disable OLE integration for PDFs, since I'd rather download them usually, and more importantly have it respond quicker and cause less stability issues. What does the Browser Helper Object in acrobat reader do?

  13. File cabinets weren't locked? on U.S. Agencies Earn D+ on Computer Security · · Score: 1

    They lost the keys a long time ago, and have been trying to get the budget increased for the $80,000 it costs for new keys.

  14. Re:Congratulations Tivo! Only took 4 years to copy on TiVo to Go Released · · Score: 1

    You have to buy a USB based network adapter that is on their "compatible" list. This includes adapters from Dlink & Netgear. Home Media Option used to have a one time fee of $99 bucks associated with it, it's now included with a normal subscription on Series 2 DVRs.

  15. Program this into a PocketPC or Palm PDA on The Universal Off Button · · Score: 1

    No need to buy seperate hardware, now just need to find a resource that lists all the IR codes.

  16. I can understand why they don't want to use keys on Biometrics at the Statue of Liberty · · Score: 1

    They don't want you to have a key so you don't poke somebodies eye out with it and hijack the statue of liberty! Oh wait....

  17. The answer is..... on Should SETI Be Looking For Lasers Instead? · · Score: 1
    .....

    42

  18. Re:Why include the iPod on Turn your iPod into a Universal Remote · · Score: 1
    If for some bizzare reason you want to go past the first two steps of
    1. Aquite PocketPC
    2. Aquire Remote Control software for above PocketPC (the article listed a specific one that converts IR to audio, but you could have purchased any IR software and stopped at this stage with a far cleaner remote interface)

    Why not just use a $30 MP3 player instead of the "trendy" iPod? ... nevermind guess I answered my question.

  19. Re:Consumers? on Sun's "Java Powered" Campaign · · Score: 1
    I agree that those are all good changes however I would just like to see Sun put some of this money into more advancement in the language and JVM instead of wasting it on a mass marketing campaign like this. Just my preference though.

    It took approximately 8 years for C++ to get Templates standardized.

  20. Re:Why? on Sun's "Java Powered" Campaign · · Score: 1

    They make their money through Licensing. Like how getting J2EE sticker on your software costs a hell of a lot.

  21. Re:Consumers? on Sun's "Java Powered" Campaign · · Score: 1

    Consumers don't care what language there application is written in as long as it does what is requested. Consumers also play the part of PHBs. Consumers also get Microsoft thrown in their faces all the time.

    I am a Java programmer and Sun seriously has to start doing something relevant with the language itself

    1. Templates
    2. Meta Data
    3. type safe enums
    4. autoboxing
    5. Better thread library
    6. simplistic syntax for iterations
    I think that's a pretty good record for the latest release. What do you feel needs to be in now?
  22. Re:WTF? on Sun's "Java Powered" Campaign · · Score: 1

    You know what, that's why Anders Hejlsberg didn't add checked exceptions to C#--because half the programmers don't handle them and instead just ignore them, because Java won't let you be otherwise. In C#, you ignore all exceptions and they propogate up (without having to declare them in the method signature).

    Yup, and VB is RAD. Just because you can, it doesn't mean you should. Checked Exceptions are just as valuable as types. If you don't believe in types, or checked exceptions, then it probably means you're not suited for large scale application development.

    Microsoft most likely didn't use checked exceptions because

    1. all those old programs would have to be rewritten rather than converted to run under .NET, which would slow down .NET adoption.
    2. the low-end programmer would have a bigger barrier to entry, having to understand exceptions.

    That's an improvement over Java, sorry. Sorry, I can't disagree with you more. However I will mention that I like C#, they added some nice features and caused some healthy competition between C# and Java. Because of C# Java 5 quickly got

    • Type safe enums
    • A better thread API
    • meta data (yummy!)
    • templates (Finally!)
    • autoboxing (convenient but I still like to be explicit)
    • simplistic looping syntax (another conveniance that I could have done without, but it's to appeal to the VB crowd)
    Of course I still prefer Java just because of the mature and open source tools available out there. Just take a look at the # downloads of the various unit testing frameworks out there. It just appears to me that Java has just started (in widespread use outside of academia that is) a far more evolved perspective on software development.

    To me Microsoft has always dismissed the flexible, scaling, and secure method to develop back end software, and seems to promote hacks. While the hacks may be cunning, they usually are quite detrimental in the long term. And almost all Microsoft technology leads to vendor lock in.

  23. http://action.eff.org/ on Senate Takes Aim At P2P Providers · · Score: 1

    Please mod up. At the Electronic Frontier Foundation's (EFF) action center it's really easy to do something to help stop things like this. Provide some basic contact information, read the prepared letters (or edit it), if you agree, submit the form for email, or have your computer print out Faxs to your representatives. It couldn't be easier.

  24. AOL Lax Security __TAKE 2__ on AOL Employee Arrested in Spam Scheme · · Score: 3, Interesting
    Who else remembers this from not too long ago:

    Hack Your Way to Hollywood

    You know, the word "hack" above really bothers me.

  25. Re:The first FIVE installs on any Windows system on First Ten Programs on New Install? · · Score: 1

    Sorry but that's not true, most firewalls are configured to restrict incomming connections, your browsing and somebody uses an IE exploit to force some code on your machine that makes an outgoing connection, you're SOL. You need both for a secure system.