frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

JetBrains's KotlinLLM is going open source

https://blog.jetbrains.com/research/2026/07/kotlinllm-open-source/
1•bundie•16s ago•0 comments

Ten years of generative adversarial nets (GANs)

https://iopscience.iop.org/article/10.1088/2632-2153/ad1f77
1•Anon84•4m ago•0 comments

Show HN: Grassroots Football, Live

https://unleague.site/
1•kunalsin9h•6m ago•0 comments

Show HN: Open-source Cloudflare deployed agent native task management and wiki

https://tajd.github.io/projektor/
1•tajd•6m ago•0 comments

LoopLynx: A Scalable Dataflow Architecture for Efficient LLM Inference

https://arxiv.org/abs/2504.09561
1•binyu•7m ago•0 comments

AI Coding is Exhausting [video]

https://www.youtube.com/shorts/e-pFrQ_Rh0s
1•deterministic•8m ago•2 comments

Workplaces Safer with Technology

https://www.channelnewsasia.com/singapore/workplace-safety-technology-ns-square-tuas-port-6275511
1•journey2s•8m ago•0 comments

How to Get More Customers to Your Website: Fix 3 Barriers

https://lazerg.uz/en/blog/saytga-mijoz-jalb-qilish
1•lazerg•8m ago•0 comments

Usenet Archive Toolkit – process Usenet messages into a searchable archive

https://github.com/wolfpld/usenetarchive
1•bilegeek•9m ago•0 comments

Hugging Face CEO shares his demands of OpenAI after 'rogue' agent hack

https://www.businessinsider.com/hugging-face-ceo-clem-delangue-openai-rogue-agent-hack-2026-7
1•Topfi•10m ago•0 comments

Concordance – cross-source search that flags single-source claims

https://concordancehq.duckdns.org
1•Vohlsyr•10m ago•0 comments

Nyctography: A substituton cypher by Lewis Carroll

https://en.wikipedia.org/wiki/Nyctography
1•nanna•10m ago•0 comments

Does a context gate for search agents work?

https://bluenotebook.io/blog/context-gating-browsecomp/
1•k2so•13m ago•0 comments

DMARC Has Been Public Since 2012. 68.4% of Domains Still Don't Enforce It

https://ciphercue.com/blog/dmarc-enforcement-gap-rua-fragmentation-2026
2•adulion•19m ago•0 comments

Tideman

https://cs50.harvard.edu/x/psets/3/tideman/
1•microsoftedging•20m ago•0 comments

Show HN: Pre-registered trading backtests – 27 kills, 2 passes, 0 funded

https://strategygraveyard.com
1•Strawburry•28m ago•0 comments

Super Simple Sync with Durable State and TanStack DB

https://streamsy.gandrew.com/articles/the-simplest-possible-sync-engine
1•ghendrix•30m ago•0 comments

My best friend vouched for the developer who took my money

https://fablesofafailedfounder.substack.com/p/yeah-okay-thats-fine
1•OroOmi•31m ago•0 comments

AI sell-off intensifies as investors ditch chip stocks

https://www.theguardian.com/business/2026/jul/28/ai-sell-off-chip-stocks-sk-hynix-samsung
3•lilerjee•31m ago•0 comments

Draws fractals defined by iterated function systems (IFS) using the chaos game

https://opam.ocaml.org/packages/ifs-fractals/
1•cedricbonhomme•36m ago•0 comments

Radio Image Framing Protocol (RIFP)

https://www.ietf.org/archive/id/draft-dulaunoy-rifp-00.html
2•_____k•36m ago•0 comments

Twitter raving about one-shot games with Sol-5.6 and Opus 5

https://xcancel.com/antibot/captcha
2•spwa4•38m ago•1 comments

Insurtech Amsterdam Announces Third Edition of Its Magazine

https://insurtechamsterdam.com/magazine/Insurtech-Digest-Announces-Third-Edition-of-Its-Magazine-...
1•Venesha•38m ago•0 comments

Radio Image Framing Protocol over low-rate radio links

https://github.com/adulau/rifp
1•adulau•40m ago•0 comments

Google's Beyond Zero: Enterprise Security for the AI Era

https://spawn-queue.acm.org/doi/10.1145/3819083
2•jordigg•41m ago•0 comments

We Built Our Knowledge Base

https://www.cerebras.ai/blog/how-we-built-our-knowledge-base
1•cesarrg•44m ago•0 comments

High energy prices force Playmobil to end production in Germany

https://brusselssignal.eu/2026/06/high-energy-prices-force-playmobil-to-end-production-in-germany/
2•Markoff•44m ago•0 comments

Ask HN: Thoughts on AMD Ryzen AI MAX+ 395 for Local AI?

1•mempirate•46m ago•1 comments

What Even Are Microservices?

https://var0.xyz/posts/what-even-are-microservices.html
17•tuxie_•47m ago•24 comments

Intel shows off Starfire, a new space grade chip

https://www.tomshardware.com/tech-industry/semiconductors/intel-shows-off-starfire-space-grade-chip
2•incognito124•48m 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.