frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Fable turned reMarkable into Tom Riddle's diary from Harry Potter

https://github.com/MaximeRivest/Riddle
273•modinfo•6h ago•151 comments

OpenWrt One – Open Hardware Router

https://openwrt.org/toh/openwrt/one
501•peter_d_sherman•10h ago•203 comments

How to sequence your own DNA at home

https://bradleywoolf.com/links-1/sequencing-my-own-dna-at-home
118•bilsbie•4h ago•37 comments

CoMaps – FOSS Offline Maps

https://www.comaps.app/
391•basilikum•10h ago•79 comments

GLM 5.2 and the coming AI margin collapse

https://martinalderson.com/posts/the-upcoming-ai-margin-collapse-part-1-glm-5-2/
260•martinald•8h ago•169 comments

Small AI Models Gain Traction In places with unreliable networks

https://spectrum.ieee.org/small-language-models-ai-pharmaceuticals
69•sscaryterry•5h ago•12 comments

Ternlight – 7 MB embedding model that runs in browser (WASM)

https://ternlight-demo.vercel.app/
145•soycaporal•6h ago•39 comments

A global workspace in language models

https://www.anthropic.com/research/global-workspace
319•in-silico•11h ago•118 comments

Pruning RAG context down to what the answer actually needs

https://www.kapa.ai/blog/how-we-prune-rag-context
73•emil_sorensen•9h ago•10 comments

Resetting Xbox

https://news.xbox.com/en-us/2026/07/06/resetting-xbox/
539•dijksterhuis•14h ago•546 comments

Linux on the Atari Jaguar

https://cakehonolulu.github.io/linux-for-jaguar/
125•cakehonolulu•10h ago•22 comments

AMD Ryzen AI Halo – $4k AI Dev Kit

https://www.lttlabs.com/articles/2026/07/06/amd-ryzen-ai-halo
300•LabsLucas•14h ago•217 comments

A 2048-spin bulk acoustic wave Ising machine for number partitioning and Sudoku

https://arxiv.org/abs/2607.02112
33•Jimmc414•3d ago•9 comments

OpenSSH 10.4/10.4p1 Released

https://www.openssh.org/txt/release-10.4
48•throw0101a•6h ago•13 comments

Acronym Fatigue Series Introduction: why I'm wary of acronyms

https://devz.cl/posts/acryonym-fatigue-series-why-i-m-wary-of-engineering-acronyms/
38•DanielVZ•6h ago•25 comments

OfficeCLI: Office suite for AI agents to read and edit Microsoft Office files

https://github.com/iOfficeAI/OfficeCLI
149•maxloh•12h ago•37 comments

Tiny-C Reference Manual Excerpt

https://permacomputer.solarpunk.au/?p=204
12•surprisetalk•4d ago•0 comments

Full Writeup of the Windows GDID

https://github.com/SmtimesIWndr/gdid-reversal
54•typeofhuman•7h ago•27 comments

Stealth robotics startup (YC S26) is hiring principal engineers (Palo Alto)

1•david-venegas•12h ago

Poly/ML – A Standard ML Implementation

https://github.com/polyml/polyml
43•Lyngbakr•6h ago•6 comments

Learning to code is still worthwhile

https://stevekrouse.com/learn-to-code
144•stevekrouse•8h ago•145 comments

Aluminum foil (2021)

https://dernocua.github.io/notes/aluminum-foil.html
254•firephox•15h ago•110 comments

Road to Elm 1.0

https://elm-lang.org/news/faster-builds
314•wolfadex•17h ago•155 comments

M/PC – A Concatenative OS

https://wiki.xxiivv.com/site/m_pc.html
51•caminanteblanco•9h ago•7 comments

Rotman Lens

https://en.wikipedia.org/wiki/Rotman_lens
91•thomasjb•5d ago•25 comments

Januscape: Guest-to-Host Escape in KVM/x86 [CVE-2026-53359]

https://github.com/V4bel/Januscape
86•Imustaskforhelp•11h ago•28 comments

Kani: A Model Checker for Rust

https://arxiv.org/abs/2607.01504
134•Jimmc414•13h ago•7 comments

Giving a domain a hill to climb: benchmarking as data activation

https://sparsethought.com/2026/07/03/benchmarking-as-data-activation/
7•galsapir•3d ago•3 comments

The Music of Destruction

https://thebaffler.com/latest/the-music-of-destruction-fuelling
21•lermontov•4d ago•9 comments

Evaluation order and nontermination in query languages

https://www.rntz.net/post/2026-06-11-datalog-nontermination.html
28•luu•4d ago•3 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)