frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: I replaced a $120k bowling center system with $1,600 in ESP32s

1583•section33•11h ago•172 comments

Claude Code uses Bun written in Rust now

https://simonwillison.net/2026/Jul/19/claude-code-in-bun-in-rust/
397•tosh•16h ago•560 comments

The Zen of Parallel Programming

https://smolnero.com/posts/the-zen-of-parallel-programming
115•edgar_ortega•5d ago•13 comments

What I learned selling 2,500 MIDI recorders: Hardware is not so hard

https://chipweinberger.com/articles/20260719-hardware-is-not-so-hard
407•chipweinberger•15h ago•196 comments

Biggest Probabilistic Computer Turns Noise into Answers

https://spectrum.ieee.org/biggest-probabilistic-computer
39•rbanffy•4h ago•6 comments

Minecraft: Java Edition now uses SDL3

https://www.minecraft.net/en-us/article/minecraft-26-3-snapshot-4
274•ObviouslyFlamer•14h ago•183 comments

A new Intel Itanium (IA-64) emulator that boots Windows

https://raymii.org/s/blog/Intel_Itanium_IA-64-Emulator_that_boots_Windows.html
49•jandeboevrie•5h ago•34 comments

Talk: The Art of Braiding Algorithms

https://pgadey.ca/notes/talk-relatorium-2026/
23•surprisetalk•4d ago•0 comments

Who Is America's Homer?

https://www.plough.com/articles/who-is-americas-homer
38•samclemens•5d ago•82 comments

OpenAI reduces Codex Model Context Size from 372k to 272k

https://github.com/openai/codex/pull/33972/files
321•AmazingTurtle•18h ago•151 comments

Bananas sprout in Rayleigh Garden UK after 15 years

https://www.bbc.com/news/articles/cvg8edqq5g5o
126•teleforce•12h ago•89 comments

HomeLab #1: MikroTik as a Home Router

https://justsomebody.dev/blog/mikrotik-home-router
68•rafal_opilowski•7h ago•52 comments

Orion Browser by Kagi

https://orionbrowser.com/
60•sebjones•7h ago•64 comments

11,700 Free Photos from John Margolies' Archive of Americana Architecture

https://www.openculture.com/2026/07/free-photos-from-john-margolies-archive-of-americana-architec...
31•gslin•4d ago•2 comments

Qwen 3.8

https://twitter.com/Alibaba_Qwen/status/2078759124914098291
793•nh43215rgb•17h ago•557 comments

AI advice made people less accurate but more confident – sudy

https://thenextweb.com/news/ai-advice-suppresses-critical-thinking-wrong-answers-study
281•rbanffy•5h ago•159 comments

C64 Basic Dungeon Crawler: Goblin Attack (C64 Basic Part 8)

https://retrogamecoders.com/c64-basic-dungeon-part8/
60•ibobev•11h ago•4 comments

HMD Touch 4G

https://www.hmd.com/en_int/hmd-touch-4g
59•thisislife2•8h ago•61 comments

Cagire: Live Coding in Forth

https://cagire.raphaelforment.fr
78•surprisetalk•1w ago•11 comments

Dupes took over the world

https://www.vox.com/podcasts/493930/dupe-culture-fender-ugg-quince-tiktok-amazon-online-shopping
62•gumby•5d ago•54 comments

I joined the IndieWeb, here's what I learned

https://en.andros.dev/blog/0b8e451e/i-joined-the-indieweb-heres-what-i-learned/
155•andros•15h ago•85 comments

We want Texans to know their rights

https://www.eff.org/deeplinks/2026/07/we-want-texans-know-their-rights-qa-mayday-health-impact-su...
136•amarcheschi•4h ago•42 comments

I burned all my tokens researching how to save tokens

https://quesma.com/blog/custom-deep-research-pipeline/
98•bkotrys•14h ago•131 comments

Ise Jingu and the Pyramid of Enabling Technologies (2021)

https://www.scopeofwork.net/ise-jingu-and-the-pyramid-of-enabling-technologies/
7•NaOH•4d ago•4 comments

The Anti-Palantir Manifesto

https://nonogra.ph/the-anti-palantir-manifesto-07-20-2026
11•arkhiver•1h ago•0 comments

Natural experiments prove phytoplankton carbon removal works

https://www.onepercentbrighter.com/p/natural-experiments-prove-feeding
48•getnormality•11h ago•22 comments

Terence McKenna's Mega Bad Trip (2025)

https://psychedelics.community/cultural-icons/terence-mckennas-mega-bad-trip
65•Dimmiwoah•11h ago•66 comments

UnifiedIR for Julia

https://github.com/JuliaLang/julia/pull/62334
81•vimarsh6739•1d ago•16 comments

Ollama: All Aboard Open Models

https://ollama.com/blog/all-aboard-open-models
108•inferhaven•18h ago•45 comments

The death and rebirth of my home server

https://sgt.hootr.club/blog/home-server-rebirth/
126•steinuil•15h ago•81 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)