frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Polchinski's Paradox

https://www.futilitycloset.com/2026/08/12/polchinskis-paradox/
1•surprisetalk•44s ago•0 comments

We trained small language models specifically for voice-to-text transformation

https://superwhisper.com/blog/s1
1•bpjzy•53s ago•1 comments

Code Factories Without Quality: The AI Development Blind Spot

https://www.qawolf.com/blog/code-factories-without-quality
1•BinRoo•1m ago•0 comments

Show HN: Open-source Stripe Connect alternative

https://zoneless.com
2•tinyprojects•2m ago•0 comments

Show HN: Check if any of the $656M in unclaimed royalties at The MLC is yours

https://pub.doub.ly/
2•knaught•2m ago•0 comments

I Got Discouraged by DevTo

https://thibaultduponchelle.github.io/I-finally-got-discouraged-by-devto
1•reeeese•2m ago•0 comments

Stealing Blame

https://avivbenyosef.com/stealing-blame/
1•avivby•3m ago•0 comments

Show HN: Ullis – Local Ternary Moe-Kan Training and Inference Engine in Rust

https://github.com/Vladislav-Kalinkin/ullis
1•vlad_kalinkin•3m ago•0 comments

Just Fucking Use Neovim

https://www.justfuckinguseneovim.com/
1•hacb•4m ago•0 comments

Silencing the Second Hand of a Second-Hand Bird Clock

https://www.kyleniewiada.org/blog/2026/08/silencing-bird-clock-tick-tock/
1•speckx•4m ago•0 comments

Is Claude Code a bad harness?

https://generray.substack.com/p/is-claude-code-a-bad-harness
1•wsun19•4m ago•1 comments

ProgramBench Vetted: Reverse Engineering from a Runnable Binary

https://vetto.ai/companies/programbench-vetted.html
2•rigelbm•5m ago•0 comments

Apple leaked many features in a release, will it not be a flop? [video]

https://www.youtube.com/watch?v=q8Zd1dMK1uA
2•ltononro•6m ago•0 comments

Grok.bot – the epic domain lottery ticket

https://grok.bot/
2•bogdiyan•6m ago•0 comments

The "Kerry Cow" Wasn't a Cow at All–and It Upends Stone Age Irish History

https://nautil.us/the-kerry-cow-wasnt-a-cow-at-all-and-it-upends-stone-age-irish-history-1283999
2•Brajeshwar•7m ago•0 comments

mRNA cancer vaccine is getting there

https://arstechnica.com/health/2026/08/mrna-cancer-vaccine-succeeded-in-phase-3-melanoma-trial-mo...
4•ltononro•10m ago•1 comments

Citizens of France had their fiscal info leaked by the gov

https://www.franceinfo.fr/internet/securite-sur-internet/cyberattaques/piratage-du-fisc-quels-son...
3•mabios•10m ago•0 comments

The app blocker I made because I kept cheating on Screen Time

https://didac.dev/blog/the-app-blocker-i-made-because-i-kept-cheating-on-screen-time
2•sabatesduran•10m ago•0 comments

Show HN: A faithful port of Quake to the browser

https://willeastcott.github.io/playcanvas-quake/
2•ovenchips•11m ago•1 comments

Show HN: Clean, an agent skill that clears dev junk (freed 5.3 GB on first run)

https://github.com/andalabx/skills/tree/main/clean
2•Andassyn•12m ago•0 comments

I reduced Sony raws by 50% (lossless)

http://arwc.colorplane.com/
2•octacat•12m ago•1 comments

OpenAI retired O3 this month – here's my migration log

https://zlvox.com/blog/openai-o3-retirement-migration-guidehttps://zlvox.com/blog/openai-o3-retir...
2•mraadikhokhar•12m ago•0 comments

When Was the Last Time You Lost It with Everyone in a Movie Theater?

https://blog.mrcroxx.com/posts/when-was-the-last-time-you-lost-it-with-everyone-in-a-movie-theater/
2•MrCroxx•13m ago•0 comments

I built AI tool to find the right VCs and it saved me weeks

https://seedstr.app
2•Brainologist•13m ago•1 comments

ONNX.css – Neural network inference using stylesheets

https://onnx.css.evanking.io/
3•evmaki•14m ago•0 comments

What Every Kernel Programmer Should Know About Jump Labels

https://walac.github.io/jumplabels/
2•delduca•15m ago•0 comments

Passage AI: an AI trip planner that turns into a live guide when you land

https://mypassage.ai/
2•edwardvth•15m ago•0 comments

The Merneptah Stele is known, in an apologetic sense, as the "Israel Stele"

https://medium.com/freedomofthought/the-merneptah-stele-is-known-in-an-apologetic-sense-as-the-is...
2•raynchad•16m ago•0 comments

Stack Underflow: Losing the Craft of Coding

https://www.thenewatlantis.com/publications/stack-underflow-losing-the-craft-of-coding
2•latentnumber•16m ago•0 comments

Life as a Canvas That Never Holds My Colors

https://medium.com/freedomofthought/life-as-a-canvas-that-never-holds-my-colors-3e33197b1839
2•raynchad•17m 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.