frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Explaining AI agents is like explaining 3D printers

https://www.jitbit.com/alexblog/ai-agents-and-3d-printers/
1•speckx•24s ago•0 comments

Show HN: An outliner where S3 is the database and there's no server

https://bulletlist.org/
1•laurentenhoor•1m ago•0 comments

Artificial Artificial Intelligence Just Gained a Third Artificial

1•michael_michael•2m ago•0 comments

The Ordinary Miracle of Existing

https://www.theatlantic.com/philosophy/2026/06/the-ordinary-miracle-of-existing/687351/
2•jdkee•11m ago•1 comments

Loimulohi

https://en.wikipedia.org/wiki/Loimulohi
1•silver92bullet•13m ago•0 comments

Space nuclear programs face near- and long-term challenges

https://spacenews.com/space-nuclear-programs-face-near-and-long-term-challenges/
2•defrost•14m ago•1 comments

Show HN: Control AI Agents on Your Old PC at Home from Any Device Anywhere

https://github.com/elin66alpha/Relay
3•elin66alpha•16m ago•1 comments

Careless People (2025)

https://en.wikipedia.org/wiki/Careless_People
3•vismit2000•17m ago•0 comments

Show HN: Csift – the missing tool to sift your Claude Code sessions

https://github.com/wdhwg001/csift
1•wdhwg001•19m ago•0 comments

Customize a lunar calendar generator. Try FREE

https://lunacal-sable.vercel.app/
2•unhigo•20m ago•2 comments

Vasovagal: Markdown-Based 2nd Brain

https://vasovagal.github.io/
2•razkarcy•22m ago•1 comments

A Multiplayer Survival Pong

https://antics.gg/p/side-out-94df7d
2•burgerquizz•23m ago•0 comments

The Recursive Economy: AI Self-Improvement and Scarcity

https://recursive-economy.pages.dev/
1•codelion•27m ago•0 comments

Harvard Agrees to $53M Settlement in Body Part Theft Scandal

https://www.nytimes.com/2026/08/18/us/harvard-stolen-body-parts-settlement.html
2•ChrisArchitect•33m ago•1 comments

Generalized Audio-Driven Synthesis of Precise Drummer Motion

https://studios.disneyresearch.com/2026/08/18/generalized-audio-driven-synthesis-of-precise-drumm...
1•DustinBrett•33m ago•0 comments

TinyRetroPad is 130 times smaller than Windows Notepad

https://www.xda-developers.com/tinyretropad-130-times-smaller-than-windows-notepad-but-functional/
3•nianderwallace•36m ago•1 comments

Agent2Agent (A2A) joins Agentic AI Foundation (AAIF)'s open agentic stack

https://aaif.io/blog/a2a-joins-aaif
1•ChrisArchitect•38m ago•0 comments

The Machines Are Getting Cheap. The Toolpaths Are Not

https://sliptonic.com/posts/machines-cheap-toolpaths-not/
2•sergebakharev•39m ago•0 comments

Ask HN: How are front end friends doing these days?

1•BearBest•40m ago•3 comments

Japan's Gen X workers are struggling

https://www.economist.com/asia/2026/08/18/japans-gen-x-workers-are-struggling
2•andsoitis•41m ago•0 comments

Cosmological natural selection: evolution beyond biology

https://www.smithsonianmag.com/science-nature/earths-organisms-developed-via-evolution-some-theor...
2•fidrelity•42m ago•1 comments

How Claude is accelerating protein design and analytical chemistry

https://www.anthropic.com/research/Claude-accelerates-protein-design
2•starshadowx2•43m ago•0 comments

Does anyone care about HR?

1•drguzman•43m ago•0 comments

Will Autonomous AI Exceed AI-Aided Physicians as the Best Medical Care?

https://jamanetwork.com/journals/jama/fullarticle/2852952?guestAccessKey=562af865-a038-4425-993f-...
1•liamkf•44m ago•0 comments

Want a Simple, Metasearch Engine?

https://github.com/LiamProsser77/gronnfalk
1•Gronnfalk•45m ago•0 comments

Qnote – a notepad in the browser with no account and no cloud

https://qnote.online/
1•yashsharma04•46m ago•0 comments

Strive to Be Earth's Best Employer

1•oenton•54m ago•0 comments

Snake rendered with 576 browser windows

https://codepen.io/editor/GrahamTheDev/pen/019f90a9-1ed9-7d61-927e-31dd5256c79e
1•LouisLazaris•57m ago•1 comments

Puzzle nights are up 151% and my team works alone

https://dev.profullstack.com/~anthony/blog/017-post.html
2•buffer_overlord•57m ago•0 comments

Palomar: A registry of Lean verified mathematics

https://terrytao.wordpress.com/2026/08/18/palomar-a-registry-of-lean-verified-mathematics/
7•matt_d•1h 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.