Viewing profile — gp7
gp7
HN member- Joined
- Sat, Jan 03, 2015, 4:55 PM UTC
- HN karma
- 180
- Public activity
- 74 items
- HN profile
- View on Hacker News ↗
About gp7
No profile information was provided.
Recent public activity
-
comment
Comment #36375831
Very good youtube channel, if anyone is wondering
-
comment
Comment #23457596
A nice example of Japanese stroke order mattering are two of the katakana, ツ and シ. The difference is that the former starts at the top left and the strokes move right, then down a…
-
comment
Comment #22281268
Fun book. "When mass produced, the cost of self-tuning options will be small compared to the price of a quality piano. You might think that this would put piano tuners out of work …
-
comment
Comment #20433989
Steam only hosts the code incidentally. It manages your licenses. This is a big difference, and it's one publishers are free to work around if they wanted to.
-
comment
Comment #19741580
When you write like this a lot, you end up talking like it, too.
-
comment
Comment #18828477
The claim isn't never--it's for installing a small set of apps that you don't change for more or less the entire lifetime of your device.
-
comment
Comment #18802577
Sorry, I'm not accusing you of anything. By strided accesses I mean when you access elements of an array sequentially using some step size. Think loops with `i += stride` instead o…
-
comment
Comment #18797657
You copy rather than use strided accesses. It's the same algorithm.
-
comment
Comment #18762313
The code is mostly equivalent to the recursive form found in the wikipedia article on the cooley-tukey algorithm. This is a good one to learn from, as its not only a simple formula…
-
comment
Comment #18575291
Just a run of the mill human interest story about the checks notes CIA????
-
comment
Comment #18542969
For people who are eager to think this is a don't-assume-gender charade: try misgendering a cis person next time you're out, and see how much they don't care. _You_ are who this is…
-
comment
Comment #18015009
Mozart had extensive education and training????
-
comment
Comment #17923088
> 4. Teach Changes of Variables As someone who has basically no formal training in mathematics outside what's required for undergraduate computer science this is a big one. The fir…
-
comment
Comment #17885441
Two years after this post, the Linux kernel added strscpy, the api of which is equivalent to the safe strncpy in this post. Internally, it stops copying once it reaches the null te…
-
comment
Comment #17859157
My experience with notebooks matches the one presented here. For me the most disappointing thing is that notebooks are JSON, and not just marked up .pys. The cons of this decision …
-
comment
Comment #17843938
Well, there was the Manhunt games, which always represented the worst side of Rockstar North to me.
-
comment
Comment #17839268
That’s fair, but my assumption was that someone reading my reply would also have read the others, and I didn’t want to repeat what has already been said.
-
comment
Comment #17839072
Time signatures are about writing and reading music. A beat being in 3 or 6 is independent from the time signature, which is whatever the transcriber thought best (you can always c…
-
comment
Comment #17724254
Bizarre. This is coming from someone presumably embedded in the grant-writing machine that is modern academia. How do grant proposals justify their cost, exactly? Academia would be…
-
comment
Comment #16889644
I'm clever and stupid.
-
comment
Comment #16126877
Reverb of a static room at a point is as simple as that. Rooms with moving obstructions, with moving noise generators, at moving points, that's harder.
-
comment
Comment #15156367
I can't quite describe it but the use of #F00 just looks wrong to me. Over saturated somehow
-
comment
Comment #15155483
https://fgiesen.wordpress.com Most of his posts end up on the first page of hn. In fact there is one right now http://nullprogram.com/ makes C look fun
-
comment
Comment #15110251
I've had on/off problems for a couple years now with a usb powered audio interface (focusrite 2i2) causing popping sounds from speakers--recognisable as a DC thump but happening ev…
-
comment
Comment #14936743
C++'s rng is bad because it's very easy to set them up incorrectly, and people mostly do. See http://www.pcg-random.org/posts/cpp-seeding-surprises.html