Slashdot Mirror


User: I+Like+Pudding

I+Like+Pudding's activity in the archive.

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

Comments · 475

  1. Pete and Repeat are in a boat on World of Warcraft Duping Bug Found · · Score: 0

    They must have used some of Slashcode's topic posting routines

  2. Re:Yes on Conquering the LaGrange Points? · · Score: 0

    >>Some other misnomers taught to us through our *great* K-12 educational system about the American Revolution.

    >Who on earth would call our K-12 system great?

    Exactly! Why, our grasp of sarcasm alone is at least 5 years behind that of most Scandinavian countries. Poor kids are left to pick it up on the streets.

  3. Re:Ruby? on Ajax On Rails · · Score: 1, Insightful

    So much for the "tune for performance later" crap. When will programmers learn that doesn't actually work? You need a good design that includes tuning for performance early on.

    Algorithmic and architectural optimization is best accomplished after you fully understand the problem domain, and low-level code optimization is best done only after you've optimized the big stuff. Most of the time, you don't go in knowing exactly what you're doing, so you can't make big gains without refactoring a ton. In fact, the more you design up front, the more work it is to go back and change things around. This is one reason why iterative development methodologies are gaining in popularity.

    Our example, Ruby, is currently a 1.x release. A feature-complete 1.x release, as far as I'm concerned. Now, Ruby 2's VM is planned to be JIT and generally faster. But, I guess it won't because apparantly refactoring "doesn't actually work". Just the other day I was writing some new code that ran faster, but it actually didn't because, see, I had written slower code to begin with, which makes all succeeding versions work at exactly the same speed. Yeah.

    -/ILP/-

    So much for make it work, make it right, make it fast

  4. Re:widget set - Try Konfabulator on AJAX Buzzword Reinvigorates Javascript · · Score: 0

    With Dashboard, you can either display your widgets, or display your active applications; you cannot do both.

    No, with Dashboard you can bring up your widgets without having to free up screen real estate or move windows, which happens to be about 1200% more useful. You hit f12, and its there! You hit f12 or click somewhere that isn't a widget, and its gone! As an added bonus, the widgets exit their run loop when they aren't active to free up resources.

  5. Re:Copyright infringement? on New Orbitz Terms Prohibit Inbound Deep Linking · · Score: 0

    If it's possible to copyright URLs, then I have dibs on /index.html

  6. Re:No you don't on Apple Explains How to Run X11 on Mac OS X · · Score: 0

    Actually, I just bought a mini and all the Xcode packages were sitting on the HD.

  7. No you don't on Apple Explains How to Run X11 on Mac OS X · · Score: 0

    Mod parent ignorant.

    Just download it from here:
    http://www.apple.com/macosx/features/x11/

  8. Re:What the??? on Folksonomies In Del.icio.us and Flickr · · Score: 0

    Yeah, it was like reading a chinese edition of a Noam Chomsky book on semiotics as translated by the author of the Celestial Emporium of Benevolent Knowledge, who's name is most likely the chinese equivalent of Monty Cantsin.

  9. Re:Jesusonic Looks Interesting on Justin Frankel Reveals Life After Winamp · · Score: 0

    Computers already do real time FX processing, along with realtime everythingelse. You can head over to kvr-vst.com and browse through hundreds of them right now (for windows, anyways). The real problem with FX is quality. There are 800 software reverbs out there, and most of them pale in comparison to a 200$ hardware unit (convolution reverbs sound great, but eat all your cpu). I'm far more interested in things like TC's Powercore system. You can drop 300$ on this thing (the pci version, anyways) and get a suite of pro-quality FX that Hans-freaking-Zimmer uses. Bonus for not eating up the processor, because those 8 Absynth and Virsyn Cube instances are already bringing the machine to its knees.

  10. Re:Agreed on Editorial: On the SpikeTV Video Game Awards · · Score: 0
    I think the stigmata the gaming industry has will take a long time to shirk.
    Amen.
  11. Re:Why would a satisfied Perl5 user migrate? on Perl 6 Grammars and Regular Expressions · · Score: 0

    If speed and size were the only two criteria that made languages great, we'd all be programming in NOOP.

  12. Re:What the hell ever happened to honesty? on Avi Rubin and More on Electronic Voting · · Score: 0

    If you believe that, then my Nigerian friend here has a bridge he'd like to sell you.

  13. Let's just stop this right here on Review: Evil Genius · · Score: -1, Offtopic

    In Soviet Russia, article topic verbs YOU!

    I'm going to go shower now.

  14. Re:shortcomings to sql? on An Alternative to SQL? · · Score: 0

    Exactly. It's this sort of mentality that leads to people querying the DB 400 times per pageview through an O/R library.

    You see, when optimizing, readability is usually the first thing to go. The second is patience, with the third being execution time. This is the Tao of Optimization; how can it be otherwise?

  15. Re:SQL is good for some things, but not for others on An Alternative to SQL? · · Score: 0
    You're nuts. I've also written a threaded forum in PHP - here's the code that gets a thread and treeifies it:
    // returns a threadstruct for an entire thread
    function getThread($thread, $db) {
    $tid = $thread["tid"];
    $post_select = "SELECT * FROM posts WHERE tid='$tid' ORDER BY post_time ASC";
    $post_rs = @pg_query($db, $post_select) or die("Error selecting posts for thread display.");

    $threadStruct = array();
    for ($j = 0; $post = @pg_fetch_array($post_rs, $j); $j++) {
    if ($threadStruct[$post["par_pid"]] == null) {
    $threadStruct[$post["par_pid"]] = array();
    }
    $threadStruct[$post["par_pid"]][] = $post;
    }
    @pg_free_result($post_rs);

    $threadStruct["tid"] = $thread["tid"];
    $threadStruct["fid"] = $thread["fid"];
    $threadStruct["thread_sticky"] = $thread["thread_sticky"];

    return $threadStruct;
    }
    If you need a DB to magick up a 6 line (and I was being verbose) for loop to sort a thread, you have bigger problems than SQL or any other DB technology would know how to solve. The Prevlayer people would tell you otherwise, of course, being that they're Computer Scientologists.
  16. Oh hell no on System Shock 2 Retrospect...and Possible Followup? · · Score: 0

    System Shock 2 was, in fact, a terrible game. I don't know why everyone loves it so much. Makes me fear for the Tribes series which fell into their hands. At least they can't make anything less stable than Tribes 2.

  17. Re:Don't link to bugzilla!!! on A Security Bug In Mozilla - The Human Perspective · · Score: 0

    I have a sudden urge to play golf.

  18. Hey! Look! on Interview with Tom Lord of Arch Revision System · · Score: 2, Funny

    DJB wrote a revision control system!

  19. Re:How do you transcribe... on Port Knocking in Action · · Score: 0
    perl -e'print join(",",unpack("s*","shave and a haircut")),"\n"'
    Shorter, faster.
  20. Re:Well, there go the logfiles on "Port Knocking" For Added Security · · Score: 0

    I love people who claim obscurity doesn't increase security.

    You see, the US army has a $750,000 anti-radar missile called HARM. It homes in on the emissions of radar stations and blows them to hell. During the whole Bosnia thing, the Serbs would rig up 75$ microwaves to run with their doors open, and HARMs would be flying into them left and right.

    On the internet, missiles cost nothing produce. Taking into account the principles of supply and demand, we end up with INFINITE FUCKING MISSILES, so I'll take all the microwaves I can get. I'll also take blenders, mixers, ovens, spatulas, and half a dozen of George Foreman's Mean Bean Cleaning Machine if they'll reduce my chances of getting hit.

  21. Re:Blind C Coder on Three Blind Phreaks · · Score: 0

    This doesn't really surprise me. I find it's easier to visualize how code works/should work when I'm closing my eyes. On top of that, I'll usually be listening to some thumping 4/4 electronic beats to blot the unordered ambient sounds around me - a sort of drummer to march my thoughts to. Conversly, it's impossible for me to concentrate when I'm talking with someone.

  22. Re:old man murray on On Videogame Journalism · · Score: 0

    On the off chance anyone here participated in and misses the OMM forums, we moved here after Chet's girlfriend kicked us out. There are also articles and reviews and such, some of which are almost as funny as Erik's.

    -/ILP/-

  23. Re:What can 60 billion dollars buy? on A New Kind of War · · Score: 0

    Obviously, it should have been spent to buy you a clue.

  24. I've seen worse on Get a Grip on LAN Parties · · Score: 1

    The company I work for used to have several small offices before we moved. 2 of the offices were across the street from one another.

    One day, my friend and I were moving some people between the buildings. We only had one dolly, so my friend threw a computer onto a file cabinet and started __BEGIN_FORESHADOWING__ rolling down the street with it __END_FORESHADOWING__. I guess he never saw that rut...

    The faceplate on that optiplex was so messed up that it would hit the reset button if you applied the slightest pressure to it. It also had a big gaping hole in the upper corner.

    Still, I can't condone the mistreatment of an E450...


    --
  25. Re:What about DOS? on MS Squashes SQL Benchmarks · · Score: 1

    c:\> loadhigh MSSQL7
    <386 proc emits geyser of steam>

    --