frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Watch Los Angeles get built, one building at a time (1880–2026)

https://lax-skyline.parcelscope.net/
102•rustywasm•2h ago•37 comments

Finding a bug in Dummit and Foote's Abstract Algebra

https://kallus.org/blog/dummit_and_foote.html
27•evakhoury•3d ago•3 comments

WeatherNext 3

https://deepmind.google/science/weathernext/
101•matthieu_bl•4d ago•14 comments

Trusting-Trust Attack against an Entire Linux Distribution

https://arxiv.org/abs/2607.24888
44•signa11•2d ago•7 comments

Macbeth and His Problems

https://porticoquarterly.com/essay/macbeth-and-his-problems/
6•apophatic•27m ago•0 comments

Methods for Random Gradients (2024)

https://justinjay.wang/methods-for-random-gradients/
31•nickswalker•3d ago•3 comments

Decoding the NEC V20 Microcode

https://martypc.blogspot.com/2026/09/decoding-nec-v20-microcode.html
83•mariuz•3d ago•4 comments

Simple Is Not Small

https://jyn.dev/simple-is-not-the-same-as-small/
150•zdw•3d ago•46 comments

Scientists observe Einstein's gravity in the quantum world

https://www.ox.ac.uk/news/2026-08-28-scientists-observe-einsteins-gravity-in-the-quantum-world
33•mudil•3d ago•6 comments

Caltech Mathathon – first hackathon ever devoted to research level mathematics

https://mathathonchallenge.com/index.html
197•astroanax•11h ago•60 comments

The Dataflow Model Revisited

https://www.vldb.org/pvldb/volumes/19/paper/The%20Dataflow%20Model%20Revisited
68•scott_s•1d ago•12 comments

Decapitating a MacBook (2025)

https://mm-dev.rocks/series/decapitating-macbook-an-odyssey/
28•luu•1d ago•14 comments

216M Spy TVs – The LG Smart TV Problem [video]

https://www.youtube.com/watch?v=6IFVTcM28KA
295•treve•20h ago•610 comments

bzip3

https://github.com/iczelia/bzip3
336•tosh•7h ago•95 comments

Icy Moons Are Ocean Worlds

https://mceglowski.substack.com/p/icy-moons-are-ocean-worlds
82•worldvoyageur•1d ago•10 comments

Academia as a d-index measuring contest

https://kevinmunger.substack.com/p/introducing-the-k-index
23•surprisetalk•5d ago•2 comments

This Month in Ladybird – August 2026

https://ladybird.org/newsletter/2026-08-31/
85•exploraz•2d ago•7 comments

Keep Our Servers Running

https://blog.archive.org/2026/09/01/keep-our-servers-running-your-recurring-donation-goes-3x-this...
907•sonicrocketman•17h ago•223 comments

My practical approach to surfing the web safely

https://molily.de/safe-websurfing/
35•ethanhawksley•5d ago•11 comments

Replaceable but Employed: Automation and the Meaning of Work

https://www.nber.org/papers/w35559
17•mooreds•1h ago•0 comments

Whistle Synth Mac App

https://www.jefftk.com/p/whistle-synth-mac-app
48•luu•3d ago•12 comments

Show HN: HomeCat – Design your backyard office

https://myhomecat.com
17•dearilos•2h ago•9 comments

How to bring up the Linux Kernel on a new platform

https://werwolv.net/posts/linux_bringup/
37•WerWolv•4d ago•4 comments

Live map of public transport in Belgium

https://openbaarvervoerbelgie.be/
169•coinfused•11h ago•72 comments

Schemy Lisp En DOS

https://sled.neocities.org/
19•AlexeyBrin•1d ago•1 comments

Rebuilding a 1995 GPS Time Server so I don't get Telstra'd

https://www.jeffgeerling.com/blog/2026/truetime-xl-gps-time-server-restomod/
16•Brajeshwar•2d ago•6 comments

Catching Crumbs from the Table (2000)

https://www.nature.com/articles/35014679
8•stefanpie•1d ago•3 comments

Bill Gates tries to install MovieMaker (2003)

https://www.techemails.com/p/bill-gates-tries-to-install-movie-maker
283•highfrequency•5h ago•185 comments

Show HN: Wg-admin – web UI for an existing WireGuard host

https://github.com/logimaxx/wg-admin
15•vsergione•4h ago•3 comments

Speculative Decoding in vLLM on AMD GPUs

https://vllm.ai/blog/2026-08-23-speculative-decoding-amd-gpus
123•ankitg12•11h ago•41 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)