Slashdot Mirror


User: Sinner

Sinner's activity in the archive.

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

Comments · 282

  1. Thank God For That! on AOL Locks Out AIM Screen Names · · Score: 5, Funny

    If they'd mistakenly suspended those accounts on purpose, I'd be really worried about it!

  2. Re:More disturbing than censorship on China Bans Game Recognizing Taiwan Independence · · Score: 2, Funny
    Check out this photo from North Korea for something much more disturbing than censorship. Yahoo news image
    You call that disturbing? I call that hilarious!
  3. Yeah right on Consensus on Global Warming · · Score: 1

    Like Bush could pronounce "Colonoscopy". As if.

  4. Hilariously bad on China Launches New Search Engine · · Score: 1
    Top result for a search on "Wikipedia":

    Wikipedia:Votes for deletion/Bukkake - Wikipedia, the free encyclopedia

    You couldn't make it up.

  5. Re:It does explain an awful lot. on Lone Activist Group Submits 99.8% of FCC Complaints · · Score: 3, Funny
    Maybe you mean that as a joke, but there are indeed subcultures in this country where objectification, degradation and subjugation of women is the norm.
    You are, of course, talking about the Republican Party?
  6. Re: risks of death due to injury on Live to be 1000 Years Old? · · Score: 1

    This rules! Interesting that you're more likely to be killed by your hot tap than die on a train. I guess I should worry less about the commute home and more about the bath afterwards.

  7. Re:See only the Bible for answers. on Live to be 1000 Years Old? · · Score: 1
    which could be caused by the continuing sin decay of creation.
    ... None of that is going to mean much to unbelievers, of course.
    You sure got that right. So, explain to me again, what is the difference between your fairytales and the Scientologists' stories of "Xenu"? Oh yeah, I forgot, yours are older.
  8. Re:Sorry, Your screwed. In a gay way. on Professional Photographers Using Linux? · · Score: 1
    is it just me or does that police guy on the left look like he's right out of a gay porn film?
    What about the guy with the moustache? For a moment I thought I was looking at a gay pride march. Hell, I think I might go gay just looking at it. Not that there's anything wrong with that.

    In Korea, only old cops are hetrosexual... damn it, I just can't get on this bandwagon thing! Throw me a frickin' bone, people!

  9. Re:Um... on Blogging Sweeps China · · Score: 1
    sex is the real reason behind any action.
    I'm guessing you don't have a girlfriend.
  10. Re:Um... on Blogging Sweeps China · · Score: 1
    I think I see a new Slashdot meme brewing...

    1. Take a shit
    2. ...
    3. SEX!

    Or maybe not.

  11. Roland Piquepaille writes... on Self-Adapting Traffic Lights · · Score: 1
    Serial spammer Roland Piquepaille writes "If you're like me"
    Dude, noone is like you.
  12. Re: Who would have a use for this type of storage on 1.6TB In a Shoebox, If You've Got the Money · · Score: 1

    15 year old boys. See above.

  13. Re:Well within the capabilities of your average... on 1.6TB In a Shoebox, If You've Got the Money · · Score: 1

    Why is this modded "funny"?

  14. I can see it now on Lying Makes The Brain Work Harder · · Score: 4, Funny

    R: "I'll pay you $50 to be in this experiment"
    S: "Sweet!"
    R: "Just lie down under this scanner..."
    S: "Is this gonna give me cancer?"
    R: "No no, it's perfectly safe. Just a moment... ok, main screen turn on."
    S: "Can I go now?"
    R: "No, first you have to tell me who fired the gun"
    S: "What gun?"
    R: "The gun that was fired about 10 minutes ago"
    S: "But I only just got here!"
    R: "Is that so... where were you 10 minutes ago?"
    S: "I was on Slashdot!"
    R: "You're lying!"

    FBI busts down the door, carts the test subject off to Cuba. Another day, another victory in the War On Terror.

  15. Re:NYT Article Text on BrainPort Allows People To Reclaim Damaged Senses · · Score: 1
    Surgeons can feel on their tongues the tip of a probe inside a patient's body, enabling precise movements.
    I feel a Tom Green moment coming on.

    I AM LICKING YOUR LIVER!
    I AM LICKING YOUR LIVER!

    This thing is going to breed a whole new generation of perverts.

  16. Re:how about a simulation of on New Video Game Recreates Kennedy Assassination · · Score: 1

    Um, why is this insightful? More to the point, why are so many people suddenly talking about Ted Kennedy in response to a post about JFK?

  17. It looks fake on 230mph Electric Car · · Score: 1

    I like it.

  18. Excellent on Internet Hunting · · Score: 1

    Finally, hunters can masturbate over their kills without the risk of children seeing! Score one for family values!

  19. Re:In summary: on Holub on Patterns · · Score: 1
    Trying to open a file usually involves going to the disk, which takes at least tens of milliseconds.
    Actually, the vast majority of the time, the metadata will be in cache. Once in a blue moon I write something that scans the file system, or runs at startup, but those kinda things have other performance problems that concern me more.

    Also, when startup time is important, loading an extra module can make a big difference.

    Anyway, here's a benchmark. "direct" is my usual, hand-typed version. "wrapped" uses a nice wrapper. It is 16% slower. "ugly" is functionally the same as "wrapped", but is optimised for speed rather than readability. It is 9% slower than "direct". It appears that, on this machine at least, the overhead for reusable code is around 8 microseconds.

    Here is the raw results:

    Benchmark: timing 100000 iterations of direct, ugly, wrapped...
    direct: 7 wallclock secs ( 4.75 usr + 2.17 sys = 6.92 CPU) @ 14450.87/s (n=100000)
    ugly: 8 wallclock secs ( 4.76 usr + 2.78 sys = 7.54 CPU) @ 13262.60/s (n=100000)
    wrapped: 8 wallclock secs ( 5.87 usr + 2.19 sys = 8.06 CPU) @ 12406.95/s (n=100000)
    And here is the benchmark program itself:
    #!/usr/bin/perl -w

    use strict;

    use Benchmark;

    sub xopen {
    my($file) = @_;
    open(my $f, $file)
    || die "Couldn't open $file for reading ($!)\n";
    return $f;
    }

    sub xopen_ugly {
    open(my $f, $_[0])
    || die "Couldn't open $_[0] for reading ($!)\n";
    $f;
    }

    timethese(100000, {
    'direct' => sub { open(my $f, "/tmp/lemon.csv")
    || die "Couldn't open /tmp/lemon.csv for reading ($!)\n"; },
    'wrapped' => sub { my $f = xopen "/tmp/lemon.csv"; },
    'ugly' => sub { my $f = xopen_ugly "/tmp/lemon.csv"; },
    });
    Slashdot ate my indentation, sorry.
  20. it's all about the information! on Largest Digital Photograph in the World · · Score: 1

    Woah, you can zoom right in on the car number plates, just like in Sneakers!

  21. In summary: on Holub on Patterns · · Score: 1
    Java sucks. To be specific, it sucks in "engineers" who use words like "business logic" and go on, and on, and on, and on, about "patterns".

    Basically "patterns" are a formalisation of "writing the same code over and over again". Probably all programmers end up repeating themselves from time to time, but if you do it so much that you need to formalise the process, then either you're severely lacking as a programmer, or your tools are severely lacking in reusability.

    I think the agglutination of people who talk about "patterns" around Java must necessarily indicate a fundamental problem with the language.

    It's worth thinking of a "pattern" as a kind of template class, and when you write code using that "pattern", you're instantiating that class, in your head. The amount of repetitive typing we do directly reflects how much our tools suck.

    To give a concrete example, I type a line like

    open(FILE, $file)
    || die "Can't open $file ($!)\n";
    in virtually every Perl program I write. This could be called an instantiation of the "robustly open a file pattern", if I was going to be a wanker about it.

    There are actually three different kinds of suckage going on here:

    1. Perl ignores the failure of open unless I tell it not to. But 9 times out of 10 I want that error check there. This is the suckage of inappropriate defaults.
    2. I could write a class to check the open by default, but then I'd need to install it everywhere my software runs. This is the suckage of software distribution.
    3. I could write a class to check the open by default, but then it would slow down every program I used it in. This is the suckage of manual optimisation.
    That last suckage is probably my biggest peeve with Perl. You can have fast code, or you can have good code, but you can't have both.

    I propose an antidote to all this talk of "patterns", for those of us who still believe that "business logic" is a dirty word. We should start talking about "suckage". In particular the suckage of writing the same damn thing over and over again.

  22. Way to go on Patrick Volkerding Battles Mystery Illness · · Score: 1

    Nice work everyone who vandalised the wikipedia page. You're the people who made Slashdot what it is today. Fucktards.

  23. Re:Room for a non-free browser? Sure... on Opera Facing Losses While Firefox Usage Grows · · Score: 1

    For me to poop on!

  24. India and the future on India Outsourcers Find Back Door in Canada · · Score: 1

    You are my hero! I am so excited about the future of India.

    But please learn to write paragraphs.

  25. Re:no fury like a geek scorned on Nintendo Apologizes to SuicideGirls · · Score: 1

    Sorry, got diarrhoea today. Too much exertion could stain my undies. I'll try to get some scorning in tomorrow, assuming my lower intestines are done wringing themselves out.