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
566•denysvitali•2h ago•540 comments

Play Store blocks AuroraStore, hurting GrapheneOS users

https://gitlab.com/AuroraOSS/AuroraStore/-/work_items/1566
394•erikvanoosten•4h ago•154 comments

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

https://www.norirobotics.com/
74•AntonioLi•2h ago•21 comments

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

https://danluu.com/zitron/
121•jatins•1h ago•90 comments

AnkiDroid: Google Play no longer allowing Open Collective donation link

https://github.com/ankidroid/Anki-Android/issues/21656
749•hexa555•10h ago•211 comments

Refurbishing a Tektronix TDS7104 Oscilloscope

https://tomverbeure.github.io/2026/08/23/Tektronix-TDS7104-Refurbishing.html
10•jwise0•30m ago•4 comments

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

https://github.com/carloslfu/slotstream
91•carloslfu•3h ago•62 comments

Ambient CSS v3 – Blender meets CSS

https://ambientcss.vercel.app/
136•kikkupico•4h ago•54 comments

Ask HN: Who is hiring? (September 2026)

152•whoishiring•5h ago•159 comments

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

https://moviescenemap.com/
84•Flightmussy•3h ago•21 comments

I trained a small transformer in 1.5hrs and it beats many LLMs

https://mvakde.github.io/blog/44-on-arc-1/
456•porridgeraisin•10h ago•134 comments

Magic eye tube

https://en.wikipedia.org/wiki/Magic_eye_tube
35•peter_d_sherman•3d ago•13 comments

Quill (YC W20) Is Hiring a Fullstack SWE

1•R_R•3h ago

Ask HN: Who wants to be hired? (September 2026)

39•whoishiring•5h ago•169 comments

The creator of Jujutsu has joined ERSC

https://ersc.io/blog/martin-joins-ersc
115•steveklabnik•2h ago•98 comments

How bicycle coaster brakes work (2018)

https://www.dougbarnesauthor.com/2018/06/how-bicycle-coaster-brakes-work.html
16•Vedor•3d ago•18 comments

American Airlines mechanic Azriel “Al” Blackman has died

https://simpleflying.com/american-airlines-mechanic-passes-away-100-record-80-years/
347•NaOH•2d ago•142 comments

The ChatGPT/Codex app bundles a full copy of LibreOffice

https://simonwillison.net/2026/Sep/1/codex-libreoffice/
5•timpera•18m ago•0 comments

Io_uring Without Readahead

https://frn.sh/io-uring/
95•porridgeraisin•7h ago•28 comments

Atlas: A World Model for Spatial Intelligence

https://www.worldlabs.ai/blog/atlas
72•johnsutor•2h ago•7 comments

Fastpotify

https://fastpotify.rocks/
778•nreece•17h ago•504 comments

There Is No AI

https://wadler.blogspot.com/2026/08/there-is-no-ai.html
17•speckx•2h ago•0 comments

Dr. Melvin Scheinman: 40th Anniversary of Catheter Ablation

https://ucsfhealthcardiology.ucsf.edu/facstaff/spotlight/dr-melvin-scheinman-40th-anniversary-cat...
52•efavdb•3d ago•13 comments

Specifications Don't Exist

https://www.galois.com/articles/specifications-dont-exist
5•surprisetalk•6d ago•0 comments

Physically Immutable Optical Archive Libraries

https://savartus.com/solutions/enterprise-laser-storage/
27•thunderbong•2d ago•11 comments

We are rebuilding Monica

https://www.monicahq.com/en/blog/we-are-rebuilding-monica/
87•robinhood•1d ago•58 comments

Dwarf Fortress' creator says the industry's in shambles over AI

https://www.pcgamer.com/gaming-industry/dwarf-fortress-creator-says-the-industrys-in-shambles-ove...
151•Limb•4h ago•131 comments

Introducing Ad Blocker for Firefox on iOS

https://blog.mozilla.org/en/firefox/ad-blocker-on-ios/
207•HieronymusBosch•6h ago•81 comments

Restroom Archive

https://restroomarchive.com
349•jcalx•17h ago•80 comments

Keenable SELECT: an agent that searches the web in SQL

https://keenableai.github.io/select-showcase/
46•phoenix120•4h ago•12 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)