frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: I mapped every US golf course – 16k+ courses, free, no signup

https://golfcoursebrowser.com/
72•rickmf•2h ago•34 comments

An ESP32 based plane radar for my desk

https://blog.ktz.me/esp32-plane-radar/
47•alexktz•2h ago•10 comments

Humans Haven't Stopped Evolving

https://www.harvardmagazine.com/research/harvard-human-evolution-genes-selective-pressure
30•ilamont•1h ago•23 comments

JetZero

https://www.jetzero.aero
101•lisper•2h ago•73 comments

The new rules of context engineering for Claude 5 generation models

https://claude.com/blog/the-new-rules-of-context-engineering-for-claude-5-generation-models
230•mellosouls•8h ago•143 comments

Stolen Buttons

https://anatolyzenkov.com/stolen-buttons
645•Gecko4072•5d ago•157 comments

Inflect-Micro-v2: complete voice in 9.36M parameters

https://huggingface.co/owensong/Inflect-Micro-v2
57•nateb2022•4h ago•4 comments

Rethinking Legal Education in the AI Era

https://www.law.uchicago.edu/news/ai-strategy-statement
37•jjwiseman•2d ago•2 comments

Clinical failure rates over the decades: yikes

https://www.science.org/content/blog-post/clinical-failure-rates-over-decades-yikes
74•EA-3167•6h ago•42 comments

Systems and Delays

https://martin.janiczek.cz/2026/07/24/systems-and-delays.html
43•vinhnx•4h ago•10 comments

Cloudflare's new AI traffic options for customers

https://blog.cloudflare.com/content-independence-day-ai-options/
74•alphabetatango•6h ago•45 comments

Running a 28.9M parameter LLM on an $8 microcontroller

https://github.com/slvDev/esp32-ai
116•boveyking•10h ago•26 comments

Agatha Christie's Disappearance: Amnesia, Suicide, or Despair?

https://www.historicmysteries.com/unexplained-mysteries/agatha-christie-disappearance/23136/
8•thunderbong•3d ago•2 comments

GM Backs Sodium Ion Batteries for U.S. Grid Storage

https://spectrum.ieee.org/sodium-ion-battery-peak-energy
155•rbanffy•7h ago•61 comments

Alien World Chemistry Found Inside Meteorite That Struck New Jersey Home

https://www.seti.org/news/alien-world-chemistry-found-inside-meteorite/
20•spzx•3h ago•4 comments

SIMD for Collision

https://box2d.org/posts/2026/07/simd-for-collision/
78•birdculture•3d ago•24 comments

What if they are all wrong? (2020)

https://igorpak.wordpress.com/2020/12/10/what-if-they-are-all-wrong/
14•kkoncevicius•4d ago•3 comments

LLM Usage in Debian: Three Proposals

https://www.debian.org/vote/2026/vote_002
112•zdw•9h ago•104 comments

DeepSeek pause fundraise after comments on compute gap to US leaked (transcript) [pdf]

https://github.com/demo-zexuan/liang-wenfeng-investor-meeting-2026-7-22/blob/master/%E6%A2%81%E6%...
116•oliculipolicula•5h ago•78 comments

GDID Windows – Cut the tracker that follows you even under VPN

https://korben.info/en/gdid-windows-cut-tracker-vpn.html
125•rfarley04•4d ago•88 comments

Open-weight AI is having its Kubernetes moment

https://tobi.knaup.me/2026-07-25-open-weight-ai-is-having-its-kubernetes-moment/
343•tknaup•14h ago•275 comments

Producing ammonia and fertiliser using wind power in Morris, Minnesota

https://ammoniaenergy.org/articles/flexible-renewable-ammonia-demonstrator-now-operational-in-min...
110•gritzko•9h ago•77 comments

Show HN: I made some transistor animations

https://brandonli.net/semisim/animations
148•stunningllama•1d ago•17 comments

Zero roadkill as Amazon canopy bridges secure 15,000 crossings

https://news.mongabay.com/2026/07/zero-roadkill-as-amazon-canopy-bridges-secure-15000-crossings/
321•hn_acker•3d ago•97 comments

Show HN: Brolly, a plain-text weather forecast site

https://brolly.sh/forecast/RWFP2qW8
156•jsax•11h ago•46 comments

Turn And Face The Strange

https://fly.io/blog/kurt-scott-money-sprites/
170•subarctic•8h ago•119 comments

Show HN: What 180k words look like as a temporal knowledge graph (Oz series)

https://synaptale.com/graph?ch=100
12•ald0r•2h ago•0 comments

Memory Safety Absolutists

https://itsallaboutthebit.com/memory-safety-absolutists/
73•drogus•10h ago•98 comments

Did They Ghost You?

https://didtheyghostyou.com/
342•mooreds•8h ago•152 comments

Multicast TV Distribution on My Home Network

https://www.apalrd.net/posts/2026/isp_mcast/
48•mrngm•8h ago•13 comments
Open in hackernews

Using Coalton to implement a quantum compiler (2022)

https://coalton-lang.github.io/20220906-quantum-compiler/
57•andsoitis•1y ago

Comments

reikonomusha•1y ago
Coalton remains in active development and is used at a couple companies. Like a handful of others in recent history, it's a language that's designed and implemented directly against the needs of either actual products or (PLT-unrelated) research initiatives, so things like performance aren't an afterthought.

There are a few software engineering positions in the Boston, MA area to work on the Coalton compiler (algebraic type systems, optimizations, high-performance computing, dev tools, ...) and to use it for autonomous, firm realtime systems (unrelated to quantum). Email in profile if interested.

joshjob42•1y ago
Is Coalton compatible broadly compatible with the features of CIEL? I've been interested in getting into CL, and CIEL seems like a very nice batteries-included way to do that. But Coalton is also quite interesting and brings some features that may be useful. But I'm such a novice in this particular space (I'm mostly a Julia user with Python and some elisp) that I can't quite tell. Obviously I could start learning CL using CIEL and later play with Coalton but was just wondering if you knew how they may play together.
reikonomusha•1y ago
Coalton can be used wherever (almost any) Common Lisp can be used: mixed in, side by side, exclusively, as an library, etc.

CIEL doesn't presently ship any native Coalton interfaces, so all invocations of CIEL within Coalton code would have to be in a "lisp" form, which is like Rust's "unsafe".

    (define (some-coalton-function arg)
      ;; break out to Lisp
      (lisp String (arg)
        ...CIEL stuff here...))
On ordinary safety settings, the String declaration on the Lisp code will be checked at runtime so that wrong types don't leak back into the surrounding/calling Coalton code.

Conversely, Coalton code can be freely used within Common Lisp code regardless of whether it uses CIEL.

dang•1y ago
A couple bits of past discussion:

Using Coalton to Implement a Quantum Compiler - https://news.ycombinator.com/item?id=36413832 - June 2023 (1 comment)

Using Coalton to Implement a Quantum Compiler - https://news.ycombinator.com/item?id=32741928 - Sept 2022 (1 comment)