frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Anthropic acquires Stainless

https://www.anthropic.com/news/anthropic-acquires-stainless
243•tomeraberbach•3h ago•176 comments

Hyperpolyglot Lisp: Common Lisp, Racket, Clojure, Emacs Lisp

https://hyperpolyglot.org/lisp
53•veqq•1h ago•6 comments

We stopped AI bot spam in our GitHub repo using Git's –author flag

https://archestra.ai/blog/only-responsible-ai
331•ildari•5h ago•160 comments

We let AIs run radio stations

https://andonlabs.com/blog/andon-fm
59•lukaspetersson•2h ago•53 comments

Elon Musk has lost his lawsuit against Sam Altman and OpenAI

https://techcrunch.com/2026/05/18/elon-musk-has-lost-his-lawsuit-against-sam-altman-and-openai/
538•nycdatasci•3h ago•264 comments

Show HN: Files.md – Open-source alternative to Obsidian

https://github.com/zakirullin/files.md
438•zakirullin•7h ago•235 comments

The Quiet Renovation at Bitwarden

https://blog.ppb1701.com/the-quiet-renovation-at-bitwarden
383•DaSHacka•2d ago•178 comments

No More JetBrains Products for Me

https://matthewkosarek.xyz/posts/jetbrains/
8•matthewkosarek•28m ago•0 comments

Agora-1: The Multi-Agent World Model

https://odyssey.ml/introducing-agora-1
39•olivercameron•2h ago•9 comments

The FBI Wants to Buy Nationwide Access to License Plate Readers

https://www.404media.co/the-fbi-wants-to-buy-nationwide-access-to-license-plate-readers/
72•cdrnsf•1h ago•23 comments

Show HN: We missed Winamp, so we built an audio player for macOS

https://www.advanced-research.net/180db
23•surganov•1h ago•14 comments

Cutting inference cold starts by 40x with LP, FUSE, C/R, and CUDA-checkpoint

https://modal.com/blog/truly-serverless-gpus
44•charles_irl•3h ago•10 comments

The Fil-C Optimized Calling Convention

https://fil-c.org/calling_convention
66•pizlonator•2d ago•10 comments

Haiku OS runs on M1 Macs now

https://discuss.haiku-os.org/t/my-haiku-arm64-progress/19044?page=2
200•tekkertje•2h ago•64 comments

Understanding Singleflight in Go

https://www.codingexplorations.com/blog/understanding-singleflight-in-golang-a-solution-for-elimi...
10•ghostbit•1d ago•0 comments

Iran starts Bitcoin-backed ship insurance for Hormuz strait

https://www.bloomberg.com/news/articles/2026-05-18/iran-starts-bitcoin-backed-shipping-insurance-...
156•srameshc•3h ago•217 comments

Two computers, one monitor, zero fiddling (2025)

https://alexplescan.com/posts/2025/08/16/kvm/
115•ankitg12•2d ago•70 comments

Project Glasswing: what Mythos showed us

https://blog.cloudflare.com/cyber-frontier-models/
225•Fysi•7h ago•88 comments

What Is Date:Italy?

http://aesthetikx.info/blog/date_italy.html
100•jollyjerry•2d ago•41 comments

Shutterstock to pay $35M over hard-to-cancel subscriptions

https://www.ftc.gov/news-events/news/press-releases/2026/05/shutterstock-pay-35-million-settle-ft...
28•Lihh27•1h ago•5 comments

The tyranny of single page apps

https://blog.bidisaster.party/spas/
6•speckx•43m ago•0 comments

Voice AI Systems Are Vulnerable to Hidden Audio Attacks

https://spectrum.ieee.org/voice-ai-audio-attacks
96•SVI•9h ago•26 comments

Stratum: System-Hardware Co-Design with 3D-Stackable DRAM for Efficient Moe

https://dl.acm.org/doi/10.1145/3725843.3756043
10•rbanffy•3d ago•4 comments

I 3D Printed Origami [video]

https://www.youtube.com/watch?v=FNVBK7-h9Fs
37•Teever•2d ago•6 comments

loopmaster – Livecoding Music IDE

https://loopmaster.xyz/
11•stagas•2h ago•5 comments

Learn Harness Engineering

https://walkinglabs.github.io/learn-harness-engineering/en/
93•redbell•8h ago•9 comments

Qwen 3.7 Preview

https://twitter.com/Alibaba_Qwen/status/2056403591464984753
159•theanonymousone•4h ago•56 comments

Mocked by a scandal sheet, Kierkegaard endured months of personal attacks

https://www.plough.com/en/topics/faith/discipleship/when-kierkegaard-got-cancelled
74•bookofjoe•8h ago•36 comments

The Aperiodic Table

https://blog.jgc.org/2026/05/the-aperiodic-table.html
70•jgrahamc•3d ago•30 comments

Garry Tan, the CEO of YC, accused me of unethical reporting

https://radleybalko.substack.com/p/truth-power-and-honest-journalism
364•gok•5h ago•78 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)