frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

How NASA built Artemis II’s fault-tolerant computer

https://cacm.acm.org/news/how-nasa-built-artemis-iis-fault-tolerant-computer/
379•speckx•18h ago•135 comments

I still prefer MCP over skills

https://david.coffee/i-still-prefer-mcp-over-skills/
179•gmays•7h ago•153 comments

Native Instant Space Switching on macOS

https://arhan.sh/blog/native-instant-space-switching-on-macos/
509•PaulHoule•14h ago•239 comments

ETH Zurich demonstrates 17,000 qubit array with 99.91% fidelity

https://ethz.ch/en/news-and-events/eth-news/news/2026/04/a-new-trick-brings-stability-to-quantum-...
62•joko42•5h ago•10 comments

We've raised $17M to build what comes after Git

https://blog.gitbutler.com/series-a
133•ellieh•8h ago•284 comments

Generative art over the years

https://blog.veitheller.de/Generative_art_over_the_years.html
148•evakhoury•2d ago•39 comments

Charcuterie – Visual similarity Unicode explorer

https://charcuterie.elastiq.ch/
234•rickcarlino•13h ago•43 comments

Scientists invented a fake disease. AI told people it was real

https://www.nature.com/articles/d41586-026-01100-y
35•latexr•1h ago•17 comments

Show HN: Keeper – embedded secret store for Go (help me break it)

https://github.com/agberohq/keeper
4•babawere•1h ago•0 comments

War on Raze

https://gist.github.com/chrispsn/af6844b80687462814fc39d4b97399a6
10•tosh•3d ago•3 comments

RAM Has a Design Flaw from 1966. I Bypassed It [video]

https://www.youtube.com/watch?v=KKbgulTp3FE
225•surprisetalk•2d ago•61 comments

The Art of Risk Management (2017)

https://www.bcg.com/publications/2017/finance-function-excellence-corporate-development-art-risk-...
6•walterbell•2d ago•0 comments

Unfolder for Mac – A 3D model unfolding tool for creating papercraft

https://www.unfolder.app/
235•codazoda•17h ago•45 comments

Artemis II and the invisible hazard on the way to the Moon

https://www.ansto.gov.au/news/artemis-ii-and-invisible-hazard-on-way-to-moon-part-1
8•zeristor•2h ago•9 comments

Old laptops in a colo as low cost servers

https://colaptop.pages.dev/
274•argentum47•15h ago•160 comments

Principles of Mechanical Sympathy

https://martinfowler.com/articles/mechanical-sympathy-principles.html
59•zdw•2d ago•8 comments

CollectWise (YC F24) Is Hiring

https://www.ycombinator.com/companies/collectwise/jobs/Ktc6m6o-ai-agent-engineer
1•OBrien_1107•5h ago

Zero-build privacy policies with Astro

https://www.openpolicy.sh/blog/no-build-astro
7•jamie_davenport•1h ago•4 comments

Afrika Bambaataa, hip-hop pioneer, has died

https://www.bbc.co.uk/news/articles/c2evppm30p7o
124•mellosouls•5h ago•29 comments

Penguin 'Toxicologists' Find PFAS Chemicals in Remote Patagonia

https://www.ucdavis.edu/health/news/penguin-toxicologists-find-pfas-chemicals-remote-patagonia
10•giuliomagnifico•3h ago•5 comments

Instant 1.0, a backend for AI-coded apps

https://www.instantdb.com/essays/architecture
151•stopachka•15h ago•78 comments

PicoZ80 – Drop-In Z80 Replacement

https://eaw.app/picoz80/
193•rickcarlino•15h ago•31 comments

Research-Driven Agents: When an agent reads before it codes

https://blog.skypilot.co/research-driven-agents/
178•hopechong•17h ago•48 comments

The Raft consensus algorithm explained through "Mean Girls" (2019)

https://www.cockroachlabs.com/blog/raft-is-so-fetch/
82•vermilingua•6h ago•21 comments

US plans to automatically register young men for military draft

https://www.bbc.com/news/articles/cd6lx2lpl9xo
6•georgecmu•40m ago•3 comments

VFX HQ: Visual Effects Headquarters (2000)

https://www.vfxhq.com/index.html
11•exvi•2d ago•0 comments

An AI robot in my home

https://allevato.me/2026/04/07/an-ai-robot-in-my-home
37•kukanani•2d ago•13 comments

Hegel, a universal property-based testing protocol and family of PBT libraries

https://hegel.dev
114•PaulHoule•15h ago•32 comments

Reverse engineering Gemini's SynthID detection

https://github.com/aloshdenny/reverse-SynthID
151•_tk_•13h ago•51 comments

Will I ever own a zettaflop?

https://geohot.github.io//blog/jekyll/update/2026/01/26/own-a-zettaflop.html
99•surprisetalk•3d ago•64 comments
Open in hackernews

Using Coalton to implement a quantum compiler (2022)

https://coalton-lang.github.io/20220906-quantum-compiler/
57•andsoitis•11mo ago

Comments

reikonomusha•11mo 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•11mo 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•11mo 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•11mo 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)