Slashdot Mirror


User: chromatic

chromatic's activity in the archive.

Stories
0
Comments
2,306
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2,306

  1. Irrelevant Comparison on Design Patterns · · Score: 1

    Review scores are almost completely meaningless. You're comparing a single point of information from several different reviewers on several different subjects. This further dilutes any value remaining in the number.

  2. Re:RTFM.... that's the WinME manual, right ... on Installing/Configuring ALSA Sound Modules In Debian · · Score: 1
    Doing things the hard way is stupid and that is why people choose Windows.

    I'm filing this one under "Unintentional irony." Thanks!

  3. Re:HTML::Mason is a memory hog on Yahoo Moving to PHP · · Score: 1

    That's silly. FreeBSD uses a copy-on-write model. If you're swapping kernel memory, you've got bigger problems than choosing an implementation language.

  4. Re:Hilary Rosen discovered this first hand on Gartner Survey: Consumers Don't Want Crippled CDs · · Score: 4, Informative
    I'm not sure why Slashdot has rejected all the submissions for this link, its pictures, and the overall debate information.

    Slashdot ran this story about it on Friday.

  5. Re:Boost search engine ranking? on New Spam Frontier: Referer Logs · · Score: 2, Informative

    Several weblogs make their referrer lists public. To a spider, a spammed link is very hard to distinguish from a normal hyperlink. That's how the boost occurs.

  6. Re:I hate to state the obvious but.... on Top Ten Mac OS X Tips for Unix Geeks · · Score: 4, Insightful
    ... given that most Slashdot readers seem to be...

    That reads like a logical fallacy. According to Rob, most Slashdot readers never post. It'd be more accurate to say "most Slashdot posters". Even then, there are wildly divergent belief systems in place. It wouldn't surprise me to learn that a significant portion of Slashdot readers were interested in useful, attractive mergers of proprietary and Open Source software.

  7. Re:Ah, chromatic on Building Online Communities · · Score: 1

    The real trick was getting them to uncapitalize it!

  8. Re:Food for thought on Building Online Communities · · Score: 1

    You're right -- leaving out the idea of "anonymous posting for registered users" was a mistake. Thanks for bringing it up.

    For what it's worth, I've talked to Rob and Jeff both that more open and regular discussion of Slashdot itself would alleviate a lot of concerns. Rob seems pretty happy with the journal system taking on some of this load, though.

  9. Re:My $0.02 on Extending and Embedding Perl · · Score: 1

    I've read both books. They have a great deal in common. I did not consult Sam's book directly before responding, though, so I'm going from memory as to how much detail he provided in the two or three XS chapters.

  10. Re:Not intended as a flamebait, but... on Extending and Embedding Perl · · Score: 2, Informative

    It's a good thing, according to Larry, because Perl more closely maps to spoken language patterns. His theory is that the computer should do extra work to make the life of a programmer easier.

    I don't understand your comment about interpreting that code as a boolean construct. That's exactly how Perl does evaluate it. See B::Deparse for clarification.

  11. Re:Not intended as a flamebait, but... on Extending and Embedding Perl · · Score: 1

    Try reading it out loud. It's only slightly more nonsense than English. (Perl's case-sensitive, though, so I'm assuming you've provided pseudo-Perl.)

  12. Re:My $0.02 on Extending and Embedding Perl · · Score: 4, Informative

    You seem to be thinking of Writing Perl Modules for CPAN. There are similarities, but the Jenness/Cozens book goes into more detail about XS than the Tregar book. That's to be expected.

  13. Re:Wrong or unconsitutional? on Eldred Transcript, Bookmobile Experience · · Score: 4, Informative

    Did you take a civics class in high school? This is exactly the purpose of the Supreme Court. This is exactly the purpose of the idea of checks and balances.

    The federal government was not set up as a direct democracy. In theory, every branch must follow the Constitution. It's fantastically difficult to amend the Constitution for a reason.

  14. Re:No, it is not on Microsoft Settlement Compliance Criticized · · Score: 1

    Did you find the author's address? I wrote to the info address for the AP.

    (I do slightly object to your characterization of editors, though. :)

  15. Re:New Book on The Weblog Handbook · · Score: 1

    Beat you to it!

  16. Re:Can't be too hard to make it run on a PC on Tux Vs Clippy - New XBox Game · · Score: 1
    ...we have to bring out silly games like this that give the whole linux scene some very bad light.

    Only to people who apply synecdoche overzealously.

  17. Re:Default, integarted XML in PHP? on Professional PHP4 XML · · Score: 1

    CGI.pm has been a core Perl library for years. An XML processing library and the DBI will probably never be in the default install, though.

  18. Re:Appropriate reviewers on Writing Perl Modules for CPAN · · Score: 1

    I disagree very strongly. If a book's intended for beginners, an expert really ought to make sure it contains nothing misleading or wrong. In this case, since I'm experienced with building and distributing modules, I think I have a good perspective on the process. Someone who's never done it before won't be able to compare the book to personal knowledge and experience.

  19. Re:Testing? on Writing Perl Modules for CPAN · · Score: 2

    There is indeed a section on testing. Of course, there are lots of other resources online. :)

  20. Re:Something to know about WROX books on Professional Apache 2.0 · · Score: 3, Informative

    The O'Reilly contract is available here. It's a bit old, but the details look the same. (short answer: it depends on the advance)

  21. Re:Questions in Perl on Ask Larry Wall · · Score: 1

    Try it. print evaluates its arguments in list context -- not scalar.

  22. Re:perl 6 niche on Ask Larry Wall · · Score: 1
    I'm more satisfied with the idea of a perl6 -> java-byte-code compiler similar to jython, since then you get to have the best of both worlds.

    If I'm not mistaken, there are several features of Perl 6 that the JVM cannot support: runtime compilation, continuations, closures, and symbol table access, among others. I find that distinguishing.

  23. Re:Perl, XP, and test-driven development on Ask Larry Wall · · Score: 2, Informative

    Perl has fairly good testing support, if you choose to use it. Writing a refactoring browser for Perl is non-trivial, but test first development is possible. I do it regularly.

  24. Re:What happens when it rains? Fog? on Electric Armor · · Score: 1

    It gets wet.

  25. Re:Ruby Rising? on Damian Conway Publishes Exegesis 5 · · Score: 1
    I suspect that these ideas don't require wholesale changes to a language

    Indeed, Parse::RecDescent has been available in Perl for years. Of course, it doesn't do all of the things mentioned. More importantly, it's not the internal parser for Perl. You can't use it to change the parsing rules of Perl on the fly.

    I'm not sure how you'd do that without making wholesale changes to a language.