Viewing profile — tntn
tntn
HN member- Joined
- Wed, Jan 24, 2018, 6:26 PM UTC
- HN karma
- 1,101
- Public activity
- 302 items
- HN profile
- View on Hacker News ↗
About tntn
No profile information was provided.
Recent public activity
-
comment
Comment #20345225
"Urban–Rural Differences in Suicide in the State of Maryland: The Role of Firearms" https://ajph.aphapublications.org/doi/pdf/10.2105/AJPH.2017.... > Conclusions. Male firearm use …
-
comment
Comment #20345007
Next you're probably going to tell me about French fries, right?
-
comment
Comment #20344992
But it doesn't reflect the factual subtitle. The title here says 1918, but the true trend is 1915-1918, which had a bit of a war as well. > There is no requirement to post the arti…
-
comment
Comment #20344879
HN title is not good. Original title is "U.S. Life Expectancy Drops for Third Year in a Row, Reflecting Rising Drug Overdoses, Suicides." The comparison is between the last three y…
-
comment
Comment #20332468
> I wrapped my objects in atomic reference counters, and wrapped my pixel buffer in a mutex Rust people, is there a way to tell the compiler that each thread gets its own elements?…
-
comment
Comment #20332297
AMD switched to TAGE for Zen 2, so I don't know if neural networks are "the future of branch prediction" or just a neat diversion.
-
comment
Comment #20329619
https://www.gao.gov/assets/680/677454.pdf Page 15.
-
comment
Comment #20314485
what is the point of linking to submissions with no discussion.
- comment
-
comment
Comment #20305716
EDIT: I'm too old for this. Think what you want about mmap and ioctl.
-
comment
Comment #20286065
The copy on https://comma.ai/ has certainly changed tone from what it once was. Now it is clearing pushing a driver-assist angle ("improves your stock ACC and LKAS," "copilot," "au…
-
comment
Comment #20271052
https://pastebin.com/eEuJcy18
-
comment
Comment #20267326
It produces the full domain name (up to .com) in ~ 1 minute. If there is more to the url (a path, ?= parameters, etc) after the domain name, then no.
-
comment
Comment #20264971
Yeah, I put labels corresponding to the original IP throughout and used a jump table.
-
comment
Comment #20260321
> My other option was to translate it into real assembly I wrote a compiler from emoji-code to amd64 (mostly because I'm more interested in compilers than reversing). It runs quite…
-
comment
Comment #20251559
Huh, interesting. First time I read this comment, it said something like "why should I care what you think?" I guess the edit indicates that you do care?
-
comment
Comment #20251535
>>> import autograd.numpy as np >>> from autograd import grad >>> def fn(x): ... return np.power(np.power(x, 3), 1/3) ... >>> gradfn = grad(fn) >>> gradfn(0.0) /usr/local/lib/pytho…
-
comment
Comment #20251449
> I don't see a problem with simplifying the exponents first. Sure, we call that computer algebra. As soon as you start doing that, you aren't doing automatic differentiation, you …
- comment
-
comment
Comment #20250670
Just because automatic differentiation is a different technique than numerical differentiation doesn't mean it isn't a numerical method. (I probably should not say this, but I will…
-
comment
Comment #20246239
I don't think anyone at Intel has been patting themselves on the back for their 10nm failure. This wasn't their plan - cannon lake was supposed to be released in 2016, but now they…
-
comment
Comment #20243521
a lot of people are using JavaScript without understanding the method signatures of commonly using methods because JavaScript is such a weird and confusing language that has nonsta…
-
comment
Comment #20243480
It is extremely awesome that JavaScript has conditioned a ton of the world's programmers to think that needing to compose your function with the identity function to achieve the de…
-
comment
Comment #20243271
> not even knowing how JavaScript implements map in a nonstandard way that breaks simple examples FTFY. I know exactly how map works: https://en.m.wikipedia.org/wiki/Map_(higher-or…
-
comment
Comment #20243188
What is the syntactic sugar here? I mostly see a map that doesn't behave how anyone would expect.