frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

LLMs pass a standard three-party Turing test

https://www.pnas.org/doi/10.1073/pnas.2524472123
1•mustaphah•2m ago•0 comments

WiFi Spatial Sensing

https://github.com/ruvnet/RuView
1•ustad•2m ago•0 comments

Learning VIM while playing a game

https://vim-adventures.com/
1•juliangoetze•8m ago•0 comments

Places to Launch Your Startup

https://indiehunt.io/100-places-to-launch-your-startup
3•praneetbrar•8m ago•1 comments

The Quadratic Sandwich

https://fedemagnani.github.io/math/2026/04/08/the-quadratic-sandwich.html
1•cpp_frog•8m ago•0 comments

The mental load of understanding code we didn't write

https://eduardmoldovan.com/posts/the-mental-load-of-taking-responsibility-for-code-you-didnt-write
1•edimoldovan•11m ago•1 comments

Toto 2.0: Time series forecasting enters the scaling era

https://www.datadoghq.com/blog/ai/toto-2/
1•gmays•11m ago•0 comments

What it takes to get approved on the Zoom App Marketplace

https://www.sponja.ai/blog/zoom-app-marketplace-approval
1•roee_tsur•12m ago•0 comments

Saying Goodbye to Asm.js

https://spidermonkey.dev/blog/2026/05/20/saying-goodbye-to-asmjs.html
2•eqrion•13m ago•0 comments

D-Mail and Context Checkpoints

https://deepwiki.com/MoonshotAI/kimi-cli/7.4-d-mail-and-context-checkpoints
1•ankitg12•14m ago•0 comments

Drivers&mechanisms:convergent forelimb reduction in non-avian theropod dinosaurs

https://royalsocietypublishing.org/rspb/article/293/2071/20260528/481779/Drivers-and-mechanisms-o...
1•bookofjoe•14m ago•0 comments

Barnes and Noble CEO says the bookstore will stock AI-written books

https://www.fastcompany.com/91544722/barnes-noble-ceo-selling-ai-generated-books-comment-social-m...
1•jslakro•14m ago•0 comments

Changes to Gemini model access and limits

https://support.google.com/gemini/answer/17004136?hl=en
2•sidewndr46•16m ago•0 comments

Comparing an LZ4 Decompressor on Four Legacy CPUs

https://bumbershootsoft.wordpress.com/2026/05/09/comparing-an-lz4-decompressor-on-four-legacy-cpus/
1•tosh•17m ago•0 comments

VictoriaTraces: Tracing, Observability, and OpenTelemetry0

https://rtfm.co.ua/en/victoriatraces-tracing-observability-and-opentelemetry/
2•valyala•19m ago•0 comments

Show HN: Pay-as-you-play game servers from Discord (£2/mo, four games)

https://github.com/jdmcgrath/steam-server-on-demand
1•joebi•20m ago•0 comments

Google Antigravity Built an OS and agent teams

https://antigravity.google/blog/google-antigravity-built-an-os
1•oscarfr•22m ago•0 comments

Shipped Ask AI in Aura++ in all project's page

https://auraplusplus.com
1•praneetbrar•22m ago•1 comments

Not All Software Systems Are Agent Friendly

https://yassi.dev/posts/not_all_software_systems_are_agent_friendly/
2•yassi_dev•23m ago•1 comments

College students drown out AI-praising commencement speeches with boos

https://www.tomshardware.com/tech-industry/artificial-intelligence/college-students-drown-out-ai-...
7•iancmceachern•23m ago•2 comments

I built a tool that shows which parts might break your supply chain

https://partfinder.dev/
2•jeffreyporterpf•24m ago•1 comments

Microsoft is quietly shopping for an OpenAI replacement

https://thenextweb.com/news/microsoft-startup-deals-life-after-openai
1•gmays•26m ago•0 comments

Fail-closed AI audit for a plugin registry (Workers AI and D1)

https://emdashcms.org/
1•chrisjohnleah•27m ago•0 comments

Let Copilot handle your local Azure setup via MCP

https://topaz.thecloudtheory.com/blog/topaz-mcp-github-copilot/
1•kamilmrzyglod•29m ago•0 comments

The impossible maths of the AI boom

https://www.ft.com/content/32bf8935-8d21-4689-ae34-8b4d3d5f6d93
3•disgruntledphd2•31m ago•1 comments

Google Search Is Becoming an AI Agent

https://surfacedby.com/blog/google-search-is-becoming-an-ai-agent
1•startages•34m ago•0 comments

EU Cloud Provider News Roundup (Feb–May 2026)

https://www.eucloudcost.com/blog/eu-cloud-news-feb-may-2026/
1•mixxor•34m ago•1 comments

We replaced Redis with MySQL for inventory reservations – and it scaled

https://shopify.engineering/scaling-inventory-reservations
1•mlenol•38m ago•0 comments

Pythagorean Addition in the Head

https://entropicthoughts.com/pythagorean-addition
1•crescit_eundo•40m ago•0 comments

Rust Database from Scratch

https://github.com/ayoubnabil/aiondb
1•ayoubnabil•43m ago•0 comments
Open in hackernews

What Happens When You Drop a Column in Postgres

https://www.thenile.dev/blog/drop-column
6•gwen-shapira•1y ago

Comments

gwen-shapira•1y ago
When you run ALTER TABLE test DROP COLUMN c Postgres doesn't actually go and remove the column from every row in the table. This can lead to counter intuitive behaviors like running into the 1600 column limit with a table that appears to have only 2 columns.

I explored a bit what dropping columns actually does (mark the column as dropped in the catalog), what VACUUM FULL cleans up, and why we are still (probably) compliant with the GDPR.