frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Luxuries in Life

https://feld.com/archives/2026/09/the-real-luxuries-in-life/
188•tosh•2h ago•61 comments

Learn Programming with OCaml

https://usr.lmf.cnrs.fr/lpo/
84•elvis70•3h ago•33 comments

The "$60 Gaming PC" – AMD BC-250 (2025)

https://devquasar.com/hardware/the-60-gaming-pc-amd-bc-250/
209•networked•6h ago•68 comments

Visualizing Rust's Vtables: How dyn Trait Works In Memory

https://sofiabelen.github.io/projects/visualizing-rusts-vtables-how-dyn-trait-works-in-memory/
70•torutofu•6h ago•1 comments

Discovery of a new OpenAI agent message board

https://collusion.wiki/
2006•moultano•1d ago•1484 comments

Actively exploited sandbox RCE in all Chromium versions

https://nvd.nist.gov/vuln/detail/cve-2026-85046
714•negura•22h ago•412 comments

Nitter has more working instances than before the takedowns

https://codeberg.org/mv12star/shitter/wiki/Instances
558•Cider9986•20h ago•239 comments

Terpstra Keyboard

http://terpstrakeyboard.com/
95•cl3misch•9h ago•40 comments

Balrogg: Demonically compacting (up to 15%) lossless Vorbis/Opus recompressor

https://github.com/iczelia/balrogg
7•palaiologos•2d ago•0 comments

Formalizing Fermat's Last Theorem

https://www.anthropic.com/research/formalizing-fermats-last-theorem
725•jlebar•1d ago•462 comments

Steffen's Polyhedron

https://www.gregegan.net/SCIENCE/Steffen/Steffen.html
28•pavel_lishin•2d ago•2 comments

Wikimedia Foundation Workers Overwhelmingly Vote to Form Union with CWA

https://wikiworkersunited.org/announcements/2026-09-04-us-wikimedia-foundation-workers-overwhelmi...
200•robin_reala•4h ago•79 comments

A bizarre Commodore 64 peripheral, a mime, and some pretty bad ads

https://buttondown.com/suchbadtechads/archive/spartan-and-the-mime/
57•rfarley04•8h ago•3 comments

Singapore subway (mrt) information display types

https://www.sgtrains.com/technology-infosys.html
33•gregorvand•3d ago•5 comments

Stopping the Unstoppable: When an unstoppable force meets a dashpot snubber

https://practical.engineering/blog/2026/9/1/stopping-the-unstoppable
23•crescit_eundo•4d ago•2 comments

Delidded Intel I9-14900KS CT Scan

https://www.lttlabs.com/articles/2026/09/02/delidded-intel-i9-14900ks
13•willx86•3d ago•0 comments

Statichost.eu – European static site hosting

https://www.statichost.eu/
416•p4bl0•23h ago•191 comments

A Million Falcons Went Missing. Here’s How They Were Found

https://www.nationalgeographic.com/animals/article/falcons-migration-angola-falcopolis
55•bryanrasmussen•3d ago•23 comments

Can AI design circuit boards yet?

https://eebench.org/blog/can-ai-design-circuit-boards-yet/
342•iopapa•1d ago•201 comments

.gitignore Everything by Default

https://packagemain.tech/p/gitignore-everything-by-default
111•der_gopher•7h ago•124 comments

AI handles incidents, engineers lose touch with their systems

https://www.sylvainkalache.com/blog/ai-handles-incidents-engineers-lose-touch-with-their-systems
332•sylvainkalache•12h ago•289 comments

Git hosting that never leaves Europe

https://pushin.eu
271•sevenseacat•13h ago•138 comments

Write Software in Latin (2025) [video]

https://www.youtube.com/watch?v=fGZpaqMha0o
32•akkartik•2d ago•11 comments

Show HN: Open-Source eInk Bike Computer

https://opentrailpaper.com
372•stingrae•1d ago•116 comments

Shutting down our public encrypted DNS

https://mullvad.net/en/blog/shutting-down-our-public-encrypted-dns-servers-and-sponsoring-quad9-i...
426•mywacaday•1d ago•211 comments

GPT-6 Astra on OpenRouter

https://openrouter.ai/openai/gpt-6-astra
293•Topfi•22h ago•216 comments

How the Disaster of "Forever Chemicals" Was Kept Secret

https://www.propublica.org/podcast/forever-chemicals-pfas-pfos-3m-secret-kris-hansen
254•stevenwoo•5h ago•73 comments

Ask HN: Resources to get good at soldering?

214•tosmatos•3d ago•135 comments

Meet the Ig Nobel Prize Winners

https://arstechnica.com/science/2026/09/meet-the-2026-ig-nobel-prize-winners/
87•mkl•6h ago•23 comments

Pointing at the error: compiler-style diagnostics in uutils coreutils

https://uutils.org/blog/2026-08-error-diagnostics/
60•ingve•3d ago•8 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)