frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

There's no point at which turning your brain off will work

https://danluu.com/brain-off/
62•robin_reala•35m ago•29 comments

Cloudflare Quick Tunnels

https://try.cloudflare.com/
242•jcbhmr•3h ago•121 comments

Photon-Emission-Guided Laser Fault Injection Enables RP2350 Secure Debug

https://donjon.ledger.com/blog/rp2350-secure-debug-laser-fault-injection/
21•synack•43m ago•2 comments

An Empirical Study of Harness Design for Coding Agents

https://arxiv.org/abs/2609.20804
175•wek•4h ago•39 comments

North Korean nuclear test sets off years of earthquakes

https://www.science.org/content/article/north-korean-nuclear-test-sets-years-earthquakes
92•rbanffy•2h ago•73 comments

Show HN: Cactus Needle 3: 8-29MB automation models can match DeepSeek V4 Flash

https://cactuscompute.com/needle
46•HenryNdubuaku•17h ago•16 comments

C++26: Trivial infinite loops are no longer undefined behaviour

https://www.sandordargo.com/blog/2026/09/16/cpp26-trivial-infinite-loops
64•ibobev•20h ago•97 comments

OpenJev

https://openjev.com/
399•ilreb•7h ago•205 comments

Mathematicians Build Long-Awaited Graph Sandwich

https://www.quantamagazine.org/mathematicians-build-long-awaited-graph-sandwich-20260918/
32•ibobev•2h ago•6 comments

I vibed a proof of Conway's conjecture

https://overreacted.io/how-i-vibed-a-proof-of-conways-conjecture/
114•m-hodges•3h ago•103 comments

A heap overflow and SSO misconfiguration to compromise OpenAI internal repos

https://www.hacktron.ai/blog/hacking-openai
427•Handy-Man•14h ago•180 comments

GrassLobster: AI Agentic Generation of Parametric Geometry Workflows

https://www.miro.vision/index.php/2026/09/17/grasslobbster/
22•aidog•2h ago•3 comments

I don't like passkeys

https://hawksley.dev/blog/i-dont-like-passkeys
542•ethanhawksley•5h ago•529 comments

Jemalloc 5.4.0

https://github.com/jemalloc/jemalloc/releases/tag/5.4.0
294•gkfasdfasdf•13h ago•75 comments

NATS publishes preliminary report on technical incident of 8 September

https://www.nats.aero/news/nats-publishes-preliminary-report-on-technical-incident-of-8-september/
34•asplake•4h ago•23 comments

The Shadows Lurking in the Equations – Underwater Islands

https://gods.art/articles/equation_shadows
51•vismit2000•2d ago•9 comments

Cekura (YC F24) Is Hiring

https://www.ycombinator.com/companies/cekura-ai/jobs/AiWwUxI-forward-deployed-engineer-us
1•atarus•5h ago

BeanShell3 in Development

https://beanshell.github.io/home.html
24•jimjag•3h ago•11 comments

The scourge of x86 emulation

https://fex-emu.com/Scourge-of-emulation/
246•dagmx•13h ago•68 comments

Bonsai 2 27B: Near-Lossless Compression in a 9x Smaller Footprint

https://prismml.com/news/bonsai-2-27b
543•JonSchneider•20h ago•176 comments

Warren Buffett Steps Down as Berkshire Chairman, Names Son to Replace Him

https://www.nytimes.com/2026/09/18/business/warren-buffett-berkshire-chairman.html
230•saimiam•6h ago•154 comments

Show HN: Scry, programmable internet search w/ congestion pricing

https://scry.io/
14•Xyra•18h ago•2 comments

US Treasuries Have Become Unappetizing for Foreign Central Banks and Governments

https://wolfstreet.com/2026/09/17/treasuries-have-become-badly-unappetizing-for-foreign-central-b...
92•iamnothere•1h ago•50 comments

Build Faster Feedback Loops Using Qualitative User Research

https://blog.nseldeib.com/p/build-faster-feedback-loops-using
19•nadis•2h ago•1 comments

Qwen 3.8 Omni Flash

https://qwen.ai/blog?id=qwen3.8-omni-flash
310•jjcm•18h ago•117 comments

Show HN: Microsoft Office running with Wine on Linux with no virtualization

https://github.com/Tombert/office365_flake
67•tombert•20h ago•51 comments

Second Circuit Allows Government to Search Electronic Devices at the Border

https://knightcolumbia.org/content/second-circuit-allows-government-to-search-electronic-devices-...
75•HotGarbage•3h ago•39 comments

How to Write with an LLM

https://sockpuppet.org/blog/2026/09/17/how-to-write-with-an-llm/
278•joeriddles•19h ago•193 comments

Pre-Greek: The lost language hidden within Ancient Greek

https://linguisticdiscovery.com/posts/pre-greek/
142•axiologist•14h ago•61 comments

Microsoft exec called AI scraping 'the largest theft of labor in human history'

https://techcrunch.com/2026/09/17/microsoft-exec-called-ai-scraping-the-largest-theft-of-labor-in...
734•pluc•7h ago•639 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)