frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

FFmpeg 9.0

https://github.com/FFmpeg/FFmpeg/blob/n9.0/RELEASE_NOTES
155•gyan•1h ago•21 comments

DeepSeek V4 Flash on a Single AMD MI300X

https://github.com/ryanzhou/deepseek-v4-flash-mi300x
30•zhoutong•57m ago•4 comments

LLMs reward expertise

https://www.seangoedecke.com/llms-reward-expertise/
991•MaxMussio•13h ago•418 comments

You don't need React: creating a minimal UI library in Vanilla JavaScript

https://pedroth.github.io/?p=post/NoNeedReact
52•pedro_movai•2h ago•39 comments

Harness Engineering for Self-Improvement

https://lilianweng.github.io/posts/2026-07-04-harness/
68•tosh•4h ago•8 comments

Show HN: Run an 80B Qwen in 4.3 GB of RAM on a Mac, and a 35B on an iPhone

https://github.com/leonickson1/Swiftlet
196•leonickson•18h ago•88 comments

Ten advances in mathematics and theoretical computer science

https://openai.com/index/ten-advances-in-mathematics/
546•milkshakes•18h ago•838 comments

Devtools must be open source

https://blog.exe.dev/devtools-must-be-open-source
623•bryanmikaelian•20h ago•206 comments

Amazonian civilization had estimated 3M people in 3% of forest area

https://www.science.org/content/article/odd-shapes-hidden-dense-amazon-rainforest-reveal-sprawlin...
159•marojejian•5d ago•133 comments

Archaeologists Find Ancient Glyphs in the Amazon

https://www.nytimes.com/2026/07/31/world/americas/amazon-archaeology-geoglyphs.html
9•wglb•2d ago•5 comments

That time when I failed the Microsoft interview

https://ochagavia.nl/blog/that-time-when-i-failed-the-microsoft-interview/
71•wofo•6d ago•121 comments

Ask HN: Who is hiring? (August 2026)

181•whoishiring•19h ago•170 comments

Prevent cognitive debt by manually retyping LLM-generated code

https://ankursethi.com/blog/prevent-cognitive-debt-by-manually-retyping-llm-generated-code/
492•mpweiher•1d ago•404 comments

CollectWise (YC F24) Is Hiring

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

There Will Come Soft Rains (1950) [pdf]

https://users.wpi.edu/~zrbutzke/Docs/BradburyStories(1).pdf
164•pmg101•11h ago•59 comments

Smaller, faster, safer: running Kimi and GLM at scale

https://blog.cloudflare.com/smaller-faster-safer-models/
223•ascorbic•17h ago•58 comments

Beauty in my backyard

https://worksinprogress.co/issue/beauty-in-my-backyard/
27•footest•4d ago•9 comments

Twenty Years of Pandoc

https://pandoc.org/twenty-years-of-pandoc.html
276•fiddlosopher•19h ago•32 comments

Ask HN: Who wants to be hired? (August 2026)

121•whoishiring•19h ago•289 comments

MiniMax H3 Day-0 Support in ComfyUI: Open Weights, Native Audio, and 2K Video

https://blog.comfy.org/p/minimax-h3-day-0-support-in-comfyui
300•vblanco•21h ago•87 comments

Launch HN: Hoplite (YC S26) – Effortlessly deploy cloud coding agents

https://hoplite.sh
73•BenceRed•18h ago•60 comments

Andy Pavlo joins ClickHouse to establish ClickHouse Labs

https://clickhouse.com/blog/andy-pavlo-joins-clickhouse
315•nikolay_sivko•20h ago•67 comments

Celebrating 45 Years of Kermit with the First New C-Kermit Release in 15 Years

https://changelog.complete.org/archives/44456-celebrating-45-years-of-kermit-with-the-first-new-c...
168•roryirvine•17h ago•43 comments

Trembling Photons in Non-Abelian Electric Fields

https://physics.aps.org/articles/v19/89
9•bookofjoe•3d ago•1 comments

Show HN: I made a private self-destructing image hosting site in Golang

https://picburn.xyz/
3•shelldweller•2h ago•1 comments

200 Milliseconds

https://200ms.thenodebook.com
291•dimitarpanov•3d ago•89 comments

Windows XP 2002 for the Itanium: Unbridled rage

https://virtuallyfun.com/2026/08/03/windows-xp-2002-for-the-itanium-unbridled-rage/
109•jandeboevrie•12h ago•61 comments

Bending Spoons makes first post-IPO acquisition with $1.3B Airtable deal

https://live.euronext.com/en/financial-news/bending-spoons-makes-first-post-ipo-acquisition-13-bi...
43•riffraff•1h ago•45 comments

Bonsai: Janestreet's UI Library

https://github.com/janestreet/bonsai
360•KolmogorovComp•1d ago•147 comments

Replacing the Kobo Libra H2O Battery

https://ei3lh.eu/2025/11/20/replacing-the-kobo-libra-h2o-battery/
78•austinallegro•5d ago•29 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)