frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Scrap

https://twitter.com/moxie/status/2091218652133732491
289•tosh•6h ago•141 comments

NanoGPT Speedrun Frontier

https://www.primeintellect.ai/research/nanogpt-speedrun
36•stared•2h ago•7 comments

Why your local LLM feels dumber than it is

https://forum.level1techs.com/t/why-your-local-llm-feels-dumber-than-it-is/253917
161•felineflock•6h ago•47 comments

NetBSD and my life (2005)

https://mail-index.netbsd.org/netbsd-advocacy/2005/09/10/0000.html
88•gnyeki•5h ago•22 comments

ElevenLabs, TwelveLabs, ThirteenLabs

https://quantumi.sh/public/labs.html
292•jemoka•9h ago•98 comments

Hister – A private, full content search index that you control

https://hister.org/
218•auraham•4d ago•65 comments

RF Cafe

https://www.rfcafe.com/
142•gregsadetsky•3d ago•23 comments

typ.ing

https://typ.ing/
165•bookofjoe•4d ago•54 comments

How a Texas student blew the whistle on a rogue AI hacking attempt

https://www.reuters.com/world/how-texas-student-blew-whistle-rogue-ai-hacking-attempt-2026-08-20/
98•olalonde•1d ago•36 comments

A Friendly Introduction to Racket

https://geometridae.bearblog.dev/a-friendly-introduction-to-racket/
182•signa11•10h ago•91 comments

ATProto spaces: A new extension to ATProto that enables non-public data

https://atproto.com/blog/atproto-spaces-alpha
101•grappler•2d ago•13 comments

hdiutil is deprecated in macOS 27 Golden Gate

https://lapcatsoftware.com/articles/2026/8/7.html
157•zdw•5h ago•58 comments

One night in Uzbekistan: Why was this one data point so influential?

https://statmodeling.stat.columbia.edu/2026/08/20/we-couldnt-reproduce-their-findings-and-realize...
73•paulpauper•1d ago•12 comments

Canada will match US tariffs 'dollar for dollar' as trade talks break down

https://www.bbc.com/news/articles/cvgvyy4x2mvo
454•tartoran•18h ago•1193 comments

Munder Difflin – Agent harness to run an office of your clones

https://munderdiffl.in/
244•simonpure•14h ago•114 comments

Conway's Game of Life in real life

https://blog.coredump.cx/p/conways-game-of-life-in-real-life
29•surprisetalk•2d ago•6 comments

A week of using Codex more than Claude

https://allaboutcoding.ghinda.com/a-week-of-using-codex-more-than-claude/
117•speckx•1d ago•117 comments

Thinking in Python by Bruce Eckel

https://thinkinginpython.com/
39•pjacotg•6h ago•8 comments

English ↔ Claudish Translator

https://programasweights.com/claudish
46•leumon•5h ago•25 comments

What's in a PowerPoint File?

https://editide.com/blog/what-is-a-pptx-file/
51•danielochoa0620•3d ago•27 comments

Autolith: A programming agent with a live runtime

https://www.lambda-symbolics.com/autolith
108•vismit2000•2d ago•42 comments

Why it might be time to rethink the human family tree

https://nautil.us/why-it-might-be-time-to-rethink-the-human-family-tree-1283985
54•Anon84•2d ago•29 comments

A Kantian Critique of "Sorry" by Justin Bieber

https://decodingvibes.com/blog/a-kantian-critique-of-sorry-by-justin-bieber/
193•altmanaltman•11h ago•83 comments

Show HN: OzBrain, a shared brain for knowledge between agents and your team

https://ozbrain.com
75•dariusmonsef•1d ago•46 comments

Z80 – The 1970s Microprocessor Still Alive (2021)

https://www.computer.org/csdl/magazine/mi/2021/06/09623402/1yJTvlRLmhi
114•asdefghyk•14h ago•54 comments

Dynamical dark energy and the week that broke cosmology

https://perimeterinstitute.ca/news/dynamical-dark-energy-and-week-broke-cosmology
39•rznicolet•2d ago•12 comments

New MCP Roadmap

https://blog.modelcontextprotocol.io/posts/mcp-roadmap/
171•pentagrama•11h ago•124 comments

Rust Glancer: Rust LSP using 100x less RAM

https://rust-glancer.github.io/blog/hello-world/
392•matklad•1d ago•96 comments

Show HN: terminal-code – VS Code inside the terminal

https://terminal-code.com
68•robpruzan•3d ago•18 comments

Show HN: Make your logo extra bright on HDR screens

https://www.soverybright.com/
47•telecuda•5h ago•56 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)