frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Old and new apps, via modern coding agents by Terry Tao

https://terrytao.wordpress.com/2026/07/11/old-and-new-apps-via-modern-coding-agents/
189•subset•4h ago•47 comments

AI Boosts Research Careers but Flattens Scientific Discovery

https://spectrum.ieee.org/ai-science-research-flattens-discovery
40•zaikunzhang•1h ago•28 comments

Understanding the Odin Programming Language

https://odinbook.com/
57•AlexeyBrin•3h ago•16 comments

Gina Gallery of International Naive Art

https://www.ginagallery.com/
12•o4c•2h ago•3 comments

Ghostel.el: Terminal emulator powered by libghostty

https://dakra.github.io/ghostel/
110•signa11•6h ago•8 comments

Vint Cerf, a “father of the Internet”, is retiring

https://techcrunch.com/2026/06/30/the-father-of-the-internet-is-finally-retiring/
197•compiler-guy•2d ago•118 comments

Unauthenticated RCE in Motorola's MR2600 Router

https://mrbruh.com/motorola/
37•MrBruh•3h ago•10 comments

Yt-Dlp Sequence Diagrams

https://app.ilograph.com/demo.ilograph.yt-dlp/Download%2520a%2520YouTube%2520Video
85•billyp-rva•3h ago•20 comments

Show HN: Mindwalk – Replay coding-agent sessions on a 3D map of your codebase

https://github.com/cosmtrek/mindwalk
119•cosmtrek•9h ago•47 comments

Show HN: Only 1 of 4,356 reachable MCP servers is ready for the 2026-07-28 spec

https://github.com/Roee-Tsur/mcp-spec-check
16•roee_tsur•2h ago•5 comments

Mesh LLM: distributed AI computing on iroh

https://www.iroh.computer/blog/mesh-llm
301•tionis•16h ago•70 comments

Lessons from the Vasa Shipwreck

https://www.ft.com/content/200a6c44-9b66-4af3-82eb-98acb53898e4
10•bookofjoe•3d ago•7 comments

Ditching Zotero for a Text File

https://atthis.link/blog/2026/57207.html
23•speckx•5d ago•21 comments

Protobuf-py: Protobuf for Python, without compromises

https://buf.build/blog/protobuf-py
105•ming13•4d ago•27 comments

Satteri: A Markdown pipeline forged in Rust for the JavaScript world

https://satteri.bruits.org/
13•nateb2022•4d ago•0 comments

Nvidia, CoreWeave, and Nebius: Inside the Circular Financing of the GPU Boom

https://io-fund.com/ai-stocks/nvidia-coreweave-nebius-circular-financing-gpu-boom
322•adletbalzhanov•22h ago•137 comments

Xbox 'OG' Adventures

https://mamoniem.com/xbox-og-adventures/
29•davikr•5d ago•4 comments

An agent in 100 lines of Lisp

https://thebeach.dev/posts/lisp-agent/
195•jamiebeach•4d ago•55 comments

Handsum: An LQIP Image File Format

https://nigeltao.github.io/blog/2026/handsum.html
38•dmit•4d ago•4 comments

RISCBoy is an open-source portable games console, designed from scratch

https://github.com/Wren6991/RISCBoy
179•mariuz•17h ago•24 comments

Show HN: Ant – A JavaScript runtime and ecosystem

https://antjs.org
305•theMackabu•19h ago•135 comments

I Did Not Kill Stanley Lieber: How to Draw (With 9front)

https://triapul.cz/automa/i_did_not_kill_stanley_lieber
94•c-c-c-c-c•3d ago•33 comments

EF Core 11 makes your split queries faster

https://steven-giesel.com/blogPost/d4401fd0-805a-4703-9d9e-5fe3b57c25ea
61•rellem•1w ago•29 comments

Text art tools

https://hlnet.notion.site/text-art-tools
77•surprisetalk•4d ago•20 comments

Making Crash Bandicoot (2011)

https://all-things-andy-gavin.com/2011/02/02/making-crash-bandicoot-part-1/
25•alexpls•2h ago•1 comments

Mystery behind Moana: After 1,700 years, why did Polynesians suddenly sail east?

https://theconversation.com/the-real-mystery-behind-moana-after-1-700-years-why-did-polynesians-s...
24•pseudolus•3h ago•6 comments

Fibonacci's Real Mathematical Legacy

https://blogs.nature.com/aviewfromthebridge/2017/04/20/fibonaccis-mathematical-legacy/
23•ColinWright•4d ago•7 comments

UPI: Anatomy of a Payment Transaction

https://timeseriesofindia.com/economy/reads/upi-architecture/
217•prtk25•22h ago•103 comments

Modern decor may be straining people's brains

https://studyfinds.com/modern-decor-may-be-straining-peoples-brains/
244•downwithdisease•22h ago•234 comments

Jellyfish Undersea Roundabout

https://visitfaroeislands.com/en/plan-your-stay/getting-around/world-first-under-sea-roundabout
70•hydrogen7800•3d ago•24 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)