You misread. I'm saying his reasons for filing are in question. NIST probably was being dishonest. That's not the reason there is a lawsuit though.
If NTRU Prime had been declared the winner, would this suit have been filed? It's the same contest, same people, same suspicious behavior from NIST. I don't think this suit would have come up. djb is filing this suit…
This definitely has the sting of bitterness in it, I doubt djb would have filed this suit if NTRU Prime would have won the PQC NIST contest. It's hard to evaluate this objectively when there are strong emotions involved.
This is great news! For far too long, Website owners have been collecting data on their users at no benefit to the users themselves. When website owners try to collect data on their users (for any and all reasons) it…
Do you talk with regular people, outside of the tech bubble often? If money were really the problem, Walmart employees would jump at an opportunity to work at Costco or any of the other higher paying places. OP is…
Same here. Ironically it's rising rent and gas prices that will force people back to work, rather than pay bumps because bills still need to be paid.
This is lazy explanation that's easy to agree with if you don't think very hard about it. Two reasons: 1. A shitty job at $15 an hour is equally unappealing at $16 an hour. Someone who doesn't want the crap hours, crap…
When this came out, someone in my dorm made a mock of it on our whiteboard. With a few extra lines, it looks like a fat guy bending over. People always look for a human shape in what they see.
Very timely; I found out yesterday that the UPX program (EXE specific compressor from many years ago) was made by the same guys who made LZO. I had this realization that there is a progeny from people who write…
You'll need to go back earlier than 15 years. ConcurrentHashMap and friends were added in 1.6, but String.intern has been in there since the beginning. Since Java shipped with Threads in the standard library, (but no…
Make sure to read between the lines. It only looks like a busy loop. Remember, the OS can pause and preempt your thread at any time. This is a real and likely event.
One of the things that made linearizabilty click for me was thinking in terms of happens-before: volatile int a; a = 1; print(a) // Could this print Zero? Even assuming only one program, one thread, one process, no…
https://go.dev/play/p/xolc9oPwA0C Interfaces don't have a zero type, which means that we can't have an atomic.Value which stores Shape. Atomic Value would be much easier to reason about if it had store semantics similar…
That's why I opened with "Look at the implementation". Go is unable to store the type and the pointer at the same time, so it warps what "atomic" means. Pretty much every other language has atomic mean "one of these…
Sorry to say, but these hit close to home for me. A lot of the synchronization paradigms in Go are easy to misuse, but lead the author into thinking it's okay. the WaitGroup one is particularly poignant for me, since…
From 2006 to 2014 I owned my own platform. Several actually. But I turned them down after it became a lot of work to maintain. At the time, it wasn't so obvious the web was dying, but in hindsight I probably helped kill…
The best lossless format is the one you can decode back to the original image. When evaluating them, there is an implicit assumption that the decode step will happen a short time later, but that's not always true. Will…
We hope these are Futures; it sounded like GPs farmer may have Forward contracts. If this is the case, it would make more sense for the Farmer to bail on the contract if prices get too far out. (a.k.a. counterparty…
The JVM still doesn't know about generics. The explanation you provided is entirely at the compiler (javac) level, and the JVM is still oblivious to it. There is no special dispatch, or optimization. At best, you could…
I was under the impression she hadn't had any good hits leading up to the end of 2020, and enough misses caused her to lose favor. I can't really think of any great Netflix originals from 2018-2020.
I generally agree with you, though I would say now we are finding out if it's sustainable or not. Remember that for the past 2 years, TV Studios have been on lock down and the only stuff Netflix was really releasing was…
Consumers want high quality, entertaining content, at low cost, with little commitment, at any time. Prior to Netflix, there wasn't such an intersecting product. Now, Netflix has low quality content, but still has all…
Stupid is probably the wrong word here; "clueless"? I personally think consumers are on the verge of reinventing TV channels, with each streaming service acting like a channel. Consumers, who liked that Netflix had so…
It is small, but that's not what you should look at. The Derivative in subscribers matters way more (since Netflix is a growth company), and Russia was nearly doubling in subs each year.
> So is that why the increasing competition from the likes of Apple, Disney+ and HBO, recent price increases and password sharing loopholes have plagued its growth? This is also a false narrative. Netflix subscribers…
You misread. I'm saying his reasons for filing are in question. NIST probably was being dishonest. That's not the reason there is a lawsuit though.
If NTRU Prime had been declared the winner, would this suit have been filed? It's the same contest, same people, same suspicious behavior from NIST. I don't think this suit would have come up. djb is filing this suit…
This definitely has the sting of bitterness in it, I doubt djb would have filed this suit if NTRU Prime would have won the PQC NIST contest. It's hard to evaluate this objectively when there are strong emotions involved.
This is great news! For far too long, Website owners have been collecting data on their users at no benefit to the users themselves. When website owners try to collect data on their users (for any and all reasons) it…
Do you talk with regular people, outside of the tech bubble often? If money were really the problem, Walmart employees would jump at an opportunity to work at Costco or any of the other higher paying places. OP is…
Same here. Ironically it's rising rent and gas prices that will force people back to work, rather than pay bumps because bills still need to be paid.
This is lazy explanation that's easy to agree with if you don't think very hard about it. Two reasons: 1. A shitty job at $15 an hour is equally unappealing at $16 an hour. Someone who doesn't want the crap hours, crap…
When this came out, someone in my dorm made a mock of it on our whiteboard. With a few extra lines, it looks like a fat guy bending over. People always look for a human shape in what they see.
Very timely; I found out yesterday that the UPX program (EXE specific compressor from many years ago) was made by the same guys who made LZO. I had this realization that there is a progeny from people who write…
You'll need to go back earlier than 15 years. ConcurrentHashMap and friends were added in 1.6, but String.intern has been in there since the beginning. Since Java shipped with Threads in the standard library, (but no…
Make sure to read between the lines. It only looks like a busy loop. Remember, the OS can pause and preempt your thread at any time. This is a real and likely event.
One of the things that made linearizabilty click for me was thinking in terms of happens-before: volatile int a; a = 1; print(a) // Could this print Zero? Even assuming only one program, one thread, one process, no…
https://go.dev/play/p/xolc9oPwA0C Interfaces don't have a zero type, which means that we can't have an atomic.Value which stores Shape. Atomic Value would be much easier to reason about if it had store semantics similar…
That's why I opened with "Look at the implementation". Go is unable to store the type and the pointer at the same time, so it warps what "atomic" means. Pretty much every other language has atomic mean "one of these…
Sorry to say, but these hit close to home for me. A lot of the synchronization paradigms in Go are easy to misuse, but lead the author into thinking it's okay. the WaitGroup one is particularly poignant for me, since…
From 2006 to 2014 I owned my own platform. Several actually. But I turned them down after it became a lot of work to maintain. At the time, it wasn't so obvious the web was dying, but in hindsight I probably helped kill…
The best lossless format is the one you can decode back to the original image. When evaluating them, there is an implicit assumption that the decode step will happen a short time later, but that's not always true. Will…
We hope these are Futures; it sounded like GPs farmer may have Forward contracts. If this is the case, it would make more sense for the Farmer to bail on the contract if prices get too far out. (a.k.a. counterparty…
The JVM still doesn't know about generics. The explanation you provided is entirely at the compiler (javac) level, and the JVM is still oblivious to it. There is no special dispatch, or optimization. At best, you could…
I was under the impression she hadn't had any good hits leading up to the end of 2020, and enough misses caused her to lose favor. I can't really think of any great Netflix originals from 2018-2020.
I generally agree with you, though I would say now we are finding out if it's sustainable or not. Remember that for the past 2 years, TV Studios have been on lock down and the only stuff Netflix was really releasing was…
Consumers want high quality, entertaining content, at low cost, with little commitment, at any time. Prior to Netflix, there wasn't such an intersecting product. Now, Netflix has low quality content, but still has all…
Stupid is probably the wrong word here; "clueless"? I personally think consumers are on the verge of reinventing TV channels, with each streaming service acting like a channel. Consumers, who liked that Netflix had so…
It is small, but that's not what you should look at. The Derivative in subscribers matters way more (since Netflix is a growth company), and Russia was nearly doubling in subs each year.
> So is that why the increasing competition from the likes of Apple, Disney+ and HBO, recent price increases and password sharing loopholes have plagued its growth? This is also a false narrative. Netflix subscribers…