frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

ZCode – Harness for GLM-5.2

https://zcode.z.ai/en
193•chvid•3h ago•206 comments

Meta Caps Internal AI Token Spending After Costs Approach Billions in 2026

https://mlq.ai/news/meta-caps-internal-ai-token-spending-after-costs-approach-billions-in-2026/
80•typeofhuman•1h ago•70 comments

Show HN: Searchable directory of 22k+ products from worker-owned co-ops

https://www.workerowned.info/
214•IESAI_ski•5h ago•35 comments

For first time, a cell built from scratch grows and divides

https://www.quantamagazine.org/for-the-first-time-a-cell-built-from-scratch-grows-and-divides-202...
730•defrost•11h ago•250 comments

What to learn to be a graphics programmer

https://blog.demofox.org/2026/07/01/what-to-learn-to-be-a-graphics-programmer/
242•atan2•7h ago•123 comments

Building an Open-Source Robot Vacuum – Meet Oomwoo

https://makerspet.com/blog/building-an-open-source-robot-vacuum-meet-oomwoo/
22•devicelimit•1h ago•1 comments

The Underhanded C Contest

https://underhanded-c.org/
35•ccabraldev•3h ago•5 comments

Opening up 'Zero-Knowledge Proof' technology to promote privacy in age assurance

https://blog.google/innovation-and-ai/technology/safety-security/opening-up-zero-knowledge-proof-...
53•consumer451•3h ago•30 comments

Physical disc production ending in Jan 2028 for new games on PlayStation

https://blog.playstation.com/2026/07/01/physical-disc-production-ending-in-january-2028-for-new-g...
597•Tiberium•13h ago•628 comments

Global review confirms mRNA vaccines are safe, effective and full of promise 

https://news.ubc.ca/2026/06/mrna-vaccines-are-safe-effective-and-full-of-promise/
69•coloneltcb•1h ago•35 comments

FFmpeg 9.1's new AAC encoder

https://hydrogenaudio.org/index.php/topic,129691.0.html
282•ledoge•11h ago•95 comments

The <Usermedia> HTML Element

https://developer.chrome.com/blog/usermedia-html-element
24•twapi•1h ago•14 comments

Chip Off the Old Block

https://www.astralcodexten.com/p/chip-off-the-old-block
40•paulpauper•4h ago•5 comments

Qualcomm Linux 2.0

https://www.qualcomm.com/developer/blog/2026/06/qualcomm-linux-2-now-available
50•gilgamesh3•4h ago•12 comments

Box3D, an open source 3D physics engine

https://box2d.org/posts/2026/06/announcing-box3d/
412•makepanic•13h ago•92 comments

Proliferate (YC S25) Is Hiring

https://www.ycombinator.com/companies/proliferate/jobs/mMHvKR9-founding-product-engineer
1•pablo24602•4h ago

Visual Basic on the PC with Windows 3.1

https://stonetools.ghost.io/visualbasic-win31/
8•TMWNN•3d ago•2 comments

Internal Combustion Engine (2021)

https://ciechanow.ski/internal-combustion-engine/
284•StefanBatory•12h ago•73 comments

Ask HN: Who is hiring? (July 2026)

162•whoishiring•10h ago•175 comments

Monetization Gateway: Charge for any resource behind Cloudflare via x402

https://blog.cloudflare.com/monetization-gateway/
249•soheilpro•11h ago•165 comments

I Left Harry's All-Night Hamburgers

https://escapepod.org/2013/09/14/ep413-why-i-left-harrys-all-night-hamburgers/
72•rbanffy•4h ago•9 comments

How do wombats poop cubes? Scientists get to the bottom of the mystery

https://www.science.org/content/article/how-do-wombats-poop-cubes-scientists-get-bottom-mystery
35•bushwart•1d ago•7 comments

Healthy but sedentary people show early decline in cellular energy production

https://news.cuanschutz.edu/news-stories/healthy-but-sedentary-individuals-show-early-decline-in-...
57•littlexsparkee•3h ago•48 comments

Flavor Graveyard

https://www.benjerry.com/flavors/flavor-graveyard
24•NaOH•3d ago•12 comments

The Apple Disk II Controller Card

https://www.bigmessowires.com/2021/11/12/the-amazing-disk-ii-controller-card/
42•stmw•2d ago•10 comments

Launch HN: Parsewise (YC P25) – Reason Across Documents with an API

45•gergelycsegzi•12h ago•45 comments

How We Made IPFS Content Publishing 10x Faster

https://probelab.io/blog/optimistic-provide/
146•dennis-tra•10h ago•48 comments

Weave Robotics launches Isaac 1, a $7,999 home robot with Fall 2026 deliveries

https://www.weaverobotics.com/isaac-1
74•ryanmerket•7h ago•124 comments

Fable 5 Is Back

https://twitter.com/claudeai/status/2072402636813607381
319•mfiguiere•6h ago•299 comments

LibreCAD in the Browser

https://magik.net/librecad/
3•devttyeu•48m ago•0 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)