frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Most of the Renaissance Has Never Been Translated. Source Library Is Opening It

https://www.internetarchive.eu/2026/06/17/most-of-the-renaissance-has-never-been-read-source-libr...
1•dr_dshiv•31s ago•0 comments

Show HN: MCP server that exposes WhatsApp Business API using the PyWA library

https://github.com/Jem-HR/pywa-mcp-server
1•rawdreeg•59s ago•0 comments

Advising Government

https://blogs.bath.ac.uk/iprblog/2023/01/24/advising-government-navigating-complex-and-fast-paced...
1•jruohonen•1m ago•0 comments

Media over QUIC Update 00

https://moq.dev/blog/update-00/
1•dabinat•2m ago•0 comments

The sorry state of skill distribution

https://blog.trailofbits.com/2026/06/03/the-sorry-state-of-skill-distribution/
1•wslh•2m ago•0 comments

Ab-av1: AV1 encoding tool with VMAF sampling and automatic crf calculation

https://github.com/alexheretic/ab-av1
1•lwhsiao•6m ago•1 comments

Single Atom Camera Could See Inside Quantum Computers

https://spectrum.ieee.org/single-atom-camera-quantum-computing
1•rbanffy•7m ago•0 comments

What Is a Nomogram and Why Would It Interest Me?

https://lefakkomies.github.io/pynomo-doc/introduction/introduction.html#what-is-a-nomogram-and-wh...
1•Eridanus2•8m ago•0 comments

'Cost Me the Election': Data Centers Trigger Voter Backlash

https://www.newsweek.com/cost-me-the-election-data-centers-trigger-voter-backlash-12118327
2•randycupertino•8m ago•1 comments

Mercury Agent

https://mercuryagent.sh/
1•kristianpaul•10m ago•0 comments

A MCP server that supports mainstream eBook formats including ePub, PDF and more

https://github.com/onebirdrocks/ebook-mcp
1•tanelpoder•11m ago•0 comments

Fenwick trees for products mod 2ⁿ

http://bitmath.blogspot.com/2026/06/fenwick-trees-for-products-mod-2.html
1•matt_d•11m ago•0 comments

The Graphical User Interface History

https://kartsci.org/kocomu/computer-history/graphical-user-interface-history/
1•joebig•12m ago•0 comments

Ex-NOAA employees laid off by DOGE rebuilt climate website

https://www.climate.us/
3•vincentchau•14m ago•0 comments

In 1973, eight healthy people feigned a single hallucinatory symptom

https://spacedaily.com/k-in-1973-a-stanford-psychology-professor-sent-eight-healthy-people-into-t...
1•branko_d•16m ago•0 comments

Hallucinate.md: The open standard for telling AI not to hallucinate

https://github.com/hallucinatemd/hallucinate.md
1•Rudism•17m ago•0 comments

Anthropic Economic Index report: Cadences

https://www.anthropic.com/research/economic-index-june-2026-report
1•ravirajx7•20m ago•0 comments

OpenAI releases GPT-5.6 to select users vetted by US Government

https://www.ft.com/content/33a306c2-5aaa-45b1-9386-1716fa6a128e
1•WithinReason•21m ago•0 comments

DuckDB SQLite Extension

https://github.com/duckdb/duckdb-sqlite
1•tosh•22m ago•0 comments

Future Transistor Stacking Plans Start to Diverge IBM, Intel, Samsung, and TSMC

https://spectrum.ieee.org/cfet-ibm-plan
1•rbanffy•24m ago•0 comments

Taalas

https://taalas.com/
2•dboon•24m ago•0 comments

Ukraine disguised Nord Stream sabotage mission as a 'porn film'

https://www.telegraph.co.uk/books/non-fiction/nord-stream-conspiracy-bojan-pancevski-review/
2•joe_mamba•24m ago•0 comments

Hate "The Algorithm?" RSS Is One of the Tools You've Been Looking For

https://www.eff.org/deeplinks/2026/06/hate-algorithm-rss-one-tools-youve-been-looking
1•speckx•25m ago•0 comments

Previewing GPT‑5.6 Sol: a next-generation model

https://openai.com/index/previewing-gpt-5-6-sol/
105•minimaxir•26m ago•104 comments

Just Use Postgres for Task Queues

https://www.dbos.dev/blog/making-postgres-queues-scale
1•KraftyOne•26m ago•0 comments

Show HN: To memorize my studies, I made a flashcards app with a dating app UI

https://apps.apple.com/us/app/minder-flashcards-exam-study/id6775268676
1•busymom0•28m ago•0 comments

Can You Terraform Mars?

https://www.nature.com/immersive/d41586-026-01978-8/index.html
2•Schiphol•29m ago•0 comments

AI coding agents could soon cost more than the developers using them

https://www.theregister.com/ai-and-ml/2026/06/24/ai-coding-agents-could-soon-cost-more-than-the-d...
2•beardyw•29m ago•1 comments

AI Learns the "Dark Art" of RFIC Design

https://spectrum.ieee.org/ai-radio-chip-design
2•rbanffy•30m ago•0 comments

The Download: brain-melting heatwaves and unprecedented OpenAI restrictions

https://www.technologyreview.com/2026/06/26/1139780/the-download-heatwaves-brain-health-openai-re...
2•joozio•31m 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.