Hacker News: Front Page
Hacker News RSS
Hacker News: Newest
hnrss.org updates
A feed announcing updates related to hnrss.org
OpenAI's ChatGPT extension for Google Sheets, which has over 185,000 downloads in less than a month, is vulnerable to indirect prompt injection attacks. A single malicious query can trigger data exfiltration and phishing overlay attacks across workbooks in a victim's Google Sheet
A Linux kernel mailing list email thread from 2004 where Thomas Habets proposes a sysctl mechanism to protect specific processes (like xlock) from being killed by the Out-Of-Memory (OOM) killer. Andries Brouwer responds with an anecdote about an aircraft company that saved fuel c
The author reflects on how AI has transformed their prototyping workflow. Previously, the biggest bottleneck was the time needed to scaffold projects and handle mundane setup tasks before reaching the interesting parts. Now, AI has largely eliminated that bottleneck, allowing for
Chibil is a C compiler written in C# that targets .NET IL (MSIL), based on the chibicc compiler. It is complete enough to compile and run DOOM (PureDOOM). The compiler takes C source files and generates COFF OBJ files that are binary-compatible with MSVC's /clr mode, allowing mix
Article URL: https://hannesweissteiner.com/pdfs/frost.pdf Comments URL: https://news.ycombinator.com/item?id=48345822 Points: 5 # Comments: 1
This article explores restartable sequences (rseq), a Linux kernel feature introduced in version 4.18 (circa 2018) that enables creation of thread-safe data structures without traditional locks or atomic operations, scaling efficiently to many-core microprocessors. The author not