Slashdot Mirror


User: JohnnyBGod

JohnnyBGod's activity in the archive.

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

Comments · 458

  1. Re:I don't buy the premise, just yet on Why Is the Internet So Infuriatingly Slow? · · Score: 1

    TCP provides a fair share per connection, not per person. Anyway, the real problem is ISPs overselling their network.

  2. Obligatory on China Sets Sights On Rail Record · · Score: 1
  3. Re:Flash on Firefox 3 Is Fixed on Why Is Adobe Flash On Linux Still Broken? · · Score: 1

    Well, I'm on Firefox 3 in Ubuntu and I still have the exact, same problems.

  4. Re:Um, Earth to China... on China to Build a Zero-Carbon Green City · · Score: 1

    Razing people's houses never stopped China when building Olympic infrastructure.

  5. Re:Good Luck... on China to Build a Zero-Carbon Green City · · Score: 1

    Plus, you can reduce waste by using the cow's hide to produce leather. Unless you're vegan. Then you'll tell everyone to buy artificial leather instead. Because using plastics, and hence oil, to produce clothing is a much better idea than using cow hides...

  6. Re:Small Detail: Growing is Still a State Crime on Google Caught On Private Property · · Score: 1

    Not trying to troll, here, but, as an European with limited understanding of American law, I need to ask: if states can just arbitrarily decide if they'll enforce them or not, isn't it kind of pointless to have federal laws?

  7. Re:What Charging Infrastructure? on GM, Utilities Partner To Advance Plug-In Hybrids · · Score: 1

    Did you even read my post? The entire apartment runs on 220 V and it's a 30 amp box. Each outlet can handle 10 A.

    Now, to be fair, I don't have any of those appliances (just a gas water heater, but that obviously doesn't count).

    Sure, on a 400 (or even 200, since there's double the voltage) amp box charging is an hour or less... But the electric bill is a whole lot more, too!

  8. Re:What Charging Infrastructure? on GM, Utilities Partner To Advance Plug-In Hybrids · · Score: 1

    Where do you live, to have 100 Amps in a single outlet? My entire apartment has a maximum of 30 A @ 220 V, and no single outlet can handle more than 10. You're also going to get disappointed if you think getting 400 amps in a single cord is "simple".

  9. Re:But! on Ubisoft Steals 'No-CD Crack' To Fix Rainbow 6: Vegas 2 · · Score: 1

    And three rights make a left!

  10. Re:From the Torrentfreak blog: on Sweden's Snoop Law Targets Russia · · Score: 1
  11. Re:From the Torrentfreak blog: on Sweden's Snoop Law Targets Russia · · Score: 1

    I'm sorry, but a referendum for a 300+ page document that 90% of the population isn't going to be bothered to read, let alone understand, IS a joke on democracy.

  12. Re:Convincing one of safety of small vehicles. on VW Concept Microcar Gets 235 MPG · · Score: 1

    Well... their crash tests are, in themselves, good arguments for their safety, at least in the case of the Smart.

    The other argument is that small cars tend to handle better, so you're less likely to crash in the first place.

    But then again, where I'm from a Corolla IS a full-sized vehicle.

  13. Re:Javascripts popularity is no real suprise on Brendan Eich Discusses the Future of JavaScript · · Score: 2, Informative

    You can write recursive code in Javascript now, but it's very slow. Iterative solutions are faster.

    Which means... it's pretty much like every imperative language on the planet?

  14. Bad sysadmin! on 1 In 3 Sysadmins Snoop On Colleagues · · Score: 1, Funny

    Down! That's a bad sysadmin!

  15. Re:They tried, and failed (Audi A2, Smart) on Efficiency? Think Racing Cars, Not Hybrids · · Score: 1

    In your mention of the A2, you forget to mention... the car's fucking UGLY.

    And in your mention of the smart, you forget to mention, among other things, that the Mk-1 smart's handling is a joke.

  16. Re:Good riddance! on The SUV Is Dethroned · · Score: 1

    You know, you could just overtake the bike...

  17. Re:This is terrible news on TSA Bans Flight If You Refuse To Show ID · · Score: 1

    Ironically, low-cost flights in Europe oftentimes cost less than train fares.

  18. Re:I don't really get the Java hate around here on What Makes a Programming Language Successful? · · Score: 1

    As Rary mentioned, it only implies that I haven't coded Java for long. Incidentally, however, you are right. I'm still young.

    As for the other languages you've mentioned, I've dabbed in most of them enough to find some problems. Here's what I've used and what I think about it:

    • C/C++: Outside of Java, the languages I've used the most extensively. The arguments for/against them have been discussed ad infinitum and are generally right, so there's nothing more to say.
    • Python: I like it. A lot. I've been wanting to do something serious with it for a while and I'll probably start at the end of this semester. The only things I didn't like were the colon at the beginning of each block (wasn't it supposed to just use the indentation, damnit?), and the fact that the same function can return values of wildly different types, though I think most developers will be sane enough not to actually do this, since it would be a pain to be checking for every single possibility at the end of every single function call.
    • PHP: great for Web development due to having the ability of being embedded in HTML, but migrating from ISP to ISP is a real pain, since all it takes to break code is the ISP not having compiled in something which you rely on. In an environment which you either control, or have meaningful influence in, it works great. I also don't like the "Let's throw everything into the core without a single namespace" philosophy.
    • Bash: Good, but it has problems outside its little bubble i.e. if you need it to do something you can't easily chain common commands for. Unless you code said commands, which you probably won't do in Bash. Of course, if you're writing the script just for yourself, you won't care if the commands aren't common.

    I've barely looked at Ruby and Lisp, as I find the syntax to be rather offputting, much more so in the case of the latter, though I readily admit that this a rather lame argument.

    I'm finally starting to adopt the following policy:

    1. Use a really-high-level language for initial implementation.
    2. Find better algorithms.
    3. Implement in C/C++.

    When one isn't satisfactory, I move down.

    Of course, none of the above is dogma, just my personal experience.

  19. Worthless article on Tom Clancy: Endwar to Change the Face of Console RTS? · · Score: 1
    All the article says is some guy is saying "OMG This game will change everything!!!!11oneeleven" with absolutely no hints on why.

    People have already tried RTS on consoles and failed miserably. Why should this be different?

    Ultimately, both the FPS and RTS genre are undoubtedly better on the PC. Why? The mouse is a superior controller in any of those genres. Plain simple.

  20. I don't really get the Java hate around here on What Makes a Programming Language Successful? · · Score: 5, Insightful

    Java's well organized, has a great standard library and is (mostly) consistent with itself. Its only problems, as far as I can see, was that it was initially slow and that it marketed itself as a web language, when there were better choices for that.

    Disclaimer: I've only coded in Java since 1.5.

  21. Re:Can't put that genie back into the bottle on US Plots "Pirate Bay Killer" Trade Agreement · · Score: 1

    That's what eMule's for.

  22. How about... on Dealing With Dialup · · Score: 1

    one of those 3G broadband USB or PCMCIA modems?

  23. Re:The world is not the U.S. on Smartphone Battle Is Shaping Up As RIM Vs. Apple · · Score: 1

    OK, now try to touch-type while you're doing something else and not looking at the screen. It's exactly the same reason why I don't like "smart" message writing (i.e. T9).

  24. Re:Suggestions... on PC Gaming Suggestions for Console-like Fun? · · Score: 1

    That and there's also pretty much every sports game ever made, if you're into that.

  25. Re:1 hidden comment on UK Scientists Make Transistor One Atom Long, 10 Atoms Wide · · Score: 1

    Um... I think you mean a MOS transistor.

    A CMOS logic circuit needs at least two transistors.