Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
legosexmagic
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
legosexmagic
3y ago
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.
2.
▲
by
legosexmagic
3y ago
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 self defeating because they turn everything into a distributed
3.
▲
by
legosexmagic
3y ago
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 metal to control how sound waves travel through it. almost
4.
▲
by
legosexmagic
3y ago
yes. weather people are aware of the sun. but thanks for pointing it out lol
5.
▲
by
legosexmagic
3y ago
integrated gpus do perform "stream computing" tho
6.
▲
by
legosexmagic
3y ago
thats a very complicated way to say "i dont like young people"
7.
▲
by
legosexmagic
3y ago
> 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. clearly language has alot of patterns in it. so it should b
8.
▲
by
legosexmagic
3y ago
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 brackets. it has absolutely nothing to do with disamb
9.
▲
by
legosexmagic
3y ago
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 arithmetic which is a very reasonable thing to invent. 1/0
10.
▲
by
legosexmagic
4y ago
is there realy no way to get "bank run insurance" from somewhere other than a central bank?
11.
▲
by
legosexmagic
4y ago
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. immediate mode gui tends to be faster in practice because
12.
▲
by
legosexmagic
4y ago
thats how it works. its called a swapchain and its usually more than one texture. to avoid artifacts.
13.
▲
by
legosexmagic
4y ago
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) < 0; } where value is in the range 0 ... (int_max/2
14.
▲
by
legosexmagic
4y ago
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 derivatives. curvature only depends on the shape of the object
15.
▲
by
legosexmagic
4y ago
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 unpredictable branch in the loop if you want. whatever_t *bisec
16.
▲
by
legosexmagic
4y ago
congress is funding nasa because voters generally like it when nasa gets funding.
17.
▲
by
legosexmagic
4y ago
you are suspicious because the government agency tasked with photographing space is publishing photographs of space?
18.
▲
by
legosexmagic
4y ago
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 output of this process is a point cloud which you can then p