frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Dutch governments builds alternative for Microsoft based on NixOS

https://www.dawo.community/en/
557•fjfaase•5h ago•291 comments

Platform-Independent SIMD in Go

https://go.dev/blog/simd-experiment
73•yurivish•2h ago•17 comments

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

https://github.com/git-bug/git-bug
73•alentred•2h ago•17 comments

Ink and Switch Interactive Homepage

https://www.inkandswitch.com/
86•iFreilicht•4h ago•14 comments

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

https://nyaa.sh/reviews/mac-mini-m6-emulation
137•hugh4life•6h ago•53 comments

Nobody Asked for a Crab Chair

https://newmobility.com/nobody-asked-for-a-crab-chair/
15•speckx•1h ago•14 comments

Topcoat is pushing the boundary of server applications with Rust

https://tokio.rs/blog/2026-09-24-topcoat-server-applications
49•sagacity•3h ago•33 comments

F-Droid 2.0

https://f-droid.org/2026/09/24/f-droid-2.0-a-new-chapter-for-android-freedom.html
1325•daveoc64•22h ago•380 comments

I'm Tired of Being on the Network

https://matduggan.com/im-tired-of-being-on-the-network/
68•sagacity•1h ago•56 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...
77•safateam•6h ago•18 comments

Show HN: Make cursed fonts like Times New Bastard

https://bastardica.mitpit.com
764•MitPitt•1d ago•102 comments

Boards of Casio

https://www.ambionix.com/blog/boards-of-casio/
23•fidotron•4h ago•5 comments

Amiga Screens: A Primer

https://www.datagubbe.se/amscr/
42•msephton•6h ago•8 comments

Special Projects (2016)

https://openai.com/index/special-projects/
41•vinhnx•4h ago•27 comments

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

https://github.com/devdotfast/whiteboard
344•sidharthkmenon•20h ago•124 comments

The Test

https://tante.cc/2026/09/24/the-test/
33•latexr•1h ago•3 comments

Why is the liver so weirdly regenerative?

https://dynomight.substack.com/p/liver
463•jbotz•21h ago•238 comments

2DWillNeverDie

https://2dwillneverdie.com/
273•surprisetalk•2d ago•68 comments

Silicon Valley 'sex assault list' with 'over 100' names circulated

https://nypost.com/2026/09/24/tech/silicon-valley-sex-assault-list-with-over-100-names-circulated...
46•Anon84•2h ago•26 comments

Show HN: Agentic CUDA Kernel Optimizer

https://github.com/bertaye/agentic-cuda-optimizer
23•bertaye•3h ago•2 comments

What About Rails?

https://jardo.dev/what-about-rails
135•jrochkind1•11h ago•78 comments

Rails World 2026 Opening Keynote [video]

https://www.youtube.com/watch?v=vDjW_dRyKXY
367•an0malous•1d ago•399 comments

The Mafia may be keeping fentanyl out of Italy

https://economist.com/europe/2026/09/24/the-mafia-may-be-keeping-fentanyl-out-of-italy
131•runeks•3h ago•155 comments

Fearless SIMD v1.0

https://linebender.org/blog/fearless-simd-1-0/
276•verdagon•3d ago•42 comments

Toyota is taking the Corolla electric

https://electrek.co/2026/09/23/toyota-best-selling-corolla-electric/
369•cisc•1d ago•655 comments

My weird new hobby: Wandering around Tokyo on Google Maps

https://ahmedhossamdev.com/writing/my-weird-new-hobby-wandering-around-tokyo/
362•ahmedhossamdev•2d ago•164 comments

Opus 5.5 is good at explainer videos

https://launchvideo.io
315•iacguy•17h ago•173 comments

Oracle on the hook to pay data centre investors even if site has no electricity

https://www.ft.com/content/a96bf05a-a299-4d6a-a753-b298dd0f4016
90•Betelbuddy•3h ago•77 comments

Using LLMs to trace alchemical knowledge and decode 17th century letters

https://resobscura.substack.com/p/ai-labs-need-to-start-funding-historical
146•benbreen•18h ago•31 comments

Two-tier encryption in the UK

https://macanorak.com/two-tier-encryption-in-the-uk/
478•ReturnoftheHack•1d ago•430 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)