frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

PostgreSQL 18.6, 17.11, 16.15, 15.19, 14.24 and 19 Beta 3 Released

https://www.postgresql.org/about/news/postgresql-186-1711-1615-1519-1424-and-19-beta-3-released-3...
1•pella•1m ago•0 comments

Free Electron Lasers and the Birth of the Beamline Tycoon

https://twitter.com/Andercot/status/2086656126591152326
1•delichon•2m ago•0 comments

Pulsar Fusion – The Steam Engine Moment for Space Propulsion?

https://beyondhorizonforesight.substack.com/p/pulsar-fusion-the-steam-engine-moment
1•beyondhorizonfs•5m ago•0 comments

If You Weren't Worried About A.I., You Should Be After the Past Few Weeks

https://www.nytimes.com/2026/08/13/opinion/ai-danger-openai-anthropic-models.html
1•newsomix9xl•6m ago•0 comments

Show HN: Pressentable – turn a spreadsheet into a typeset client report

https://pressentable.com/
1•younesR•6m ago•0 comments

A Programming Paradigm for Spatiotemporal Composability

https://github.com/cordiverse/paper
1•mekpro•7m ago•0 comments

Choosing an AI model: one prompt, 11 models, different results

https://www.netlify.com/blog/one-prompt-11-models-very-different-results/
2•toddmorey•8m ago•0 comments

We turned off Pub/Sub and nobody noticed

https://incident.io/blog/we-turned-off-pub-sub-and-nobody-noticed
6•patrickhamann•8m ago•2 comments

Show HN: A website that generates A/B tests to improve itself

https://selfimproving.site/
3•linksku•9m ago•1 comments

Oil barons hate this one cute lizard

https://luckyinstar.neocities.org/blog/duneslizard
2•speckx•10m ago•0 comments

2026 Clacton By-Election

https://en.wikipedia.org/wiki/2026_Clacton_by-election
4•petecooper•11m ago•0 comments

Show HN: RoundOS Datarooms – Free DocSend Alternative (Tracked Links, VDRs)

https://roundos.ai/free-docsend-alternative
3•roundos_maker•12m ago•0 comments

Wing Commander Source Reconstruction

https://github.com/neuromancer/wc1-re
2•JojoFatsani•13m ago•0 comments

My Rules for Using Spreadsheets

https://leancrew.com/all-this/2026/08/my-rules-for-using-spreadsheets/
4•surprisetalk•13m ago•0 comments

DeepSeek Harness

https://github.com/deepseek-ai/deepseek-harness
8•bjin•16m ago•0 comments

Show HN: Read the Room – a social LLM puzzle

https://ilia-iliev.itch.io/read-the-room
1•ilia_foo•16m ago•0 comments

Grok 4.6 /medium outperforms /high effort on DeepSWE

https://deepswe.datacurve.ai/#grok4.6
2•pandaaiioo•17m ago•0 comments

How to lucid dream: a step-by-step guide that takes your sleep seriously

https://medium.com/@6thMind/how-to-lucid-dream-a-step-by-step-guide-that-takes-your-sleep-serious...
1•smanuel•17m ago•0 comments

Forbes Fired Top Editor After Discovering He Received Secret $6M Payment

https://www.nytimes.com/2026/08/12/business/forbes-editor-fired.html
2•ilamont•17m ago•0 comments

Why Snowflake is so expensive

https://www.greybeam.ai/blog/why-snowflake-is-expensive
1•barrrrald•18m ago•0 comments

Web Search API Leaderboard: Quality, Latency, and Cost per Useful Result

https://nativeport.ai/leaderboards/web-search/
1•nativeport_ai•18m ago•0 comments

DeepSeek v4 Pro Price

https://api-docs.deepseek.com/zh-cn/quick_start/pricing/
2•impact_sy•18m ago•0 comments

Recursive Descent Parser

https://en.wikipedia.org/wiki/Recursive_descent_parser
1•tosh•18m ago•0 comments

An Editor's Guide to Spotting AI Writing

https://capx.co/an-editors-guide-to-spotting-ai-writing
1•barry-cotter•21m ago•0 comments

Show HN: I built a spreadsheet engine for my CSV importer to handle 1M rows

https://demo.updog.tech/client
1•michaeladze•22m ago•0 comments

Show HN: Parquity – find and reproduce Parquet interoperability failures

https://github.com/sovsparrow/parquity
3•sovsparrow•24m ago•0 comments

Ukraine's farmers despair as Russia's Black Sea blockade traps their harvest

https://www.reuters.com/world/ukraines-farmers-despair-russias-black-sea-blockade-traps-their-har...
2•littlexsparkee•24m ago•0 comments

DeepSeek API Pricing Update

https://twitter.com/deepseek_ai/status/2087864589895798968
5•mfiguiere•24m ago•0 comments

Show HN: I modded the Codex client to auto-route to the "right-sized" model

https://apimade.com/chatgpt-auto-router/
1•apimade•24m ago•0 comments

All of Namecheap Is Down

https://www.namecheap.com/
2•iamronaldo•26m ago•1 comments
Open in hackernews

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

https://github.com/stoolap/stoolap
1•thunderbong•1y ago

Comments

physicsguy•1y 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.