frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Python-based backtesting for Polymarket, with h5i-db

https://medium.com/@Koukyosyumei/python-based-backtesting-for-polymarket-with-h5i-db-a9fefee27ac9
1•syumei•2m ago•0 comments

Games at the press of a button: The Rip-O-Bot (1989)

https://blog.gingerbeardman.com/2026/08/02/games-at-the-press-of-a-button-the-rip-o-bot/
1•msephton•3m ago•0 comments

Plotlines: Every place and journey in every literature classic, on one map

https://peter-guillam123.github.io/plotlines/index.html
1•theanonymousone•4m ago•0 comments

Let the Machines In

https://blog.semenzin.com/let-the-machines-in/
2•lluvt•5m ago•0 comments

I gave local AI eyes

https://github.com/zyads/eyes
1•aether-zyads•6m ago•0 comments

Shed Blog

https://www.shedblog.co.uk/
2•thinkingemote•10m ago•0 comments

Adding Go's Defer to the TypeScript Compiler

https://healeycodes.com/adding-defer-to-the-typescript-compiler
1•healeycodes•10m ago•0 comments

Malaysia is reportedly shutting down Balaji Srinivasan's Network School

https://techcrunch.com/2026/08/02/malaysia-is-reportedly-shutting-down-balaji-srinivasans-network...
1•aanet•11m ago•0 comments

Show HN: MicroCodex Coding Agent – OpenAI/codex reimplemented in C++ <1MB binary

https://github.com/paoloanzn/microcodex
1•paoloanzn•11m ago•0 comments

Doxy – a browser Markdown and HTML editor (like Overleaf but no LaTeX)

https://trydoxy.com
1•iliesw•12m ago•0 comments

Why Curiosity May Be the Most Underrated Career Skill

https://www.forbes.com/sites/rodgerdeanduncan/2025/12/11/why-curiosity-may-be-the-most-underrated...
3•speckx•15m ago•0 comments

Bill Watterson: A Cartoonist's Advice

https://www.zenpencils.com/comic/128-bill-watterson-a-cartoonists-advice/
1•mixmastamyk•17m ago•0 comments

Engineering behind the xPal private messaging app cross-device message deletion

https://xpalapp.substack.com/p/the-engineering-behind-the-xpal-private
1•Brandon-Coll•19m ago•0 comments

TinyNES Review – A Super Niche NES Console

https://blog.lon.tv/2023/02/05/tinynes-review-a-super-niche-nes-console/
1•throwoutway•21m ago•0 comments

I built a non-physical GPU that does 194,396 yottaflops on one CPU core

https://github.com/pluscoder30-cpu/Omega_Field_GPU_Ultimate
1•soul-vector•21m ago•0 comments

I Built a Million-Dollar Machine for $200 [video]

https://www.youtube.com/watch?v=YP-hdsrOYo8
1•binyu•24m ago•0 comments

Mission High leads California in UC Berkeley admissions. But many don't graduate

https://sfstandard.com/2026/07/30/mission-high-uc-berkeley-admissions-dropout/
1•donsupreme•25m ago•0 comments

Energizing a vacuum-tube flip-flop module from a 1948 IBM system

https://www.righto.com/2026/07/ibm-604-trigger-tube-module.html
1•geerlingguy•26m ago•0 comments

I abused PostHog's wizard to get free Claude tokens

https://techstackups.com/articles/i-abused-posthogs-setup-wizard-to-get-free-claude-access/
1•ritzaco•29m ago•0 comments

A teen was killed at a Seattle protest. New video evidence shows what happened

https://www.npr.org/2026/07/31/g-s1-133360/chop-digital
2•duxup•31m ago•1 comments

Show HN: My public second brain – 660 notes, 15 years, open source

https://www.ssp.sh/brain/
2•zazuke•40m ago•5 comments

My personal AI benchmark: "Generate an SVG of a frog with a Habsburg jaw."

https://frogs.vaguespac.es/
7•thebigship•40m ago•0 comments

EU rules on AI models become enforceable. What's going to change?

https://www.euronews.com/my-europe/2026/08/02/eu-rules-on-ai-models-become-enforceable-whats-goin...
19•devonnull•42m ago•7 comments

Saying 'Google It' Makes You Sound Old

https://www.nytimes.com/2026/07/23/magazine/google-it-search-it-up.html
5•bookofjoe•50m ago•6 comments

Design for Stress

https://idiallo.com/blog/design-for-stress
2•firefoxd•52m ago•0 comments

NBC News – Breaking Headlines and Video Reports on World

https://www.nbcnews.com
2•marthatcartwrig•54m ago•1 comments

Baltram/seednaut: Inspect, verify and extract files from Seedvault backups

https://github.com/Baltram/seednaut
2•theandrewbailey•56m ago•0 comments

You Can't Audit Entropy After the Fact

https://808bits.com/articles/coldcard-entropy-failure-lessons/
2•meehow•56m ago•0 comments

Apple struggles to keep pace with AI 'bug' hunters

https://www.ft.com/content/4532122d-90f2-4433-9df6-ca99d8a141d2
3•JumpCrisscross•57m ago•0 comments

German carmakers flood jobs market with managers after wielding axe

https://www.ft.com/content/e345d51f-11f7-4d4d-8f09-86dd3a225597
16•JumpCrisscross•58m ago•2 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.