frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Phosh 0.56.0

https://phosh.mobi/releases/rel-0.56.0/
35•edward•37m ago•5 comments

Introduction to Compilers and Language Design

https://dthain.github.io/books/compiler/
44•AlexeyBrin•2h ago•2 comments

If you're a button, you have one job

https://unsung.aresluna.org/if-youre-a-button-you-have-one-job/
353•nozzlegear•12h ago•177 comments

Airplane Boneyards List and Map

https://airplaneboneyards.com/airplane-boneyards-list-and-map.htm
6•hyperific•22h ago•0 comments

Shadcn/UI now defaults to Base UI instead of Radix

https://ui.shadcn.com/docs/changelog
198•dabinat•9h ago•85 comments

Show HN: KiCad in the Browser

https://demo.pcbjam.com/
22•ViktorEE•1h ago•5 comments

Medieval-style fortifications are back in the Sahel

https://www.economist.com/middle-east-and-africa/2026/06/25/medieval-style-fortifications-are-bac...
12•andsoitis•4d ago•3 comments

Pandoc Lua Filters

https://pandoc.org/lua-filters.html
96•ankitg12•2d ago•8 comments

Knowledge Should Not Be Gated

https://www.formaly.io/blog/knowledge-should-not-be-gated
43•nezhar•6h ago•22 comments

Fast Software, the Best Software (2019)

https://craigmod.com/essays/fast_software/
70•ustad•6h ago•35 comments

Trust your compiler: Modern C++

https://categorica.io/blog/2026.06.29_trust_your_compiler/
28•foxhill•4d ago•8 comments

Jellyfish can heal wounds in minutes. Scientists want their secrets

https://www.mbl.edu/news/jellyfish-can-heal-wounds-minutes-scientists-want-their-secrets
159•hhs•15h ago•36 comments

Claude Design System Prompt

https://github.com/Trystan-SA/claude-design-system-prompt
75•handfuloflight•5h ago•20 comments

Megawatts by Microwave

https://computer.rip/2026-07-04-microwave-and-power.html
44•eternauta3k•8h ago•4 comments

Artful Cats: Feline-Inspired Art and Artifacts

https://www.si.edu/spotlight/art-cats
62•jruohonen•3d ago•5 comments

Pi square is nearly 10

https://mihai.page/pi-square-is-10/
25•freediver•3h ago•18 comments

Command and Conquer Generals natively ported to macOS, iPhone, iPad using Fable

https://github.com/ammaarreshi/Generals-Mac-iOS-iPad/tree/main
608•asronline•18h ago•257 comments

Moby Dick Workout (2022)

https://www.hogbaysoftware.com/posts/moby-dick-workout/
63•helloplanets•9h ago•21 comments

Functional Programming in hica

https://www.hica.dev/docs/functional-programming/
31•cladamski79•3d ago•7 comments

Cannabis Users Face Substantially Higher Risk of Heart Attack (2025)

https://www.acc.org/about-acc/press-releases/2025/03/17/15/35/cannabis-users-face-substantially-h...
41•RickJWagner•2h ago•22 comments

Meta's Un-Stable Signature

https://hackerfactor.com/blog/index.php?/archives/1098-Metas-Un-Stable-Signature.html
112•ementally•3d ago•15 comments

Atomic Force Microscope [video]

https://www.youtube.com/watch?v=DyIQkqBXhS0
92•mhb•2d ago•9 comments

What ORMs have taught me: just learn SQL (2014)

https://wozniak.ca/blog/2014/08/03/1/index.html
231•ciconia•4d ago•264 comments

The Log is the Agent

https://arxiv.org/abs/2605.21997
65•iacguy•11h ago•19 comments

“Beyond the limit”: Satellites and mirrors in space pose threat to the night sky

https://www.eso.org/public/news/eso2607/
169•Breadmaker•20h ago•264 comments

About the Digital Art

https://www.tricivenola.com/about-the-digital-art/
20•NaOH•3d ago•3 comments

GPT-5.5 Codex reasoning-token clustering may be leading to degraded performance

https://github.com/openai/codex/issues/30364
324•maille•16h ago•124 comments

Intuitive Quantum Electrodynamics

https://forwardscattering.org/page/Intuitive%20Quantum%20Electrodynamics
10•Ono-Sendai•5h ago•0 comments

Return of the Nigerian Prince Redux: Beware Book Club and Book Review Scams (2025)

https://writerbeware.blog/2025/09/19/return-of-the-nigerian-prince-redux-beware-book-club-and-boo...
67•Anon84•13h ago•23 comments

My ASN Journey series (2024)

https://www.animmouse.com/p/my-asn-journey/
32•antonalekseev•9h ago•13 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)