frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

BunnyCDN has been silently losing our production files for 15 months

https://old.reddit.com/r/webdev/comments/1sglytg/bunnycdn_has_been_silently_losing_our_production/
1•speckx•17s ago•0 comments

Show HN: Rust based eBook library for Python, with MIT license

https://github.com/arc53/fast-ebook
1•larry-the-agent•1m ago•0 comments

Show HN: Curated list of ~40 AI browser extensions across 9 categories

https://github.com/kklt92/awesome-ai-extensions
1•imvyarqoyzcuem•1m ago•0 comments

The Training Example Lie Bracket

https://pbement.com/posts/lie_brackets/
1•pb1729•4m ago•0 comments

Benchmarking LLMs with Marimo Pair

https://ericmjl.github.io/blog/2026/4/8/benchmarking-llms-with-marimo-pair/
1•akshayka•6m ago•0 comments

MS Aspire – Open-source stack, streamlined

https://aspire.dev/
1•evo_9•7m ago•0 comments

Tip: Use services, not the terminal, to run local backends

https://probablymarcus.com/blocks/2026/04/09/use-os-services-for-your-local-backends.html
1•mrcslws•7m ago•0 comments

Show HN: Linear RNN/Reservoir hybrid generative model, one C file (no deps.)

https://raw.githubusercontent.com/bggb7781-collab/lrnnsmdds/refs/heads/main/lrnnsmdds
1•adinhitlore•9m ago•0 comments

We simulate target market so you can ask anything ±4% vs. real surveys

https://inqvey.com/hn
1•yarasheff•10m ago•0 comments

How to achieve P90 sub-microsecond latency in a C++ FIX engine

https://akinocal1.substack.com/p/how-to-achieve-p90-sub-microsecond
1•klaussilveira•11m ago•0 comments

Show HN: Undocumented Qualcomm mesh topology 802.11 frames

https://david.weekly.org/blog/2026-04-09-orbi-mesh-beacon-topology/
1•dweekly•11m ago•0 comments

AI Speedometer: Real-time AI model speed benchmarks

https://ai-speedometer.oliveowl.xyz/
1•sea-gold•15m ago•1 comments

Show HN: Coderegon Trail – A retro game to help you explore open-source repos

https://www.davidtran.me/coderegon-trail/
2•dtran•16m ago•2 comments

FCC considers retroactive ban on foreign hardware

https://docs.fcc.gov/public/attachments/DOC-420715A1.txt
3•topspin•17m ago•1 comments

Good Writing

https://www.paulgraham.com/goodwriting.html
1•MarlonPro•17m ago•0 comments

The Iran war depleted US weapons. Rebuilding will require China's cooperation

https://www.politico.com/news/2026/04/09/middle-east-war-weapons-china-00864622
2•n1b0m•18m ago•0 comments

CyberAgent moves faster with ChatGPT Enterprise and Codex

https://openai.com/index/cyber-agent
2•surprisetalk•19m ago•0 comments

Camofox-browser: Anti-detection browser for AI agents, powered by Camoufox

https://github.com/jo-inc/camofox-browser
1•luispa•20m ago•0 comments

How a stranger's kind words stayed with a father and daughter

https://text.npr.org/nx-s1-5774524
2•1659447091•25m ago•0 comments

New NextTool Mini Flagship

https://nextoolstore.com/products/mini-flagship-f12-nextool®?srsltid=AfmBOooF5hZ7TFUk05yeE5Po3gmP...
2•nate•27m ago•1 comments

Kagi Product Tips – Customize Your Search Results with URL Redirects

https://blog.kagi.com/tips/redirects
3•treetalker•30m ago•0 comments

goose has a new home – the Agentic AI Foundation (AAIF)

https://goose-docs.ai/blog/2026/04/07/goose-moves-to-aaif/
1•wicket•32m ago•0 comments

Did Airbnb, Medium, Beats, and Flipboard Rip Off Their Logos? (2016)

https://thehustle.co/airbnb-medium-beats-flipboard-logo
2•bookofjoe•35m ago•0 comments

Verification Is the Next Bottleneck in AI-Assisted Development

https://www.opslane.com/blog/verification-bottleneck
1•aray07•36m ago•0 comments

OpenAI looks to take on Anthropic with $100 per month ChatGPT Pro subscriptions

https://www.cnbc.com/2026/04/09/openai-chatgpt-pro-subscription-anthropic-claude-code.html
1•HiroProtagonist•36m ago•0 comments

AI micro-dramas are shaking up Chinese entertainment

https://economist.com/china/2026/04/09/ai-micro-dramas-are-shaking-up-chinese-entertainment
1•andsoitis•39m ago•0 comments

The AI Jobs Blind Spot: Why Job Creation Is the Default

https://substack.norabble.com/p/the-ai-jobs-blind-spot
1•nedruod•40m ago•0 comments

Gitbutler

https://gitbutler.com/
2•handfuloflight•41m ago•0 comments

Perplexity computer is based on the OSS browser use library

https://twitter.com/mamagnus00/status/2042339700082610345
3•whytai•42m ago•0 comments

BYD teams up with KFC to offer 9 minute EV charging

https://electrek.co/2026/04/09/byd-fast-food-giant-offer-9-minute-ev-charging/
3•breve•42m 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.