Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
hyper_reality
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
91.
▲
by
hyper_reality
7y ago
It seems like they tried, but no blockchain expert would go near it because it was so clearly a Ponzi-type scheme. Just look at the website: http://web.archive.org/web/20150302021347/http://www.onecoin...
92.
▲
by
hyper_reality
7y ago
Yes, NIST has an ongoing standardisation process for Post-Quantum cryptography: https://csrc.nist.gov/Projects/post-quantum-cryptography/Pos... With the 1TB keysizes, what you are thinking of is Berstein et al.&#x
93.
▲
by
hyper_reality
7y ago
To be clearer, this is a retrospective of the DEF CON CTF, not the entire conference. I enjoyed the writeup of the Pew Pew challenge. That sort of challenge is exactly what high-level CTFs need, making them more fun and visual and accessibl
94.
▲
by
hyper_reality
7y ago
When using Tor it is important to be indistinguishable from other Tor users. If you can be fingerprinted by user agent, screen size, fonts, add-ons, or numerous other indicators, then the anonymity set of your browsing behaviour essentially
95.
▲
by
hyper_reality
7y ago
Statistics Done Wrong has a great chapter on this: https://www.statisticsdonewrong.com/regression.html
96.
▲
by
hyper_reality
7y ago
I found a benchmark that suggests the performance gap between a pipe and input redirection is insignificant for most workloads, but there would indeed start to be a difference for the exact case discussed here (grepping a large file): http
97.
▲
by
hyper_reality
7y ago
It annoys me whenever somebody brings this up. People do this because it's easier to modify commands at the end of your prompt than near the beginning. Especially in this case, where the grandparent wants to quickly switch between benc
98.
▲
by
hyper_reality
7y ago
Another reminder that the advice doled out to teens to "follow your passion" when selecting a major and a future career, is rather irresponsible. Cal Newport's "So Good They Can't Ignore You" is a great read on
99.
▲
by
hyper_reality
7y ago
I've used Z3 a lot for CTF challenges, but in my day-to-day work have never encountered any problems that it would be useful for. I'm interested to know how people have used it in the course of their work?
100.
▲
by
hyper_reality
7y ago
Fun story containing a valuable lesson for developers thinking about going into consulting, especially for larger companies.
101.
▲
by
hyper_reality
7y ago
Of all the Voynich theories, I find those suggesting it was produced through a mechanistic method to be most persuasive. Several statistical properties of the words just don't match up with any natural languages, and there is a large a
102.
▲
by
hyper_reality
7y ago
I just dug around a bit to find the likely source of the "crypto magic pixie dust" quote, and I think it's Gary McGraw. He uses that phrase a lot, and a search of "crypto fairy dust" in Google Books brings up books
103.
▲
by
hyper_reality
7y ago
Discussion last week on HN with more info about what 996ICU is: https://news.ycombinator.com/item?id=19498179
104.
▲
by
hyper_reality
8y ago
This is a great introduction to fuzzing, I love the section about minimising the corpus of fuzzed inputs and turning that into a test suite. That's something that should be done with all parsing software!
105.
▲
by
hyper_reality
8y ago
I'm disappointed that the article didn't explore another perspective on Milton's Satan, which is that the "Devil's party" is deliberately cast as more appealing than the virtuous one. Milton's point is tha
106.
▲
by
hyper_reality
8y ago
Managed to get over 120. Because the red terminator can't cross the edges, but you can, the key is to use the edges as much as possible and to avoid going through the center unless you are lined up to get the food.
107.
▲
by
hyper_reality
8y ago
It's good to hear that Thunderbird is getting more resources. One UI bug that I didn't see mentioned in the post though, and that shouldn't exist in 2019, is that Thunderbird loses the scroll position of a tab when changing t
108.
▲
by
hyper_reality
8y ago
I also had a similar idea a few years ago for a CTF challenge, coming at it from a "modern Caesar cipher" perspective: https://laurencetennant.com/unicode-shift-cipher Also a crude "modern Bacon cipher"
109.
▲
by
hyper_reality
8y ago
The idea is quite fascinating and 'out there'. However, the authors themselves cover several clear drawbacks on the second page: > We assume that the attacker has access to a compiled (binary) version of the program but not its
110.
▲
by
hyper_reality
8y ago
Getting information out of one re-use is not difficult using the crib-dragging method, if you have a good idea about what the contents of either message might be [1]. [1] http://travisdazell.blogspot.com/2012/11/ma
111.
▲
by
hyper_reality
8y ago
The article doesn't go into much detail nor even explore all the possible etymologies. My copy of the Oxford English Dictionary suggests that the meaning of 'quiz' may be associated with the word 'inquisitive'. Anot
112.
▲
by
hyper_reality
8y ago
I think the piece was aiming for maximum irony. Also note: "In a 2001 study two scholars in Canada (LINK) showed that comprehension declines as the number of hyperlinks in a document increases."
113.
▲
by
hyper_reality
8y ago
I was more confused by the parameter being named 'num' before having the String function called on it and its length taken - when in fact 'num' should be a binary string when it's passed into the function. But maybe
114.
▲
by
hyper_reality
9y ago
The theory sounds convincing, but if you actually look at countries with the highest rates of young males to females, few, if any, support it ( https://en.wikipedia.org/wiki/List_of_countries_by_sex_ratio ). China, Portu
115.
▲
by
hyper_reality
9y ago
Not exactly an object 'inside' the kernel, but I was recently caught out by the fact that /proc/net/snmp doesn't have much to do with the SNMP protocol. Rather it tracks socket statistics for IP, ICMP, TCP, and
116.
▲
by
hyper_reality
9y ago
All due respect to Rob Pike, but I think David Batley nails it in his response: > tl;dr: they replaced a cryptic, undocumented implementation, which starts an entire bash shell just so it can exit, and replaced it by a fast ELF binary,
117.
▲
by
hyper_reality
9y ago
> (In the United States, a country with far higher litigation costs, government agencies overseeing play safety are not known to have made any such changes.) That's the first time in a while that the New York Times has really made m
118.
▲
by
hyper_reality
9y ago
The fact that the vast majority of these bugfixes and CVEs are minor is a testament to the continuing stability and quality of Debian and its ecosystem. I've run Debian on several machines for years and have upgraded confidently withou
119.
▲
by
hyper_reality
9y ago
Because that's not how array initialisation works in C. The specified indices are initialised with the provided values, and the missing elements are always initialised to 0. See for instance section 6.7.9 of the C99 standard. Perhaps y
120.
▲
by
hyper_reality
9y ago
I also highly recommend Edward Epstein's Atlantic article on this too: https://www.theatlantic.com/magazine/archive/1982/02/have-yo... One of the best pieces of long-form journalism ever published,
More ›