frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Alibaba bans staff from using Claude Code over Anthropic spyware concerns

https://www.scmp.com/tech/big-tech/article/3359375/alibaba-bans-staff-using-claude-code-over-anth...
1•dstala•1m ago•0 comments

Iberdrola kicks off its first large-scale battery project in the US

https://electrek.co/2026/07/02/iberdrola-kicks-off-its-first-large-scale-battery-project-in-the-us/
1•Bender•3m ago•0 comments

Recall of potato chips upgraded to highest level reasonable probability of death

https://www.dailymail.com/health/article-15950863/Utz-potato-chips-recall-salmonella-contaminatio...
1•Bender•3m ago•0 comments

Andy Burnham Here – AMA

https://old.reddit.com/r/ukpolitics/comments/1uls1lw/andy_burnham_here_ama/
1•MrsPeaches•4m ago•0 comments

Show HN: U.S. Declaration of Independence but as Google Doc Version History

https://declaration.docs.willmeye.rs
1•willmeyers•5m ago•0 comments

Dial Town

https://jamiedolan.com/Dial-Town/
1•rrotaru•6m ago•0 comments

US residents angry datacenters 'shoved down our throats' are recalling officials

https://www.theguardian.com/us-news/2026/jul/03/datacenter-recall-elections
1•beardyw•7m ago•0 comments

The pandemic of incomplete OpenSSL error handling

https://blog.jak-linux.org/2026/07/03/openssl-pandemic/
1•julian-klode•8m ago•0 comments

FiberFS Technical Overview

https://fiberfs.io/content/fiberfs_technical_overview
1•nyc_pizzadev•9m ago•0 comments

Trump has made more than $1B from crypto in a year

https://theconversation.com/trump-has-made-more-than-1-billion-from-crypto-in-a-year-how-286635
1•thisislife2•9m ago•0 comments

CVV Checker – Real-time card verification via zero-dollar bank auth

https://cvvchecker.org
1•hurtzbergcc•10m ago•0 comments

Meirro Pro Display, 32" 6K Retina-class, Full Aluminum, anyone heard of them?

https://www.meirro.com
1•lisovin•12m ago•1 comments

Skillsaw: Lints the files that steer your AI coding agents

https://skillsaw.org/
2•sea-gold•14m ago•0 comments

Codex Agents Built and Operate My Weapons Research

https://weaponsofconflict.com/blog/codex-agents-weaponsofconflict-experiment
1•Politely1527•18m ago•0 comments

The feature in OxCaml that more languages should steal

https://theconsensus.dev/p/2026/06/27/the-feature-in-oxcaml-more-languages-should-steal.html
1•eatonphil•20m ago•0 comments

Show HN: Verbum Vitae – Bible memorization with spaced repetition

https://vvitae.com/
2•pseudocharles•21m ago•0 comments

Notion pulled itself back from the brink of failure (2019)

https://www.figma.com/blog/design-on-a-deadline-how-notion-pulled-itself-back-from-the-brink-of-f...
1•downbad_•21m ago•1 comments

Food for Agile Thought 551: AI Confidence Theater, We Tried Agile; Didn't Work

https://age-of-product.com/food-agile-thought-551-ai-confidence-theater/
2•swolpers•28m ago•0 comments

AdaptHealth says attackers stole patient data

https://www.theregister.com/security/2026/07/03/adapthealth-crooks-stole-our-passwords-patient-he...
1•Bender•31m ago•0 comments

2-Click Remote Code Execution in Meccha Chameleon

https://khaelkugler.com/blogs/meccha_chameleon.html
1•tester457•31m ago•0 comments

The Life and Times of Maxis, Part 1: SimEverything

https://www.filfre.net/2026/07/the-life-and-times-of-maxis-part-1-simeverything/
3•doppp•31m ago•0 comments

How the Summer of Atomic Bomb Testing Turned the Bikini into a Phenomenon

https://www.smithsonianmag.com/smithsonian-institution/how-wake-testing-atomic-bomb-bikini-became...
1•thunderbong•32m ago•1 comments

Ask HN: Possible issue impacting AWS Cloudwatch logs availability?

1•merek•32m ago•0 comments

Dev says Google warned him about account hijack then charged him $11,000 anyway

https://www.theregister.com/cyber-crime/2026/07/03/dev-says-google-warned-him-about-account-hijac...
2•Bender•33m ago•0 comments

Show HN: IDE for code assembly of reusable code blocks

https://tetrees.ai/download
1•joseph3553•33m ago•2 comments

H-1B Visas Skyrocket Despite Trump Admin Crackdown

https://www.newsweek.com/h-1b-visas-skyrocket-despite-trump-admin-crackdown-12154338
3•pseudolus•34m ago•0 comments

Show HN: Donation Tracker

https://github.com/padolph/donation-tracker
1•padolph•35m ago•0 comments

I stopped using a split keyboard

https://parsam.io/split/
1•pzrsa•35m ago•0 comments

Example prompt orchestrations to navigate complicated multi-step workflows

https://graphthinking.blogspot.com/2026/07/example-scaffolds-for-ai-prompt.html
2•physicsgraph•35m ago•0 comments

60% Fable cost cut by converting code to images and having the model OCR it

https://github.com/teamchong/pxpipe
3•dimitropoulos•37m 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.