Slashdot Mirror


User: davorg

davorg's activity in the archive.

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

Comments · 24

  1. Re:Who The Hell Still Uses Perl? on XML::Simple for Perl Developers · · Score: 1

    Outside of non-professional teenage Slashdot readers who still think the shitty Perl syntax is 'kewl', who the hell cares about the language anymore?

    Perhaps people who want to work for the dozens of Fortune 500 companies who have huge numbers of systems written in Perl. Or perhaps people who want to work for the large number of internet startups that use a lot of Perl code.

    But, hey, if neither of those options really appeal to you then feel free to use something else. The fewer people that want to write Perl, the more I get paid for writing it.

  2. Re:Flame on! on Charles Darwin Online · · Score: 1
    Yet I have yet to see somebody find any credible transitional animals

    Show a creationist a transitional fossil and he'll just see two gaps instead of one.

  3. Guardian not Observer on Spam is Dead · · Score: 1

    Actually the piece was in the Technology supplement of Thursday's Guardian newpaper. The Observer is a Sunday paper.

    Dave...

  4. Re:In defense of print statements on Pro Perl Debugging · · Score: 2, Informative
    You could print STDERR though, since that's not buffered like STDOUT...

    Exactly. And that's what warn does. It prints to STDERR.

  5. Re:What? on Hitchhiker's Movie is Bad, says Adams Biographer · · Score: 1

    Actually the first series was six episodes, then there was a one-off special and the second series was five parts. The special is usually included as part of the the second series.

    Then, of course, there is the the six-part third series.

  6. Re:Not surprising on Hitchhiker's Movie is Bad, says Adams Biographer · · Score: 1
    I put off watching LOTR for 5 years
    So you won't be watching The Fellowship of the Ring until Christmas 2006 then? Or are you talking about the Bakshi animated version?
  7. Re:Come on on Hitchhiker's Movie is Bad, says Adams Biographer · · Score: 1

    There are no towels in the film :(

  8. Re:What? on Hitchhiker's Movie is Bad, says Adams Biographer · · Score: 2, Informative

    The first radio series is six half hour episodes - that's three hours.

  9. Re:not that complicated on Google's Math Puzzle · · Score: 1
    how did you know it would be in the first 250 digits?

    I didn't. That was just a prototype. I was planning to replace the assignment with an interator that generated the digits of e. I was pretty surprised when it came up with the right answer.

  10. Re:not that complicated on Google's Math Puzzle · · Score: 5, Insightful
    how do you know it has anything to do with Google?

    You don't need to know that. Here's how I solved it when I first heard about it in July.

    #!/usr/bin/perl

    use Net::DNS;

    my $res = Net::DNS::Resolver->new;

    my $e = '2718281828459045235360287471352662497757247093699 9'
    .'59574966967627724076630353547594571382178525 166427'
    .'427466391932003059921817413596629043572 90033429526'
    .'0595630738132328627943490763233829 8807531952510190'
    .'11573834187930702154089149934 884167509244761460668';

    foreach (0 .. length $e) {
    my $n = substr $e, $_, 10;
    my $q = $res->search("$n.com");

    if ($q) {
    print $n, "\n";
    last;
    }
    }
  11. Re:This book - two thumbs down on Learning Perl Objects, References & Modules · · Score: 1
    And while we're at it, let's make perfectly clear that Learning Perl is simply an abridged version of Programming Perl.

    Er... no. Learning Perl is a tutorial, Programming Perl is a reference. There's a huge difference.

  12. Re:Let's wish this project good luck on Ponie: Perl On New Internal Engine · · Score: 1

    You've not seen B::Deobfuscate yet then :)

  13. Re:Let's wish this project good luck on Ponie: Perl On New Internal Engine · · Score: 1

    This is covered in the Perl FAQ.

    How can I hide the source for my Perl program?

    There is no way to do what you want. Any reasonable Perl programmer can undo Stunnix obfuscation in minutes. All that's left is the strange variable names.

    By all means use it if you want. But don't expect it to give you any protection from people reading your source code.

  14. Re:Let's wish this project good luck on Ponie: Perl On New Internal Engine · · Score: 1

    Please don't expect Stunnix to give you any level of security. You should read the discussion on Perlmonks.

  15. Re:O'Reilly Rules! on Programming Web Services with Perl · · Score: 1
    I have a copy of the previous edition of this book, written by Doug Tidwell, James Snell and Pavel Kulchenko.

    No you don't. This is the first edition of Programming Web Services with Perl . Looks like you have a copy of Programming Web Services with SOAP . Two completely separate books with a small amount of overlap.

  16. Re:Let's reinvent the wheel again on XML and Perl · · Score: 1
    Although I agree that Perl/XML sounds like a powerful and flexible way to serve dynamic content,

    You need to move on from thinking that everything is there purely to be used for the web. Well over half of the work I've done with XML and Perl has nothing to do with the web.

  17. Re:You start with a negative slant on Red Hat Linux 8 Bible · · Score: 1
    Why did you even buy it?

    Let me let you into a little secret. Reviewers don't buy books. Publishers send us free copies.

    I would have to also ask if there was any coverage of SAMBA

    Yep. Chapter 18 is all about setting up a Linux file server and it includes 16 pages on configuring SAMBA. Much of that is about confuguring it using SWAT.

  18. Re:Hey Everybody... on Red Hat Linux 8 Bible · · Score: 3, Informative
    Guess what Davorg got for Christmas!

    Sorry, no. My review copy was given to me earlier this month by the nice people at Diverse Books.

  19. Re:It's taken a while for publishers to wake up to on mod_perl Developer's Cookbook · · Score: 2, Informative

    It's partly my fault. I got my review copy in June :-/

  20. Re:website support on mod_perl Developer's Cookbook · · Score: 1

    Not sure what you're trying to imply here. I have nothing at all to do with the publisher.

  21. Re:Yay! on Perl 5.8.0 Released · · Score: 2, Informative
    This release actually came out a few days ago

    No. It was released today. You're thinking of the last Release Candidate which was released on Monday.

  22. Re:Uh, what? on Writing CGI Applications with Perl · · Score: 1
    I have a Manning title ("Data Munging with Perl") on my shelf at work that, in 2 chapters, probably made my company $50K.

    That's very cool. I'd love to hear more details of how my book saved your comapny that much money.

  23. Re:Strict on Writing CGI Applications with Perl · · Score: 1, Informative
    Do they use Taint mode at all?

    Yeah, that's covered in great depth the section on security that I mentioned in the review.

    Also, what's wrong with Mason?

    Oh, nothing. It's just that I would rather not have had it presented as the only templating solution.

  24. Re:Hmmmm..... on Lighter Side of CPAN · · Score: 1

    I don't see anyone claiming that it's a good idea. Simply that it's something that can be done (and therefore was).