frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: We're using LLMs to classify risk before execution in prod

1•andriosr•19s ago•0 comments

Just One More Prompt

https://benjaminste.in/blog/2026/05/03/just-one-more-prompt/
1•benstein•1m ago•0 comments

The UK's Answer to DARPA Wants to Rewire the Human Brain

https://www.wired.com/story/kathleen-fisher-jacques-carolan-aria-wired-health/
1•mbeavitt•1m ago•0 comments

Ask HN: Is it possible to craft a privacy policy that perpetually protects users

1•newswangerd•1m ago•0 comments

US Debt Crosses 100% of GDP for First Time Since 1946 and This Time Is Different

https://thedailyeconomy.org/article/us-debt-crosses-100-of-gdp-for-first-time-since-1946-and-this...
1•abdelhousni•1m ago•0 comments

The Vertical Codebase

https://tkdodo.eu/blog/the-vertical-codebase
1•ulrischa•1m ago•0 comments

Show HN: Paracosm – simulate what-if scenarios with AI agents

https://paracosm.agentos.sh/sim
1•johnnyfived•2m ago•0 comments

Show HN: AHD – an open-source linter and eval framework for AI-generated UI

https://ahd.adastra.computer/
2•HereticLocke•5m ago•0 comments

Wikipedia Goes For-Profit

https://old.reddit.com/r/ChatGPT/comments/1t2hjoq/wikipedia_goes_forprofit/
2•us321•6m ago•0 comments

A Theory of Generalization in Deep Learning

https://arxiv.org/abs/2605.01172
1•E-Reverance•7m ago•0 comments

Math long resisted a digital disruption. AI is poised to change that

https://www.sciencenews.org/article/math-disrupted-by-ai-verify-proofs
2•digital55•8m ago•0 comments

The performance bug hiding in our Cloud Run billing settings

https://oblique.security/blog/the-performance-bug-hiding-in-our-billing-settings/
3•ericchiang•11m ago•1 comments

A list of known issues with passkey implementations in popular password managers

https://passkeys.dev/docs/reference/known-issues/
3•Cider9986•11m ago•0 comments

Google, Microsoft, and xAI will allow the government to review their new models

https://www.theverge.com/ai-artificial-intelligence/924017/google-microsoft-xai-government-review
3•ambigious7777•12m ago•0 comments

Right Types, Wrong Code: Surprising Bugs a Python Type Checker Catches

https://pyrefly.org/blog/surprising-errors/
2•ocamoss•12m ago•0 comments

Yann LeCun's $1B Bet Against LLMs [video]

https://www.youtube.com/watch?v=kYkIdXwW2AE
3•tanishqkanc•13m ago•0 comments

UNIMATRIx – A Society of AI Agents

https://github.com/gslf/UNIMATRIx
2•gslf•13m ago•0 comments

US Government Expands Vetting of Frontier AI Models for Security Risks

https://www.politico.com/news/2026/05/05/microsoft-xai-google-caisi-safety-testing-00906529
4•r3trohack3r•14m ago•1 comments

Trump Pressures FDA Commissioner to Approve Flavored Vapes

https://www.wsj.com/politics/policy/trump-pressures-fda-commissioner-to-approve-flavored-vapes-9d...
5•impish9208•15m ago•1 comments

Donald Trump Is Elected President (2016)

https://www.bbc.com/news/election-us-2016-37920175
2•downbad_•15m ago•2 comments

DuckDB ↔ Arrow Compatibility: A Status Page

https://rusty.today/blog/duckdb-arrow-compatibility-status/
2•rustyconover•15m ago•0 comments

Show HN: I'm paying senior engineers to read B2B content

https://www.nexertise.com/founding
4•yisrael_g•16m ago•0 comments

Damnlines / NYC Restaurant Lines

https://damnlines.com/
2•lucastgordon•17m ago•0 comments

Why interaction is more powerful than algorithms (1997) [pdf]

https://www.lri.fr/~mbl/ENS/FONDIHM/2013/papers/Wegner-CACM97.pdf
2•aragonite•17m ago•0 comments

PayPal to Cut 20% of the Workforce

https://rollingout.com/2026/05/05/paypal-pypl-workforce-cuts-turnaround/
3•upupupandaway•19m ago•0 comments

PySimpleGUI 6

https://github.com/PySimpleGUI/PySimpleGUI
2•geophph•19m ago•0 comments

Show HN: AI-DLC-UML (AI-Driven Development Life Cycle with UML Modeling)

https://github.com/takaakit/ai-dlc-uml
2•takaakit•20m ago•0 comments

AI Generated Content Broke the Social Contract

https://jfdi.bot/blog/ai-generated-content-broke-the-social-contract/
2•Swizec•22m ago•0 comments

Build secure OS agents with LangGraph

https://gantrygraph.com/quickstart
1•alekkk777•23m ago•0 comments

You only see typos after you post

https://diels-daydreams.bearblog.dev/you-only-see-typos-after-you-post/
1•speckx•23m 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.