Using Podman, Compose and BuildKit
emersion.fr
Margin Debt Surges 9.5% in June to Record High
advisorperspectives.com
Show HN: OS X Mavericks Forever
mavericksforever.com
To Infinity but Not Beyond
meyerweb.com
Ride in Your Privately-Owned Train Cars to See North America
amtrak.com
AI Mode in Search gets new agentic features and expands globally
blog.google
Activeloop (YC S18) Is Hiring Member of Technical Staff – Back End Engineering
careers.activeloop.ai
Show HN: I replaced vector databases with Git for AI memory (PoC)
github.com
Code review can be better
tigerbeetle.com
Show HN: I was curious about spherical helix, ended up making this visualization
visualrambling.space
Why are anime catgirls blocking my access to the Linux kernel?
lock.cmpxchg8b.com
Data, objects, and how we're railroaded into poor design (2018)
tedinski.com
Sixteen Bottles of Wine Riddle
chriskw.xyz
Home Depot sued for 'secretly' using facial recognition at self-checkouts
petapixel.com
SK hynix dethrones Samsung as world’s top DRAM maker
koreajoongangdaily.joins.com
Gemma 3 270M re-implemented in pure PyTorch for local tinkering
github.com
Mirror Ball Emoji Proposal (2018) [pdf]
unicode.org
Python f-string cheat sheets (2022)
fstring.help
Dev Reveals Secrets Behind New "3D" Platformer for the ZX Spectrum
timeextension.com
A statistical analysis of Rotten Tomatoes
statsignificant.com
At the risk of pointing out the obvious: (1-2^-24) × 2^128 ≈ 3.40282e+38 is the maximum finite single-precision (32-bit) floating-point value, (1-2^-53) × 2^1024 ≈ 1.79769e+308 is the maximum finite double-precision (64-bit) one, and 2^15 = 32767 and 2^31 = 2147483647 are of course the maximum signed 16-bit and 32-bit integer respectively. Also, 2^25 = 33554428 + 4 = 33554400 + 32, which I don’t see a good reason for.
Don’t know why browsers don’t use actual floating-point infinies (which, yes, obey a + Inf = Inf [edit: Inf not a] and a × Inf = (sgn a) Inf for finite a, which should in fact have been covered in either an assembly course or a numerics course). I’m guessing something on the Web ended up subtracting Inf - Inf = NaN and crapping out.