frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ollaya – Ollama for open-source, Jev-style decision models

https://ollaya.dev/
186•Ardakilic•2h ago•48 comments

Show HN: Jev Plays Pokémon Red

https://jev-pokemon.vercel.app/
58•pancomplex•6h ago•34 comments

Platform-independent SIMD in Go

https://go.dev/blog/simd-experiment
320•yurivish•9h ago•122 comments

Git-bug: Distributed, offline-first bug tracker embedded in Git

https://github.com/git-bug/git-bug
262•alentred•9h ago•90 comments

First Principles Thinking

https://sunilsadasivan.com/writing/first-principles-thinking/
175•sunils34•7h ago•75 comments

U.S. appeals court upholds designation of Anthropic as supply chain risk

https://www.cnbc.com/2026/09/25/pentagon-anthropic-ai-risk-appeals-court.html
302•cramer4next•5h ago•485 comments

Alan Kay: Shannon gave us a way of dealing with noisy channels [video]

https://www.youtube.com/watch?v=Cjntrqhn8pk
89•behoove•2h ago•17 comments

Bug: Border radius has infected VSCode editor

https://github.com/microsoft/vscode/issues/338035
32•2Ucoder•1h ago•15 comments

Show HN: Make math automatic with Mathy

https://gmays.com/making-math-automatic-with-mathy/
43•gmays•4d ago•3 comments

Advice to a Beginning Graduate Student (2001)

https://www.cs.cmu.edu/~mblum/research/pdf/grad.html
36•nicoraga•1h ago•10 comments

Pentium II at 600Mhz with Voodoo 3 Emulated on 86Box with M6 Mac Mini

https://nyaa.sh/reviews/mac-mini-m6-emulation
250•hugh4life•13h ago•107 comments

Meta's Muse appears to use an OpenAI model labeled muse-special

https://mouse.dev/blog/muse-special/
68•Aeroi•2h ago•28 comments

How video games inspire great UX (2019)

https://jenson.org/games/
58•andsoitis•5d ago•6 comments

Ink and Switch interactive homepage

https://www.inkandswitch.com/
207•iFreilicht•11h ago•25 comments

Bwbach, My Guardian Goblin

https://robertmay.photography/journal/bwbach-my-guardian-goblin
14•robotmay•3d ago•6 comments

Rising sea destroys homes, erases beaches in California

https://www.reuters.com/business/environment/rising-sea-destroys-homes-erases-beaches-california-...
16•geox•52m ago•13 comments

Factorio that you can touch

https://factorio.com/blog/post/fff-447
266•ibobev•6h ago•78 comments

Amiga Screens: A Primer

https://www.datagubbe.se/amscr/
111•msephton•13h ago•30 comments

Letterboxd Is Up for Sale, and A24, Sony and the New York Times Are Bidding

https://www.worldofreel.com/blog/2026/9/24/letterboxd-is-up-for-sale-and-a24-sony-and-the-new-yor...
36•crossroadsguy•1h ago•12 comments

A History of the Chiming Machines at Gloucester's Cathedral and Churches (2017) [pdf]

https://www.bgas.org.uk/tbgas_bg/v135/251-268-MacKechnie-Jarvis.pdf
8•dvt•5d ago•1 comments

Show HN: Whiteboard (YC W26) – An open-source IDE for thoughtful software design

https://github.com/devdotfast/whiteboard
388•sidharthkmenon•1d ago•128 comments

Show HN: Doom or Bloom, map your AI worldview

https://www.doom-or-bloom.com
37•transitivebs•4h ago•29 comments

What About Rails?

https://jardo.dev/what-about-rails
280•jrochkind1•18h ago•181 comments

What happens when you analyze your favorite college football team like the CIA?

https://www.cultivatelabs.com/posts/what-happens-when-you-analyze-college-football-like-the-cia
15•adam•7h ago•9 comments

Typst makes big strides

https://lwn.net/Articles/1092993/
66•leephillips•4h ago•9 comments

Why is the liver so weirdly regenerative?

https://dynomight.substack.com/p/liver
540•jbotz•1d ago•273 comments

CVE-2025-13032: Entering and Breaking the Avast Antivirus Sandbox Part 2

https://www.safateam.com/intelligence-hub/research/technical-articles/cve-2025-13032-entering-and...
106•safateam•14h ago•27 comments

Boards of Casio

https://www.ambionix.com/blog/boards-of-casio/
100•fidotron•11h ago•33 comments

Astronomer watches Starlink satellites sinking to build a 'planetary barometer'

https://www.theregister.com/science/2026/09/25/astronomer-watches-starlink-satellites-sinking-to-...
31•whh•2h ago•10 comments

Rails World 2026 Opening Keynote [video]

https://www.youtube.com/watch?v=vDjW_dRyKXY
421•an0malous•2d ago•467 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)