frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Codex starts encrypting sub-agent prompts

https://github.com/openai/codex/issues/28058
198•embedding-shape•2h ago•116 comments

Codex scraped the ICM website and discovered 2026 Fields Medal winner list

https://phemex.com/news/article/2026-fields-medal-winners-list-leaked-includes-two-peking-univers...
74•zaikunzhang•2h ago•52 comments

Beautiful Type Erasure with C++26 Reflection

https://ryanjk5.github.io/posts/rjk-duck/
23•RyanJK5•54m ago•7 comments

Coding agents think ahead of time

https://arxiv.org/abs/2607.05188
24•andre15silva•1h ago•17 comments

Show HN: I RL-trained an agent that trains models with RL (for –$1.3k)

https://github.com/Danau5tin/ai-trains-ai
22•Danau5tin•53m ago•3 comments

No Spanish Reading Crisis?

https://www.commonreader.co.uk/p/no-spanish-reading-crisis
31•jruohonen•2h ago•31 comments

Tensor Is the Might

https://zserge.com/posts/tensor/
8•eatonphil•38m ago•0 comments

Japan develops a method to recover up to 90% of lithium from used EV batteries

https://tech.supercarblondie.com/japan-recovers-up-to-90-of-lithium-from-used-ev-batteries/
620•donohoe•11h ago•162 comments

Actegories

https://bartoszmilewski.com/2026/06/30/actegories/
25•ibobev•2h ago•4 comments

Kids (With Phones) Are Alright

https://heatherburns.tech/2026/07/08/the-kids-with-phones-are-alright/
11•JumpCrisscross•3d ago•1 comments

Alternative(s) to run CUDA on non-Nvidia hardware

https://www.hpcwire.com/2026/07/09/spectral-compute-aims-to-set-cuda-free-will-it-succeed/
84•alok-g•5h ago•39 comments

Punch Yourself in the Face with Reality

https://adi.bio/reality
47•AdityaAnand1•2h ago•17 comments

Proof of Care in the Age of A.I

https://jacobfilipp.com/care/
9•jfil•38m ago•2 comments

Australian energy retailers must provide three hours of free daytime electricity

https://lenergy.com.au/free-daytime-electricity-is-coming-heres-how-it-actually-works/
162•i2oc•9h ago•252 comments

Your 'App' Could Have Been a Webpage (so I fixed it for you)

https://danq.me/2026/07/09/your-app-could-have-been-a-webpage/
156•MrVandemar•3d ago•111 comments

Germany set to restrict its Freedom of Information Act

https://www.dw.com/en/germany-freedom-of-information-act/a-77939695
87•robtherobber•1h ago•35 comments

The git history command

https://lalitm.com/post/git-history/
360•turbocon•12h ago•236 comments

The Future Worth Building Is Human

https://thinkingmachines.ai/blog/the-future-worth-building-is-human/
59•bilsbie•2h ago•40 comments

Indian scientists produce most detailed 3D atlas of the human brainstem

https://www.bbc.com/news/articles/cg53l737v1qo
110•BaudouinVH•6h ago•10 comments

Notable Knot Index (2016)

https://knots.neocities.org/knotindex
40•surprisetalk•5d ago•6 comments

The great digital fatigue: How digital burnout is changing social media use

https://blog.incogni.com/digital-fatigue-and-burnout/
61•derbOac•2h ago•51 comments

Just Let Me Write Digits

https://gendx.dev/blog/2026/07/13/input-digits.html
97•brandon_bot•7h ago•34 comments

Building and shipping Mac and iOS apps without opening Xcode

https://scottwillsey.com/building-and-shipping-mac-and-ios-apps-without-ever-opening-xcode/
516•speckx•19h ago•218 comments

YouTrackDB is a general-use object-oriented graph database

https://github.com/JetBrains/youtrackdb
148•gjvc•9h ago•47 comments

How to build a circular LCD clock

https://blinry.org/lcd-clock/
108•birdculture•2d ago•47 comments

Fundamentals of Wireless Communication (2005)

https://web.stanford.edu/~dntse/wireless_book.html
154•teleforce•11h ago•7 comments

Differentiable Fortran with LFortran and Enzyme

https://docs.pasteurlabs.ai/projects/tesseract-core/latest/blog/2026-07-09-enzyme-lfortran-autodi...
7•dionhaefner•1h ago•1 comments

The Economics of Recursive Self-Improvement [pdf]

https://elasticity.institute/rsi-paper.pdf
122•apsec112•11h ago•61 comments

An Englishwoman who sketched India before photography took hold

https://www.bbc.com/news/articles/cm2drrv6q54o
193•1659447091•14h ago•55 comments

SalesPatriot (YC W25) Is Hiring Full Stack Engineers (SF)

https://jobs.ashbyhq.com/SalesPatriot/df223727-5781-433e-bc75-2aa5bf8dc8d7
1•maciejSz•16h ago
Open in hackernews

Compiler Reminders

https://jfmengels.net/compiler-reminders/
38•jfmengels1•1y ago

Comments

JonChesterfield•1y ago
Exhaustive compile time checking of dispatch statements is a wonderful thing, sorely missing from the languages that decided "sum types" are a bit weird and niche.
fredrikholm•1y ago
They make it near impossible to extend from the outside.

I can pass a Reader interface to your function, but I cannot (easily) add a

> | UnusualProtocol(Socket)

as a third party consumer.

Other than that, sum types are the better abstraction. With exhaustive first class pattern matching (eg. with proper matching on destructuring), nothing comes close in terms of ergonomics.

hermanradtke•1y ago
That is a feature. Compose instead of extending.
Yoric•1y ago
OCaml has extensible sum types. They work very nicely for some ranges of problems.
swiftcoder•1y ago
Elm <-> Rust

Best buds on this front

gitroom•1y ago
Tbh, missing those checks in other languages bugs me so much - it's like why leave me hanging?