frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

DeepSeek v4.1 Flash

https://twitter.com/deepseek_ai/status/2097930608790167907
368•Liwink•3h ago•158 comments

iPhone Duo

https://www.apple.com/iphone-duo/
1215•thecosmicfrog•15h ago•2123 comments

Stockfish 19

https://stockfishchess.org/blog/2026/stockfish-19/
38•atiedebee•2d ago•12 comments

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

https://rivendell.dmitrybrant.com/relativity/
333•dmitrybrant•8h ago•145 comments

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

https://devblogs.microsoft.com/oldnewthing/20260909-00/?p=112683
15•soheilpro•1h ago•3 comments

Larger Pacific Striped Octopus

https://en.wikipedia.org/wiki/Larger_Pacific_striped_octopus
63•olalonde•1d ago•31 comments

Shopify acquires Tailwind

https://tailwindcss.com/blog/tailwind-is-joining-shopify
1038•EdwinHoksberg•20h ago•395 comments

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

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

Growing proof that autonomous cars save lives

https://spectrum.ieee.org/are-self-driving-cars-safe
348•bookofjoe•16h ago•606 comments

I think I hate the internet

https://strategictree.bearblog.dev/i-think-i-hate-the-internet/
36•saikatsg•3h ago•13 comments

Samsung Debuts zHBM Prototype, Stacking Memory Directly on AI Accelerators

https://www.thelec.net/news/articleView.html?idxno=12835
19•peter_d_sherman•3d ago•3 comments

No Man's Sky Cosmos

https://www.nomanssky.com/cosmos-update/
390•Limb•18h ago•400 comments

GPT-6 Astra, looped transformers, and hidden reasoning

https://magazine.sebastianraschka.com/p/gpt-6-astra-looped-transformers-and
434•ModelForge•19h ago•141 comments

AirPods 5

https://www.apple.com/newsroom/2026/09/apple-introduces-airpods-5-with-best-in-class-open-ear-act...
457•awad•16h ago•385 comments

iPhone 18 Pro and iPhone 18 Pro Max

https://www.apple.com/newsroom/2026/09/apple-debuts-iphone-18-pro-and-iphone-18-pro-max/
365•meetpateltech•16h ago•398 comments

Open Source Durable Objects for Postgres

https://solidobjects.dev/blog/introducing-solidobjects
16•cardmagic•1d ago•3 comments

Show HN: Compute polynomials twice as fast

https://thomasahle.com/fast-polynomials/
92•thomasahle•1d ago•30 comments

Automattic's board forces CEO Matt Mullenweg into leave of absence

https://techcrunch.com/2026/09/09/automattics-board-forces-ceo-matt-mullenweg-into-leave-of-absence/
273•LeoPanthera•10h ago•191 comments

Training a 3.8B LLM to 0.384 CORE for $998

https://hugovergnes.github.io/little-lm-3-8b/
77•Anon84•8h ago•13 comments

All grown-ups were once children, but only few of them remember it

https://mathstodon.xyz/@tao/117244102901892965
168•yurivish•6h ago•127 comments

Aardman (Wallace and Gromit) Is Selling Its Original Movie Puppets

https://gizmodo.com/aardman-is-selling-its-original-movie-puppets-this-month-2000807968
52•Gaishan•3d ago•10 comments

Desert Ant Labs: local, fast models that run on device

https://desertant.com/blog/introducing-desert-ant-labs/
449•willwhitedc•22h ago•96 comments

Qwen 3.8 follows GPT-5.5 Pro reasoning prefills

https://gist.github.com/wsxiaoys/e0286dc6bb624ff5fdf49e7f4c528ba3
215•wsxiaoys•16h ago•85 comments

Factoring RSA 260

https://cognition.com/blog/factoring-rsa-260
98•samyok•13h ago•11 comments

Version control second coming

https://psantosl.github.io/posts/version-control-second-coming/
88•bananaboy•2d ago•59 comments

Apple Watch Series 12

https://www.apple.com/newsroom/2026/09/introducing-apple-watch-series-12-with-the-all-new-health-...
258•Lealen•16h ago•320 comments

How I advertise malicious software on Google Ads

https://xlii.space/eng/malicious-software-on-google-ads/
407•xlii•22h ago•246 comments

ESP32 Bit Pirate Hardware Hacking Kit with Web Tools That Speaks Every Protocol

https://geo-tp.github.io/ESP32-Bit-Pirate/
95•geotp•3d ago•31 comments

The UN challenges five centuries of cartography

https://www.not-ship.com/united-nations-map/
95•speckx•17h ago•197 comments

Rivian's gambit for full autonomy

https://spectrum.ieee.org/rivian-self-driving
81•1970-01-01•1d ago•95 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)