frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ember-1

https://fireworks.ai/blog/ember-1
160•gmays•2h ago•81 comments

The state of SIMD in Rust in 2026

https://shnatsel.github.io/state-of-simd-rust-2026/
14•verdagon•2d ago•0 comments

In an $80 motel room, a discovery to shed light on the origins of life

https://www.nytimes.com/2026/09/26/science/motel-science-discovery.html
154•danso•5h ago•59 comments

Oral history of John Chowning, inventor of FM synthesis [video]

https://www.youtube.com/watch?v=e1Xn3030IvM
13•Rochus•1h ago•2 comments

Show HN: Lofi Cities – Pixel-art city nights with browser-generated lofi

https://loficities.com/
45•safaelmali•1h ago•8 comments

Alan Kay's answer to "Did the ENIAC have a BIOS"?

https://www.quora.com/Did-the-ENIAC-have-a-BIOS/answer/Alan-Kay-11
4•midnightfish•25m ago•1 comments

Writing Efficient C++ Code (2013)

https://asawicki.info/articles/writing_efficient_cpp_code.php
113•ibobev•1d ago•55 comments

Imp is a full port of DSPy to the BEAM

https://github.com/deepfates/imp
5•mpweiher•33m ago•2 comments

Replacing the old battery on rechargeable bike lights

https://jvns.ca/blog/2026/09/27/replacing-the-old-battery-on-rechargeable-bike-lights/
105•surprisetalk•6h ago•52 comments

Show HN: TinyAIArena watch AI agents battle it out

https://tinyaiarena.com/
71•hp6•4h ago•34 comments

Don't couple your Go code to GitHub

https://iain.rocks/blog/dont-couple-your-go-code-to-github
22•birdculture•3h ago•9 comments

The Normalization of Inexplicable Failures

https://www.ihatethefuture.com/2026/09/the-normalization-of-inexplicable.html
200•pxx•4h ago•74 comments

The Cartesian Hand: In-Hand Manipulation with All-Linear Fingers

https://generalroboticslab.com/cartesian_handv1
23•AareyBaba•1d ago•4 comments

John Coltrane Centenary's – Impulse Records Release the Legendary Tiberi Tapes

https://www.jazzwise.com/content/news/john-coltrane-centenary-celebrations-see-impulse-records-re...
25•gregsadetsky•2d ago•5 comments

Fragment of oldest known peace treaty found in Turkey

https://www.livescience.com/archaeology/ancient-egyptians/we-have-found-traces-of-peace-thousands...
28•gmays•5h ago•5 comments

On caring for user data: NeoVim caused Vim undo files to be deleted

https://unsung.aresluna.org/they-had-no-concept-of-a-duty-of-care-to-their-users/
305•jandeboevrie•5h ago•266 comments

Kicki: A DECsystem1060 – Interim Computer Museum

https://icm.museum/blog/?p=207
9•rbanffy•1d ago•1 comments

Flip Fluid on Flip Dots

https://mitxela.com/projects/flipflip
319•blutack•1d ago•21 comments

Fakecloud: Local AWS cloud emulator for integration tests

https://fakecloud.dev/
80•theanonymousone•1d ago•42 comments

Video CDs Break Windows Explorer

https://clydesnotes.blogspot.com/2026/08/video-cds-break-windows-explorer.html
51•ClydeN•1d ago•17 comments

Show HN: Building a Markdown editor for Mac, iOS and web

https://www.markdown.beauty/
47•thiagoperes•6h ago•30 comments

There are no "rogue" AI agents

https://eoinhiggins.substack.com/p/there-are-no-rogue-ai-agents
262•zzzeek•3h ago•188 comments

Show HN: Trail – new kind of logic game

https://trail.franzai.com/
19•franze•12h ago•7 comments

Faster prompt lookup drafting in llama.cpp

https://jadidbourbaki.github.io/blog/prompt-lookup-llama-cpp/
37•pptadversary•1d ago•4 comments

Improving site performance by shipping more CSS

https://github.blog/engineering/architecture-optimization/improving-site-performance-by-shipping-...
70•torutofu•1d ago•57 comments

Walgit: A Git server that is one binary in front of an object store

https://github.com/rgodha24/walgithub
59•handfuloflight•1d ago•7 comments

PostmarketOS is rebranding as Nura

https://nura.eco/blog/2026/09/27/nura-rename/
124•HotGarbage•4h ago•22 comments

Go Concurrency Distilled

https://antonz.org/go-concurrency-distilled/
351•chmaynard•1d ago•149 comments

Ten lines of code that changed my world

https://pixelambacht.nl/2026/ten-lines-of-code/
102•dimonomid•6h ago•32 comments

C's Flexible Integer Sizes Were Not a Design Mistake

https://pikuma.com/blog/c-integer-sizes-not-a-mistake
53•ibobev•2d ago•82 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)