Viewing profile — nstbayless
nstbayless
HN member- Joined
- Thu, Jul 27, 2017, 5:04 AM UTC
- HN karma
- 82
- Public activity
- 29 items
- HN profile
- View on Hacker News ↗
About nstbayless
No profile information was provided.
Recent public activity
- comment
- story
-
comment
Comment #38922266
Also a full 3d library (likely will result in a lower fps): https://github.com/nstbayless/mini3d-plus
-
comment
Comment #37949433
I was looking for the etymology of these two terms which I had thought to be synonyms. As an avid screenshotter myself, I never knew the subtleties that differentiate it from scree…
- story
-
comment
Comment #37631035
I assume it's this: In Python, coroutines cannot yield from within another function call: if coroutine A calls function B, B cannot yield. In Lua, it's possible to yield a coroutin…
-
comment
Comment #37472877
It's possible that the tweets were actually produced together somehow. This might buy just enough search space between the two of them.
-
comment
Comment #37426437
New any% world record. 22 frames from TAS.
- story
-
comment
Comment #37215357
That makes sense. I agree that it's must be a standard understanding among statisticians that one of these interpretations is implied (although maybe given what happened with the M…
-
comment
Comment #37214640
I found that Elden Ring ran better on Proton on Linux than on native Windows on the same device. Loaded faster and ran more smoothly. I do not know why.
-
comment
Comment #37211014
The bucket formulation is very elegant. I still feel the problem arises from English, not probability. It's clear that "we've checked one child, it's a boy" implies "at least one c…
-
comment
Comment #37206051
Probability does not bite; describing partial information in English bites. It's not actually true that the probability is 1/3, nor that the probability is 1/2. (Same with 13/27 vs…
-
comment
Comment #36934508
Will this work? define string_length(x) _Generic(x, \ const char * : strlen((const char*)(const void*)x), \ struct MyStringBuffer * : ((const MyStringBuffer*)(const void*)x)->lengt…
-
comment
Comment #36500344
Kaze has expressed intent to produce a patch for sm64 with all the optimizations he's found after he releases his overhaul hack.
-
comment
Comment #36500322
One of the big optimizations Kaze makes is to remove a huge lookup table, which greatly reduces cache/memory usage.
-
comment
Comment #36436210
"Deep coroutines:" where you can yield from a function called from the coroutine. Lua supports this, but python doesn't (as far as I can tell). Is there a term for this? To the aut…
-
comment
Comment #35300230
I found that article quite confusing. I think these slides are clearer: https://courses.cs.washington.edu/courses/cse421/18au/lectur... (provided you know about induction already.)…
-
comment
Comment #35298658
I may have misunderstood, but I believe step 1 (eliding loads) is simply a cache scheduling problem. The optimal solution is the greedy "furthest in the future" eviction policy.
-
comment
Comment #35127289
This looks really cool! How many gigs is the model that's installed this way? If it's large it would be nice to include a disclaimer.
-
comment
Comment #34860146
Here's another one. Handy "syntax" that makes it possible to iterate an unsigned type from N-1 to 0. (Normally this is tricky.) for (unsigned int i = N; i --> 0;) printf("%d\n", i)…
-
comment
Comment #33745813
Gimp takes strange turns now and then, does but gradually improve over time. It used to be that fuzzy-select would cause immense lag practically every time. Now my biggest complain…
-
comment
Comment #33184252
"Silence" apparently does what Signal used to: https://silence.im/#download -- unencrypted SMS messages, and encrypted SMS for others who use the same app.
-
comment
Comment #33184097
Signal already colours SMS and encrypted messages differently. Unecrypted (SMS) messages are grey; encrypted messages are blue.
-
comment
Comment #33184077
I initially downloaded Signal assuming it had that feature. Then they removed encrypted SMS entirely: https://signal.org/blog/goodbye-encrypted-sms/ -- I almost uninstalled the app…