frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Markdown badges generator for GitHub README (fast, copy-paste, no config)

https://markdown-badges.vercel.app/
1•GFrancV•59s ago•0 comments

UAE says it's under attack from Iranian missiles and drones despite ceasefire

https://www.cnbc.com/2026/05/04/iran-war-uae-trump-ceasefire-missiles.html
1•logicchains•2m ago•0 comments

Load Testing for SFTP, FTP, and FTPS

https://github.com/roshandubey-cloud/utilities/tree/main/sftp-loadtest
1•rdship•2m ago•0 comments

VR Coding for the AI Coding Era – Watching 5 AI Agents at Once

https://typia.io/blog/vr-coding-in-ai-coding-era/
1•autobe•4m ago•0 comments

PGKeeper: Figma's Postgres connection pooler Renaissance era

https://www.figma.com/blog/pgkeeper-building-the-bouncer-we-needed-for-postgres/
1•pinser98•4m ago•0 comments

Ctify_: A lightweight, PHP-based wiki, forked from PmWiki

https://github.com/altilunium/ctify_
1•altilunium•4m ago•0 comments

Wikimedia Foundation closes Wikinews after 21 years

https://en.wikinews.org/wiki/Wikimedia_Foundation_closes_Wikinews_after_21_years
4•benwills•6m ago•1 comments

Robot dogs with tech boss faces roam Berlin art exhibit

https://www.youtube.com/watch?v=909UTYDtuGY
1•otikik•7m ago•0 comments

KeePassχ – A KeePassXC Fork

https://codeberg.org/keepasschi
1•birdculture•8m ago•0 comments

What's Next in the Elon Musk Megatrial Against OpenAI and Sam Altman

https://www.wsj.com/tech/ai/whats-next-in-the-elon-musk-megatrial-against-openai-and-sam-altman-8...
2•Brajeshwar•8m ago•1 comments

I am worried about Bun

https://wwj.dev/posts/i-am-worried-about-bun/
4•remote-dev•9m ago•0 comments

14 Years of Mistakes to "Make Something People Want"

https://nmn.gl/blog/meditations-on-make-something-people-want
2•namanyayg•9m ago•0 comments

Little's Law

https://en.wikipedia.org/wiki/Little%27s_law
1•tosh•9m ago•0 comments

Were Neanderthals Able to Hunt Elephants? The Proof Is in an Ancient Bone

https://www.nytimes.com/2026/04/24/science/lehringen-lakebed-elephant-neanderthals.html
2•bookofjoe•11m ago•1 comments

Show HN: Logram, a filterable, modular log navigator for the terminal

https://github.com/tGautot/Logram
1•tgautot•12m ago•0 comments

The end of 0% interest rates: what it means for tech startups and the industry

https://newsletter.pragmaticengineer.com/p/zirp
3•rzk•12m ago•0 comments

Show HN: Muesli – If Granola and Wisprflow had an open source on device baby

https://freedspeech.xyz
3•pHequals7•12m ago•1 comments

A structured AI development methodology built from real production work

https://github.com/imfromsavedotag/structured-AI-development
1•ianmud•13m ago•0 comments

Wolfenstein 3D for Gameboy Color on custom cartridge (2016)

https://www.happydaze.se/wolf/
2•ksymph•14m ago•0 comments

Musk vs. Altman [video]

https://www.youtube.com/watch?v=tB7u6KQlu_c
2•tylerbordeaux•15m ago•0 comments

Trump administration cites national security to widen clampdown on wind farms

https://www.telegraph.co.uk/business/2026/05/03/trump-blocks-wind-farms-national-security-grounds/
1•dalyons•16m ago•2 comments

How A University's Censorship Conference Got Censored

https://www.404media.co/how-a-universitys-censorship-conference-got-censored/
2•SpyCoder77•17m ago•0 comments

Conic Sections: Treated Geometrically by W. H. Besant(1869) [pdf]

https://www.gutenberg.org/files/29913/29913-pdf.pdf
2•num42•19m ago•0 comments

Show HN: My coworker and I planning with our Claude Codes in the same chat room

https://old.reddit.com/r/ClaudeAI/comments/1t3aiqa/my_coworker_and_i_planning_a_feature_with_our_...
3•bgnm2000•20m ago•1 comments

"They would never use the death star on us"

https://www.mcsweeneys.net/articles/they-would-never-use-the-death-star-on-us-alderaan-residents-...
15•ndr42•20m ago•3 comments

United flight strikes light pole, damages truck while landing in Newark

https://abc7ny.com/post/united-flight-strikes-light-pole-landing-newark-airport/19030820/
3•the_mitsuhiko•22m ago•1 comments

Show HN: The Rouge is my attempt at an AI product factory

https://github.com/gregario/the-rouge
2•gr3gario•24m ago•0 comments

Forbes Settling Privacy Lawsuit for total of 17.5M

https://captaincompliance.com/education/forbes-medias-17-5-million-privacy-settlement-reckoning-w...
2•richartruddie•25m ago•1 comments

I reverse-engineered a thermal pocket printer to print without the app

https://github.com/ChiaraCannolee/thermal-pocket-printer-basic
4•ChiaraCannolee•25m ago•1 comments

The Audio Industry Is Grappling with the Rise of 'Podslop:' 39% New Podcasts AI

https://www.bloomberg.com/news/newsletters/2026-04-30/-podslop-proliferation-is-challenging-the-a...
3•randycupertino•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•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.