Slashdot Mirror


User: pjt33

pjt33's activity in the archive.

Stories
0
Comments
3,770
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 3,770

  1. Re:not that long at all on Kamikaze Novel Writing · · Score: 1

    Sure. 2048 / 1666 = 1.23 to 3 s.f. But words are separated by a character of whitespace, so that leaves 0.23 characters for the word itself. Now, that wasn't difficult, was it?

  2. Re:last election on Obfuscated Vote Counting Contest · · Score: 1

    A Spanish-speaking sycophant with pointy ears?

  3. You forgot a big one on Obfuscated Vote Counting Contest · · Score: 1

    What question do they ask? In most polls I see (in Britain, FWIW), the question is "If there were a general election tomorrow, who would you vote for?". I'd bet that they don't get 75% of people replying "I wouldn't vote", even though we get about 25% turnout.

  4. Re:You Think You're Funny on Obfuscated Vote Counting Contest · · Score: 3, Insightful
    Or more accurately, half of America is sitting right in the middle, and the other two quarters are on the fringes.
    Right in the middle of America, maybe. From the perspective of those of us on the other side of the Atlantic, your middle is a good way to the right.
  5. Re:not that long at all on Kamikaze Novel Writing · · Score: 1
    If you look at it from a "per day" basis, that's only 1666 words a day, which is roughly twice the size as a medium-to-large slashdot post.
    I set the threshold at 2048 characters, and most long /. posts are only just past that. If that's 1666 words, they have an average length of 0.23 characters.
  6. Re:I say this everytime, and I always get modded d on Photo ID Required To Buy/Rent Games In Canada · · Score: 1

    Shame there isn't a -1 Incorrect or Misleading, because this isn't the only post I've seen which merits it. The feudal system died centuries ago.

  7. Re:Good idea! on Photo ID Required To Buy/Rent Games In Canada · · Score: 1

    You can buy video games for 500 Canadian dollars? There I was thinking they were worth about tuppence...

  8. s/less/til/ on UK High Court Orders ISPs to Identify File-sharers · · Score: 1

    You made a slight typographic error - subject line gives a substitution to fix it.

  9. Re:Democracy? on Indymedia Servers Given Back · · Score: 1

    Switzerland is the closest to an ancient democracy: the people can force a plebescite on anything by putting together a petition signed by 50,000 citizens.

  10. Re:Do you know what is a marriage? on Bush, Kerry, and Nader Respond to Youth Voter Questions · · Score: 1

    Surely polygamy is the state of being in multiple marriages: if it were one marriage between a man and multiple women that suggests that the death of one wife would cause the man to cease to be married to the others.

  11. That's not an answer on Bush, Kerry, and Nader Respond to Youth Voter Questions · · Score: 1

    The question was about changes of opinion on a matter of national importance. A private individual's drug abuse is not a matter of national importance, so he wouldn't actually have been answering the question.

  12. Also said it before and saying it again on Researchers And Registrars Debate E-Voting · · Score: 1

    Who needs a lever-operated machine when pencils are available? (I've been told before that US elections often involve casting about 20 ballots at once for everything from municipal dog-catcher to President, but I don't see how hole-punches make counting easier or quicker than with pencils).

  13. So near and yet so far... on Virgin's New iPod Rival · · Score: 1

    That's what they're really missing if they want a true iPod killer.

  14. Coolest tech gadget? on Virgin's New iPod Rival · · Score: 4, Funny

    Surely you're forgetting the Segway!

  15. Re:I'm sure I'm not the only one on Griffin RadioSHARK Exceeds Expectations · · Score: 1

    The latest Hitchhiker's Guide? (Of course, one has to live in Britain or possibly Ireland or northern France to receive it, but the point is that some countries have good radio shows).

  16. What are you talking about? on Cherry OS Claims Mac OS X Capability For x86 · · Score: 5, Funny

    What's a right mouse button?

  17. Re:Plenty of differences on Java 1.5 vs C# · · Score: 1

    Extracting bytes from an int and composing bytes into an int are both operations which can be tidied behind a library call, so you only have to get it right once. Pointers are extremely pervasive in C, and claimed to be responsible for 90% of bugs.

  18. Re:All in it together on Java 1.5 vs C# · · Score: 1

    Eh? That post hasn't been moderated at all. It's at 2 because I start there because I've excellent karma. Of course, if people want to mod it Funny, I won't be complaining: that's what I was aiming for.

  19. Re:Plenty of differences on Java 1.5 vs C# · · Score: 1
    No unsigned integer type in Java -- if you need an unsigned long, you're SOL. So it's pretty difficult to code certain numerical algorithms (compression and encryption, anyone?)
    Care to explain? I can see three differences between signed and unsigned types:
    1. The way they're printed. Irrevelant to coding compression / encryption algorithms.
    2. The behaviour of the >> operator. Simple: use >> for signed ints and >>> for unsigned.
    3. Widening operations. I agree that here you have to take care, but requiring care isn't the same as being difficult.
  20. Re:still very different on Java 1.5 vs C# · · Score: 1

    If by "compilation boundaries" you mean code compiled at different times, then you're wrong. The VM doesn't use information about generic types, but it is stored in the class files and used by the compiler when you import those classes.

  21. Re:All in it together on Java 1.5 vs C# · · Score: 1

    Too late: Sun already has it.

  22. Re:Flaws in both Languages on Java 1.5 vs C# · · Score: 1

    That's forwards compatibility, not backwards compatibility.

  23. Re:Limitations of Generics in Java. on Java 1.5 vs C# · · Score: 1

    Java has events and iterators - or does C# mean something different by them to Java?

  24. Re:Flaws in both Languages on Java 1.5 vs C# · · Score: 1
    Java is not backward compatible with older versions.
    In what way? Backwards compatibility has always been a high priority with Java, and while you do get occasional changes in behaviour they're mostly in obscure areas of the API.
  25. Re:All in it together on Java 1.5 vs C# · · Score: 1

    Libraries? You have four options: port Java's libraries to C#; port C#'s libraries to Java; write some kind of wrapper which interfaces with both; write new libraries from scratch. All of those are harder work than bytecode translation.