frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Om Malik has died

https://om.co/2026/06/24/1966-2026/
842•minimaxir•11h ago•94 comments

An entire Herculaneum scroll has been read for the first time

https://scrollprize.org/firstscroll
1262•verditelabs•16h ago•262 comments

Libre Barcode Project

https://graphicore.github.io/librebarcode/
122•luu•5h ago•9 comments

Why current LLM costs are not sustainable

https://aditya.patadia.org/p/ai-and-cloud-costs
8•adityapatadia•40m ago•0 comments

We All Depend on Open Source. We Will Defend It Together

https://akrites.org/letter/
45•dhruv3006•2h ago•15 comments

Framework's 10G Ethernet module exposes USB-C's complexity

https://www.jeffgeerling.com/blog/2026/framework-10g-ethernet-module-usb-c-complexity/
145•Alupis•7h ago•80 comments

What happened after 2k people tried to hack my AI assistant

https://www.fernandoi.cl/posts/hackmyclaw/
122•cuchoi•5h ago•48 comments

The 'papers, please' era of the internet will decimate your privacy

https://expression.fire.org/p/the-papers-please-era-of-the-internet
666•bilsbie•10h ago•312 comments

The Garbage Collection Handbook: The Art of Automatic Memory Management (2nd Ed) (2023)

https://gchandbook.org/
131•teleforce•9h ago•21 comments

A game where you're an OS and have to manage processes, memory and I/O events

https://github.com/plbrault/youre-the-os
190•exploraz•2d ago•34 comments

Oxide computer 3D rack guided tour

https://explorer.oxide.computer/
359•darthcloud•3d ago•146 comments

IBM debuts sub-1 nanometer chip technology

https://newsroom.ibm.com/2026-06-25-ibm-debuts-worlds-first-sub-1-nanometer-chip-technology
309•porridgeraisin•16h ago•168 comments

Why are we so obsessed with lawns?

https://www.gardensillustrated.com/features/the-history-of-lawns
24•andsoitis•4h ago•33 comments

Doing a masters while working in Spain

https://jan-herlyn.com/blog/doing-a-masters-while-working/
39•MHard•4d ago•16 comments

Micron locks in historically high memory prices for five years

https://www.theregister.com/systems/2026/06/25/micron-locks-in-historically-high-memory-prices-fo...
35•fauigerzigerk•1h ago•16 comments

Un-0: Generating Images with Coupled Oscillators

https://unconv.ai/blog/introducing-un-0-generating-images-with-coupled-oscillators/
144•babelfish•11h ago•34 comments

Apple to skip high-end M6 Mac chips in favor of AI-focused M7 line

https://www.bloomberg.com/news/articles/2026-06-25/apple-to-skip-high-end-m6-mac-chips-to-launch-...
239•scrlk•14h ago•217 comments

Show HN: OpenKnowledge – open source AI-first alternative to Obsidian/Notion

https://github.com/inkeep/open-knowledge
264•engomez•16h ago•130 comments

SOCKMAP - TCP splicing of the future

https://blog.cloudflare.com/sockmap-tcp-splicing-of-the-future/
8•zdw•5d ago•2 comments

22-year-old Mozart's handwritten notebook unearthed in 'major discovery'

https://www.classicfm.com/composers/mozart/handwritten-notebook-discovered-major-paris/
32•thunderbong•5d ago•2 comments

Show HN: Chess-Inspired Roguelike

https://princechazz.com
282•cowboy_henk•5d ago•94 comments

The Doorman's Fallacy in action

https://rozumem.xyz/posts/17
106•rozumem•12h ago•145 comments

An oral history of Bank Python (2021)

https://calpaterson.com/bank-python.html
107•tosh•12h ago•33 comments

OS9Map

https://yllan.org/software/OS9Map/
221•LaSombra•17h ago•43 comments

Eyewitness at the Triangle (1911)

http://trianglefire.ilr.cornell.edu/index.html
22•NaOH•3d ago•1 comments

Apple raises prices of MacBooks, iPads

https://www.reuters.com/world/asia-pacific/apple-raises-prices-macbooks-ipads-memory-costs-skyroc...
707•virgildotcodes•19h ago•1015 comments

Zig's new bitCast semantics and LLVM back end improvements

https://ziglang.org/devlog/2026/#2026-06-25
235•kouosi•18h ago•119 comments

Parallel Parentheses Matching

https://williamdue.github.io/blog/parallel-parentheses-matching
83•Athas•12h ago•10 comments

Hey Nico, you didn't vibe code your data room but stole it from Papermark

https://twitter.com/mfts0/status/2070080422482977095
310•mmunj•20h ago•129 comments

The last Romans are still around

https://signoregalilei.com/2026/06/20/the-last-romans-are-still-around/
87•surprisetalk•3d ago•105 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)