frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

IDPFlare – Identity Provider Built for Cloudflare

https://idpflare.com/
1•jimmcslim•1m ago•0 comments

Hedge Fund Giants Have a New Profit Engine: Their Smaller Rivals

https://www.bloomberg.com/news/articles/2026-07-15/hedge-funds-turn-to-smaller-independent-firms-...
1•petethomas•2m ago•0 comments

Aval: New open-source format for interactive video on the web

https://github.com/pixel-point/aval
1•handfuloflight•2m ago•0 comments

Rusefi – GPL internal combustion engine ECU

https://github.com/rusefi/rusefi
1•bilegeek•3m ago•0 comments

Back Up

1•bhusanbh•5m ago•0 comments

UI-Skills

https://github.com/ibelick/ui-skills
1•handfuloflight•6m ago•0 comments

11,700 Free Photos from John Margolies' Archive of Americana Architecture

https://www.openculture.com/2026/07/free-photos-from-john-margolies-archive-of-americana-architec...
1•gslin•10m ago•0 comments

Linus Torvalds "Linux is not one of those anti-AI projects"

https://lore.kernel.org/linux-media/CAHk-=wi4zC+Ze8e+p3tMv8TtG_80KzsZ1syL9anBtmEh5Z40vg@mail.gmai...
3•linolevan•11m ago•2 comments

Lhv.ai – Estonian bank AI integration via MCP

https://lhv.ai/
1•loh•13m ago•0 comments

Show HN: CloudDM 4.0 – open-source database development platform

https://github.com/ClouGence/open-cdm
1•cloudcanalx•15m ago•1 comments

Show HN: Migrate your legacy Google My Maps

https://tasmap.app/
1•apolkingg8•28m ago•0 comments

EBAE: A protocol for bounding the real-world authority of autonomous agents

https://zenodo.org/records/21385239
1•Akumaskills•28m ago•0 comments

Duplicate

https://openai.com/supply/co-lab/work-louder/he
2•akman•28m ago•2 comments

Tachyon: An on-screen AI that points, so you learn by doing

https://heybraza.com
1•orakulus•30m ago•0 comments

The log/event processing pipeline you can't have

https://apenwarr.ca/log/20190216
1•kklee•31m ago•0 comments

Intel Makes Chipmaking History with High-NA EUV Panther Lake Production

https://hothardware.com/news/intel-first-high-na-euv-production
2•kristianp•33m ago•0 comments

Too Old for Silicon Valley? Think Again. AI Is Changing the Math

https://www.kqed.org/news/12090173/too-old-for-silicon-valley-think-again-ai-is-changing-the-math
2•andsoitis•38m ago•0 comments

Looking for Work

4•rmcdermott•41m ago•2 comments

TDD is dead. Long live testing. (2014)

https://dhh.dk/2014/tdd-is-dead-long-live-testing.html
2•yokto•42m ago•0 comments

Vint Cerf is working on a plan to unleash AI agents on the open internet

https://techcrunch.com/2026/07/15/vint-cerf-is-working-on-a-plan-to-unleash-ai-agents-on-the-open...
3•indigodaddy•42m ago•2 comments

Dan Boneh: The elliptic curve running the modern internet might have a backdoor [video]

https://www.youtube.com/watch?v=8WDOpzxpnTE
2•philipfweiss•44m ago•1 comments

Show HN: One More Letter

https://playonemoreletter.com/
10•hmate9•44m ago•5 comments

Reverse Engineering Apple Wallet

2•asxeem•46m ago•1 comments

Show HN: A Monte Carlo model that called the World Cup finalists 2 weeks ago

https://github.com/fabio-ricardo/worldcup-forecasting-model
3•fabioricardo7•46m ago•1 comments

Nul Characters in Strings in SQLite

https://sqlite.org/nulinstr.html
6•basilikum•51m ago•0 comments

Can AI Do RCA?

https://coroot.com/blog/hard-part-of-ai-root-cause-analysis-is-no-longer-the-model/
2•ekiauhce•53m ago•1 comments

Decarbonizing Singapore's Data Centers Using Sumatra's Geothermal Resources

https://ccsi.columbia.edu/the-case-for-decarbonizing-singapores-data-center-boom-using-south-suma...
3•crookedroad44•53m ago•0 comments

Will AI Fix Prior Authorization – Or Make It Worse?

https://undark.org/2026/07/15/medicare-prior-authorization-ai/
2•EA-3167•54m ago•0 comments

Metal-Organic Frameworks, Chemistry's New Miracle Materials

https://chemistry.berkeley.edu/news/meet-metal-organic-frameworks-chemistry%E2%80%99s-new-miracle...
18•andsoitis•54m ago•5 comments

Eaon (Preview)- Private all in one AI super app

https://eaon.dev
2•morriszdweck•55m ago•1 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.