Viewing profile — ache7
ache7
HN member- Joined
- Wed, Feb 05, 2020, 10:57 AM UTC
- HN karma
- 40
- Public activity
- 28 items
- HN profile
- View on Hacker News ↗
About ache7
No profile information was provided.
Recent public activity
-
comment
Comment #32328667
myjino-ru is just a virtual hosting provider. j19544519 - seems to be the username on this hosting.
-
comment
Comment #32328523
Damn, github should show some big visible warning about this.
-
comment
Comment #32328443
Here is a commit with malicious code from a Microsoft employee: https://github.com/promonlogicalis/asn1/commit/7bdca06d0edf8...
- comment
- comment
-
comment
Comment #24950979
These trolls really exist on Russian social networks, trying to refute any news from the opposition media. And some people (Russian enthusiasts) count and list these bots. But your…
-
comment
Comment #24950776
It is very sad that the authors of the article either believed in all these accusations against the Russians or are afraid to say that this is nonsense so that they are not accused…
-
comment
Comment #24930522
Any number is remarkable if you're smart enough to find why it's remarkable.
- story
-
comment
Comment #24676248
If it's an outdated pesticides, as suggested in another comment, then it's very related. Because it's a leakage from an old Soviet storage tanks.
-
comment
Comment #24322243
Using compiler hints, data can be placed directly in the code section. Works on x86/x86_64 Linux: char main[] __attribute__ ((section(".text"))) = "\xe8\x0d\0\0\0Hello world!\n" #i…
-
comment
Comment #23906282
He is also one of the developers of Bad North, where islands are procedurally generated, much similar with this demo.
-
comment
Comment #23905552
About that "write-ppm" example. Using PPM type 3 will increase the size of pixel data by 2-4 times. Use type 6.
-
comment
Comment #23817255
I don't have the general problems with reading, but I do have the problem you mentioned. And I'm also kind of a speed reader, I think the problem is here.
-
comment
Comment #23803108
It reminds the index of the first element in an array in different programming languages. Some use one-based indexing, others use zero. Which causes problems (bugs) when porting th…
-
comment
Comment #23802059
Modern computers have some sources of entropy that can be used to create a random numbers. For example, the timings of the memory access, race condition of threads. User interactio…
-
comment
Comment #23799488
It goes fine with mozjpeg. I tested a little, didn't find any problems.
-
comment
Comment #23799351
I've seen these projects on github. I don't remember the names, only that waifu2x upscaler has an NN filter for JPEG artifacts.
-
comment
Comment #23798772
Use "-w 0.0" switch to jpeg2png, gives slightly sharper results. Also try with: https://github.com/ilyakurdyukov/jpeg-quantsmooth with "-q6" (default setting without luma-aware chr…
-
comment
Comment #23790220
"All JPEG decoders have chroma upsampling." Well, I meant better upsampling than bilinear interpolation, which blurs chroma. "Oh, you can also jointly optimize the YUV-RGB conversi…
-
comment
Comment #23790005
Both of these projects have chroma upsampling.
-
comment
Comment #23789678
By the way, you can decode JPEG with less artifacts using these projects: https://github.com/ilyakurdyukov/jpeg-quantsmooth (good for most mid-quality and high-quality images) http…
-
comment
Comment #23789615
Actually - JPEG is not lossless even at 100% quality, there is a little noise at +/-1 of pixel value, some rare pixels at 2. Grayscale is not needed, you may skip RGB->YUV conversi…
- story
-
comment
Comment #23653532
And I also have questions about decompression speed and memory requirements.