frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Samsung's Processing-in-Memory (PIM)

https://chipsandcheese.com/p/hot-chips-2026-samsungs-processing
63•ingve•3h ago•13 comments

Europe's last regular standard-gauge steam passenger service

https://parowozowniawolsztyn.pl/?page_id=2141
29•GungulSurm•2d ago•12 comments

GUIs should be fully keyboard-driven

https://ckardaris.com/blog/2026/08/28/keyboard-driven-guis.html
790•ckardaris•18h ago•402 comments

Boot a Virtual iPhone via Apple's Virtualization.framework

https://github.com/Lakr233/vphone-cli
257•hentrep•10h ago•72 comments

TurboKV: Insanely fast Rust key-value store

https://github.com/kingroryg/turbokv
99•rgbimbochamp•7h ago•35 comments

Htmx 4.0

https://four.htmx.org/announcements/2026-08-28-htmx-4.0.0-is-released
647•rmsaksida•19h ago•163 comments

U.S. sanctions against the A/I Collective

https://www.inventati.org/
586•exiguus•20h ago•572 comments

I accidentally turned LLM memory into program analysis

https://pwning.systems/posts/llm-memory-program-analysis/
143•matt_d•9h ago•28 comments

Autistici/inventati: Manifesto – who we are and what do we want (2002)

https://www.inventati.org/who/manifesto
49•wise_blood•1h ago•21 comments

StemDeck, a free, open-source and local AI stem separator

https://github.com/stemdeckapp/stemdeck
92•thclpr•8h ago•20 comments

e is a customizable self-aware Emacs-like editor written in Chez Scheme

https://github.com/paveluv/e
18•p4bl0•2h ago•11 comments

Just the rumour of a bug is enough to find an exploit these days

https://anil.recoil.org/notes/rumour-is-the-exploit
316•avsm•17h ago•110 comments

Hunting Down a Go Runtime Bug on 32-Bit Embedded Systems

https://sigma-star.at/blog/2026/08/go-runtime-netpoll-bug/
6•birdculture•2d ago•0 comments

Inception-style curved map for turn-by-turn directions

https://www.orbify.eu/demo/
499•smoser•20h ago•171 comments

Does the Sumerian King List Align with Paleoclimate Events?

https://www.vectorian.be/articles/2026-06-07/sumerian-king-list-paleoclimate-alignment-explorer/
98•dev_l1x_be•9h ago•40 comments

Kumander Linux – A Linux Distro with a Windows 7 Desktop

https://www.kumander.org/
52•linuxkernal•7h ago•27 comments

Our decision on Cursor following its acquisition by SpaceX

https://openai.com/index/our-decision-on-cursor-following-its-acquisition-by-spacex/
507•meetpateltech•7h ago•269 comments

9th Circuit sides with states in Kalshi gambling fight

https://azmirror.com/2026/08/28/9th-circuit-sides-with-states-in-kalshi-gambling-fight-potentiall...
129•hungryhobbit•9h ago•101 comments

Queen Caroline turned King Arthur into an 18C royal PR strategy

https://theconversation.com/how-queen-caroline-turned-king-arthur-into-an-18th-century-royal-pr-s...
15•samizdis•4d ago•1 comments

Monzo Stand-In

https://monzo.com/blog/tolerating-full-cloud-outages-with-monzo-stand-in
75•coffeefuel•4d ago•16 comments

Experiments with Plotter Art

https://sometimes.digital/posts/experiments-with-plotter-art/
50•surprisetalk•4d ago•2 comments

Box of 300 Love Letters Showed Up, What Whimsical WWII Soldier Who Wrote Them?

https://www.smithsonianmag.com/history/this-box-of-300-love-letters-showed-up-out-of-the-blue-who...
17•gmays•4d ago•4 comments

Curvature Beziers: Improving on a timeless recipe

https://acko.net/blog/curvature-beziers/
118•leephillips•4d ago•12 comments

The Twelve-Factor App (2025)

https://12factor.net/
266•jxmorris12•1d ago•150 comments

EasyEffects can improve laptop speaker sound quality

https://www.osnews.com/story/145883/easyeffects-should-be-part-of-every-linux-distribution-and-de...
151•birdculture•18h ago•55 comments

GLM-5.3 is now open-weight

https://huggingface.co/zai-org/GLM-5.3
689•jeudesprits•18h ago•230 comments

Review: Chuwi's $449 Unibook laptop is a funhouse-mirror MacBook Neo

https://arstechnica.com/gadgets/2026/08/review-chuwis-449-unibook-laptop-is-a-funhouse-mirror-mac...
40•rbanffy•4d ago•16 comments

Verschlimmbesserung: The Word Your Software Updates Need

https://geekyschmidt.com/post/2026-08-25-verschlimmbesserung/
135•speckx•18h ago•89 comments

Autonomous Mathematical Discovery in an Open-World Multi-Agent Environment

https://arxiv.org/abs/2608.23691
104•stephenchung•16h ago•26 comments

Visual Analysis of Binary Files

https://binvis.io/#/
81•vismit2000•3d ago•22 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)