Viewing profile — saturncoleus
saturncoleus
HN member- Joined
- Sat, Apr 23, 2016, 8:04 PM UTC
- HN karma
- 82
- Public activity
- 17 items
- HN profile
- View on Hacker News ↗
About saturncoleus
No profile information was provided.
Recent public activity
-
comment
Comment #11783756
New compression algorithms are always interesting because they reveal a new way of describing a photograph in a succinct way. The overlap between image compression and image search…
-
comment
Comment #11783720
PNG will always do a bad at compression. PNG is deflate encoded, but without the ability to rearrange pixel data to work with deflate's strengths. It will pick RGBA, which mixes th…
-
comment
Comment #11749511
Java's SSL is very painful to deal with. It has no support for ALPN or NPN, making it really difficult to use for HTTP/2. Also, the GCM cipher suites are implemented in Java, not w…
-
comment
Comment #11747744
> This means I need to take the default CipherSuites and simply remove any that use a cipher smaller than 256bit. Arguably using a higher bit cipher suite should be considered wors…
-
comment
Comment #11710901
Can't help but wonder if attackers already knew this. There seems to be quite a few bugs found by taviso in antivirus code in the past few months, which has got to either attract a…
-
comment
Comment #11672243
It looks like this binary searches across the Go quality levels to find acceptable quality. This isn't a bad idea, but it won't be fruitful. The Go standard library JPEG encoder is…
-
comment
Comment #11656987
Those are all really good points actually. In response to them individually: - The problem with generating id's is that it isn't known ahead of time how many there will be. This fo…
-
comment
Comment #11656667
Does the same effect happen with 100% relative humidity?
-
comment
Comment #11652775
If you don't care about side effects: C: int foo = bar ? 2 : 4; Go: foo := map[bool]int{true:2, false:4}[bar] Python had a similar trick before 2.5 added ternary conditionals.
-
comment
Comment #11651387
Awk is great at what it does, but I find myself unable to keep it cached in my brain long enough to reuse it. Using awk usually means a google search of how to use it, which defeat…
-
comment
Comment #11651378
Huffman coding is probably one of the more interesting ones, not only because it is so ridiculously useful, but because of the wide taxonomy of implementations. It is quite malleab…
-
comment
Comment #11650644
Getting your picture taken kind of puts you on the defensive, but that probably isn't going away. You have to be able to go outside, go to the bank, go to work, and go to the groce…
-
comment
Comment #11650407
Alternatively they could make their own API, independent from OpenCL. I have written a small amount in each languages (a rainbow table generator), and found the CUDA version much m…
-
comment
Comment #11650381
If you have ever watched the TV show Black Mirror, it does an exploration of what it would be like to have instant access to know everything about a person by looking at them. The …
- story
- story
-
comment
Comment #11557264
A couple reasons. Look at these as something HTTP/2 does well, but maybe not the best: Head of line blocking is mostly solved. You can interleave sending big messages with small on…