frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Don't be a meat proxy

https://gruhn.me/blog/2026-08-03/
275•ngruhn•1h ago•110 comments

Qwen3.8-Max: A New Bar for Coding and Cowork

https://qwen.ai/blog?id=qwen3.8
483•ai2027•5h ago•211 comments

More German than many Germans

https://mertbulan.com/more-german-than-many-germans/
150•mertbio•2h ago•47 comments

Rust project goals: Immobile types and guaranteed destructors

https://github.com/rust-lang/rust-project-goals/blob/main/src/2026/move-trait.md
34•paavohtl•1h ago•9 comments

Show HN: Isopolis – Isometric pixel map of SF

https://sf.isopolis.city/
195•nuwandavek•7h ago•43 comments

AI migrated legacy COBOL programs to Java, bugs included

https://arxiv.org/abs/2607.28271
46•felineflock•4h ago•33 comments

Karpathy’s Pelican

https://twitter.com/karpathy/status/2083749667410727319
550•delichon•1d ago•386 comments

Show HN: ssh ssh.place

https://ssh.place
103•jeninh•7h ago•53 comments

Why we write our own C and C++ inference engines

https://localai.io/blog/why-we-write-our-own-engines/
41•eatonphil•2d ago•21 comments

Convergence is not enough

https://www.inkandswitch.com/livelymerge/notebook/lm-02/
28•zdw•6d ago•2 comments

CP/M-386 – CP/M for 386 protected mode, derived from CP/M‑68K

https://github.com/johnsonjh/cpm386
63•TMWNN•7h ago•25 comments

Show HN: A Handwritten Blogging Platform

https://handwritten.blog/
94•emilesilvis•3d ago•46 comments

Autoregressive Language Model on the 6502 Processor

https://mattbeton.com/blog/bitnet-6502.html
100•nmstoker•2d ago•10 comments

Show HN: Kakehashi – Experimental userspace to run macOS binaries on Linux ARM

https://github.com/wie-project/kakehashi
210•vlad_kalinkin•15h ago•51 comments

Note-Taking and Personal Knowledge Management

https://unattributed.cc/note-taking-and-personal-knowledge-management
190•surprisetalk•5d ago•52 comments

Developers are attached to tools because tools encode trust

https://stackoverflow.blog/2026/07/29/developers-are-attached-to-tools-because-tools-encode-trust/
202•HieronymusBosch•4d ago•110 comments

Why Book Corners won't sync contributions back to OpenStreetMap

https://www.andreagrandi.it/posts/why-book-corners-wont-sync-contributions-back-to-openstreetmap/
84•pizzaiolo•7h ago•52 comments

SwiftUI After 7 Years

https://ykvm.com/2026/07/swiftui-a-story-of-mediocrity/
184•mpweiher•13h ago•161 comments

Emulating ALiBi with Rope

https://alexlitzenberger.com/blog/emulating_alibi_with_rope
3•alexlitz•3d ago•0 comments

Read the novels and forget everything else

https://hedgehogreview.com/web-features/thr/posts/read-the-novels-and-forget-everything-else
92•samclemens•2d ago•72 comments

The myth of Snow Leopard

https://www.rubenerd.au/the-myth-of-snow-leopard/
90•speckx•13h ago•76 comments

RFC 9851: TLS 1.2 is in Feature Freeze

https://www.rfc-editor.org/rfc/rfc9851.html
33•Jimmc414•6h ago•9 comments

Norway became a global salmon behemoth. Now it's facing the consequences

https://www.abc.net.au/news/2026-07-28/how-norway-s-salmon-industry-became-a-global-behemoth/1069...
145•CHB0403085482•6d ago•104 comments

How the words we teach English language learners changed

https://pudding.cool/2026/07/essential-words/
213•c-oreills•16h ago•158 comments

Show HN: Make your Framework 12 sound like a creaky door

https://github.com/ArcaEge/creakwork12
82•arcaege•11h ago•13 comments

The Computational Theory of Mind (2015)

https://plato.stanford.edu/entries/computational-mind/
59•cyanregiment•9h ago•43 comments

My personal AI benchmark: “Generate an SVG of a frog with a Habsburg jaw”

https://frogs.vaguespac.es/
136•thebigship•12h ago•69 comments

Show HN: NixOS-DGX-Spark – Nix and NixOS on the DGX Spark

https://github.com/graham33/nixos-dgx-spark
115•graham33•14h ago•33 comments

When transit passes were designed by hand (2022)

https://letterformarchive.org/news/milwaukee-transit-passes/
135•nate•2d ago•31 comments

Rooting, firmware analysis and persistent credentials of TP-Link TL-841N

https://blog.juni-mp4.com/posts/42/rooting-the-tplink-tl841n-pt1/
106•mindracer•15h ago•24 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)