frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Xiaomi MiMo v2.6

https://mimo.xiaomi.com/mimo-v2-6
614•volf_•7h ago•310 comments

Spymarks, Not Watermarks

https://brand.io/article/spymarks/
182•possibilistic•4h ago•38 comments

I don't want to read what you didn't write

https://blog.colinbreck.com/i-dont-want-to-read-what-you-didnt-write/
368•mooreds•4h ago•125 comments

What Sun got wrong

https://bcantrill.dtrace.org/2026/09/20/what-sun-got-wrong/
521•chmaynard•13h ago•307 comments

Transformers Explained Visually

https://poloclub.github.io/transformer-explainer/
233•aray07•7h ago•39 comments

Attention is all you have

https://alicegg.tech/2026/09/21/attention
613•zer0tonin•13h ago•186 comments

NASA’s Mars Sample Return mission is dead

https://www.science.org/content/article/nasa-s-mars-sample-return-mission-dead
327•Muhammad523•8h ago•263 comments

AI coding has made CI a bottleneck, so we reworked ours to keep up

https://linear.app/now/ci-bottleneck-reworked
160•julian_digital•8h ago•172 comments

Robin Williams' Daughter to Fans Creating AI Videos: 'Have Some Shame'

https://variety.com/2026/film/news/robin-williams-daughter-ai-videos-1236871568/
69•CharlesW•2h ago•30 comments

Claude Status – Elevated errors for multiple models

https://status.claude.com/incidents/7g1qpkyz5gxh
73•corvad•2h ago•58 comments

Divide by depth for instant 3D

https://gabrieloc.com/2026/09/15/perspective.html
95•gabrieloc•2d ago•14 comments

Looking forward to Git 2.56 – and 3.0

https://lwn.net/SubscriberLink/1094575/2385e98583715c2b/
48•chmaynard•4h ago•12 comments

Socrates vs. the Written Word (2011)

https://wondermark.com/socrates-vs-writing/
16•spectraldrift•3h ago•3 comments

The Advisory Group on Mathematics and Artificial Intelligence

https://terrytao.wordpress.com/2026/09/21/advisory-group-on-mathematics-and-artificial-intelligence/
99•digital55•8h ago•47 comments

More Floating Point Alternatives

https://wizardzines.com/comics/floating-point-alternatives/
13•vismit2000•2d ago•7 comments

Paper Models of Polyhedra

https://www.polyhedra.net/en/
9•pykello•2d ago•0 comments

Copper-Rs: Live Telemetry Deterministic Twins for Robots

https://www.copper-robotics.com/whats-new/copper-12-live-telemetry-and-replayable-logs-over-a-los...
5•gbin•2d ago•1 comments

Truman World

https://trumanworld.live
5•trollied•1d ago•7 comments

How do traffic signals work? (2019)

https://practical.engineering/blog/2019/5/11/how-do-traffic-signals-work
66•at1as•11h ago•48 comments

Frontier AI on Your Own Hardware

https://timdettmers.com/2026/09/21/dlab-open-source-week/
114•pretext•8h ago•59 comments

First Shader from Zero in Godot 4

https://www.gdquest.com/library/first_shader_godot4_portal/
38•ibobev•16h ago•6 comments

Turn off and restrict access to Apple Intelligence features on Mac

https://support.apple.com/guide/mac-help/turn-restrict-access-apple-intelligence-mchlb2e44f94/mac
257•alwillis•9h ago•172 comments

Grok 4.7

https://x.ai/news/grok-4-7
519•meetpateltech•11h ago•434 comments

Kev: Tiny Jev-like family of decision models built on top of Qwen3.5

https://github.com/jaredpalmer/kev/tree/main
413•tosh•20h ago•188 comments

HERMES radio enables voice and data communication over vast distances

https://spectrum.ieee.org/hermes-shortwave-radio-digital-data
108•SamuraiLion•11h ago•45 comments

Python Workers are now generally available

https://blog.cloudflare.com/python-workers-ga/
193•torutofu•13h ago•32 comments

Why does mathmain need an encrypted loader?

https://safedep.io/mathmain-encrypted-loader/
115•abhisek•8h ago•34 comments

Apple Copland D11E4 Booting in the Browser

https://www.pagetable.com/300
106•luu•9h ago•32 comments

Roboharm: Do frontier robot policies refuse unsafe instructions?

https://robocurve.org/roboharm/
37•msadowski•8h ago•21 comments

TXR: An Original, New Programming Language for Convenient Data Munging

https://www.nongnu.org/txr/
24•andsoitis•22h ago•3 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)