Live data from Hacker News

Viewing profile — eliteraspberrie

eliteraspberrie

HN member
Joined
Wed, Sep 25, 2013, 4:15 PM UTC
HN karma
846
Public activity
291 items

About eliteraspberrie

www.eliteraspberries.com

Recent public activity

  1. comment
    Comment #11274592

    For context, Ontario has no natural resources. We have always been an export economy. With globalization and automation, manufacturing is mostly gone, and it's creating social prob…

  2. comment
    Comment #11263611

    Xen is worse than Linux in terms of quality, and therefore security. That Linux is much bigger doesn't make Xen any better. What de Raadt means to say is, generally speaking, you c…

  3. comment
    Comment #11242434

    Beautiful! So the dot pattern here is "face centered cubic," right? Would you get a better density with a "hexagonal close-packed" pattern? It may make a difference visually. I wou…

  4. comment
    Comment #11230829

    This is such a self-inflicted problem. Europe could decide to open their borders, and they would be fine. The US deals with much larger migrations every year. Or they could decide …

  5. comment
    Comment #11205446

    This is how we got sound to play on the TI graphing calculators. It sounded bad and drained the batteries but it was fun. Another fun thing was getting grayscale graphics on those …

  6. comment
    Comment #11196318

    Here's an example in a getline implementation: https://github.com/eliteraspberries/ttyprompt/blob/master/ge... /*@ loop invariant i; loop invariant j >= 0; loop assigns j, eol; */ …

  7. comment
    Comment #11187293

    That's an important difference. Christians believe good is from God and evil is from Satan. (Forgive me if I'm mistaken, I know that's a gross oversimplification.) Muslims believe …

  8. comment
    Comment #11106664

    Venture capitalists are interested in a particular kind of person who can provide them with a quick profit: young people who are naive enough to prioritize business over their own …

  9. comment
    Comment #11000569

    Thank goodness. Knowing NSA spies on Iranian drones, my civil liberties have been restored.

  10. comment
    Comment #10927114

    The bug is in the compiler, not OpenSSH. The OpenSSH developers explicitly erased memory with memset. GCC decided to remove those lines without any warning. There's the bug. (Here …

  11. comment
    Comment #10913619

    It uses the PyCrypto package to generate random numbers. The Random class is a Fortuna generator seeded with 8 bytes from the system RNG, the PID, and time: https://github.com/dlit…

  12. comment
    Comment #10884640

    I don't think they valued Tor specifically. They did value scientific research, which is what Tor was at the time. Like most research work, it got dropped once they had a working p…

  13. comment
    Comment #10882520

    Keep an eye on this graph to see when it goes online: https://metrics.torproject.org/userstats-relay-country.html?...

  14. comment
    Comment #10882499

    Canadian companies doing business with foreign governments get help from the Canadian Commercial Corporation and probably consular personnel too. The Canadian government is very mu…

  15. comment
    Comment #10878051

    I use Frama-C without the GUI. The annotations do take some effort, but once you get it, it's very intuitive. Start with adding assertions, for example checking that array indices …

  16. comment
    Comment #10873792

    I don't like the typical definition-theorem-proof approach of most textbook in mathematics, including these. It's great for a classroom, no good for self-study. As an alternative, …

  17. comment
    Comment #10852199

    It can play NerdWars: http://www.ticalc.org/archives/files/fileinfo/220/22036.html

  18. comment
    Comment #10815390

    In Canada too. In Ontario, any death involving police automatically triggers an investigation by a police of police (Special Investigations Unit). Really shocking cases can lead to…

  19. comment
    Comment #10813863

    He said on Twitter that police beat him up once, and then a second time after following him home. I hope there is a real investigation, this is enraging.

  20. comment
    Comment #10813215

    Matrices and Linear Transformations by Cullen (Dover Books on Mathematics) will answer all your questions and more. It's written in plain English, doesn't require a mathematical ba…

  21. comment
    Comment #10813112

    I don't think it was Anonymous. During the operation against ISIS on social media, Anonymous tried to DOS one of the ISIS propaganda websites (Isdarat). They couldn't muster more t…

  22. comment
    Comment #10813056

    Yaks and camels too, depending on the environment.

  23. comment
  24. comment
    Comment #10773158

    It exists. It's called CompCert. https://github.com/AbsInt/CompCert It's free for non-commercial use. I've used it for several months now to build things like Tor. I haven't notice…

  25. comment
    Comment #10752931

    I'm the average Javascript programmer. I'm writing some web app and I need to do some cryptography. Let's see, there's Math.random and Crypto.getRandomValues. Let's go with Math.ra…