frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Streamfold Is Joining Cursor

https://rotel.dev/blog/streamfold-joining-cursor/
1•bryanmikaelian•1m ago•0 comments

Performance Implications of AArch64 Atomics

https://www.researchgate.net/publication/370682772_A_Study_on_the_Performance_Implications_of_AAr...
1•fanf2•2m ago•0 comments

ASIC Chip Routing GIF

https://old.reddit.com/r/chipdesign/comments/1s21n30/global_routing_in_action/
1•random__duck•2m ago•0 comments

InterviewSim: A Scalable Framework for Interview-Grounded Personality Simulation

https://arxiv.org/abs/2602.20294
1•PaulHoule•2m ago•0 comments

Python CFD simulator matching atomic resting radii vs. CODATA

https://github.com/agus79amm-dotcom/scalar-cartographer-cfd
1•Nitsuga0•2m ago•0 comments

RIP Orelhao

https://www.designative.info/2026/01/12/r-i-p-orelhao/
1•pearlsontheroad•2m ago•1 comments

Issue Tracking Is Dead

https://linear.app/next
1•cristinacordova•3m ago•0 comments

Show HN: I built a party game that makes fun of corporate culture

https://cubiclegame.com/
1•pianobrothers•5m ago•0 comments

Bermuda Triangle Search Led Divers to Challenger Wreckage

https://modernengineeringmarvels.com/2026/03/23/bermuda-triangle-search-led-divers-to-challenger-...
1•Brajeshwar•6m ago•0 comments

Atomic Display Switching: Solving

https://github.com/piot5/displayflow_cli
2•pyotq•6m ago•0 comments

Fixed Python Autocomplete

https://matan-h.com/better-python-autocomplete
1•karakoram•7m ago•0 comments

What I mean when I say that I hate GenAI

https://michal.sapka.pl/weblog/2026/what-i-mean-when-i-say-that-i-hate-genai/
4•speckx•9m ago•0 comments

Em-dash – open-source HIPAA compliance that runs locally

https://github.com/aanishs/em-dash
1•aanishs•9m ago•0 comments

Wine 11 rewrites how Linux runs Windows games at kernel with massive speed gains

https://www.xda-developers.com/wine-11-rewrites-linux-runs-windows-games-speed-gains/
5•felineflock•9m ago•0 comments

Show HN: Cranki – Crosswords meet Anki flashcards

https://cranki.app
1•petargyurov•10m ago•0 comments

Should religious AI chatbots be treated differently from all others?

https://mfioretti.substack.com/p/should-religious-ai-chatbots-be-treated
2•oopsiremembered•11m ago•1 comments

Cognitive OS – Prediction-error learning layer for AI agents

https://github.com/eugenexonr/cognitive-os
1•dovmant•11m ago•1 comments

The Danger Behind Meta Killing End-to-End Encryption for Instagram DMs

https://www.wired.com/story/the-danger-behind-metas-decision-to-kill-end-to-end-encrypted-instagr...
3•pulisse•15m ago•0 comments

US Gov Investigators Found No EU Internet Censorship, and Ignored the Findings

https://www.techdirt.com/2026/03/24/the-trump-admins-own-investigators-found-no-eu-internet-censo...
3•hn_acker•17m ago•2 comments

Anduril Industries – Senior Software Engineer – JavaScript, React, AWS

1•Floss•17m ago•0 comments

Delta suspends special congressional services amid shutdown

https://thehill.com/policy/transportation/5797907-delta-suspends-special-congressional-desk-service/
4•JumpCrisscross•20m ago•0 comments

New cars allegedly include "eye of sauron" to monitor drivers

https://twitter.com/VladTheInflator/status/2036174124180185260
3•bilsbie•20m ago•0 comments

Show HN: Skub – a sliding puzzle browser game

https://skub.app
2•kasperstorgaard•22m ago•5 comments

Airstrikes may have destroyed Iran's last F-14s

https://www.npr.org/2026/03/24/nx-s1-5752380/f14-tomcats-iran-us-israel-airstrikes-top-gun
2•divbzero•22m ago•0 comments

LiteLLM's SOC 2 auditor was - Delve

https://trustcompliance.xyz/blog/supply-chain-trust
2•fadijob•23m ago•2 comments

LLMs don't think outside the box

https://zeyrie.blog/posts/technology/llms-dont-think-outside-the-box/
3•speckx•23m ago•0 comments

Victorian service stations run out of fuel as Middle East war spikes demand

https://www.abc.net.au/news/2026-03-24/victorian-petrol-stations-run-out-diesel-fuel-iran-conflic...
4•geox•25m ago•1 comments

Yes, AI is intelligent. Prove me wrong

https://bertrandmeyer.com/2026/02/26/yes-ai-is-intelligent-prove-me-wrong/
3•reillyse•25m ago•3 comments

Gmail AI Productivity Hacks

https://consul.so/blog/gmail-productivity-tips-ai-2026
1•goldkey•25m ago•0 comments

Hark – The most advanced personal intelligence [video]

https://www.youtube.com/watch?v=0H1LSLipOVI
1•dangtony98•25m 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•11mo ago

Comments

gwen-shapira•11mo 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.