frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Vectorized and performance-portable Quicksort

https://opensource.googleblog.com/2022/06/Vectorized%20and%20performance%20portable%20Quicksort.html
98•mococa•55m ago•15 comments

Small programming tricks

https://will-keleher.com/posts/small-programming-tricks-matter/
203•signa11•3h ago•119 comments

Accurate Models of AMD Matrix Cores

https://arxiv.org/abs/2609.14845
8•matt_d•31m ago•0 comments

Dream-RSI: Recursive Self-Improvement through Evolving Worlds

https://arxiv.org/abs/2609.14858
137•bananaflag•5h ago•41 comments

Mistral X Mozilla: Private, Multilingual AI Browsing

https://mistral.ai/news/mistral-x-mozilla/
450•vertigoruntime•11h ago•161 comments

Tell the speakers that you liked their talks

https://ohhelloana.blog/tell-the-speakers/
193•whisper2020•1d ago•50 comments

GitHub is having trouble counting things

https://chuckgreenman.com/2026/09/16/counting-at-github
23•chuckgreenman•1h ago•17 comments

Show HN: An e-ink frame that hears birds and draws them as 1800s illustrations

https://github.com/arnegiacomo/fugleramme
1936•arnemunthekaas•1d ago•227 comments

The Siberian Ice Maiden and the Scythian World

https://patrickwyman.substack.com/p/the-siberian-ice-maiden-and-the-scythian
20•NaOH•1d ago•0 comments

Training a 4B model to produce 81% faster query plans than Postgres

https://rohanbansal.com/qorl
6•polyphilz•37m ago•0 comments

Learning Programming in an Age of LLMs

https://blog.ploeh.dk/2026/09/16/on-learning-programming-in-an-age-of-llms/
197•moneroloop2018•10h ago•143 comments

How big are factorials?

https://eli.thegreenplace.net/2026/how-big-are-factorials/
56•ibobev•1d ago•18 comments

Claude Cowork and chat are now one Claude

https://claude.com/blog/cowork-is-now-claude
127•vertigoruntime•3h ago•156 comments

The DeepMind Institute

https://institute.deepmind.com/
66•vertigoruntime•4h ago•21 comments

Hackers Got Inside a Flock Camera

https://www.wired.com/story/hackers-flock-camera-data-shows-how-system-works/
358•driverdan•6h ago•171 comments

The Google Play app review process now regularly takes longer than a week

https://gultsch.social/@daniel/117280438824908947
302•inputmice•8h ago•287 comments

Fed hikes rates as inflation worries push up bond yields

https://www.reuters.com/live/live-fed-rate-hike-expected-inflation-worries-push-up-bond-yields-20...
20•wslh•32m ago•2 comments

How good are frontier models at physics?

https://arxiv.org/abs/2609.13009
6•qt31415926•8m ago•1 comments

Can we stop with the uptime percentages?

https://blog.jim-nielsen.com/2026/stop-with-the-uptime-percentage/
100•surprisetalk•3h ago•76 comments

Kyber (YC W23) Is Hiring a Forward Deployed Engineer

https://www.ycombinator.com/companies/kyber/jobs/eturrAR-forward-deployed-engineer
1•asontha•7h ago

Show HN: How Stale Is Your AI? Release age and training cutoff for 20 models

https://stale.jock.pl/
55•joozio•6h ago•39 comments

ER visits for gambling disorders doubled after expanded online gambling market

https://temertymedicine.utoronto.ca/news/emergency-room-visits-gambling-disorders-nearly-doubled-...
82•geox•1h ago•63 comments

A warning about 'model welfare'

https://mustafa-suleyman.ai/a-warning-about-model-welfare
118•andsoitis•4h ago•277 comments

Salesforce Global Outage

https://status.salesforce.com/products/all
244•mabil•8h ago•147 comments

Anatomy of a Texture

https://agentlien.github.io/texture/
39•Agentlien•4h ago•9 comments

Scaling Golang CI by Replacing actions/setup-go

https://www.cloudx.ai/posts/setup-go
59•peterldowns•6h ago•16 comments

This Code Is CRAP (2011)

https://testing.googleblog.com/2011/02/this-code-is-crap.html
64•luispa•3h ago•41 comments

Original Sony PlayStation 2 security chip 'broken wide open' after 26 years

https://www.tomshardware.com/video-games/playstation/26-year-old-sony-ps2-security-chip-broken-wi...
231•rbanffy•7h ago•64 comments

Show HN: I made a flight simulator, except you're just a passenger

https://inflightsimulator.com
379•rkotcher•2d ago•194 comments

Introducing System One Models and Jev

https://typesafe.ai/blog/introducing-system-one-models-and-jev
1758•albelfio•1d ago•469 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)