frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ukraine: How a kamikaze drone partially AI operated is attacking Russian convoys

https://www.france24.com/en/europe/20260601-ukraine-kamikaze-drone-partially-operated-ai-attackin...
1•rawgabbit•53s ago•0 comments

Total Construction Spending: Manufacturing in the United States

https://fred.stlouisfed.org/series/TLMFGCONS
1•mooreds•2m ago•0 comments

Show HN: Tilion – stealth Chromium and MCP so agents don't get blocked

https://tilion.dev
3•arhamislam5766•4m ago•0 comments

Ask HN: What are you running locally on your machine with LLMs?

1•agcat•5m ago•0 comments

Goldman Sachs limits prediction market betting for employees

https://www.ft.com/content/7a2a3200-763f-4141-8372-f2f6afba521d
4•petethomas•6m ago•0 comments

Can you guess what percentage of the lines in OpenClaw were contributed by Pete?

https://www.reddit.com/r/PrincipalAi/s/fzWPLHanBs
1•fernando-ram•7m ago•1 comments

Brown says AI make student brain no work good, teacher should help use it better

https://www.theregister.com/ai-and-ml/2026/07/09/brown-says-ai-make-class-dumb-teacher-must-help-...
1•Bender•8m ago•0 comments

Ingit – Git GUI that runs in the browsers

https://github.com/capaj/ingit
1•Capaj•8m ago•2 comments

Patch for Windows Defender 0-day could allow attackers to fill hard disk

https://arstechnica.com/security/2026/07/patch-for-windows-defender-0-day-could-allow-attackers-t...
1•Bender•8m ago•0 comments

Michigan's explosive outbreak of diarrheal parasite jumps to over 1,200 cases

https://arstechnica.com/health/2026/07/michigans-explosive-outbreak-of-diarrheal-parasite-jumps-t...
4•Bender•9m ago•0 comments

Qubits can be cloned at will if encrypted with a single-use key

https://arxiv.org/abs/2602.10695
2•lisper•9m ago•0 comments

The Version Number Is Not the Territory

https://thebuild.com/blog/the-version-number-is-not-the-territory/
1•Shorn•9m ago•1 comments

The OpenClaw Foundation: Reining in a Viral AI Agent

https://techstrong.ai/articles/the-openclaw-foundation-reining-in-a-viral-ai-agent/
1•CrankyBear•9m ago•0 comments

Collapse of AMOC ocean current may be locked in

https://www.newscientist.com/article/2533017-collapse-of-amoc-ocean-current-may-already-be-locked...
2•Anon84•10m ago•0 comments

No Boss, No Money: The Raw Reality of China's Gen-Z Freelancers [video]

https://www.youtube.com/watch?v=eJZFUEQebbI
1•binyu•11m ago•0 comments

The OpenClaw Foundation

https://openclaw.ai/blog/introducing-openclaw-foundation
2•hrudolph•18m ago•0 comments

OpenAI's No. 2 Executive to Step Down in Latest Leadership Shake-Up

https://www.wsj.com/tech/openai-top-executive-fidji-simo-to-step-down-c3daca47
3•impish9208•20m ago•1 comments

28-Hour Day App

https://apps.apple.com/us/app/28-hour-day/id6752815000
3•28HourDev•23m ago•1 comments

Disney is exploring adding a free tier to Disney+ as YouTube draws TV viewers

https://www.businessinsider.com/disney-discusses-free-tier-viewers-youtube-2026-7
2•petethomas•27m ago•2 comments

Robots falling in love, DocSend reimagined, Wonder about net worth

https://www.marginpoints.com/issues/2026-07-08-ai-fundraising-agents-docsend-2026-wonder
1•historian1066•28m ago•0 comments

LA Metro: Ambient music played by live Los Angeles Metro data

https://metromusic.weisswideweb.com/
1•gnat•28m ago•1 comments

Federal Reserve announces leadership of its task forces for monetary policy

https://www.federalreserve.gov/newsevents/pressreleases/monetary20260709a.htm
2•petethomas•29m ago•0 comments

New ChatGPT desktop app combines Chat, Work, and Codex

https://help.openai.com/en/articles/20001276-moving-to-the-new-chatgpt-desktop-app
1•luckman212•30m ago•1 comments

Google pays $250K for Linux vulnerability, allowing guest VM escapes

https://arstechnica.com/security/2026/07/high-severity-guest-vm-escape-is-1-of-2-linux-vulnerabil...
1•redbell•30m ago•0 comments

RootMap – browse your photos by where you took them (free, local)"

https://apps.microsoft.com/detail/9nspfkjjx18s?hl=en-US&gl=US
1•StuMarkSez•33m ago•0 comments

Managed Agents by OpenComputer

https://www.managedagents.sh/
2•handfuloflight•38m ago•0 comments

Ask HN: Did Google give up in the AI Race?

5•franze•44m ago•8 comments

SensorFM: Towards a general intelligence and interface for wearable health data

https://research.google/blog/sensorfm-towards-a-general-intelligence-and-interface-for-wearable-h...
1•simonpure•45m ago•0 comments

GPT 5.6 Sol tops DeepSWE at 76% at 61% less cost than Fable

https://deepswe.datacurve.ai/
1•handfuloflight•47m ago•0 comments

Show HN: Context-aware AI social workspace to learn math

https://www.prooftree.ai
1•lemma1729•48m 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.