frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Om Malik has died

https://om.co/2026/06/24/1966-2026/
407•minimaxir•4h ago•40 comments

An entire Herculaneum scroll has been read for the first time

https://scrollprize.org/firstscroll
967•verditelabs•9h ago•216 comments

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

https://expression.fire.org/p/the-papers-please-era-of-the-internet
388•bilsbie•3h ago•173 comments

Un-0: Generating Images with Coupled Oscillators

https://unconv.ai/blog/introducing-un-0-generating-images-with-coupled-oscillators/
107•babelfish•4h ago•28 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
91•exploraz•2d ago•21 comments

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

https://gchandbook.org/
35•teleforce•2h ago•4 comments

Oxide computer 3D rack guided tour

https://explorer.oxide.computer/
290•darthcloud•3d ago•117 comments

IBM debuts sub-1 nanometer chip technology

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

An oral history of Bank Python (2021)

https://calpaterson.com/bank-python.html
71•tosh•5h ago•22 comments

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

https://github.com/inkeep/open-knowledge
199•engomez•9h ago•89 comments

Parallel Parentheses Matching

https://williamdue.github.io/blog/parallel-parentheses-matching
51•Athas•5h ago•8 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-...
14•scrlk•7h ago•7 comments

Show HN: Chess-Inspired Roguelike

https://princechazz.com
213•cowboy_henk•4d ago•73 comments

Migrating from Proxmox to NixOS and Incus

https://www.nijho.lt/post/proxmox-to-nixos/
44•wasting_time•4h ago•22 comments

OS9Map

https://yllan.org/software/OS9Map/
182•LaSombra•10h ago•29 comments

Zig's new bitCast semantics and LLVM back end improvements

https://ziglang.org/devlog/2026/#2026-06-25
213•kouosi•11h ago•85 comments

The Doorman's Fallacy in action

https://rozumem.xyz/posts/17
50•rozumem•5h ago•86 comments

Apple raises prices of MacBooks, iPads

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

Record type inference for dummies

http://haskellforall.com/2026/06/record-type-inference-for-dummies
9•g0xA52A2A•2d ago•0 comments

Experiments in Sports Seismology for the World Cup

https://pnsn.org/blog/experiments-in-sports-seismology-for-the-world-cup
5•jmward01•4d ago•0 comments

The last Romans are still around

https://signoregalilei.com/2026/06/20/the-last-romans-are-still-around/
36•surprisetalk•3d ago•60 comments

The annotated PyTorch training loop

https://idlemachines.co.uk/essays/pytorch-training-loop
60•smaddrellmander•3d ago•11 comments

Besimple AI (YC P25) Is Hiring

https://www.ycombinator.com/companies/besimple-ai/jobs/yWfhhOR-strategic-projects-lead-audio-data
1•yzhong94•8h ago

Military branches restore flu shot requirement after virus swept through base

https://arstechnica.com/health/2026/06/military-branches-restore-flu-shot-requirement-after-virus...
110•tzs•3h ago•46 comments

You can't unit test for taste

https://dev.karltryggvason.com/you-cant-unit-test-for-taste/
242•kalli•1d ago•117 comments

GloriousEggroll's Proton has been rebased on Proton 11

https://github.com/GloriousEggroll/proton-ge-custom/releases/tag/GE-Proton11-1
58•d3Xt3r•1d ago•24 comments

What is the mechanical world picture?

http://edwardfeser.blogspot.com/2026/06/what-is-mechanical-world-picture.html
10•danielam•2d ago•0 comments

Advanced Nintendo Entertainment System (ANES) – NES Modded to Use 2 PPUs

https://github.com/decrazyo/anes
99•zdw•2d ago•33 comments

The disappearance of Japan's animators

https://economist.com/interactive/1843/2026/06/19/the-strange-disappearance-of-japans-animators
145•andsoitis•4d ago•115 comments

Political bias in AI: Where the AI models stand

https://trakkr.ai/bias
118•mektrik•12h ago•235 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)