Bài đăng

New top story on Hacker News: Run a 1T parameter model on a 32gb Mac by streaming tensors from NVMe

Run a 1T parameter model on a 32gb Mac by streaming tensors from NVMe 53 by tatef | 26 comments on Hacker News. March 24, 2026 at 11:02PM tatef 53 https://ift.tt/VZLoXlD Run a 1T parameter model on a 32gb Mac by streaming tensors from NVMe 26 https://ift.tt/Cytm4LN

New top story on Hacker News: US govt pays TotalEnergies nearly $1B to stop US offshore wind projects

US govt pays TotalEnergies nearly $1B to stop US offshore wind projects 114 by lode | 41 comments on Hacker News. March 24, 2026 at 12:35AM lode 114 https://ift.tt/4alWVP6 US govt pays TotalEnergies nearly $1B to stop US offshore wind projects 41 https://ift.tt/xoePOXp

New top story on Hacker News: Digs: Offline-first iOS app to browse your Discogs vinyl collection

Digs: Offline-first iOS app to browse your Discogs vinyl collection 7 by rlustin | 0 comments on Hacker News. March 23, 2026 at 04:02PM rlustin 7 https://ift.tt/ACgHJ25 Digs: Offline-first iOS app to browse your Discogs vinyl collection 0 https://ift.tt/pxE3Cgm

New top story on Hacker News: Show HN: Threadprocs – executables sharing one address space (0-copy pointers)

Show HN: Threadprocs – executables sharing one address space (0-copy pointers) 23 by jer-irl | 17 comments on Hacker News. This project launches multiple independent programs into a single shared virtual address space, while still behaving like separate processes (independent binaries, globals, and lifetimes). When threadprocs share their address space, pointers are valid across them with no code changes for well-behaved Linux binaries. Unlike threads, each threadproc is a standalone and semi-isolated process. Unlike dlopen-based plugin systems, threadprocs run traditional executables with a `main()` function. Unlike POSIX processes, pointers remain valid across threadprocs because they share the same address space. This means that idiomatic pointer-based data structures like `std::string` or `std::unordered_map` can be passed between threadprocs and accessed directly (with the usual data race considerations). This accomplishes a programming model somewhere between pthreads and mult...

New top story on Hacker News: Trivy under attack again: Widespread GitHub Actions tag compromise secrets

Trivy under attack again: Widespread GitHub Actions tag compromise secrets 9 by jicea | 3 comments on Hacker News. March 22, 2026 at 04:45PM jicea 9 https://ift.tt/pRZ3vQh Trivy under attack again: Widespread GitHub Actions tag compromise secrets 3 https://ift.tt/ZcMP0gI

New top story on Hacker News: Ask HN: AI productivity gains – do you fire devs or build better products?

Ask HN: AI productivity gains – do you fire devs or build better products? 61 by Bleiglanz | 89 comments on Hacker News. i was rolling my eyes at the hype, but reading about this is totally different from experiencing it. if you have any old repos out there - try it, you might actually be amazed. i'm not sure i buy the long-term "*90% productivity*" claims for complex, legacy enterprise systems, but for the boilerplate, libraries, build-tools, and refactoring? the gain is gigantic. all the time-consuming, nerve-wrecking stuff is mostly taken care of. you start off checking every diff like a hawk, expecting it to break things, but honestly, soon you see it's not necessary most of the time. you just keep your IDE open and feed the "analyze code" output back into it. in java, telling it to " add checkstyle, run mvn verify and repair " works well enough that you can actually go grab a coffee instead of fighting linter warnings. the theory is that wh...