Viewing profile — eliteraspberrie
eliteraspberrie
HN member- Joined
- Wed, Sep 25, 2013, 4:15 PM UTC
- HN karma
- 846
- Public activity
- 291 items
- HN profile
- View on Hacker News ↗
About eliteraspberrie
Recent public activity
-
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…
-
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…
-
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…
-
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 …
-
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 …
-
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; */ …
-
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 …
-
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 …
-
comment
Comment #11000569
Thank goodness. Knowing NSA spies on Iranian drones, my civil liberties have been restored.
-
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 …
-
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…
-
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…
-
comment
Comment #10882520
Keep an eye on this graph to see when it goes online: https://metrics.torproject.org/userstats-relay-country.html?...
-
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…
-
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 …
-
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, …
-
comment
Comment #10852199
It can play NerdWars: http://www.ticalc.org/archives/files/fileinfo/220/22036.html
-
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…
-
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.
-
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…
-
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…
-
comment
Comment #10813056
Yaks and camels too, depending on the environment.
- comment
-
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…
-
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…