Viewing profile — theresistor
theresistor
HN member- Joined
- Wed, May 06, 2015, 5:48 PM UTC
- HN karma
- 948
- Public activity
- 170 items
- HN profile
- View on Hacker News ↗
About theresistor
No profile information was provided.
Recent public activity
-
comment
Comment #48889560
> Isn't that what everyone is doing, or are we Frenchmen the exception? > For reference if the author reads this, we write the latin x exactly like the cyrillic х, i.e. reverse c, …
-
comment
Comment #48818458
I had this argument with people working on VR headsets, where a physical parameter was designed to cover the 5th to 95th percentile. I had to point out that flat-out excluding 10% …
-
comment
Comment #48603316
In most amateur imaging you can trade time for quality. By stacking enough images, satellite trails get averaged out of the final image. Very high end amateurs get pissy about it b…
-
comment
Comment #48602951
You’d be amazed what even a small smart telescope can see even in Bortle 9 urban skies. I have one of the mentioned SeeStar smart telescopes, and have been quite successful in taki…
-
comment
Comment #48602779
iTelescope does exactly what you’re outlining. There used to be a few others but I think they have mostly died out. I assume the economics don’t really work out.
-
comment
Comment #48308139
Also also, AMD’s play has always been to produce HW that offers good performance/$, with the downside of having much weaker SW offerings to go with it. Consoles are always pressure…
- story
-
comment
Comment #46590017
> It might be that regalloc needs to be taught to rematerialize It knows how to rematerialize, and has for a long time, but the backend is generally more local/has less visibility …
-
comment
Comment #46239133
I say and hear it all the time in the US...
-
comment
Comment #46239085
Really? I read the same sentence (as an American) and immediately thought that they must be referring to British English. Certainly nobody says brilliant as an affirmation here. An…
-
comment
Comment #46199532
As far as I know Apple will still sell you individual tracks (DRM free, I think?), though it’s a bit hidden.
-
comment
Comment #46180015
A very recent example: https://github.com/ocaml/ocaml/pull/14369
-
comment
Comment #46122197
This is a pretty standard topic, and not really a compiler optimization. It's usually called a unity build. [0] https://en.wikipedia.org/wiki/Unity_build
- story
- story
-
comment
Comment #45310383
https://www.itelescope.net/
-
comment
Comment #45213253
My grandfather also worked on it, as a technician in Los Alamos. He had previously been working for a scientific supplies company in Chicago that was (unbeknownst to him) providing…
-
comment
Comment #43922328
Kid me absolutely ran The Bug on an old PowerMac G3: https://macthemes.garden/themes/8191e1471dc9-the-bug/
-
comment
Comment #43260329
> I tend to agree but, playing devil's advocate, is this true for other roles? Does a movie director need to know how to build sets? How to sew costumes? How to use Blender/Maya/Ho…
-
comment
Comment #43217388
My father was a Classics professor, and one of the most popular classes he taught was "Latin Terminology for Medicine and Law".
-
comment
Comment #42382268
All of the major C/C++ compilers are deterministic functions of their inputs. This is a pretty major property, and any regression is rapidly detected and fixed. Optimization "timeo…
-
comment
Comment #41954134
> Do they just target the lowest common denominator of operations? Or do they somehow adapt to the operations supported by the user's CPU? Mostly the former. Some highly optimized …
-
comment
Comment #41868681
The textual IR is not backwards compatible, but the bitcode format has been best-effort auto-upgradeable for as long as I've been involved (2006). The policy is documented here: ht…
-
comment
Comment #41865703
If you know that you need to offload matmuls, then building matmul hardware is more area efficient than adding an entire extra CPU. Various intermediate points exist along that spe…
-
comment
Comment #41864928
> Also, people often mistake the reason for an NPU is "speed". That's not correct. The whole point of the NPU is rather to focus on low power consumption. It's also often about off…