frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I Feel about AI

https://beza1e1.tuxen.de/ai_feelings.html
52•qznc•29m ago•16 comments

Intellectual Fly Is Open (2025)

https://bcantrill.dtrace.org/2025/12/05/your-intellectual-fly-is-open/
234•cyb0rg0•3h ago•131 comments

A/I shuts down – Stay human

https://keepitfree.ai/announcements/a/i-shuts-down-stay-human/
150•captainmuon•55m ago•47 comments

QBittorrent breaks out of sandbox to commit crimes

https://beige.party/@intransitivelie/117057396732763183
76•mraniki•2h ago•8 comments

Isar Aerospace reaches orbit and deploys payloads on second flight

https://isaraerospace.com/press/history-for-european-spaceflight-isar-aerospace-reaches-orbit-and...
386•mpweiher•8h ago•111 comments

Doomscrolling Ourselves to Death

https://www.edwest.co.uk/p/doomscrolling-ourselves-to-death
172•shubhamjain•3h ago•115 comments

Show HN: Kadō – open-source habit tracker, with non-binary habit score, for iOS

https://github.com/scastiel/kado
15•scastiel•54m ago•5 comments

The many mysteries and lessons of the Bayeux tapestry

https://economist.com/interactive/culture/2026/09/03/the-many-mysteries-and-lessons-of-the-bayeux...
29•andsoitis•1h ago•5 comments

M-DISC – DVD/Blu-ray compatible discs that may last up to 1000 years

https://en.wikipedia.org/wiki/M-DISC
114•gurjeet•4d ago•44 comments

What is Nueralese and Why is it Bad

https://www.lesswrong.com/posts/RCYF2rW8wgusidZk7/what-is-neuralese-and-why-is-it-bad
24•tristanMatthias•2d ago•16 comments

Alberta (Canada) slaps punitive tax on solar panels

https://albertapolitics.ca/2026/09/ucp-slaps-punitive-tax-on-solar-panels-opening-new-front-in-it...
3•cmrdporcupine•15m ago•2 comments

Asahi Linux Now Officially Supports Apple M3 Macs – With Caveats

https://www.phoronix.com/news/Asahi-Linux-Official-M3
55•mdp2021•1h ago•30 comments

Cloud in a Bottle: making self-hosting accessible to everyone

https://cloudinabottle.org/blog/launch-post
523•zplizzi•15h ago•261 comments

Ganon's Mysterious Origins (Revisited)

https://www.thrillingtalesofoldvideogames.com/blog/ganon-name-origin-kamen-rider
5•tobr•18h ago•0 comments

The revolt of the reader

https://bcantrill.dtrace.org/2026/09/05/the-revolt-of-the-reader/
489•chmaynard•17h ago•227 comments

The pencil case model of creativity

https://dub.uu.nl/en/column/pencil-case-model-creativity
28•jruohonen•3h ago•9 comments

Music Theory for Programmers

https://runjs.app/blog/music-theory-for-programmers
250•birdculture•3d ago•149 comments

I'm teaching an introductory 12 week course on Quantum Oracle Engineering

https://shukla.io/quantum-oracle-engineering/
13•BinRoo•2h ago•8 comments

Household Laser Cuts

https://cceckman.com/writing/household-laser-cuts/
28•evakhoury•1d ago•4 comments

IBM Quantum Nighthawk R2

https://www.ibm.com/quantum/blog/nighthawk-r2
49•fuglede_•3d ago•28 comments

The ColorChecker, photography's most important 24 squares, turns 50

https://www.dpreview.com/news/the-colorchecker-photographys-most-important-24-squares-turns-50/
106•sohkamyung•4d ago•19 comments

AMD Based FreeBSD Desktop Reloaded

https://vermaden.wordpress.com/2026/09/06/amd-based-freebsd-desktop-reloaded/
92•vermaden•13h ago•9 comments

The Empire of Information

https://lareviewofbooks.org/article/data-empire-roopika-risam-information-organize-control-dominate/
26•Petiver•4d ago•7 comments

Fileregister: Tagging and reference layer for your files, in plain text

https://github.com/rhsev/fileregister
12•ingve•5d ago•2 comments

Discovery of a new OpenAI agent message board

https://collusion.wiki/
2231•moultano•2d ago•1566 comments

AI, Tools and Transformation

https://www.ben-evans.com/benedictevans/2026/9/3/ai-tools-and-transformation
112•firexcy•13h ago•48 comments

I Changed My License

https://bergie.iki.fi/blog/eupl/
120•jllyhill•4h ago•133 comments

2026 Hugo Awards

https://www.thehugoawards.org/
33•signa11•2h ago•21 comments

Learn Programming with OCaml

https://usr.lmf.cnrs.fr/lpo/
292•elvis70•22h ago•124 comments

'Old Person Smell'

https://www.theguardian.com/wellness/2026/sep/03/old-person-smell
57•bookofjoe•3h ago•28 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)