frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Gemini 3.7 Flash

https://blog.google/innovation-and-ai/models-and-research/gemini-models/introducing-gemini-3-7-fl...
631•thisisauserid•9h ago•360 comments

SparrowMap – Cameras that watch government vehicles

https://sparrowmap.com/
54•paulnpace•2h ago•12 comments

Bluesky Protocol Services

https://atproto.com/blog/introducing-bluesky-protocol-services
73•danabramov•2h ago•18 comments

Accelerating GPT-5.6 Sol Ultrafast

https://www.cerebras.ai/blog/accelerating-gpt-5-6-sol-ultrafast-with-openai
439•pr337h4m•8h ago•187 comments

DeepSeek Harness developer preview

https://deepseek.com/harness/en/
564•bjin•13h ago•248 comments

Understanding is the new bottleneck

https://www.geoffreylitt.com/2026/07/02/understanding-is-the-new-bottleneck
215•sebg•7h ago•118 comments

Donkey.bas is 45 Years Old – 131 line of Glory

https://donkeybas.com/
195•jkrauska•8h ago•85 comments

Mistral OCR 4.1

https://docs.mistral.ai/models/ocr-4-1
256•spelk•9h ago•102 comments

NP-overrated

https://gruhn.me/blog/2026-08-13/
157•theanonymousone•6h ago•100 comments

Spaghettifying DRAM

https://github.com/xoreaxeaxeax/skitter-creek-bath-salts
505•matt_d•12h ago•142 comments

Hello, me. It's been a while

https://themech.net/2026/08/hello-me-its-been-a-while/
32•somesoftdev•7h ago•11 comments

Choose Boring Technology (2015)

https://mcfunley.com/choose-boring-technology
262•tosh•8h ago•139 comments

I want extern "fil-C"

https://domenkozar.com/2026/08/13/i-want-extern-fil-c/
33•domenkozar•8h ago•9 comments

Finite State Machines in Forth (1994)

https://www.forth.org/literature/noble.html
50•ofalkaed•5d ago•1 comments

Where did the old web go? We followed 657,607 links to find out

https://0.mk/blog/link-rot
134•tdx•8h ago•120 comments

How Organizations Use AI: Evidence from ChatGPT [pdf]

https://cdn.openai.com/pdf/how-organizations-use-chatgpt.pdf
69•malshe•7h ago•44 comments

Nine PBS sues Iron Mountain over blocked access to archival data

https://current.org/2026/08/nine-pbs-sues-iron-mountain-over-blocked-access-to-archival-data/
250•vinayakborkar•13h ago•141 comments

How Compaction Works in Pi

https://earendil.com/posts/compaction-in-pi/
111•tosh•8h ago•42 comments

Single log line is 49KB+ (ext4) / 110KB+ (btrfs) of systemd-journald disk writes

https://github.com/systemd/systemd/issues/40262
154•ValdikSS•7h ago•99 comments

How AI text watermarking works

https://declaude.org/watermarking/
83•padolsey•3h ago•51 comments

How Gödel's Proof Works (2020)

https://www.quantamagazine.org/how-godels-proof-works-20200714/
73•tzury•6h ago•37 comments

How a device finds encrypted DNS by itself

https://blog.dundns.eu/posts/ddr-encrypted-dns-discovery/
17•majorchord•6d ago•4 comments

An ambiguity in c89 which will never be fixed

https://sebsite.pw/w/20260810-c89ambiguity.html
35•runningmike•3d ago•8 comments

Crown 0.64 – Native and cross-platform game engine

https://www.crownengine.org/news/crown-0-64/
5•dbartolini•3d ago•1 comments

Blog about things you don't understand yet

https://www.seangoedecke.com/blog-about-things-you-dont-understand-yet/
17•gfysfm•2h ago•3 comments

Ordinary abundance

https://ordinaryabundance.com/
225•yen223•12h ago•123 comments

Idol Mahjong Final Romance: A Slideshow Disguised as a Video Game

https://nicole.express/2026/more-like-idle-mahjong.html
42•nicole_express•4d ago•10 comments

Launch HN: Bullet (YC S26) – A Faster Coding Agent

https://www.codewithbullet.com
85•adi1•18h ago•56 comments

AI At Home Part 1: A Box Of Scraps

https://jdagostino.github.io/ai-pt1-box-o-scraps/index.html
92•timmmmmmay•10h ago•47 comments

Kubernetes on Oxide: How customer needs shaped our integrations

https://oxide.computer/blog/kubernetes-on-oxide
160•stevehipwell•12h ago•71 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)