frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Kimi-K3 Releases on HuggingFace 7/27

https://huggingface.co/moonshotai/Kimi-K3
662•nateb2022•8h ago•294 comments

Should you wash your solar panels?

https://incoherency.co.uk/blog/stories/should-you-wash-your-solar-panels.html
52•surprisetalk•1h ago•36 comments

How is the Bun Rewrite in Rust going?

https://lockwood.dev/ai/2026/07/27/how-is-the-bun-rewrite-in-rust-going.html
229•tomlockwood•3h ago•155 comments

AI companies are shredding rare books

https://xcancel.com/HedgieMarkets/status/2081534588485296565
314•anon373839•1h ago•185 comments

Removing React.js from the codebase and adapting Htmx for UI interactivity (2023)

https://misago-project.org/t/removing-reactjs-from-the-codebase-and-adapting-htmx-for-ui-interact...
74•Ralfp•4h ago•43 comments

Libsm64: Mario 64 as a library for use in external game engines

https://github.com/libsm64/libsm64
68•klaussilveira•4h ago•11 comments

PGSimCity - How PostgreSQL Works

https://nikolays.github.io/PGSimCity/
762•jonbaer•14h ago•71 comments

Building a Fast Lock-Free Queue in Modern C++ from Scratch

https://blog.jaysmito.dev/blog/04-fast-lockfree-queues/
40•ibobev•4d ago•11 comments

Magnolias Are So Old That They're Pollinated by Beetles, Not Bees

https://mymodernmet.com/magnolia-ancient-flowers-beetles/
154•speckx•4d ago•60 comments

VLC for Unity now supported on Linux

https://code.videolan.org/videolan/vlc-unity
68•martz•5h ago•18 comments

Towards a Theory of Bugs: The Ruliology of the Unexpected

https://writings.stephenwolfram.com/2026/07/towards-a-theory-of-bugs-the-ruliology-of-the-unexpec...
26•nsoonhui•3d ago•2 comments

Elevated errors on Claude Opus 5

https://status.claude.com/incidents/mfdtrknpxghq
54•croemer•2h ago•46 comments

Show HN: Physically accurate black hole you can put in your room

https://blackhole.plav.in
402•aplavin•4d ago•135 comments

Worse on Purpose

https://ledger.worseonpurpose.com/brands
78•bookofjoe•1h ago•35 comments

The Birth of the American 12-string Guitar

https://www.harpguitars.net/history/grunewald/12-string.htm
38•bilegeek•3h ago•19 comments

Shay Locomotives

https://www.shaylocomotives.com/
34•Rygian•5h ago•6 comments

First Robotic Satellite Servicer Launched

https://www.nrl.navy.mil/Media/News/Article/4551871/robotic-servicing-of-geosynchronous-satellite...
13•GlenTheMachine•3d ago•1 comments

Modern email can be built from borrowed parts

https://en.andros.dev/blog/d7ed8b07/modern-email-can-be-built-from-borrowed-parts/
59•andros•5h ago•20 comments

Scriptc by Vercel: TypeScript-to-Native compiler, no JavaScript engine in binary

https://github.com/vercel-labs/scriptc
229•maxloh•15h ago•116 comments

The Proof Machine (2016)

https://incredible.pm/
12•BenoitP•1h ago•0 comments

Elevated errors on Claude Opus 5

https://status.claude.com/incidents/lhqp09kxq7pb
37•flyaway123•6h ago•22 comments

Decker, a platform that builds on the legacy of Hypercard and classic macOS

https://beyondloom.com/decker/
343•tosh•20h ago•78 comments

Google Chrome Arrives on ARM64 Linux, Widevine DRM Included

https://www.omgubuntu.co.uk/2026/07/chrome-arm64-linux-available
33•twapi•3h ago•11 comments

US citizen charged after GrapheneOS phone wipes during airport search

https://www.techspot.com/news/113236-us-prosecutors-charge-atlanta-man-after-grapheneos-phone.html
1013•eecc•16h ago•770 comments

We Tested Nonstick Cookware: Coatings Don't Need to Look Worn to Shed Particles

https://www.rtings.com/air-fryer/learn/research/ptfe-cookware-shedding
18•cdemer•56m ago•4 comments

We have proof automation now

https://www.imperialviolet.org/2026/07/26/zstd-lean.html
204•zdw•17h ago•87 comments

8086 Emulator Inside Scratch

https://turbowarp.org/1248315967?size=640x400
24•rickcarlino•4d ago•1 comments

Introduction to Data-Oriented Design [pdf]

https://www.gamedevs.org/uploads/introduction-to-data-oriented-design.pdf
216•tosh•20h ago•54 comments

I wanted a clock that never needed setting. Things escalated

https://arstechnica.com/gadgets/2026/07/i-wanted-a-clock-that-never-needed-setting-things-escalated/
146•lee_ars•4d ago•125 comments

Chinese chipmaker shares surge 470%

https://www.bbc.com/news/articles/c9q9w3x9qn2o
145•pingou•5h ago•132 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)