frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Astra and Fable still hack on simple variants of alignment evals from 2025

https://www.lesswrong.com/posts/munJKF7iWMsWJLAH2/astra-and-fable-still-hack-on-simple-variants-o...
169•Levitating•2h ago•61 comments

CUDA for AMD on Windows

https://github.com/Speedstu/CUDA-for-AMD-Windows
58•chiassedu80•2h ago•10 comments

JetKVM Mini

https://jetkvm.com/blog/introducing-jetkvm-mini
390•taubek•9h ago•152 comments

Why is the x86 undefined instruction called ud2? Why 2?

https://devblogs.microsoft.com/oldnewthing/20260910-00/?p=112689
77•ibobev•4h ago•27 comments

Cpak – OCI application package format for Linux desktops, servers and devices

https://cpak.it/
18•xlmnxp•2h ago•4 comments

Garry Tan wants US open-weight AI labs to 'distill' frontier models, too

https://techcrunch.com/2026/09/11/y-combinators-garry-tan-wants-u-s-open-weight-ai-labs-to-distil...
94•TheJCDenton•1h ago•35 comments

Reverse engineering my e-scooter and rewriting the firmware in Rust

https://bensimms.moe/reverse-engineering-scooter/
171•vinhnx•3d ago•51 comments

Libraries Run Rust Inside Python (With PyO3)

https://belderbos.dev/blog/how-libraries-run-rust-inside-python/
25•lumpa•2h ago•21 comments

'Fingerprints' inside the Sun could reveal if it once swallowed a planet

https://ras.ac.uk/news-and-press/research-highlights/fingerprints-inside-sun-could-reveal-if-it-o...
79•blincoln•5h ago•25 comments

Making Startups Powerful

https://paulgraham.com/powerful.html
33•tosh•3h ago•18 comments

Why are AI agents lying, cheating and coordinating?

https://yoshuabengio.org/en/publication/why-are-ai-agents-lying-cheating-and-coordinating
479•jonifico•16h ago•558 comments

Alan's Random Insult Generator (1999)

https://alanbellows.com/experiments/insult/index.html
25•DamnInteresting•2d ago•15 comments

David Sacks: OpenAI and Anthropic Don't Need Regulations to Pace Frontier Models

https://twitter.com/DavidSacks/status/2098973625252708460
24•kolanos•32m ago•2 comments

TailTalk: A modern async user space AppleTalk stack with Rust and Tokio

https://github.com/FeralFirmware/TailTalk/
47•zdw•17h ago•13 comments

Predictive intelligence to anticipate anything.

https://prior.chat/
14•onemarkos•2h ago•16 comments

Homebrew 7.0.0

https://brew.sh/2026/09/13/homebrew-7.0.0/
419•mikemcquaid•8h ago•160 comments

Aligned to whom?

https://hyperbo.la/w/aligned-to-whom/
151•lopopolo•14h ago•89 comments

Make your first edit to OpenStreetMap

https://high5apps.github.io/josm-plugin-website-wizard/
556•juliantigler•1d ago•136 comments

Ask HN: How can I browse HN in dark mode?

5•herodoturtle•6m ago•3 comments

Base84 deserves a place in file names

https://00f.net/2026/09/09/base84/
36•kevvok•2d ago•24 comments

Romania soccer introduces black card to 'combat abusive behaviour' from parents

https://www.nytimes.com/athletic/7586821/2026/09/12/football-black-card-referee/
5•thunderbong•16m ago•0 comments

On Binary Translation and Its Consequences

https://chipsandcheese.com/p/on-binary-translation-and-its-consequences
31•matt_d•2d ago•14 comments

Key symbols we lost to time, pt. 1: The PC side

https://unsung.aresluna.org/key-symbols-we-lost-to-time-pt-1-the-pc-side/
43•leephillips•3h ago•12 comments

A Brief Retrospective on the Sprite Network Operating System

https://github.com/OSPreservProject/sprite/blob/master/sprite.txt
6•EvanAnderson•1d ago•3 comments

The Interim Computer Museum

https://icm.museum/
153•mulmen•14h ago•21 comments

I Added a Non-Wi-Fi Mitsubishi AC to Home Assistant

https://medium.com/@ivangomezarnedo/how-i-added-a-non-wi-fi-mitsubishi-ac-to-home-assistant-22770...
146•ichacas•3d ago•69 comments

Revolut confirms customer data breach through fake government requests

https://techcrunch.com/2026/09/12/revolut-confirms-customer-data-breach-through-fake-government-r...
145•tdrz•7h ago•99 comments

Apple iPod Engraver (2019)

https://dunstanorchard.com/apple-ipod-engraver/
269•NaOH•4d ago•71 comments

Don't be the out of touch Kung Fu master

https://twitter.com/ID_AA_Carmack/status/2098443262214230095
223•dsubburam•19h ago•310 comments

US Customs supervisor busted for stealing hardware from Homeland Security PCs

https://www.tomshardware.com/pc-components/us-customs-supervisor-busted-for-stealing-core-i7-cpus...
92•Levitating•4h ago•75 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)