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. Re:I can't believe you fell for that on Opting Out Increases Spam? · · Score: 1

    The way I look at it spammer should pal together so I'm just helping spammer A get spammer B's email address!

    That's a terrible idea. What makes you think spammers use their real email addresses? Have you never received spam purportedly from your own account?

    You might as well go outside and punch the next dozen people you see because they might be spammers. Hopefully you don't live near a police station.

  2. Re:I doubt it on Oracle Buys Sun · · Score: 1

    When is the last time you saw Oracle used as the back end for a Wiki....

    At Sun in 2003, if you can believe that.

  3. Re:So why doesn't this affect closed source softwa on The Long-Term Impact of Jacobsen v. Katzer · · Score: 1

    If you know even a tiny amount about the case, it actually was about commercial closed source software that violated the GPL.

    No, it wasn't. It has only a tangential connection to the GPL.

  4. Re:The Stallman Tribe Should Be Respected. on The Long-Term Impact of Jacobsen v. Katzer · · Score: 1

    The railroad guy could have licensed his program freebsd, but he didn't want to because he wanted the GPL yield.

    If you had read any of the material about the case, you might have noticed that Jacobsen in fact used the Artistic License.

  5. Re:Economies of Scale on Should Good Indie Games Be More Expensive? · · Score: 1

    The evidence is there (an absolute flood of entertainment that no one can keep up with) that the creative industry doesn't need any more encouragement to produce creative works.

    When will it start producing creative works then?

  6. Re:Not very well on How Facebook Runs Its LAMP Stack · · Score: 1

    If the system were written in a compiled language, that wouldn't be even slightly taxing.

    What makes you think the system is CPU bound?

  7. Re:There you go again! on Twitter On Scala · · Score: 1

    Alex Payne has a hidden agenda: he is trying to push Scala to boost interest in the book about Scala he just wrote!

    If that's damning criticism, it shows the stupidity of someone for believing that a technical book will sell enough copies that the author will earn more than minimum wage from writing it (a $39.95 book from O'Reilly with two authors gives Payne about $1 per copy -- he might earn $12k over three years).

  8. Re:The Review -- SPOILER ALERT! on Columnist Fired For Reviewing Pirated Movie · · Score: 1

    This begs several questions about security.

    That's almost a firing offense on its own.

  9. Re:Anyone Still Have Spam? on Spam Back Up To 94% of All Email · · Score: 5, Insightful

    I get no spam.

    I've never had malaria. What's the fuss?

  10. Re:It's probably pining for the fiords. on Project Aims For 5x Increase In Python Performance · · Score: 1

    In fact, it would make a fair bit of sense to actually use LLVM as the JIT-compiling backend for Parrot...

    You'd almost wonder if Parrot developers were working on something like that....

  11. Re:Disappointed in the ending? on Battlestar Galactica Comes To an End · · Score: 1

    How do you explain Kara (a messenger of a higher power) telling Lee upon her reappearance that she'd "been to Earth", then finding her body on this "Earth"? Was she misled? Lying? Covering a plot hole?

  12. Re:Dissenting opinion: Jumped the shark then drown on Battlestar Galactica Comes To an End · · Score: 1

    It was practically inevitable, even if all 30,000 had agreed to settle together and carefully husband, maintain, and pass down all of their collected technical knowledge and the remaining equipment that much of that knowledge and equipment would be lost in the following centuries....

    That makes little sense. The New Caprica storyline showed that Colonials were exceedingly bad at long-term thinking. That was the point of the vote to colonize New Caprica. Sure, it was a lousy, inhospitable place suitable only for subsistence farming, but at least they could have land under their feet and sky overhead, even if they all starved to death later.

    It is also important to remember that as the series continued it became more and more apparent that technology was not "the answer" to the problems of humanity....

    That also makes little sense. They spent the last several episodes Basestarizing the Galactica, going as far as to give the Anders hybrid control over its systems to use technology to raid the Cylon colony, and they almost gave Cavil resurrection technology. Immediately after this, a unanimous hanging lampshade vote decides that even indoor plumbing is too dangerous? I don't believe it.

  13. Re:Two changes that could've been made on Battlestar Galactica Comes To an End · · Score: 1

    [Our] ancestors, totting spears as their most sophisticated technology, still managed to survive in Africa.

    They did so in part because they grew up there, with immune systems acclimated to local conditions. (One idly wonders about the Colonial version of smallpox -- or hopes no Colonial ever happened to sneeze in the direction of a native.)

  14. Re:No tech? on Battlestar Galactica Comes To an End · · Score: 1

    And after five years living a cramped, always-near-death-from-technology life, I imagine a quiet, pastoral life seemed a lot more appealing to them than it would to you or I.

    I prefer the explanation that they took stupid pills to excise all memories of New Caprica before voting, thus using up all of their remaining medical supplies.

  15. Re:Compiler for Perl? on Parrot 1.0.0 Released · · Score: 1

    That sounds like every encounter I've ever had with Emacs Lisp.

  16. Re:Compiler for Perl? on Parrot 1.0.0 Released · · Score: 1

    ... but if you don't know the language, what does the ~ do?

    If you don't know the language, what are you doing maintaining Perl code? I consider that professionally irresponsible, at least if you're getting paid. (I wouldn't maintain code in any language without knowing how to consult the reference material for the language, and I try never to maintain any codebase without a comprehensive automated test suite. Perhaps I'm just picky.)

    If you're maintaining Perl code, you should know how to consult perldoc perlfunc, perldoc perlop, and perldoc perlsyn, or look them up online. (Where do you look up the /g flag for the JavaScript example?)

  17. Re:I can't believe it! on Parrot 1.0.0 Released · · Score: 1

    What's good for the goose may be good for the gander, but what's good for the interpreter is not always good for the JIT.

    That doesn't mean a register machine is any worse than a stack machine for JITting. In particular, some of the Dis papers from the Plan 9 research suggest that avoiding unnecessary memory access can improve execution speed as well. The approach they suggest there is clever register allocation with a register-based machine. For example, if you inline function calls, the JIT can reallocate the registers so there's no overhead of even passing parameters and receiving arguments.

  18. Re:From the Release Announcement on Parrot 1.0.0 Released · · Score: 1

    If epigraphs consisted of dull words to be interpreted literally, nobody would bother.

    Tolkein wrote some turgid prose himself.

    Of course, I named my latest Parrot release after an Ed Wood movie, so we've always hewed toward the postmodern "refer to something" approach rather than trying to appease the literary critics of the world. It's a release announcement. If you want to correct bad poetry in the world, start with some of the social networking sites.

  19. Re:Compiler for Perl? on Parrot 1.0.0 Released · · Score: 1

    It's impossible to read Mandarin, it's a spoken dialect. Chinese is the written language.

    Even so, over a billion people seem to get by speaking some dialect of Chinese; clearly my ignorance of the language is no barrier to their communication!

  20. Re:Compiler for Perl? on Parrot 1.0.0 Released · · Score: 1

    I thought perl source was considered sufficiently obfuscated that it was safe from reverse-engineering in source form.

    If you don't know Perl, you may have difficulty reading programs written in Perl. (I have a similar problem with Mandarin.) If you do know Perl, try B::Deparse for decoding obfuscated Perl.

  21. Re:From the Release Announcement on Parrot 1.0.0 Released · · Score: 2, Insightful

    What other reason is there for this inane drivel being reproduced in the release announcement?

    Tolkein didn't write a line of Perl 5 either, yet Larry quotes him in his release announcements. Epigraphs are long-established literary traditions.

  22. Click Track versus Pro Tools on Detecting Click Tracks · · Score: 1

    I'm not convinced you can measure this accurately without analyzing unedited master tracks. It's too easy to postproduce away uniqueness in a recording -- especially in the music that this article calls "overproduced".

  23. Re:Not technical books... on Book Publishers Making the Same Mistakes as Record Labels? · · Score: 2, Interesting

    If you (or any other author) were stupid enough to sign a contract that gave you 10 cents for every 70 cents the publisher got then that is your fault.

    I agree, to a point. Exploitive contracts may be legal, but they're not ethical. (I believe a more ethical business would have more equitable remuneration models.)

    The fact that they are able to get authors to agree to terms like that is a clue that their buisness model isn't broken yet.

    Would you consider a gentleman's wager? Let's choose the head of a book publishing company at random (say, the one with animals on the cover). Ask him whether he can afford to pay authors 25% royalties. I suspect he'll say no.

  24. Re:Not technical books... on Book Publishers Making the Same Mistakes as Record Labels? · · Score: 2, Interesting

    So, where you say in the original post that it was 18 months, and you divide the royalty figure by two because two of you were working, that's... what?

    Sloppy wording for back-of-the-envelope calculations. It was 18 calendar months on the calendar, but probably about 18 FTE months. I don't have an exact figure for how many hours we spent individually and collectively writing the book, but even at the most sinister possible interpretation of my numbers, $10,000 for nine months of full time work is a horrible rate.

  25. Re:Not technical books... on Book Publishers Making the Same Mistakes as Record Labels? · · Score: 2, Interesting

    So self-publish. Nothing's stopping you.

    Indeed; I co-own an independent publishing company, and am actively working on two books right now.

    18 months work for two authors seems like a lot for a single book - I'll have to assume that's part time.

    Between the two of us, it was about eighteen months of full-time work. It was a long, detailed book that required a lot of research. Not all books are like that -- I can write an average-sized novel in six months.