frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Asahi Linux Progress Linux 7.0

https://asahilinux.org/2026/04/progress-report-7-0/
476•elisaado•7h ago•208 comments

Clay PCB Tutorial

https://feministhackerspaces.cargo.site/Clay-PCB-Tutorial
115•j0r0b0•2h ago•77 comments

GoDaddy Gave a Domain to a Stranger Without Any Documentation

https://anchor.host/godaddy-gave-a-domain-to-a-stranger-without-any-documentation/
40•jamesponddotco•1h ago•8 comments

Why SWE-bench Verified no longer measures frontier coding capabilities

https://openai.com/index/why-we-no-longer-evaluate-swe-bench-verified/
139•kmdupree•4h ago•96 comments

The Visible Zorker: Zork 1

https://eblong.com/infocom/visi/zork1/
25•PLenz•1h ago•0 comments

Dillo Browser Release 3.3.0

https://dillo-browser.org/release/3.3.0/
12•rodarima•1h ago•0 comments

Free Textbook on Engineering Thermodynamics

https://thermodynamicsbook.com/
40•2DcAf•3h ago•13 comments

Statecharts: hierarchical state machines

https://statecharts.dev/
230•sph•9h ago•68 comments

Amateur armed with ChatGPT solves an Erdős problem

https://www.scientificamerican.com/article/amateur-armed-with-chatgpt-vibe-maths-a-60-year-old-pr...
649•pr337h4m•1d ago•454 comments

Show HN: Turning a Gaussian Splat into a videogame

https://blog.playcanvas.com/turning-a-gaussian-splat-into-a-videogame/
148•yak32•3d ago•29 comments

Why has there been so little progress on Alzheimer's disease?

https://freakonomics.com/podcast/why-has-there-been-so-little-progress-on-alzheimers-disease/
360•chiefalchemist•18h ago•240 comments

GitHub unwanted UX change: issue links now open in a popup

https://github.com/orgs/community/discussions/192666
153•luckman212•4h ago•71 comments

Tell HN: An app is silently installing itself on my iPhone every day

451•_-x-_•17h ago•169 comments

USB Cheat Sheet (2022)

https://fabiensanglard.net/usbcheat/index.html
446•gwerbret•20h ago•80 comments

Sloppy Copies

https://www.markround.com/blog/2026/04/19/sloppy-copies/
12•dev_hugepages•2d ago•1 comments

The West forgot how to make things, now it’s forgetting how to code

https://techtrenches.dev/p/the-west-forgot-how-to-make-things
959•milkglass•12h ago•618 comments

GnuPG – post-quantum crypto landing in mainline

https://lists.gnupg.org/pipermail/gnupg-announce/2026q2/000504.html
139•zdkaster•15h ago•40 comments

QNX on the Commodore 900 – Raiders of the lost hard drive [video]

https://archive.fosdem.org/2025/schedule/event/fosdem-2025-5479-raiders-of-the-lost-hard-drive/
23•rbanffy•5h ago•0 comments

Mine, a Coalton and Common Lisp IDE

https://coalton-lang.github.io/20260424-mine/
76•Jach•2d ago•3 comments

Flickr: The first and last great photo platform

https://petapixel.com/2026/04/22/flickr-the-first-and-last-great-photo-platform/
249•Nrbelex•4d ago•139 comments

Mahjong: A Visual Guide

https://themahjong.guide/
174•iamwil•2d ago•49 comments

Exposing Floating Point – Bartosz Ciechanowski (2019)

https://ciechanow.ski/exposing-floating-point/
64•subset•11h ago•9 comments

Cheating at Tetris

https://chalkdustmagazine.com/features/cheating-at-tetris/
53•t-3•4d ago•20 comments

OpenAI Privacy Filter

https://openai.com/index/introducing-openai-privacy-filter/
274•tanelpoder•3d ago•59 comments

Using coding assistance tools to revive projects you never were going to finish

https://blog.matthewbrunelle.com/its-ok-to-use-coding-assistance-tools-to-revive-the-projects-you...
328•speckx•1d ago•210 comments

Terra API (YC W21) Hiring: Applied AI Strategist(Health Intelligence)

https://www.ycombinator.com/companies/terra-api/jobs/DY7BCZU-applied-ai-strategist-market-intelli...
1•kyriakosel•11h ago

The Free Universal Construction Kit

https://fffff.at/free-universal-construction-kit/
359•robinhouston•4d ago•83 comments

The route from Prussian military headquarters to Gary Gygax’s basement

https://asteriskmag.com/issues/14/shall-we-play-a-game
69•jger15•3d ago•11 comments

The Super Nintendo Cartridges (2024)

https://fabiensanglard.net/snes_carts/
145•offbyone42•18h ago•19 comments

Databases Were Not Designed for This

https://arpitbhayani.me/blogs/defensive-databases/
63•mooreds•1d ago•57 comments
Open in hackernews

Using Coalton to implement a quantum compiler (2022)

https://coalton-lang.github.io/20220906-quantum-compiler/
57•andsoitis•11mo ago

Comments

reikonomusha•11mo 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•11mo 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•11mo 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•11mo 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)