frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

NKD Basic Tools

https://github.com/Nekodificador/ComfyUI-NKD-Basic-Tools
1•thunderbong•22s ago•0 comments

Revise AI, an AI editor for fiction writers

https://www.revise.net
1•sansil•39s ago•0 comments

An AI agent bought a physical t-shirt over HTTP 402 with USDC, no human involved

https://forgemesh.io/blog/first-x402-physical-order-bought-with-curl
1•agenticbotbot•1m ago•0 comments

1B tokens later, I'm open-sourcing why.com

https://github.com/whyagents/why.com
2•rasheed106•3m ago•2 comments

Understanding Complexity: A Beginner's Guide

https://csh.ac.at/understanding-complexity-and-what-we-do-a-beginners-guide/
1•andrewstetsenko•3m ago•0 comments

Show HN: Security Scanning Tool

https://hackymacky.vercel.app/
1•civancza•5m ago•0 comments

Fiber Immersion 3D-Printing – a low cost micro fabrication technique [video]

https://www.youtube.com/watch?v=UvV2CH5il3Q
1•_Microft•5m ago•0 comments

America's debt binge is starting to matter

https://www.ft.com/content/8827baa7-163d-4122-9ea8-a2c9ff6e8a4d
4•samizdis•6m ago•1 comments

Show HN: Flying Letters and a Clean Keyboard That Even Steve Jobs Would Love

1•vitalipom•7m ago•0 comments

From safety research prompt to cross-model universal jailbreak

https://www.lesswrong.com/posts/hHk5CpiqZTBBiHmYt/from-safety-research-prompt-to-cross-model-univ...
1•gmays•11m ago•0 comments

Everything hackable will get hacked

https://vercel.com/blog/everything-hackable-will-get-hacked
2•tilt•14m ago•0 comments

Artificial Intelligence Policy UC Berkeley School of Law [pdf]

https://www.law.berkeley.edu/wp-content/uploads/2026/05/AI-Final-Policy-26.pdf
3•fallinditch•15m ago•0 comments

Turning Quick Notes into Long-Term AI Memory

https://barbarito.me/notes-workflow/
1•danbarbarito•17m ago•0 comments

MCP server for 340k SVG icons

https://github.com/LeulAria/Aria-Icons
1•leularia•26m ago•0 comments

Urban congestion relief experiments through routing-app interventions

https://www.nature.com/articles/s44284-026-00443-x
1•neehao•27m ago•0 comments

Tesla killing Solar Roof is leaving installers with six-figure losses

https://electrek.co/2026/09/01/tesla-solar-roof-exit-installers-losses/
31•voxadam•35m ago•6 comments

Selected GitHub Copilot models deprecated

https://github.blog/changelog/2026-08-31-selected-github-copilot-models-deprecated/
1•mooreds•37m ago•0 comments

My Mac Mini fits one model. I run five

https://placona.co.uk/my-mac-mini-fits-one-model/
4•makaimc•38m ago•0 comments

Replaceable but Employed: Automation and the Meaning of Work

https://www.nber.org/papers/w35559
3•mooreds•38m ago•0 comments

AI Cold Showers

https://allan.reyes.sh/posts/ai-cold-showers/
3•mooreds•39m ago•0 comments

US Military disabled ad tracking on troops' devices after targeted attacks

https://techcrunch.com/2026/09/04/us-military-disabled-ad-tracking-on-troops-devices-following-re...
6•jethronethro•40m ago•0 comments

Decoherence: A card game for two based on quantum physics

https://decoherance.vaguespac.es/
1•thebigship•42m ago•0 comments

Scaling Engineering: Ownership over Hiring

https://greenido.dev/2026/06/11/what-changes-at-20-50-and-200-engineers/
1•fagnerbrack•44m ago•0 comments

Free WhatsApp abandoned cart recovery for WooCommerce

https://wordpress.org/plugins/6rsh-messaging-notifications/
1•sixrsh•44m ago•0 comments

Botsitting: The Unpaid Labour Behind Every AI Productivity Claim

https://smarterarticles.co.uk/botsitting-the-unpaid-labour-behind-every-ai-productivity-claim
2•dxs•45m ago•0 comments

Code at the Speed of Understanding

https://dennisy.me/notes/code-at-the-speed-of-my-understanding
1•dennisy•46m ago•0 comments

Secret Collusion Among AI Agents

https://arxiv.org/abs/2402.07510
2•phaseonebig•47m ago•0 comments

Amy – high performance fixed-point music synthesizer library

https://github.com/shorepine/amy
1•anigbrowl•47m ago•0 comments

Show HN: Animating code snippets from first principles

1•rahulrav•48m ago•0 comments

Show HN: Expose - a self-hosted tunneling tool like ngrok/localtunnel(Golang)

https://github.com/kernelshard/expose
2•samiulsk•49m 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.