frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

JetKVM Mini

https://jetkvm.com/blog/introducing-jetkvm-mini
152•taubek•3h ago•73 comments

Nvidia dismisses "circular financing", says every $1 it invests brings back $100

https://invezz.com/news/2026/09/11/nvidia-says-every-1-it-invests-brings-back-100-so-why-does-the...
14•mgh2•48m ago•5 comments

Why are AI agents lying, cheating and coordinating?

https://yoshuabengio.org/en/publication/why-are-ai-agents-lying-cheating-and-coordinating
260•jonifico•9h ago•330 comments

Make your first edit to OpenStreetMap

https://high5apps.github.io/josm-plugin-website-wizard/
481•juliantigler•18h ago•124 comments

The Interim Computer Museum

https://icm.museum/
121•mulmen•8h ago•13 comments

I Added a Non-Wi-Fi Mitsubishi AC to Home Assistant

https://medium.com/@ivangomezarnedo/how-i-added-a-non-wi-fi-mitsubishi-ac-to-home-assistant-22770...
91•ichacas•3d ago•45 comments

Apple iPod Engraver (2019)

https://dunstanorchard.com/apple-ipod-engraver/
230•NaOH•4d ago•57 comments

Nvidia is the central bank of AI

https://www.economist.com/interactive/briefing/2026/09/03/nvidia-is-the-central-bank-of-ai
495•tolugenius•20h ago•351 comments

Homebrew 7.0.0

https://brew.sh/2026/09/13/homebrew-7.0.0/
55•mikemcquaid•2h ago•11 comments

How to Use Three.js's New Native Gaussian Splats

https://ben3d.ca/blog/how-to-use-threejs-native-gaussian-splats
5•bhouston•4d ago•0 comments

Stabilizing Rust's Never Type

https://lwn.net/SubscriberLink/1091015/d9e48318ed242b41/
198•cjd8•3d ago•58 comments

Operation Smart Kettle – Börzels Blog

https://blog.boerzel.de/de/blog/operation-smart-kettle
17•marbartolome•2d ago•8 comments

Everyone should slow down AI development except for me

https://xeiaso.net/notes/2026/everyone-slowdown-but-me/
517•xena•10h ago•311 comments

After Math

https://terrytao.wordpress.com/2026/09/12/after-math/
94•throwaway81523•8h ago•74 comments

AgentsDock: An IDE designed for agentic AI research

https://agentsdock.net/
65•ZihuiGeorgia•11h ago•29 comments

Don't be the out of touch Kung Fu master

https://twitter.com/ID_AA_Carmack/status/2098443262214230095
140•dsubburam•13h ago•162 comments

Aligned to whom?

https://hyperbo.la/w/aligned-to-whom/
65•lopopolo•8h ago•43 comments

Vintage Scientific Papers with LaTeX

https://github.com/Foadsf/vintage-latex
75•petalmind•3d ago•6 comments

LG denies TV spying claims, says tracking and snooping concerns 'not true'

https://www.tomshardware.com/tech-industry/big-tech/lg-strongly-denies-tv-security-claims-says-tr...
543•datakan•2d ago•423 comments

A succession crisis that tore England apart (2023)

https://www.historytoday.com/archive/feature/succession-crisis-tore-england-apart
36•pepys•7h ago•31 comments

Revolut confirms customer data breach through fake government requests

https://techcrunch.com/2026/09/12/revolut-confirms-customer-data-breach-through-fake-government-r...
14•tdrz•1h ago•0 comments

Getting 50 GB/S Back from the Apple Neural Engine

https://eiln.github.io/posts/ane-dma.html
153•eiln•3d ago•27 comments

P(doom)

https://lucumr.pocoo.org/2026/9/12/pdoom/
101•lumpa•13h ago•72 comments

A wandering black hole caught feeding on the run

https://phys.org/news/2026-08-black-hole-caught.html
23•wglb•7h ago•9 comments

We must pace the frontier

https://darioamodei.com/post/we-must-pace-the-frontier
660•apsec112•21h ago•927 comments

Liesegang Rings

https://chillphysicsenjoyer.substack.com/p/liesegang-rings
40•surprisetalk•3d ago•4 comments

Durable execution without history replay

https://trigora.dev/blog/durable-execution-without-history-replay/
23•hypervs•3d ago•9 comments

Will there be a 7G?

https://arxiv.org/abs/2609.01877
108•Betelbuddy•18h ago•162 comments

I made a build visualizer to understand Bun's compile times

https://lalitm.com/post/buildprof/
138•lalitmaganti•20h ago•26 comments

Microcode in Intel's 8087 floating-point chip: the scale instruction

https://www.righto.com/2026/09/8087-microcode-reverse-engineering-fscale.html
114•pwg•19h ago•35 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)