frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

NIST ion clock sets new record for most accurate clock

https://www.nist.gov/news-events/news/2025/07/nist-ion-clock-sets-new-record-most-accurate-clock-world
220•voxadam•6h ago•79 comments

Show HN: Shoggoth Mini – A soft tentacle robot powered by GPT-4o and RL

https://www.matthieulc.com/posts/shoggoth-mini
278•cataPhil•6h ago•57 comments

Encrypting files with passkeys and age

https://words.filippo.io/passkey-encryption/
20•thadt•1d ago•32 comments

To be a better programmer, write little proofs in your head

https://the-nerve-blog.ghost.io/to-be-a-better-programmer-write-little-proofs-in-your-head/
168•mprast•5h ago•82 comments

Hierarchical Modeling (H-Nets)

https://cartesia.ai/blog/hierarchical-modeling
40•marviel•2h ago•12 comments

Show HN: Beyond Z²+C, Plot Any Fractal

https://www.juliascope.com/
52•akunzler•4h ago•12 comments

Helix Editor 25.07

https://helix-editor.com/news/release-25-07-highlights/
214•matrixhelix•3h ago•83 comments

Reflections on OpenAI

https://calv.info/openai-reflections
269•calvinfo•5h ago•153 comments

Designing for the Eye: Optical Corrections in Architecture and Typography

https://www.nubero.ch/blog/015/
72•ArmageddonIt•4h ago•10 comments

The Story of Mel, A Real Programmer, Annotated (1996)

https://users.cs.utah.edu/~elb/folklore/mel-annotated/node1.html#SECTION00010000000000000000
19•fanf2•3d ago•4 comments

The FIPS 140-3 Go Cryptographic Module

https://go.dev/blog/fips140
20•FiloSottile•1h ago•0 comments

How Culture Is Made

https://www.metalabel.com/studio/release-strategies/how-culture-is-made
10•surprisetalk•3d ago•2 comments

AI ate code, now it wants cashflows. Is this finance's Copilot moment?"

https://www.anthropic.com/news/claude-for-financial-services
3•mildlyhostileux•28m ago•1 comments

Human Stigmergy: The world is my task list

https://aethermug.com/posts/human-stigmergy
28•Petiver•3h ago•10 comments

Underwriting Superintelligence

https://underwriting-superintelligence.com/
26•brdd•3h ago•21 comments

Hazel: A live functional programming environment with typed holes

https://github.com/hazelgrove/hazel
20•azhenley•3h ago•5 comments

CoinTracker (YC W18) is hiring to solve crypto taxes and accounting (remote)

1•chanfest22•5h ago

Lorem Gibson

http://loremgibson.com/
76•DyslexicAtheist•2d ago•13 comments

Petabit-class transmission over > 1000 km using standard 19-core optical fiber

https://www.nict.go.jp/en/press/2025/05/29-1.html
67•the_arun•2d ago•28 comments

Voxtral – Frontier open source speech understanding models

https://mistral.ai/news/voxtral
27•meetpateltech•7h ago•10 comments

LLM Inevitabilism

https://tomrenner.com/posts/llm-inevitabilism/
1455•SwoopsFromAbove•17h ago•1366 comments

Blender 4.5 LTS Released

https://www.blender.org/download/releases/4-5/
249•obdev•7h ago•76 comments

What caused the 'baby boom'? What would it take to have another?

https://www.derekthompson.org/p/what-caused-the-baby-boom-what-would
36•mmcclure•6h ago•183 comments

o3 and Grok 4 accidentally vindicate neurosymbolic AI

https://garymarcus.substack.com/p/how-o3-and-grok-4-accidentally-vindicated
45•NotInOurNames•2d ago•13 comments

Most (ly Dead) Influential Programming Languages (2020)

https://www.hillelwayne.com/post/influential-dead-languages/
57•azhenley•3d ago•34 comments

Show HN: We made our own inference engine for Apple Silicon

https://github.com/trymirai/uzu
132•darkolorin•11h ago•40 comments

Where's Firefox Going Next?

https://connect.mozilla.org/t5/discussions/where-s-firefox-going-next-you-tell-us/m-p/100698#M39094
25•ReadCarlBarks•1h ago•12 comments

KDE's official Roku/Android TV alternative is back from the dead

https://www.neowin.net/news/kdes-android-tv-alternative-plasma-bigscreen-rises-from-the-dead-with-a-better-ui/
110•bundie•4h ago•30 comments

Literalism plaguing today’s movies

https://www.newyorker.com/culture/critics-notebook/the-new-literalism-plaguing-todays-biggest-movies
197•frogulis•18h ago•354 comments

A quick look at unprivileged sandboxing

https://www.uninformativ.de/blog/postings/2025-07-13/0/POSTING-en.html
37•zdw•2d ago•12 comments
Open in hackernews

Compiler Reminders

https://jfmengels.net/compiler-reminders/
38•jfmengels1•2mo ago

Comments

JonChesterfield•2mo 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•2mo 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•2mo ago
That is a feature. Compose instead of extending.
Yoric•2mo ago
OCaml has extensible sum types. They work very nicely for some ranges of problems.
swiftcoder•2mo ago
Elm <-> Rust

Best buds on this front

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