frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

PGSimCity - How PostgreSQL Works

https://nikolays.github.io/PGSimCity/
49•jonbaer•1h ago•6 comments

Decker, a platform that builds on the legacy of Hypercard and classic macOS

https://beyondloom.com/decker/
221•tosh•7h ago•51 comments

We have proof automation now

https://www.imperialviolet.org/2026/07/26/zstd-lean.html
65•zdw•4h ago•8 comments

French firefighters face 'pyrocumulonimbus' for first time

https://www.france24.com/en/live-news/20260726-french-firefighters-face-pyrocumulonimbus-for-firs...
175•saaaaaam•7h ago•79 comments

Teaching Kids Forth

https://gracefulliberty.com/articles/teaching-kids-forth/
46•rbanffy•3h ago•12 comments

Simulate cassette tape audio profiles using FFmpeg

https://github.com/AARomanov1985/Audio-Cassette-Simulation
69•xterminal•5h ago•36 comments

Design is compromise

https://stephango.com/design-is-compromise
190•ankitg12•9h ago•73 comments

Introduction to Data-Oriented Design [pdf]

https://www.gamedevs.org/uploads/introduction-to-data-oriented-design.pdf
101•tosh•7h ago•32 comments

US citizen charged after GrapheneOS phone wipes during airport search

https://www.techspot.com/news/113236-us-prosecutors-charge-atlanta-man-after-grapheneos-phone.html
117•eecc•3h ago•56 comments

Htmx 4.0, the first JavaScript library to release exclusively on the Game Boy

https://swag.htmx.org/en-cad/products/htmx-4-the-game
354•rcy•13h ago•109 comments

Plasma Tunnels Reveal How Dying Satellites Fall to Earth

https://spectrum.ieee.org/space-debris-atmosphere-burn-up
39•marc__1•4h ago•23 comments

Show HN: CheapSecurity – Lightweight, Self-Hosted CCTV for Linux SBCs

https://github.com/gmrandazzo/CheapSecurity
100•zeldone•9h ago•22 comments

Show HN: Port Zero – how I learned to stop worrying and love PORT=0

https://portzero.net/
6•octopoc•1h ago•2 comments

How to Block Some of the Bots

https://nochan.net/b/Internet-Crap/20260606-How-To-Block-Some-Of-The-Bots/
80•Bender•6h ago•87 comments

How to Write English Prose

https://thelampmagazine.com/blog/how-to-write-english-prose
67•geneticdrifts•8h ago•36 comments

How AST-grep Rewrote Tree-sitter in Rust and Made It 30% Faster

https://astgrep.com/blog/tree-sitter-rust-rewrite
67•herrington_d•7h ago•10 comments

Go Analysis Framework: modular static analysis by go team

https://pkg.go.dev/golang.org/x/tools/go/analysis
176•AbuAssar•13h ago•39 comments

I Championed Prediction Markets. Look What They've Become

https://newsletter.platypuseconomics.com/p/i-championed-prediction-markets-look
8•NomNew•1h ago•14 comments

Fonts In Use – Find out where a font is used

https://fontsinuse.com/
8•open_•1h ago•0 comments

The New AI Superpowers: Focus and Followthrough

https://www.rickmanelius.com/p/the-new-ai-superpowers-focus-and
142•mooreds•12h ago•44 comments

Show HN: Physically accurate black hole you can put in your room

https://blackhole.plav.in
5•aplavin•3d ago•0 comments

The relay market powering token resellers and fraud

https://vectoral.com/blog/token-relay-market
151•mlenhard•10h ago•92 comments

I learned PCB design, 3D printing and C just to listen to music

https://pentaton.app/blog/2026-07-12-introducing-pentaton-lp/
172•interfeco•3d ago•35 comments

I wanted a clock that never needed setting. Things escalated

https://arstechnica.com/gadgets/2026/07/i-wanted-a-clock-that-never-needed-setting-things-escalated/
47•lee_ars•3d ago•42 comments

Kill The Cookie Banner

https://killthecookiebanner.eu/
820•rapnie•13h ago•400 comments

The Usefulness of Useless Knowledge (1939) [pdf]

https://faculty.lsu.edu/kharms/files/flexner_1939.pdf
16•jxmorris12•3d ago•1 comments

History of John Backus's functional programming project [draft]

https://softwarepreservation.computerhistory.org/FP/
9•cwbuilds•2d ago•1 comments

Jimothy the raccoon has a rare spinal condition. Here's what that means

https://www.popsci.com/science/whats-jimothy-raccoon-condition/
100•speckx•5d ago•52 comments

Show HN: Reverse Minesweeper

https://sunflowersgame.com/
142•pompomsheep•12h ago•49 comments

Using sed to make indexes for books (1997)

https://www.pement.org/sed/make_indexes.txt
49•TMWNN•3d ago•9 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)