Viewing profile — rer0tsaz
rer0tsaz
HN member- Joined
- Thu, Jul 14, 2011, 10:08 AM UTC
- HN karma
- 74
- Public activity
- 31 items
- HN profile
- View on Hacker News ↗
About rer0tsaz
No profile information was provided.
Recent public activity
- comment
-
comment
Comment #13317781
Making sure the Direction flag is clear on entry and return is a somewhat hidden requirement of stdcall (Windows calling convention), but it didn't crash if you set it in WindowPro…
-
comment
Comment #13090083
>5. WWJBQD? This refers to Jean-Baptiste ‘JBQ’ Quéru, who responded: put users first. https://plus.google.com/+JeanBaptisteQueru/posts/jjwjobbMUY8
-
comment
Comment #12835335
I was expecting a "Django SQL" Explorer, for example a Django ORM -> SQL compiler playground, but got a Django "SQL Explorer".
-
comment
Comment #11985533
No, but let me quote Jaynes (Probability Theory: the Logic of Science, 10.10): > ‘When I toss a coin, the probability for heads is one-half.’ [...] the issue is between the followi…
- comment
-
comment
Comment #11466343
No, no, the cool thing to do now is to defend it. You claim that critics just don't understand its purpose, even if they mention it multiple times and are only criticising misuse. …
-
comment
Comment #11150870
He actually discusses it a bit in the previous paragraph, which does not seem to be online anywhere: > When programming languages emerged, the "dynamic" nature of the assignment st…
-
comment
Comment #11150771
Just use n = max(a, b). Of course that doesn't help you much unless you're adhering to strict safety standards (e.g. power of ten rules), it just shifts the burden of proof from te…
-
comment
Comment #11150492
Yes, that is the point I tried to make. Use simple, constrained forms such as (C) "for(int i = 0; i My apologies for making an absolute statement with unclear terms, thus inviting …
-
comment
Comment #11150247
Iterative loops are much easier to analyze and reason about, by humans and by computers. For example, they always terminate. To paraphrase Dijkstra, "I regard general recursion as …
-
comment
Comment #10962478
A similar project is ProtobufDumper from SteamRE[1]. It's tailored to Valve games and Steam. [1] https://github.com/SteamRE/SteamKit/tree/master/Resources/Pr...
-
comment
Comment #10679927
They helped a local 30-year-old coffeehouse by buying them and their neighbor at above market rate. Backed by illegal secret tax deals, as it turned out.
-
comment
Comment #10482389
To summarize and paraphrase the paper: > Every upvote should increase the score, every downvote should decrease the score and the more votes there are the less an additional vote s…
-
comment
Comment #10431396
There was a good talk about deployments at DjangoCon US 2015. Django Deployments Done Right by Peter Baumgartner: https://www.youtube.com/watch?v=SUczHTa7WmQ&list=PLE7tQUdRKc...
-
comment
Comment #10407991
I agree that the staircasing effect is definitely the biggest drawback of Total Variation. In the "Smoothed" picture the noise is removed but the results are blocky. The first way …
-
comment
Comment #10406628
Let me share my experience with chroma upsampling and smooth jpeg decoding. At first, I optimized each channel, then upsampled the chroma channels using replication. This works ter…
-
comment
Comment #10219529
If you start with the most general form you won't always get an optimal solution, because two jumps may be blocking each other from optimizing. TASM does it that way. Consider (16-…
-
comment
Comment #10219498
The term to search for papers is "span-dependent instruction", which goes back to 1978.
-
comment
Comment #10139498
Another thing that can produce out-of-gamut colors in JPEG is chroma subsampling. http://www.glennchan.info/articles/technical/chroma/chroma1.... has a good overview. Clipping is r…
-
comment
Comment #10009228
If you want gory details, try G'MIC[1]. It has plugins for GIMP and Krita, an online version[2], a ridiculous number of filters[3] and features, and a command language. On the othe…
-
comment
Comment #9987552
> Programmers respond by attempting to stamp out the gets() function in working code, but they refuse to remove it from the C programming language's standard input/output library, …
-
comment
Comment #9900889
House for the Feeble Minded.
-
comment
Comment #9831042
I was working in YCbCr and I found it noticable. Compare the bottom-right tile in https://github.com/victorvde/jpeg2png/commit/64bf10789092ccf... with swipe. It's worst with green …
-
comment
Comment #9830262
In my experience[1] code is available maybe half of the time, if you really search for it: checking the academic and personal pages of every author, and scouring the code of every …