frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ruff v0.16.0 – Significant new updates – 413 default rules up from 59

https://astral.sh/blog/ruff-v0.16.0
81•vismit2000•2h ago•38 comments

Elevated Errors for Opus 5

https://status.claude.com/incidents/zftg3gqkmv18
31•TimCTRL•2h ago•32 comments

GrapheneOS protections against data extraction from locked devices

https://discuss.grapheneos.org/d/40700-grapheneos-protections-against-data-extraction-from-locked...
115•Cider9986•5h ago•52 comments

A shell colon does nothing. Use it anyway

https://refp.se/articles/your-shell-and-the-magic-colon
230•olexsmir•21h ago•92 comments

An ESP32 based plane radar for my desk

https://blog.ktz.me/esp32-plane-radar/
169•alexktz•8h ago•35 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
352•mellosouls•14h ago•247 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%...
173•oliculipolicula•11h ago•122 comments

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

https://huggingface.co/owensong/Inflect-Micro-v2
145•nateb2022•10h ago•11 comments

Show HN: I mapped every US golf course

https://golfcoursebrowser.com/
143•rickmf•9h ago•79 comments

German Peasants' War

https://en.wikipedia.org/wiki/German_Peasants%27_War
4•constantius•3d ago•4 comments

Stinkpot: SQLite-backed shell history

https://tangled.org/oppi.li/stinkpot
73•nerdypepper•1d ago•22 comments

Alien World Chemistry Found Inside Meteorite That Struck New Jersey Home

https://www.seti.org/news/alien-world-chemistry-found-inside-meteorite/
82•spzx•9h ago•22 comments

Overloaded Overloading

https://powerfulpython.com/blog/overloaded-overloading/
19•redsymbol•3d ago•5 comments

Cloudflare's new AI traffic options for customers

https://blog.cloudflare.com/content-independence-day-ai-options/
133•alphabetatango•12h ago•108 comments

Rethinking Legal Education in the AI Era

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

Running a 28.9M parameter LLM on an $8 microcontroller

https://github.com/slvDev/esp32-ai
205•boveyking•16h ago•48 comments

Git rebase -I is not that scary

https://cachebag.sh/journal/interactive-rebasing/
76•vinhnx•10h ago•90 comments

Some more things about Django I've been enjoying

https://jvns.ca/blog/2026/07/21/more-nice-django-things/
52•surprisetalk•4d ago•26 comments

Systemd Linger

https://etbe.coker.com.au/2026/07/24/systemd-linger/
3•edward•1h ago•0 comments

What is happening to jobs? Separating AI hype from reality

https://siepr.stanford.edu/publications/policy-brief/what-really-happening-jobs-separating-ai-hyp...
108•pod_krad•12h ago•128 comments

DskDitto: Ultra-fast, parallel duplicate-file detector

https://github.com/jdefrancesco/dskDitto
25•ingve•4d ago•4 comments

LLM Usage in Debian: Three Proposals

https://www.debian.org/vote/2026/vote_002
170•zdw•15h ago•154 comments

Pip install Postgres – no Docker/Brew/apt

https://github.com/leontrolski/postgresql-testing
9•leontrolski•2d ago•3 comments

JetZero

https://www.jetzero.aero
210•lisper•8h ago•175 comments

Clinical failure rates over the decades: yikes

https://www.science.org/content/blog-post/clinical-failure-rates-over-decades-yikes
108•EA-3167•12h ago•86 comments

SIMD for Collision

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

No Stack Overflow, No Autocomplete: What Coding Felt Like in the 80s

https://comuniq.xyz/post?t=1439
16•01-_-•1h ago•14 comments

Systems and Delays

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

Show HN: I made some transistor animations

https://brandonli.net/semisim/animations
191•stunningllama•1d ago•24 comments

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

https://spectrum.ieee.org/sodium-ion-battery-peak-energy
182•rbanffy•13h ago•82 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)