frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Kill The Cookie Banner

https://killthecookiebanner.eu/
573•rapnie•7h ago•281 comments

London Gatwick has launched a robotic airport parking service

https://aerospaceglobalnews.com/news/gatwick-airport-robotic-parking-stanley-robotics/
221•agotterer•4h ago•169 comments

Design is compromise

https://stephango.com/design-is-compromise
103•ankitg12•3h ago•46 comments

Decker

https://beyondloom.com/decker/
25•tosh•1h ago•6 comments

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

https://github.com/gmrandazzo/CheapSecurity
47•zeldone•3h ago•12 comments

Jimothy the raccoon has a rare spinal condition. Here's what that means

https://www.popsci.com/science/whats-jimothy-raccoon-condition/
62•speckx•5d ago•21 comments

Ruff v0.16.0 – Significant new updates – 413 default rules up from 59

https://astral.sh/blog/ruff-v0.16.0
322•vismit2000•10h ago•199 comments

Introduction to Data-Oriented Design [pdf]

https://www.gamedevs.org/uploads/introduction-to-data-oriented-design.pdf
13•tosh•1h ago•3 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
198•rcy•7h ago•66 comments

How to Write English Prose

https://thelampmagazine.com/blog/how-to-write-english-prose
24•geneticdrifts•2h ago•6 comments

Go Analysis Framework: modular static analysis by go team

https://pkg.go.dev/golang.org/x/tools/go/analysis
143•AbuAssar•7h ago•22 comments

Building the Grace Cathedral Experience

https://blog.playcanvas.com/building-the-grace-cathedral-experience/
6•ovenchips•4d ago•0 comments

The Strongest El Niño Ever

https://www.theclimatebrink.com/p/the-strongest-el-nino-ever
95•ndsipa_pomu•59m ago•32 comments

How to Block Some of the Bots

https://nochan.net/b/Internet-Crap/20260606-How-To-Block-Some-Of-The-Bots/
10•Bender•1h ago•7 comments

Using sed to make indexes for books (long)

https://www.pement.org/sed/make_indexes.txt
22•TMWNN•3d ago•2 comments

The New AI Superpowers: Focus and Followthrough

https://www.rickmanelius.com/p/the-new-ai-superpowers-focus-and
70•mooreds•6h ago•24 comments

Using ThinkPad T480 as a mobile phone

https://grego.site/blog/thinkphone
20•marosgrego•2h ago•5 comments

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

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

Show HN: HART OS – an open-source AI OS built so frontier AI needs no datacenter

https://github.com/hertz-ai/HARTOS
6•hevolveai•54m ago•1 comments

GrapheneOS protections against data extraction from locked devices

https://discuss.grapheneos.org/d/40700-grapheneos-protections-against-data-extraction-from-locked...
316•Cider9986•13h ago•195 comments

What's Under Your Feet in New York City?

https://practical.engineering/blog/2026/7/21/whats-under-your-feet-in-new-york-city
111•sohkamyung•4d ago•19 comments

Show HN: Reverse Minesweeper

https://sunflowersgame.com/
76•pompomsheep•6h ago•25 comments

Google Discloses $94.1B in SpaceX Stock, Marking 6% Stake

https://www.wsj.com/tech/google-discloses-94-1-billion-in-spacex-stock-marking-6-stake-91655d7c
260•1vuio0pswjnm7•6h ago•204 comments

Show HN: The Occult Gatsby

https://occultgatsby.work
14•morganw•56m ago•3 comments

French firefighters face 'pyrocumulonimbus' for first time

https://www.france24.com/en/live-news/20260726-french-firefighters-face-pyrocumulonimbus-for-firs...
43•saaaaaam•1h ago•18 comments

A shell colon does nothing. Use it anyway

https://refp.se/articles/your-shell-and-the-magic-colon
357•olexsmir•1d ago•152 comments

Sum of Cubes via Difference Tables

https://leancrew.com/all-this/2026/07/sum-of-cubes-via-difference-tables/
9•surprisetalk•3d ago•2 comments

An Inside Look at the Token Reseller Market

https://vectoral.com/blog/token-relay-market
93•mlenhard•4h ago•50 comments

Terence Tao: Mathematics in the Age of AI [pdf]

https://teorth.github.io/tao-web/slides/age-of-ai-icm-2026.pdf
66•Anon84•9h ago•29 comments

An ESP32 based plane radar for my desk

https://blog.ktz.me/esp32-plane-radar/
248•alexktz•16h ago•53 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)