frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Claude Fable 5.1 and Claude Mythos 5.1

https://www.anthropic.com/claude-fable-and-mythos-5-1
1018•denysvitali•10h ago•950 comments

How accurate have Ed Zitron's AI skeptic predictions been?

https://danluu.com/zitron/
520•jatins•9h ago•610 comments

True Rate of Unemployment

https://www.lisep.org/tru
37•ptrhvns•2h ago•2 comments

WebFPGA

https://webfpga.io/
8•gurjeet•27m ago•2 comments

The efficient frontier of LLM inference

https://www.baseten.co/blog/the-efficient-frontier-of-llm-inference/
65•philipkiely•4h ago•11 comments

My local model setup on an M4 Pro Mac Mini

https://lws.io/blog/my-local-model-setup/
105•raybb•5h ago•52 comments

FBI Probes Service Selling 153M+ Drivers Licenses

https://krebsonsecurity.com/2026/09/fbi-probes-service-selling-153m-drivers-licenses/
81•tatersolid•5h ago•19 comments

Show HN: Weedout – Safari extension that hides YouTube AI-labeled videos

https://masteranza.github.io/weedout/
85•masteranza•6h ago•25 comments

Introducing Ad Blocker for Firefox on iOS

https://blog.mozilla.org/en/firefox/ad-blocker-on-ios/
356•HieronymusBosch•14h ago•118 comments

Fine, I'll build my own text editor

https://dbushell.com/2026/09/01/text-editor/
7•Alephinitesimal•11h ago•2 comments

Sonic Pi

https://sonic-pi.net/
65•Bluestein•4d ago•9 comments

The ChatGPT/Codex app bundles a full copy of LibreOffice

https://simonwillison.net/2026/Sep/1/codex-libreoffice/
296•timpera•8h ago•132 comments

The creator of Jujutsu has joined ERSC

https://ersc.io/blog/martin-joins-ersc
205•steveklabnik•10h ago•153 comments

Launch HN: Nori Robotics (YC S26) – A low-cost humanoid robot for development

https://www.norirobotics.com/
125•AntonioLi•10h ago•42 comments

Path to Astra: critical capabilities and frontier safeguards

https://openai.com/index/path-to-astra/
106•jithinraj•8h ago•49 comments

Ambient CSS v3 – Blender meets CSS

https://ambientcss.vercel.app/
218•kikkupico•12h ago•69 comments

Show HN: HN Match Maker – Matching "Who Wants to Be Hired?" With "Who's Hiring?"

https://hnmatchmaker.com/
56•all2•7h ago•29 comments

Building Autonomous Goal Loops That Deliver

https://jx0.ca/building-autonomous-goal-loops-that-deliver/
26•jarredkenny•3d ago•3 comments

Movie Scene Map – 13,312 films, series, games, anime and manga

https://moviescenemap.com/
178•Flightmussy•11h ago•29 comments

Refurbishing a Tektronix TDS7104 Oscilloscope

https://tomverbeure.github.io/2026/08/23/Tektronix-TDS7104-Refurbishing.html
100•jwise0•8h ago•48 comments

Laurie Anderson’s next manuscript to be locked away for 88 years

https://www.theguardian.com/books/2026/aug/29/laurie-anderson-manuscript-88-years-future-library-...
21•mitchbob•3d ago•8 comments

Forgotten History of Small Nuclear Reactors (2015)

https://spectrum.ieee.org/the-forgotten-history-of-small-nuclear-reactors
12•derriz•4d ago•0 comments

Show HN: Running 104GB Qwen3.8-Flash-Next on 48GB Mac with at ~12 tok/s

https://github.com/carloslfu/slotstream
175•carloslfu•11h ago•90 comments

Building an interactive instrument for a one-of-a-kind festival

https://benholmen.com/blog/halfmoon-chimes/
25•tjwds•4d ago•3 comments

Ask HN: Who is hiring? (September 2026)

201•whoishiring•13h ago•217 comments

Solving the Flat Cube

https://mathenchant.wordpress.com/2026/08/19/solving-the-flat-cube/
14•surprisetalk•1d ago•2 comments

Atlas: A World Model for Spatial Intelligence

https://www.worldlabs.ai/blog/atlas
176•johnsutor•10h ago•42 comments

Quill (YC W20) Is Hiring a Fullstack SWE

1•R_R•11h ago

Play Store blocks AuroraStore, hurting GrapheneOS users

https://gitlab.com/AuroraOSS/AuroraStore/-/work_items/1566
483•erikvanoosten•12h ago•203 comments

Magic eye tube

https://en.wikipedia.org/wiki/Magic_eye_tube
88•peter_d_sherman•3d ago•23 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)