frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Elevators

https://john.fun/elevators
999•Jrh0203•12h ago•242 comments

The development pipeline is a production system

https://sundry.jerryorr.com/2026/07/31/development-pipeline-is-a-production-system
23•firefoxd•52m ago•6 comments

How to Exist

https://www.raptitude.com/2026/07/how-to-exist/
69•walterbell•3h ago•25 comments

Flint: A Visualization Language for the AI Era

https://microsoft.github.io/flint-chart/
19•vinhnx•1h ago•4 comments

qm – Multiplayer agent harness for work

https://github.com/yc-software/qm
506•tosh•10h ago•107 comments

Software for One

https://www.ajwaxman.com/writing/software-for-one
44•awaxman11•2d ago•22 comments

BMW Spider-Man in-car advertising

https://consumerrights.wiki/w/BMW_Spider-Man_in-car_advertising
59•goplayoutside•43m ago•16 comments

Progressive Web Components

https://arielsalminen.com/2026/progressive-web-components/
117•hosteur•18h ago•17 comments

The Absurdity of Albert Camus

https://www.historytoday.com/archive/portrait-author-historian/absurdity-albert-camus
74•apollinaire•1d ago•41 comments

A Week in Matrix

https://piegames.de/dumps/a-week-in-matrix/
9•Kesseki•2h ago•0 comments

June in Servo: real world compat, media queries, SharedWorker, and more

https://servo.org/blog/2026/07/31/june-in-servo/
121•iamnothere•9h ago•38 comments

Getting 25 Gbps Thunderbolt Ethernet on My Mac Studio

https://www.jeffgeerling.com/blog/2026/getting-25g-ethernet-mac-thunderbolt/
162•speckx•11h ago•91 comments

Big Food vs. the People

https://www.lighthousereports.com/investigation/big-food-vs-the-people/
207•jruohonen•12h ago•135 comments

Demystifying DRAM Read Disturbance: RowHammer and RowPress Phenomena

https://arxiv.org/abs/2607.28233
44•Jimmc414•7h ago•19 comments

Run Kimi K3 using 29 GB of RAM at 0.50 tok/s

https://github.com/sqliteai/waste
183•marcobambini•13h ago•76 comments

How far can you push the range of Wi-Fi connectivity in an ideal environment?

https://www.phidgets.com/?view=articles&article=LongRangeWifi
24•rzk•3d ago•17 comments

Tailscale didn't stop the Hugging Face intrusion

https://tailscale.com/blog/hugging-face-intrusion
491•bluehatbrit•9h ago•192 comments

Let's make the worst Htmx

https://zserge.com/posts/worst-htmx-ever/
82•RebelPotato•22h ago•23 comments

Loops (YC W22) Is Hiring a Product Educator

https://www.ycombinator.com/companies/loops/jobs/zqUnwqB-product-educator-technical-content-creator
1•chrisfrantz•7h ago

Printing floating point numbers in binary

https://www.johndcook.com/blog/2026/07/27/float-binary/
5•ibobev•3d ago•1 comments

Golang proposal: container/: generic collection types

https://github.com/golang/go/issues/80590
136•jabits•9h ago•82 comments

The most official water costs $120k a gallon

https://signoregalilei.com/2026/07/26/the-most-official-water-costs-120000-a-gallon/
156•surprisetalk•13h ago•130 comments

The First Transatlantic Telegraph Cable Was a Bold, Beautiful Failure

https://spectrum.ieee.org/the-first-transatlantic-telegraph-cable-was-a-bold-beautiful-failure
32•sparsesignal•2d ago•7 comments

Twenty-five years ago it was cryptography, today it's model weights

https://weeraman.com/because-we-can/
201•aweeraman•3d ago•85 comments

Termixer (TUI DJ Mixer)

https://github.com/l00sed/termixer
60•l00sed•9h ago•35 comments

Show HN: I worked on a new browser for 2 years, today it passed Acid 3

https://code.intellios.ai/cwbrowser/
63•coolwulf•6h ago•21 comments

Authorize, don't authenticate

https://blog.marcua.net/2026/07/31/authorize-dont-authenticate.html
67•marcua•13h ago•23 comments

Using the railway network as a flatbed scanner [video]

https://media.ccc.de/v/emf2026-74-1-using-the-railway-network-as-a-flatbed-scanner
62•Jimmc414•9h ago•26 comments

Is AI reasoning right for the wrong reasons?

https://www.quantamagazine.org/is-ai-reasoning-right-for-the-wrong-reasons-20260731/
133•retupmoc01•12h ago•157 comments

Algorithms on billion-scale graph using 10GB RAM: I love DataFusion

https://semyonsinchenko.github.io/ssinchenko/post/datafusion-graphs-cc-2/
112•speckx•12h ago•32 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)