frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Claude: Degraded Performance for Multiple Models

https://status.claude.com/incidents/q7txxvbsftgq
88•matt89•37m ago•52 comments

Using the railway network as a flatbed scanner

https://philo.gay/linecam/
251•otherayden•4h ago•42 comments

The Amazon Tax

https://seths.blog/2026/08/the-amazon-tax/
424•herbertl•3h ago•297 comments

How I Under-Engineered My Book

https://chriskiehl.com/article/how-i-under-engineered-my-book
48•goostavos•21h ago•13 comments

Linux 7.3 improves performance when running out of vRAM

https://pixelcluster.dev/VRAM-Overcommit/
407•flaburgan•9h ago•161 comments

Fixing a Bricked Framework Laptop

https://quantum5.ca/2026/08/16/fixing-bricked-amd-7040-series-framework-13-laptop-with-20-tools/
183•jp_sc•3h ago•108 comments

Python Polars Cheatsheet (based on our O'Reilly book)

https://opensource.posit.co/resources/cheatsheets/polars/
77•jeroenjanssens•3h ago•12 comments

Cursor launches Origin, GitHub alternative

https://cursor.com/changelog/origin-code-hosting
153•tomasreimers•1d ago•102 comments

Launch HN: machine0 (YC S26) – Persistent CPU and GPU VMs from the CLI

https://machine0.io
6•bwm•38m ago•5 comments

Teaching my kid to code with a modern MUD

https://tau.dev/2026/08/07/canon
146•andrewjanke•6d ago•48 comments

Splitting a Git Commit

https://blog.gnoack.org/post/git-history-split
44•signa11•3d ago•18 comments

Code-native generation of highly programmable 3D assets (2026)

https://arxiv.org/abs/2607.22738
21•baigy•2h ago•20 comments

Composable Tests

https://newsletter.kentbeck.com/p/composable-tests
46•vinipolicena•3h ago•36 comments

Fairphone is now officially available in the United States

https://www.fairphone.com/nl/stories/the-fairphone-gen-6-is-all-about-giving-you-more
233•Vinnl•4h ago•116 comments

Babies born under sugar rationing grew into adults with lower cancer risk

https://theconversation.com/babies-born-under-sugar-rationing-grew-into-adults-with-lower-cancer-...
111•zeristor•2h ago•30 comments

Apple announces changes for apps in the European Union

https://www.apple.com/newsroom/2026/08/apple-announces-changes-for-apps-in-the-european-union/
63•newusertoday•43m ago•61 comments

Memory prices climb 500% in 12 months

https://www.tomshardware.com/pc-components/ram/memory-prices-climb-500-percent-in-12-months-up-to...
136•haunter•23h ago•99 comments

Google has acquired the data of failed US airline Spirit

https://www.theregister.com/ai-and-ml/2026/08/18/google-buys-crashed-airline-spirits-data-at-auct...
454•pseudolus•6h ago•324 comments

Meta Files Patent for Facial Recognition, Automatic Recording of People

https://www.privacyguides.org/news/2026/08/17/meta-files-patent-for-facial-recognition-automatic-...
177•DeepLogin•4h ago•119 comments

Superpowers, Not Superintelligence

https://bond.now/news/superpowers-not-superintelligence
3•edbernays•37m ago•1 comments

How Bluesky draws its logo on screenshots

https://timmarinin.net/2026/bluesky-screenshots/
664•gavide•18h ago•418 comments

Show HN: Shoehorn – Quantize any model down to run on your machine

https://notactuallytreyanastasio.github.io/shoehorn/
18•rhgraysonii•2h ago•2 comments

California's new tire efficiency rules could save drivers $1B a year

https://grist.org/transportation/californias-new-tire-efficiency-rules-could-save-drivers-1b-a-year/
53•littlexsparkee•14h ago•65 comments

Rethinking Database Programming

https://acadia.engineering/blog/rethinking-database-programming
179•honungsburk•9h ago•97 comments

Show HN: Openleetcode – local LeetCode runner where tests live in the repo

https://github.com/therepanic/openleetcode
5•therepanic•1h ago•1 comments

Finger: Social network that never died

https://en.andros.dev/blog/54572bc7/finger-the-1971-social-network-that-never-died/
128•andros•9h ago•40 comments

Baking a Model: A Metaphor for LLM Training

https://newsletter.kentbeck.com/p/baking-a-model
27•KentBeck•3d ago•3 comments

Quake Shareware, a CD-ROM just a little too full

https://fabiensanglard.net/quake_shareware_cd/index.html
458•shdon•18h ago•195 comments

Ask HN: Ive quit six systems for tracking my illness. What works?

10•Abh1Works•2d ago•10 comments

Show HN: Saggar, a Mac terminal that keeps sessions and your attention organized

https://saggar.marginalutility.dev/
43•mcclowes•1d ago•48 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)