frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Kimi-K3 Releases on HuggingFace 7/27

https://huggingface.co/moonshotai/Kimi-K3
160•nateb2022•2h ago•51 comments

PGSimCity - How PostgreSQL Works

https://nikolays.github.io/PGSimCity/
532•jonbaer•8h ago•55 comments

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

https://blackhole.plav.in
282•aplavin•3d ago•82 comments

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

https://github.com/vercel-labs/scriptc
144•maxloh•9h ago•77 comments

French firefighters face 'pyrocumulonimbus' for first time

https://www.france24.com/en/live-news/20260726-french-firefighters-face-pyrocumulonimbus-for-firs...
340•saaaaaam•14h ago•217 comments

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

https://beyondloom.com/decker/
299•tosh•14h ago•73 comments

Why care about programming languages

https://ebellani.github.io/blog/2026/why-care-about-programming-languages/
34•b-man•4d ago•34 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
672•eecc•10h ago•486 comments

We have proof automation now

https://www.imperialviolet.org/2026/07/26/zstd-lean.html
160•zdw•11h ago•45 comments

The Zen of Parallel Programming: The Posture of a Kernel

https://smolnero.com/posts/the-zen-of-parallel-programming-the-posture-of-a-kernel
14•edgar_ortega•4d ago•1 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/
94•lee_ars•3d ago•93 comments

Htmx 4.0, the first JavaScript library to release exclusively on the Game Boy

https://swag.htmx.org/en-cad/products/htmx-4-the-game
432•rcy•20h ago•144 comments

Introduction to Data-Oriented Design [pdf]

https://www.gamedevs.org/uploads/introduction-to-data-oriented-design.pdf
164•tosh•14h ago•43 comments

Fonts In Use – Find out where a font is used

https://fontsinuse.com/
58•open_•8h ago•4 comments

Simulate cassette tape audio profiles using FFmpeg

https://github.com/AARomanov1985/Audio-Cassette-Simulation
124•xterminal•12h ago•47 comments

Design is compromise

https://stephango.com/design-is-compromise
245•ankitg12•16h ago•81 comments

Measuring developer productivity with the DX Core 4

https://getdx.com/research/measuring-developer-productivity-with-the-dx-core-4/
9•saikatsg•2d ago•4 comments

8086 Emulator Inside Scratch

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

Show HN: CheapSecurity – Lightweight, Self-Hosted CCTV for Linux SBCs

https://github.com/gmrandazzo/CheapSecurity
128•zeldone•16h ago•26 comments

The Usefulness of Useless Knowledge (1939) [pdf]

https://faculty.lsu.edu/kharms/files/flexner_1939.pdf
69•jxmorris12•3d ago•4 comments

How to write English prose (2023)

https://thelampmagazine.com/blog/how-to-write-english-prose
117•geneticdrifts•14h ago•53 comments

Show HN: Reverse Minesweeper

https://sunflowersgame.com/
211•pompomsheep•19h ago•68 comments

Go Analysis Framework: modular static analysis by go team

https://pkg.go.dev/golang.org/x/tools/go/analysis
204•AbuAssar•20h ago•64 comments

Teaching Kids Forth

https://gracefulliberty.com/articles/teaching-kids-forth/
84•rbanffy•10h ago•29 comments

The New AI Superpowers: Focus and Followthrough

https://www.rickmanelius.com/p/the-new-ai-superpowers-focus-and
197•mooreds•19h ago•63 comments

Kill The Cookie Banner

https://killthecookiebanner.eu/
970•rapnie•20h ago•465 comments

The relay market powering token resellers and fraud

https://vectoral.com/blog/token-relay-market
189•mlenhard•17h ago•116 comments

I learned PCB design, 3D printing and C just to listen to music

https://pentaton.app/blog/2026-07-12-introducing-pentaton-lp/
205•interfeco•3d ago•42 comments

Some more things about Django I've been enjoying

https://jvns.ca/blog/2026/07/21/more-nice-django-things/
158•surprisetalk•5d ago•95 comments

EU Fines Google $1.02B for Favoring Its Own Services

https://www.wsj.com/tech/google-fined-1-02-billion-under-eus-tech-antitrust-rules-7e8ae1fb
65•1vuio0pswjnm7•2h ago•60 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)