frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Fable 5.1 Solves the Cyphral Distich, a 370-year-old cipher

https://www.vals.ai/blogs/fable-solves-cyphral-distich
509•u1hcw9nx•5h ago•224 comments

Why is Google still serving dodgy ads?

https://www.atomic14.com/2026/09/13/why-is-google-still-serving-dodgy-ads
617•iamflimflam1•8h ago•293 comments

Spaceships (Reverse Asteroid)

https://spaceships.treybastian.com/
17•zdw•3d ago•4 comments

Registration without a phone number on Signal will use zero-knowledge proofs

https://community.signalusers.org/t/registration-without-a-phone-number/2222?page=10
98•Cider9986•4h ago•44 comments

Open-Source AI and Open Models Reading List

https://www.interconnects.ai/p/open-source-ai-reading-list
27•simonpure•2h ago•1 comments

Julia 1.13 highlights

https://julialang.org/blog/2026/09/julia-1.13-highlights/
166•eigenspace•3d ago•12 comments

Astra and Fable still hack on simple variants of alignment evals from 2025

https://www.lesswrong.com/posts/munJKF7iWMsWJLAH2/astra-and-fable-still-hack-on-simple-variants-o...
385•Levitating•12h ago•176 comments

Data collected by cars and sold to third parties

https://www.theverge.com/column/994172/your-car-is-selling-your-data
318•bookofjoe•12h ago•165 comments

Flawed routers flood University of Wisconsin internet time server (2003)

https://pages.cs.wisc.edu/~plonka/netgear-sntp/
67•walrus01•5h ago•8 comments

Ask HN: What are you working on? (September 2026)

92•david927•9h ago•202 comments

Mullenweg has returned as CEO after attempted board ouster

https://techcrunch.com/2026/09/12/automattic-confirms-mullenweg-has-returned-as-ceo-after-attempt...
52•ilamont•6h ago•103 comments

Show HN: Is It Greg?

https://github.com/antoineleclair/is-it-greg
17•antoineleclair•33m ago•3 comments

The GDR and Vietnam: From Fake Coffee to Coffee Empire

https://www.katjahoyer.uk/p/the-gdr-and-vietnam-from-fake-coffee
33•NaOH•3d ago•5 comments

The Coming War on General Computation (2011)

https://en.wikisource.org/wiki/The_Coming_War_on_General_Computation
54•gregsadetsky•2h ago•11 comments

Apple's Dimensional Drawings

https://developer.apple.com/accessories/dimensional-drawings/
9•herbertl•2h ago•0 comments

AI is not a normal technology

https://12gramsofcarbon.com/p/ai-is-not-a-normal-technology
6•theahura•1h ago•11 comments

Reverse engineering my e-scooter and rewriting the firmware in Rust

https://bensimms.moe/reverse-engineering-scooter/
392•vinhnx•3d ago•90 comments

Making Startups Powerful

https://paulgraham.com/powerful.html
165•tosh•12h ago•76 comments

I build a mechanical watch face: a real gear train for a watch with no gears

https://myday24.com/blog/how-a-mechanical-watch-face-is-built/
16•tomasslavicek•3d ago•7 comments

Why is the x86 undefined instruction called ud2? Why 2?

https://devblogs.microsoft.com/oldnewthing/20260910-00/?p=112689
208•ibobev•14h ago•49 comments

The Malicious Use of Artificial Intelligence

https://arxiv.org/abs/1802.07228
3•rasengan0•1h ago•0 comments

Show HN: Exploring the intersection of prediction markets and social media

https://www.thevidmarket.com/
3•ryanpere2298•1h ago•0 comments

CUDA for AMD on Windows

https://github.com/Speedstu/CUDA-for-AMD-Windows
142•chiassedu80•12h ago•72 comments

Writing a better reality: The case for optimistic sci-fi

https://honisoit.com/2022/03/writing-a-better-reality-the-case-for-optimistic-sci-fi/
4•andsoitis•2h ago•2 comments

Why is privacy so hard?

https://cacm.acm.org/blogcacm/why-is-privacy-so-hard/
31•andsoitis•5h ago•30 comments

Reverse-Engineering Claude Web's MicroVM: Uncovering Anthropic's Hidden Antspace

https://aprilnea.me/en/blog/reverse-engineering-claude-code-antspace
62•rzk•2d ago•14 comments

"Chilling" warning or overreaction? AI bioweapons report divides experts

https://www.science.org/content/article/chilling-warning-or-overreaction-ai-bioweapons-report-div...
7•sbulaev•2h ago•0 comments

Necker, 1832: "An optical phænomenon on viewing a figure of a geometrical solid"

https://zenodo.org/records/1430991
7•akkartik•2d ago•1 comments

The contagion of fear

https://bcantrill.dtrace.org/2026/09/13/the-contagion-of-fear/
145•elffjs•3h ago•108 comments

The case against JPEG XL

https://giannirosato.com/blog/post/case-against-jxl/
48•contact9879•1h ago•49 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)