Slashdot Mirror


User: Goaway

Goaway's activity in the archive.

Stories
0
Comments
4,507
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 4,507

  1. Re:No I Didn't on How Japan's Biggest BBS Keeps Things Simple · · Score: 1

    You do realize you're trying to explain why the biggest online forum in the world is badly designed and should change, right? It's not just "popular", it really is the biggest, and that's with being limited to an almost entirely Japanese audience.

  2. Re:If you want to check out an English version... on How Japan's Biggest BBS Keeps Things Simple · · Score: 1

    You'd better go read and comprehend the discussion you are replying to.

  3. Re:If you want to check out an English version... on How Japan's Biggest BBS Keeps Things Simple · · Score: 1

    Please pay attention to who I was responding to.

  4. Re:If you want to check out an English version... on How Japan's Biggest BBS Keeps Things Simple · · Score: 2, Informative

    Futaba and 2channel are quite dissimilar. And dis.4chan.org is many years younger than 4chan itself.

    "Do some fucking research?" That's hilarious. Try clicking that "homepage" link.

  5. Re:But... The REAL question is on How Japan's Biggest BBS Keeps Things Simple · · Score: 1

    I know Futaba is an offshoot of 2channel, but that wasn't the point. The point was that 4chan was started specifically as an English version of Futaba, and not as anything to do with 2channel. The 2channel-style text boards were added later on.

  6. Re:But... The REAL question is on How Japan's Biggest BBS Keeps Things Simple · · Score: 2, Insightful

    "Troll"? It's basic facts. Slashdot is a far smaller site than 2channel.

  7. Re:If you want to check out an English version... on How Japan's Biggest BBS Keeps Things Simple · · Score: 2, Informative

    No, it was not. It was created as an English version of Futaba Channel, a completely different site.

  8. Re:But... The REAL question is on How Japan's Biggest BBS Keeps Things Simple · · Score: 5, Informative

    No, it is not. Futaba Channel is the forefather of 4chan. It has the domain name "2chan.net", but it is never, ever referred to as "2chan" in Japan, only "Futaba Channel".

    Furthermore, not even Futaba Channel is all that much like 4chan. It doesn't have a "/b/" - it has several boards with that in the URL, but they are quite different beasts in practice. They are not named "Random" or anything like it, either, but "nijiura".

  9. Re:But... The REAL question is on How Japan's Biggest BBS Keeps Things Simple · · Score: 4, Informative

    Slashdot is peanuts compared to 2channel.

  10. Re:heh on Paypal Founder Puts a Half Million Dollars Into Seasteading · · Score: 1

    So with no wealth to be made, this does not actually sound like a frontier at all.

  11. Re:In Short, Yes on Do Static Source Code Analysis Tools Really Work? · · Score: 1

    Perfectly USELESS!

  12. Re:In Short, Yes on Do Static Source Code Analysis Tools Really Work? · · Score: 5, Insightful

    You don't need to be perfect to be useful.

  13. Re:The major problem with unmanned aircraft on Unmanned Aircraft Pose US Airspace Problems · · Score: 1

    Feeling just a little bit defensive, are we?

  14. Re:The raw numbers on Fermilab Calls For Code Crackers · · Score: 2, Informative

    No, Slashdot is just broken. It doesn't get you exactly that. There's no "curren" or "quot" in it.

  15. Re:Obvious on Black Holes Don't Trap Information Forever · · Score: 1

    No, we did not. We discovered that if you keep loudly shouting every possible idea, sooner or later one of them will sound a little bit like the truth.

  16. Re:It's just as well on Microsoft and OLPC Agree To Put XP On the XO Laptop · · Score: 1

    Ok, that was an entirely depressing display of Linux-nerd close-mindedness.

  17. Re:It's just as well on Microsoft and OLPC Agree To Put XP On the XO Laptop · · Score: 3, Insightful

    Wow, you're not just a little presumptuous. So using Linux is the only way to be "creative, inquisitive and independent minded"?

  18. Re:The big question is.. or there is no question? on Debian Bug Leaves Private SSL/SSH Keys Guessable · · Score: 1

    Please read the other replies in this thread. I am getting tired of answering this.

  19. Re:The big question is.. on Debian Bug Leaves Private SSL/SSH Keys Guessable · · Score: 1

    It does not hurt to use it as an addition source of randomness.

  20. Re:The big question is.. on Debian Bug Leaves Private SSL/SSH Keys Guessable · · Score: 1

    Please read the other replies to this post, I am getting tired of answering this.

  21. Re:The big question is.. on Debian Bug Leaves Private SSL/SSH Keys Guessable · · Score: 1

    No.

    Appropriate sources of randomness were used, in addition to uninitialized memory. Debian removed both, it turns out.

  22. Re:The big question is.. on Debian Bug Leaves Private SSL/SSH Keys Guessable · · Score: 1

    That is pretty much completely wrong.

    OpenSSL definitely used uninitialized memory for randomness. This was optional, and there was a flag to turn it off during compilation, because it made valgrind complain.

    However, Debian did not use this flag, but tried to comment the offending lines out themselves. However, they commented out more than they should, and rendered the whole code non-functional.

    Here is the actual patch:

    http://svn.debian.org/viewsvn/pkg-openssl/openssl/trunk/rand/md_rand.c?rev=141&view=diff&r1=141&r2=140&p1=openssl/trunk/rand/md_rand.c&p2=/openssl/trunk/rand/md_rand.c

    Note the lack of memset() or XOR loops.

  23. Re:The big question is.. on Debian Bug Leaves Private SSL/SSH Keys Guessable · · Score: 2, Informative

    No, *this* bug. Nothing should ever depend on the value of uninitialized memory, and if clearing it produced a security flaw then there was one there already. Unless it was actually cleared after being filled from /dev/random or something, but then there shouldn't have been a valgrind warning in the first place. Uninitialized memory was only being used as an extra source of randomness. There was a compile-time flag to turn this off to make debuggers stop complaining.

    However, Debian didn't use this flag, but instead tried to comment out the code themselves. And they commented out too much, breaking the whole thing completely.
  24. Re:The stack has randomness? on Debian Bug Leaves Private SSL/SSH Keys Guessable · · Score: 1

    Actually, looking closer, the real problem was not that they removed the uninitialized memory use (which was just there because it couldn't hurt with a little extra randomness), but that they also removed OTHER sources of randomness due to incredible stupidity.

  25. Re:The big question is.. on Debian Bug Leaves Private SSL/SSH Keys Guessable · · Score: 1

    Yes, I looked closer at the patches, and you're right. There was a suggested patch to clear the memory before use, which was rejected.

    That would have been dumb, but not catastrophic, like what they finally did was.