frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Deterministic Fully-Static Whole-Binary Translation Without Heuristics

https://arxiv.org/abs/2605.08419
123•matt_d•3h ago•23 comments

Restore full BambuNetwork support for Bambu Lab printers

https://github.com/FULU-Foundation/OrcaSlicer-bambulab
374•Murfalo•9h ago•164 comments

The vi family

https://lpar.ATH0.com/posts/2026/05/the-vi-family/
122•hggh•6d ago•56 comments

Googlebook

https://googlebook.google/
745•tambourine_man•14h ago•1241 comments

Show HN: Needle: We Distilled Gemini Tool Calling into a 26M Model

https://github.com/cactus-compute/needle
419•HenryNdubuaku•13h ago•144 comments

AluminiumOS, by Google: Android Reimagined for the Desktop

https://aluminium-os.com/
6•brysonreece•10m ago•2 comments

How to make your text look futuristic (2016)

https://typesetinthefuture.com/2016/02/18/futuristic/
315•_vaporwave_•11h ago•36 comments

Kraftwerk's radical 1976 track

https://www.bbc.com/culture/article/20260511-kraftwerks-radical-1976-track-radioactivity-became-a...
135•tcp_handshaker•8h ago•67 comments

CERT is releasing six CVEs for serious security vulnerabilities in dnsmasq

https://lists.thekelleys.org.uk/pipermail/dnsmasq-discuss/2026q2/018471.html
301•chizhik-pyzhik•13h ago•143 comments

Why senior developers fail to communicate their expertise

https://www.nair.sh/guides-and-opinions/communicating-your-expertise/why-senior-developers-fail-t...
529•nilirl•16h ago•225 comments

European governments: 3.000 tracking sites, 1.000 phpMyAdmins, and 99% poorly

https://internetcleanup.foundation/2026/05/european-governments-3000-tracking-sites-1000-phpmyadm...
5•aequitas•32m ago•2 comments

Traceway: MIT-licensed observability stack you can self-host in ~90s

https://github.com/tracewayapp/traceway
82•sebakubisz•2d ago•5 comments

My graduation cap runs Rust

https://ericswpark.com/blog/2026/2026-05-12-my-graduation-cap-runs-rust/
141•ericswpark•7h ago•39 comments

Rendering the Sky, Sunsets, and Planets

https://blog.maximeheckel.com/posts/on-rendering-the-sky-sunsets-and-planets/
462•ibobev•18h ago•38 comments

When "idle" isn't idle: how a Linux kernel optimization became a QUIC bug

https://blog.cloudflare.com/quic-death-spiral-fix/
76•sbulaev•7h ago•5 comments

Quack: The DuckDB Client-Server Protocol

https://duckdb.org/2026/05/12/quack-remote-protocol
266•aduffy•13h ago•53 comments

Referer Reality

https://www.robinsloan.com/lab/referer/
34•tobr•2d ago•9 comments

Scrcpy v4.0

https://github.com/Genymobile/scrcpy/releases/tag/v4.0
135•xnx•10h ago•21 comments

The Future of Obsidian Plugins

https://obsidian.md/blog/future-of-plugins/
360•xz18r•15h ago•137 comments

I made rust's cargo copy but for CPP

https://github.com/user-with-username/crow
4•anybodyy•2d ago•1 comments

Up in Smoke

https://thebaffler.com/odds-and-ends/the-profession-that-does-not-exist-symposium
12•NaOH•2d ago•0 comments

Tell NYT, Atlantic, USA Today to keep Wayback Machine

https://www.savethearchive.com/newsleaders/
303•doener•8h ago•84 comments

Reimagining the mouse pointer for the AI era

https://deepmind.google/blog/ai-pointer/
188•devhouse•14h ago•160 comments

Fc, a lossless compressor for floating-point streams

https://github.com/xtellect/fc
55•enduku•2d ago•11 comments

Starship V3

https://www.spacex.com/updates#starship-v3
198•fprog•6h ago•263 comments

As researchers age, they produce less disruptive work

https://nautil.us/is-this-why-science-advances-one-funeral-at-a-time-1280650
56•Brajeshwar•14h ago•55 comments

Lanzaboote – NixOS Secure Boot

https://x86.lol/generic/2022/11/26/lanzaboote.html
83•evilmonkey19•3d ago•7 comments

Show HN: Agentic interface for mainframes and COBOL

https://www.hypercubic.ai/hopper
69•sai18•14h ago•39 comments

Bambu Lab is abusing the open source social contract

https://www.jeffgeerling.com/blog/2026/bambu-lab-abusing-open-source-social-contract/
1219•rubenbe•16h ago•387 comments

Launch HN: Voker (YC S24) – Analytics for AI Agents

https://voker.ai
51•ttpost•15h ago•19 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)