frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GPT-5.6

https://openai.com/index/gpt-5-6/
1325•logickkk1•18h ago•923 comments

In Emacs, Everything Looks Like a Service

http://yummymelon.com/devnull/in-emacs-everything-looks-like-a-service.html
35•kickingvegas•2h ago•5 comments

Show HN: Getting GLM 5.2 running on my slow computer

https://github.com/JustVugg/colibri
713•vforno•1d ago•171 comments

EU Parliament greenlights Chat Control 1.0

https://www.patrick-breyer.de/en/eu-parliament-greenlights-chat-control-1-0-breyer-our-children-l...
1427•rapnie•1d ago•678 comments

Train sim created by just one person is being called the best ever made

https://kotaku.com/a-train-sim-created-by-just-one-person-is-being-called-the-best-ever-made-2000...
640•oumua_don17•5d ago•235 comments

Show HN: 18 Words

https://18words.com/
1011•pompomsheep•22h ago•327 comments

Postgres rewritten in Rust, now passing 100% of the Postgres regression tests

https://github.com/malisper/pgrust
694•SweetSoftPillow•1d ago•584 comments

Apple Silicon Exec Explains Mac Mini AI Demand and On-Device Future

https://www.macrumors.com/2026/07/06/apple-silicon-exec-explains-mac-mini-ai-demand/
87•tosh•3d ago•115 comments

AI-generated videos to maximally drive a target brain region

https://nevo-project.epfl.ch/
77•smusamashah•3h ago•72 comments

Hy3

https://hy.tencent.com/research/hy3
489•andai•19h ago•101 comments

Interview with Mitchell Hashimoto about Ghostty and Zig

https://alexalejandre.com/programming/interview-with-mitchell-hashimoto/
266•veqq•17h ago•127 comments

The glass backbone: Why the Army's logistics will break in the next war

https://mwi.westpoint.edu/the-glass-backbone-why-the-armys-logistics-will-break-in-the-next-war/
385•baud147258•21h ago•491 comments

No leap second will be introduced at the end of December 2026

https://datacenter.iers.org/data/latestVersion/bulletinC.txt
289•ChrisArchitect•20h ago•224 comments

A road to Lisp: Why Lisp

https://scotto.me/blog/2026-07-09-why-lisp/
245•silcoon•22h ago•187 comments

My Story of 3D Realms / Apogee Part I (2020)

https://joesiegler.blog/2020/11/my-story-of-apogee-3dr/
79•Michelangelo11•1w ago•6 comments

Common prefix skipping, adaptive sort

http://smalldatum.blogspot.com/2026/01/common-prefix-skipping-adaptive-sort.html
28•theanonymousone•3d ago•3 comments

Parental device use and the adolescent-caregiver attachment bond

https://www.frontiersin.org/journals/psychology/articles/10.3389/fpsyg.2026.1766665/full
133•hbcondo714•10h ago•112 comments

A possible future for Damn Interesting

https://www.damninteresting.com/a-possible-future/
288•mzur•19h ago•39 comments

Life with Hazard Ratios

https://dynomight.net/hazard-ratios/
46•surprisetalk•3d ago•18 comments

Ditching Vagrant: VMs with KVM and Virsh on Debian

https://benjamintoll.com/2026/06/29/on-ditching-vagrant/
14•fanf2•3d ago•5 comments

Launch HN: Context.dev (YC S26) – API to get structured data from any website

https://www.context.dev
98•TheYahiaBakour•19h ago•69 comments

Building a real-time AI tutor for 5-year-olds

https://www.ello.com/blog/teaching-a-child-in-1000-ms
92•catalinvoss•14h ago•167 comments

Muse Spark 1.1

https://ai.meta.com/blog/introducing-muse-spark-meta-model-api/
381•ot•21h ago•189 comments

Girls just wanna have fast MPMC queues with bounded waiting

https://nahla.dev/blog/waitfree_queue/
177•EvgeniyZh•3d ago•34 comments

Why American ambulance rides are so expensive

https://davidoks.blog/p/why-american-ambulance-rides-are
230•jyunwai•12h ago•305 comments

Triple Dragon Fractal (2020)

https://paulbourke.net/fractals/tripledragon/
53•nhatcher•3d ago•12 comments

TLS certificates for internal services done right

https://tuxnet.dev/posts/tls-for-internal-services/
158•mrl5•20h ago•112 comments

John Deere owners will get the right to repair equipment under FTC settlement

https://apnews.com/article/john-deere-right-to-repair-agriculture-equipment-cb7514ffedb95c130a976...
1328•djoldman•1d ago•279 comments

Harman and Dr. Sean Olive are reshaping headphone sound (2025)

https://www.crutchfield.com/S-ls67Oiva4Wu/learn/crutchfield-visits-harman.html
20•ledoge•3d ago•9 comments

Patterncollider: Generate and explore quasiperiodic tiling patterns

https://github.com/aatishb/patterncollider
52•tobr•4d ago•3 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)