Slashdot Mirror


User: ModMeFlamebait

ModMeFlamebait's activity in the archive.

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

Comments · 122

  1. Re:quick on US Plummets On World Press Freedom Ranking · · Score: 1

    It's being censored.

  2. Re:Red Hat on Red Hat Pushes Out Enterprise Linux 6.1 · · Score: 1
    cd /
    md5sum -c var/lib/dpkg/info/foo.md5sums

    There's also a tool called debsums which does roughly the same. So that gets you at least half way there.

  3. Re:lvalue on the right on Red Hat Uncloaks 'Java Killer': the Ceylon Project · · Score: 1

    Well, Python has the @property decorator that achieves the same thing without changing the signature and without generating massive amounts of boilerplate code.

  4. Re:What about CentOS? on Red Hat Nears $1 Billion In Revenues, Closing Door On Clones · · Score: 1

    Debian does not use Redhat kernels. Two different distributions, packing systems and philosophies.

    Debian admins, however, do cherry-pick relevant fixes backported by RedHat to older kernels. Or rather used to do.

  5. Re:Screw Apple.... on Apple Deemed Top of Movie Product Placement Charts · · Score: 1

    Blackberry.

  6. Re:Sounds like an ISP problem. on Ask Slashdot: Is There a War Against Small Mail Servers? · · Score: 1

    What's incorrect about referring to mx records instead of specifying ip addresses by hand?

  7. Re:SMTP port? on Ask Slashdot: Is There a War Against Small Mail Servers? · · Score: 1

    587 actually, and usually servers accept auth also on 25

  8. Re:Matsksskskskskk on Facebook Knows When You'll Get Dumped · · Score: 1

    Mah-tish-chick would be close enough, I guess.

  9. Re:hmm on Happy System Administrator Appreciation Day · · Score: 1

    Secretaries get free lunches, flowers, cards, etc. so why not Sys Admins?

    Tits.

  10. Re:Damn, Slashdot is in my mind on Things To Look For In a Web Hosting Company? · · Score: 1

    If you're looking at the cheap end, forget Java. Hosting PHP is way cheaper (in some part, due to its sheer popularity).

  11. Re:Why? on Google Launches Public DNS Resolver · · Score: 0, Flamebait

    Because setting up and maintaining your own recursive DNS server is a pain in the ass?

    apt-get install pdns-recursor
    echo 'nameserver 127.0.0.1' > /etc/resolv.conf

    Was that so bad?

  12. Re:Amazon! on The Pirates Will Always Win, Says UK ISP · · Score: 1

    What, exactly, are you thinking that | cat on the end is adding?

    !isatty(1) inside ls, influences formatting (like ls -1).

  13. Re:Hmm. on Splash, Splatter, Sploosh, and Bloop! · · Score: 0, Flamebait

    "gluck, gluck, gluck" is the sound you hear when you repeatedly slap a filled-up douchebag against the sidewalk? Seriously?

    How about, "Ouch, ouch, ouch!"

    You're doing it wrong.

  14. Re:Overlords on Open Source Solution Breaks World Sorting Records · · Score: 5, Funny

    datasorting for I new one our overlords! welcome

  15. Re:csh syntax mode? on BASH 4.0 Released · · Score: 1

    Read up on readline (google food: inputrc)

  16. Re:2009 is the year of ... on If Windows 7 Fails, Citrix (Not Linux) Wins · · Score: 1

    Were you dictating?

  17. Re:Reiser4's name is a killer on On the State of Linux File Systems · · Score: 1

    NinaFS?

  18. Re:Too constrained and academic on Why Lazy Functional Programming Languages Rule · · Score: 1

    Also, neither Python nor Perl count because you cannot define anonymous functions in either one.

    ORLY?

    #!/usr/bin/perl
    my $foo = sub {
    my $anothersub = shift;
    print "arg: $_\n" for @_;
    $anothersub->();
    };

    $foo->(sub { print "all done!\n" }, qw( 1 2 3 4 ));

    Closures work out of the box, too. Oh, and the new /. interface sucks balls.

  19. Re:Version 2.6.26? on Linus on Kernel Version Numbering · · Score: 1

    I'm sure there's some JavaScript out there to help you :)

  20. Re:LOL perl on What Makes a Programming Language Successful? · · Score: 1

    Hey, I always wanted to stick a '#!/usr/bin/perl' at the beginning of sendmail.cf, just to see what happens :)

    /JAPH

  21. Re:S/MIME, anyone? on Lawyers Would Rather Fly Than Download PGP · · Score: 1

    The CA maintains a copy of your private key? Are you 100% certain of this?

    My understanding of the way it worked was that the CA *generated* the private key, and, more importantly, signed the certificate and keypair for you, but that only you (and anyone you're dumb enough, or trusting enough, to give it to) actually has a copy of the private key...

    No, nobody gets to see your private key. When you're e.g. buying an SSL certificate, you generate a key pair plus a CSR, which contains the public key and other data, like your name (cert subject). Then you send only the .csr file to the CA. They have no business knowing your private key and it's only your problem if the signed CSR (i.e. a certificate file) doesn't match your key.
  22. Re:S/MIME, anyone? on Lawyers Would Rather Fly Than Download PGP · · Score: 1

    The CA does not keep the private key.
    And how do you ensure that? Without some way to ensure that, it seems to me that you are practicing "faith based" security. Because they never see it? They don't generate it, as somebody upthread said. You hand them a CSR (certificate signature request, essentially the public key) and they send you a certificate (public key + signature). Never ever do they get to see your private key.
  23. Re:Confused ... on Red Hat Avoids Desktop Linux, Says Too Tough · · Score: 1

    Wow, what a way to miss the point.

  24. Re:well ... on MS Clearflow To Help Drivers Avoid Traffic Jams · · Score: 1

    Just not your day, man.

  25. Re:Moving the bottleneck... on Inside Intel's $20M Multicore Research Program · · Score: 1

    Get two 10000 RPM Raptor drives and run them in Raid 0.
    Just back up your data before, while you still have it.