frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Meta shares slide as plan to spend billions more on AI spooks investors

https://www.bbc.co.uk/news/articles/crkpd4r2y7eo
1•rwmj•1m ago•0 comments

DataCenter.FM – background noise app featuring the sound of the AI bubble

https://datacenter.fm/
3•louisbarclay•5m ago•0 comments

LLM 0.32a0 is a major backwards-compatible refactor

https://simonwillison.net/2026/Apr/29/llm/
2•thebeardisred•7m ago•0 comments

Coding Was Never the Hard Part: What I Wish Every Business Leader Knew About AI

https://koushikdasika.com/blog/coding-was-never-the-hard-part/
2•HalcyonicStorm•8m ago•0 comments

Mozilla's Opposition to Chrome's Prompt API

https://github.com/mozilla/standards-positions/issues/1213
3•jaffathecake•14m ago•0 comments

Show HN: Pg_column_Tetris – a pg extension for optimal column alignment

https://github.com/rogerwelin/pg_column_tetris
2•rogerw•14m ago•0 comments

Reasoning compresses. Factual knowledge doesn't

https://twitter.com/bojie_li/status/2049314403208896521
2•stared•15m ago•0 comments

Nvidia releases Nemotron 3 Nano Omni multimodal model

https://blogs.nvidia.com/blog/nemotron-3-nano-omni-multimodal-ai-agents/
2•madaxe_again•19m ago•0 comments

Bouncing Droplet "Quantum Mechanics"

https://scottlocklin.wordpress.com/2026/04/28/bouncing-droplet-quantum-mechanics/
2•tosh•20m ago•0 comments

Terminal file picker and inline editor for fast CLI workflows

https://pypi.org/project/terminal-file-picker/
2•sahedwave•20m ago•0 comments

A photon was teleported across 270 meters in quantum breakthrough

https://www.sciencedaily.com/releases/2026/04/260429102030.htm
2•geox•20m ago•0 comments

Patrick Collison Reflects on Stripe Sessions

https://twitter.com/patrickc/status/2049705418436600244
2•tosh•21m ago•0 comments

OpenAI Codex prompt includes explicit directive: "never talk about goblins"

https://arstechnica.com/ai/2026/04/openai-codex-system-prompt-includes-explicit-directive-to-neve...
3•pookieinc•23m ago•0 comments

Hunting Down the Google-Sent Phishing Wave Compromising 30k Facebook Accounts

https://guard.io/labs/accountdumpling---hunting-down-the-google-sent-phishing-wave-compromising-3...
2•vulnerabiliT•24m ago•0 comments

Soundness Failures in LaBRADOR Implementations from NTT-Friendly Rings

https://blog.zksecurity.xyz/posts/labrador-bugs/
7•zgeorgios•25m ago•0 comments

Chinese GPU maker Lisuan Tech is the fourth GPU maker with WHQL certification

https://www.tomshardware.com/pc-components/gpus/in-historic-first-chinese-gpu-maker-lisuan-tech-b...
3•cassianoleal•26m ago•0 comments

Thoughts on WebAssembly as a Stack Machine

https://eli.thegreenplace.net/2026/thoughts-on-webassembly-as-a-stack-machine/
2•ingve•27m ago•0 comments

Emulating PS2 Floating-Point Numbers: IEEE 754 Differences (2023)

https://www.gregorygaines.com/blog/emulating-ps2-floating-point-nums-ieee-754-diffs-part-1/
2•haunter•31m ago•0 comments

Beyond 80/20: High-Entropy Minority Tokens Drive Effective RL for LLM Reasoning

https://arxiv.org/abs/2506.01939
2•mdp2021•34m ago•0 comments

It is just too much of everything

https://www.respan.ai/market-map
2•sminchev•35m ago•1 comments

A Brief, Incomplete, and Mostly Wrong History of Programming Languages (2009)

http://james-iry.blogspot.com/2009/05/brief-incomplete-and-mostly-wrong.html
3•downbad_•42m ago•1 comments

The Elephant in the Room

https://www.joshwcomeau.com/email/wham-launch-005-elephant-2-p/
2•ameybhavsar•43m ago•0 comments

OpenAI Technical Goals (2016)

https://openai.com/index/openai-technical-goals/
2•chistev•45m ago•1 comments

US orders chip equipment companies to halt some shipments to China #2 chipmaker

https://www.reuters.com/world/china/us-orders-chip-equipment-companies-halt-some-shipments-hua-ho...
2•giuliomagnifico•47m ago•0 comments

The box-tickers shall inherit the Earth

https://spectator.com/article/the-box-tickers-shall-inherit-the-earth/
2•calpaterson•48m ago•0 comments

VS Code now enables Git AI co-authoring by default

https://code.visualstudio.com/updates/v1_118#_copilot-added-as-a-git-coauthor-by-default
2•nh43215rgb•49m ago•0 comments

Inspired

https://daniel.haxx.se/blog/2026/04/30/inspired/
2•TangerineDream•49m ago•0 comments

Near Future of Programming Languages (2017) [pdf]

https://web.archive.org/web/20220325175116/http://dev.stephendiehl.com/nearfuture.pdf
2•tosh•52m ago•0 comments

Why are the Artemis II photos on Flickr?

https://www.anildash.com/2026/04/30/artemis-photos-flickr/
3•Tomte•53m ago•0 comments

AI Slopocalypse 2027

https://www.stephendiehl.com/posts/ai_slop_2027/
2•andsoitis•54m ago•0 comments
Open in hackernews

Stoolap: High-performance, SQL database in pure Go with zero dependencies

https://github.com/stoolap/stoolap
1•thunderbong•11mo ago

Comments

physicsguy•11mo ago
> Vectorized Execution: SIMD-accelerated operations for high throughput

> // This file contains highly optimized versions of vector operations > // that benefit from compiler auto-vectorization on modern CPUs.

https://github.com/stoolap/stoolap/blob/9c0ceda3bb9c674a9758...

Unfortunately, the standard Go compiler explicitly doesn't auto-vectorize, so saying that this is a pure Go SIMD database isn't strictly correct. You'll only get this if you compile with gccgo.