frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Shopify moves back to Native from React Native

https://shopify.engineering/back-to-native
317•fnthawar2•2h ago•209 comments

Rust Is Tier-1 Language at Microsoft

https://rustfoundation.org/media/guest-post-rust-is-tier-1-language-at-microsoft/
231•mmastrac•2h ago•111 comments

Cognition launches new SWE-2 model, Rivaling Fable 5.1 and GPT-Astra

https://cognition.com/blog/swe-2
35•seelos•49m ago•6 comments

More questions about whether researchers can trust OpenAI with unpublished math

https://mathstodon.xyz/@andreasthom/117240535270608201
40•pred_•9h ago•278 comments

Hitachi launches CO2 heat pump water heaters with solar-friendly tariff controls

https://www.pv-magazine.com/2026/09/07/hitachi-launches-co2-heat-pump-water-heaters-with-solar-fr...
185•thelastgallon•1d ago•146 comments

DeepSeek v4.1 Flash

https://twitter.com/deepseek_ai/status/2097930608790167907
734•Liwink•10h ago•387 comments

What algorithm did Windows XP use to choose your initial user picture?

https://devblogs.microsoft.com/oldnewthing/20260909-00/?p=112683
254•soheilpro•7h ago•120 comments

Neki

https://planetscale.com/blog/introducing-neki
17•simon_weber•35m ago•0 comments

List of references on Sony websites to players "owning" their digital games

https://consumerrights.wiki/w/Sony_PlayStation_digital_game_ownership_lawsuit
199•haunter•4h ago•60 comments

>10x More Efficient Pretraining

https://magic.dev/blog/pretraining#
27•ronfriedhaber•1d ago•7 comments

Neki by PlanetScale

https://neki.dev/
17•handfuloflight•30m ago•0 comments

Casablanca: How An Unproduced Play Marched into Movie History

https://www.thecollector.com/casablanca-unproduced-play-movie-history/
8•mdp2021•26m ago•1 comments

To write non-fiction, draw the trunk, then the rest of the tree

https://devz.cl/posts/how-to-write/
45•DanielVZ•2d ago•8 comments

Stockfish 19

https://stockfishchess.org/blog/2026/stockfish-19/
179•atiedebee•3d ago•117 comments

iPhone Duo

https://www.apple.com/iphone-duo/
1331•thecosmicfrog•22h ago•2314 comments

Show HN: What if the speed of light was 5 km/h?

https://rivendell.dmitrybrant.com/relativity/
519•dmitrybrant•14h ago•219 comments

Serverless DTLS

https://proxylity.com/docs/listeners/dtls.html
4•mlhpdx•28m ago•1 comments

The first drink-driving conviction may have happened in London

https://www.ianvisits.co.uk/articles/the-worlds-first-drink-driving-conviction-may-have-happened-...
9•beardyw•8h ago•10 comments

Show HN: Filament – Fast data movement engine in Go

https://github.com/galaxy-io/filament
11•ikswolzok•2d ago•0 comments

Who Dung It? (Turdle.fun)

https://turdle.fun/
11•nb_quant•2h ago•13 comments

What do Visa and Mastercard do? An intro to card networks

https://tautology.town/2026/06/01/card-networks.html
623•evakhoury•1d ago•378 comments

Don't Let Anyone Take Away Your Big Box of Cables

https://blog.jim-nielsen.com/2026/hands-off-my-cables/
23•Brajeshwar•51m ago•23 comments

Show HN: Art – draw one stroke, let symmetry complete it

https://mrdee.in/mandala/
65•cyb0rg0•5d ago•26 comments

Discrete Dipole Approximation Code Ddscat 7.2 (2012)

https://arxiv.org/abs/1202.3424
7•doener•4d ago•1 comments

Liesegang Rings

https://chillphysicsenjoyer.substack.com/p/liesegang-rings
19•surprisetalk•1d ago•4 comments

Growing proof that autonomous cars save lives

https://spectrum.ieee.org/are-self-driving-cars-safe
418•bookofjoe•23h ago•737 comments

Larger Pacific striped octopus

https://en.wikipedia.org/wiki/Larger_Pacific_striped_octopus
113•olalonde•1d ago•53 comments

No Man's Sky Cosmos

https://www.nomanssky.com/cosmos-update/
431•Limb•1d ago•433 comments

Tell HN: OpenAI keeps re-enabling the 'allow training' setting

341•jacquesm•2h ago•132 comments

GPT-6 Astra, looped transformers, and hidden reasoning

https://magazine.sebastianraschka.com/p/gpt-6-astra-looped-transformers-and
492•ModelForge•1d ago•158 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)