Viewing profile — legosexmagic
legosexmagic
HN member- Joined
- Mon, Apr 11, 2022, 4:14 PM UTC
- HN karma
- 47
- Public activity
- 23 items
- HN profile
- View on Hacker News ↗
About legosexmagic
No profile information was provided.
Recent public activity
- comment
-
comment
Comment #39480971
the amount of cooling you get is proportional to the difference of component temperature to ambient temperature. thats why modern chips are engineered to run much hotter.
- comment
- comment
-
comment
Comment #37461644
Actors tend to lead to bloated incomprehensible code. Even when you do want game objects to look like independent message passing actors. Faking it is always easier. Actors are sel…
-
comment
Comment #37025309
think of corrugated metal. sound waves and heat will travel slower in the wavy direction than in the straight direction. you can stamp some more complicated pattern onto a piece of…
-
comment
Comment #36435306
yes. weather people are aware of the sun. but thanks for pointing it out lol
-
comment
Comment #36225777
integrated gpus do perform "stream computing" tho
-
comment
Comment #36153776
thats a very complicated way to say "i dont like young people"
-
comment
Comment #35755674
> Nobody knows how even the current generation of LLMs work (at the plumbing layer, sure, but the high-level behavior is a complete mystery). i dont think thats fair to say tbh. cl…
-
comment
Comment #35720125
the jacobi identity is [x,[y,z]] - [[x,y],z] = [y,[x,z]] ie. it says the lie (pronounced "lee") bracket is almost associative but you have to add a [y,[x,z]] when you rearrange bra…
-
comment
Comment #35511406
both of these are reasonable. if you have an `x` such that `x + n = x` implies that `n = 0`. (assuming x still has an additive inverse) in other words you just invented modular ari…
-
comment
Comment #35211690
is there realy no way to get "bank run insurance" from somewhere other than a central bank?
-
comment
Comment #35080877
Your mixing up terms. immediate mode rendering and immediate mode gui are unrelated. immediate mode gui libraries generally dont use immediate mode rendering because its realy slow…
- comment
- comment
-
comment
Comment #34404531
thats how it works. its called a swapchain and its usually more than one texture. to avoid artifacts.
-
comment
Comment #34361572
you can use (abuse?) multiplication to get a nice dither without any tables: bool dither(int time, int value) { time *= value; return (value + time ^ value ^ time) where value is i…
-
comment
Comment #34119043
thats pretty much it yes. the reason they dont just say 2nd derivative is that the derivative isnt a geometry property. you can have two curves with the same shape but different de…
-
comment
Comment #33494742
the right solution is to parametrize the search region as (offset, length) instead of (start, end). then the midpoint is just offset+length/2. you can also remove that unpredictabl…
-
comment
Comment #33412058
congress is funding nasa because voters generally like it when nasa gets funding.
-
comment
Comment #33411831
you are suspicious because the government agency tasked with photographing space is publishing photographs of space?
-
comment
Comment #31747563
regular photogrammetry usually means searching for common features in a bunch of photos. if you find the same feature in 3 photos you can triangulate its location in 3d space. the …