frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I ♥ RSS – A directory of people who love RSS

https://andrewshell.org/2026/07/i-%e2%99%a5-rss/
41•speckx•35m ago•27 comments

Cursor removed cost information from the usage page and CSV export

https://forum.cursor.com/t/usage-page-to-token-amount-what/167153
114•EugeneOZ•2h ago•48 comments

The Art of 64-bit Assembly

https://nostarch.com/art-64-bit-assembly-v2
90•0x54MUR41•3h ago•46 comments

RipGrep musl binaries occasionally segfault during very-large searches

https://github.com/BurntSushi/ripgrep/issues/3494
178•throwaway2037•4h ago•101 comments

Kaisel – Routes as Values. Dart 3 Native Router for Flutter

https://kaisel.dev/
10•TheWiggles•42m ago•0 comments

Explorative modeling: Train on the best of K guesses

https://alexiglad.github.io/blog/2026/explorative_modeling/
23•DSemba•2h ago•3 comments

Pgtestdb's template cloning approach to testing is fast

https://brandur.org/fragments/pgtestdb
22•brandur•1h ago•4 comments

A Surveillance Treaty in Disguise: Canada Signs UN Cybercrime Convention

https://www.michaelgeist.ca/2026/07/a-surveillance-treaty-in-disguise-the-trouble-with-canadas-qu...
146•iamnothere•3h ago•76 comments

Register deprivation: spills and runtime under forced register scarcity

https://rjp.io/blog/2026-07-19-register-deprivation
9•surprisetalk•2d ago•0 comments

Study uncovers lost 'golden age' of languages

https://news.yale.edu/2026/07/23/study-uncovers-lost-golden-age-languages
31•gmays•2d ago•16 comments

Linux on ESP32

https://github.com/GrieferPig/esp32-s31-linux
44•boveyking•3d ago•15 comments

Manual: •.,:;?·

https://type.today/en/journal/dots
90•behnamoh•2d ago•17 comments

Charlie Stross – On the non-use of AI in my writing process

https://www.antipope.org/charlie/blog-static/2026/08/on-the-non-use-of-ai-in-my-wri.html
70•jwx48•4h ago•63 comments

Flint: A Visualization Language for the AI Era

https://microsoft.github.io/flint-chart/
224•vinhnx•14h ago•65 comments

RamenHaus

https://ramen.haus/
168•oler•8h ago•82 comments

Kontigo (YC S24) Is Hiring

https://www.ycombinator.com/companies/kontigo/jobs/xAo6tMt-founding-engineer
1•jecastillof•5h ago

qm – Multiplayer agent harness for work

https://github.com/yc-software/qm
632•tosh•23h ago•146 comments

Rear center fuel tank adds roughly 20k liters and extends range by 1k NM

https://www.airbus.com/en/newsroom/press-releases/2026-06-worlds-longest-range-aircraft-the-airbu...
14•r2sk5t•4d ago•10 comments

Solid Queue 1.6.0 now supports fiber workers

https://github.com/rails/solid_queue/releases/tag/v1.6.0
70•earcar•9h ago•27 comments

A tiny holdout building in the middle of Macy’s is back in view

https://ephemeralnewyork.wordpress.com/2026/07/27/hidden-by-billboards-for-over-100-years-the-tin...
152•donohoe•3d ago•42 comments

Scope of Hacks on U.S. Water Supply Widens as Evidence Points to Iran

https://www.nytimes.com/2026/08/01/us/politics/iran-cyberattack-water-systems.html
47•jbegley•1h ago•36 comments

GitHub has alternatives, but no replacement

https://lalitm.com/post/github-alternatives/
66•lalitmaganti•1h ago•82 comments

Elevators

https://john.fun/elevators
1509•Jrh0203•1d ago•380 comments

Toast IDE Gets Markdown Spell Checking

https://github.com/paradise-runner/toast
3•dividedcomet•2h ago•0 comments

Assessment of open AI math results

https://twitter.com/stalkermustang/status/2083485500250198453
6•paulpauper•20m ago•1 comments

Software for One

https://www.ajwaxman.com/writing/software-for-one
198•awaxman11•3d ago•201 comments

How to Exist

https://www.raptitude.com/2026/07/how-to-exist/
320•walterbell•17h ago•189 comments

Ten advances in mathematics and theoretical computer science

https://openai.com/index/ten-advances-in-mathematics/
334•milkshakes•9h ago•214 comments

Run Kimi K3 using 29 GB of RAM at 0.50 tok/s

https://github.com/sqliteai/waste
304•marcobambini•1d ago•141 comments

Astro Loop

https://pubdeer.com/
21•BaseBaal•5h ago•4 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)