Slashdot Mirror


User: Beek

Beek's activity in the archive.

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

Comments · 176

  1. Re:Don't knock it before you try it... on What is Ruby on Rails? · · Score: 1

    >Who do you think the people evangelising RoR are? Do you think they are actually
    >people who have only learned Ruby, so they don't know any better in trying to get
    >other to try it? For some reason, I doubt it... While I don't necessarily have any
    >hard evidence on user profiles...

    Well, one of the biggest RoR evangelists is Dave Thomas, author of The Pragmatic Programmer...

  2. Re:Autopilot on Airbus A380 Under Fire · · Score: 1

    I'd assume all passenger/cargo planes work like this now... My dad flies a Dash 8 and has pretty much the same functionality. Pre-flight he enters everything into the computer, the autopilot does everything while the plane is above 2000 feet.

  3. Teeth? on The Tongue Twisting Tooth Microphone · · Score: 1

    I'm from the south, you insensitive clod!

  4. Re:Start adding unit tests on Torvalds & Linux Dev Process · · Score: 1

    That's a great practice for most projects, but is it realistic for a kernel? I'd guess that a lot of bugs result from multithreading, obscure hardware, etc, it makes me think that unit testing wouldn't be realistic. Or maybe everything gets tested except stuff in the arch directory...

    I'd love to know how one does automated testing when you're working with bare metal, if any slashdotter knows!

  5. Re:Testing on An Early Look at JUnit 4 · · Score: 1

    > Unit tests aren't to make sure that your code is working correctly right now

    Well, if you're doing test-first development, you're writing unit tests to make sure your code running correctly right now. And you get the long-term benefits for free :)

  6. Re:YAY! on Slackware Linux 10.2 Released · · Score: 2, Informative

    When I compile a program, I put everything in it's own directory in /opt (use the --prefix option when you run the configure script)
    It makes for some long PATH and MANPATH variables, but it works for me
    Since there are only 20-ish extra programs that I need, I find it quite managable

  7. Re:You insensitive (capitalistic) clod... on Fuddruckers Called Out on Hotlinking · · Score: 1

    Yeah, his flash clone of an old video game is something to get all high and mighty about

    My eyes are rolling at an amazing speed

  8. Re:Fun on Microsoft Proposes Cooperative Research With OSDL · · Score: 1

    But how can they screw open source software? I don't see how they can destroy OSS through collaboration unless they manage to convince some GPLers to go BSD, dual license, or sing over copyrights.

  9. Some Moog music you may want to check out... on Synthesizer Pioneer Bob Moog Dies · · Score: 1

    A collection of electropop records. Most of them feature the Moog as the main instrument.

    Off the top of my head, these are the albums I own that utilize the moog:
    Hugo Montenegro - Moog Power
    Hugo Montenegro - Neil's Diamonds
    Return To Forever - Romantic Warrior
    Edan - Beauty And The Beat

    There is a distinct sound with the moog. I'm not a musician, so maybe it's an effect I'm making up, but I notice it.

    Still looking for a copy of Moog Indigo on vinyl.

  10. Re:Don't forget Catalyst! on A Piece of CherryPy for CGI Programmers · · Score: 1

    You can this with Rails too. There's a lot you can do with routes.rb since really, it's just code, not a configuration file.

  11. Re:People are looking at this the wrong way on A Piece of CherryPy for CGI Programmers · · Score: 3, Informative

    > Put a function called hello() in your CherryPy application, and the return value of
    > that function is displayed in your web browser when you visit http://address/hello

    Rails and Struts already have this feature.

    (Of course, for Struts you need a some XML for every class you want to act this way.)

  12. Re:Megaman Soccer on Only NFL Game This Year Gets Lukewarm Response · · Score: 1

    Basewars was much better.

  13. Re:Pass me the crackpipe, please on Will AJAX Threaten Windows Desktop? · · Score: 1

    http://www.loudthinking.com/arc/000479.html

    In particular... "The point is that the cost per request is plummeting, but the cost of programming is not."

    And the cost of deployment is not either. Or any other of the people-related tasks in development.

  14. Another Slashdot misleading headline on E-commerce Sites Edit Customer Reviews · · Score: -1, Redundant

    Where in the summary or the article does it say that the retailers are actually changing the customer's reviews? Seems like it's just about accepting/rejecting reviews.

  15. Re:Commenting on Successful Strategies for Commenting Your Code · · Score: 1

    You get the same benefits doing test-first development... But on top of that, you *must* update the tests when you update the code (unless the code change is trivial).

  16. Re:whoosh! on Next-gen Windows Command Line Shell Now in Beta · · Score: 1

    You honestly think performance will be an issue on a 3 ghz machine?

    LOL, in fact LMAO

  17. You've got the priorities wrong on Pharm-Bot Goes On Rampage · · Score: 5, Funny
    1. A robot must check the level of insurance coverage of patient
    2. A robot must not allow a human to come to harm from it's action or inaction, unless that action is not permitted by rule 1.
    3. A robot must follow orders given by a human, unless that order contradicts rule 2.
  18. The REAL importance of RSS on The Importance of RSS · · Score: 1, Interesting

    It interrupts me from my work every hour :-)

  19. Okay I admit it on Many Scientists Admit Unethical Practices · · Score: 1

    I fudged my stoichiometry results during a couple of my labs in Grade 11. Operating a pipet is hard when you're trying to check out the hot ladies in front of you.

  20. MOD PARENT UP on Windows to Have Better CLI · · Score: 1

    I never knew of this... Thanks!

  21. Bad choice on New .XXX Top Level Domain · · Score: 1

    I always thought it should have been .cum.

  22. Re:Good! on Interest in CS as a Major Drops · · Score: 1

    > (like the fool I worked with who thought he'd save disk space on a Win 3.x machine by setting up the swap space on the server)

    THAT IS AWESOME

  23. Re:You dont use a sledge hammer to open your penut on The State of the Scripting Universe · · Score: 1

    I would suggest learning J instead. It's essentially APL, but replaces all of APL's special characters with ASCII characters.

  24. Re:WTF? on Theo de Raadt gets 2004 FSF Award · · Score: 1

    rofl

  25. Don't ask slashdot on Optimizations - Programmer vs. Compiler? · · Score: 1

    Ask a profiler. Write the clear code, and profile it. If there's a performance problem, then optimize. If you don't think your optimizations will show up when profiling your app, then your optimizations are worthless.