frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Since Chronium 148, Math.tanh is now fingerprintable to link underlying OS

https://scrapfly.dev/posts/browser-math-os-fingerprint/
81•joahnn_s•51m ago•27 comments

Tiny Emulators

https://floooh.github.io/tiny8bit-preview/index.html
76•naves•1h ago•3 comments

Claude Code sends 33k tokens before reading the prompt; OpenCode sends 7k

https://systima.ai/blog/claude-code-vs-opencode-token-overhead
331•systima•3h ago•186 comments

Nuclear war survival guide reveals seven everyday items if disaster strikes

https://www.dailymail.com/sciencetech/article-15795297/Forgotten-nuclear-war-survival-guide-revea...
6•Bender•28m ago•1 comments

Old and new apps, via modern coding agents

https://terrytao.wordpress.com/2026/07/11/old-and-new-apps-via-modern-coding-agents/
382•subset•10h ago•107 comments

Migrating a production AI agent to GPT-5.6: 2.2x faster, 27% cheaper

https://ploy.ai/blog/migrating-a-production-ai-agent-to-gpt-5-6
61•brryant•4h ago•8 comments

Mechanistic interpretability researchers applying causality theory to LLMs

https://cacm.acm.org/news/can-we-understand-how-large-language-models-reason/
57•adunk•3h ago•57 comments

Irish datacenters now guzzle 23% of the country's electricity

https://www.theregister.com/on-prem/2026/07/11/irish-datacenters-now-guzzle-23-of-the-countrys-el...
86•Bender•1h ago•53 comments

Why write code in 2026

https://softwaredoug.com/blog/2026/07/09/write-code
70•softwaredoug•2d ago•116 comments

Automation Without Understanding

https://arxiv.org/abs/2607.06377
76•root-parent•5h ago•37 comments

I love LLMs, I hate hype

https://geohot.github.io//blog/jekyll/update/2026/07/12/i-love-llms.html
235•therepanic•3h ago•126 comments

The One-Step Trap (In AI Research)

http://incompleteideas.net/IncIdeas/OneStepTrap.html
32•jxmorris12•3h ago•5 comments

LARP – Revenue infrastructure for serious founders

https://www.larp.website/
97•BerislavLopac•5h ago•23 comments

Kode Dot Programmable pocket device for makers, pentesters and geeks

https://kode.diy
5•iNic•35m ago•0 comments

I Learned to Read Again

https://substack.magazinenongrata.com/p/how-i-learned-to-read-again
50•georgex7•3h ago•17 comments

So you want to learn physics (second edition, 2021)

https://www.susanrigetti.com/physics
9•azhenley•4d ago•2 comments

Against Usefulness

https://www.motivenotes.ai/p/against-usefulness
65•supo•4h ago•15 comments

Don't you mean extinct?

https://fabiensanglard.net/extinct/index.html
163•zdw•6h ago•89 comments

Deir El-Medina Strikes

https://en.wikipedia.org/wiki/Deir_el-Medina_strikes
47•mooreds•5d ago•5 comments

How to read more books

https://scotto.me/blog/2026-07-12-how-to-read-more-books/
221•silcoon•6h ago•127 comments

The State of MCP Security [pdf]

https://www.canopii.dev/State%20of%20MCP%20Security%202026.pdf
7•mavzer•1h ago•0 comments

Flash-MSA: Accelerating Million-Token Training with Sparse Attention Kernels

https://nanduruganesh.github.io/flash-msa/
5•rawsh•1h ago•0 comments

Defining new Jax types with hijax

https://docs.jax.dev/en/latest/hijax_types.html
10•fhchl•2h ago•2 comments

The shingles vaccine may reduce the risk of dementia

https://www.economist.com/leaders/2026/07/09/a-no-brainer-for-protecting-your-brain
181•saikatsg•6h ago•151 comments

Neocities: Create your own free website

https://neocities.org/
58•Tomte•2h ago•15 comments

Why study Diophantine equations?

https://hidden-phenomena.com/articles/modular
57•mb1699•6h ago•18 comments

Show HN: Adaptive Recall, persistent memory for AI assistants over MCP

https://www.adaptiverecall.com/
4•abratabia•54m ago•0 comments

The power of collaboration: How we can reduce traffic congestion

https://research.google/blog/the-power-of-collaboration-how-we-can-reduce-traffic-congestion/
45•raahelb•6h ago•38 comments

The Seed Beneath the Snow

https://eli.li/the-seed-beneath-the-snow
8•surprisetalk•3d ago•0 comments

Show HN: Shirei, cross-platform GUI framework in native Go

https://github.com/hasenj/go-shirei/
69•hsn915•5h ago•39 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)