frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Surveillance Is Not Safety: A statement on the UK's latest threat to privacy [pdf]

https://signal.org/blog/pdfs/2026-06-08-uk-surveillance-is-not-safety.pdf
165•g0xA52A2A•2h ago•19 comments

Apple reveals new AI architecture built around Google Gemini models

https://www.macrumors.com/2026/06/08/apple-reveals-new-ai-architecture/
257•unclefuzzy•2h ago•212 comments

Siri AI

https://www.apple.com/apple-intelligence/
259•0xedb•3h ago•193 comments

MiMo-v2.5-Pro-UltraSpeed: 1T model with 1000 tokens per second

https://mimo.xiaomi.com/blog/mimo-tilert-1000tps
437•gainsurier•6h ago•295 comments

Show HN: Performative-UI – A react component library of design tropes

https://vorpus.github.io/performativeUI/
663•lizhang•7h ago•133 comments

Why are cells small?

https://burrito.bio/essays/what-limits-a-cells-size
78•mailyk•2h ago•34 comments

OpenAI Submits S-1 Draft to SEC

https://openai.com/index/openai-submits-confidential-s-1/
30•hackerBanana•30m ago•7 comments

xAI is looking more like a datacentre REIT than a frontier lab

https://martinalderson.com/posts/xais-new-rental-business/
312•martinald•6h ago•227 comments

EU-banned pesticides found in rice, tea and spices

https://www.foodwatch.org/en/eu-banned-pesticides-found-in-rice-tea-and-spices
157•john-titor•5h ago•60 comments

Anti-social: It's fads, not friends, which now dominate social media feeds

https://www.bbc.com/worklife/article/20260520-how-social-media-ceased-to-be-social
481•1vuio0pswjnm7•9h ago•370 comments

Apple Core AI Framework

https://developer.apple.com/documentation/coreai/
67•hmokiguess•3h ago•4 comments

Show HN: Gitdot – a better GitHub. Open-source, anti-AI, and written in Rust

https://gitdot.io/
57•baepaul•5h ago•47 comments

Fooling Go's X.509 Certificate Verification

https://danielmangum.com/posts/fooling-go-x509-certificate-verification/
17•hasheddan•2d ago•7 comments

Launch HN: Intuned (YC S22) – Build and run reliable browser automations as code

https://intunedhq.com
94•fkilaiwi•8h ago•44 comments

Ask HN: What are tools you have made for yourself since the advent of AI?

68•aryamaan•3h ago•98 comments

I'm building a parallel internet, and it's called The Thinnernet

https://inavoyage.blogspot.com/2026/06/im-building-parallel-internet-and-its.html
25•initramfs•2h ago•24 comments

FrontierCode

https://cognition.ai/blog/frontier-code
21•streamer45•1h ago•5 comments

Switzerland wil have a referendum to cap population at 10M

https://www.admin.ch/en/sustainability-initiative
166•napolux•2h ago•352 comments

Ask HN: Why hasn't there been a real competitor to Ticketmaster yet?

68•mdni007•4h ago•60 comments

Stop the Apple Music app from launching

https://lowtechguys.com/musicdecoy/
522•bobbiechen•4h ago•208 comments

Show HN: Courtside – TUI for NBA Games

https://github.com/NolanFogarty/courtside
8•nolanfogarty•2d ago•3 comments

AI is slowing down

https://www.wheresyoured.at/ai-is-slowing-down/
286•crescit_eundo•6h ago•315 comments

OCaml Onboarding: Introduction to the Dune build system

https://ocamlpro.com/blog/2025_07_29_ocaml_onboarding_introduction_to_dune/
133•andrewstetsenko•4d ago•15 comments

120k Lines of Rust: Inside the Nosdesk Backend

https://kyle.au/blog/nosdesk-backend-rust
22•kylephillipsau•2d ago•0 comments

Massachusetts bans sale of precise location data in new privacy rights bill

https://techcrunch.com/2026/06/08/massachusetts-votes-to-pass-new-privacy-rights-bill-that-bans-s...
188•01-_-•4h ago•29 comments

Apple WWDC 2026

https://www.apple.com/apple-events/event-stream/
214•nextstep•4h ago•406 comments

Using XDG-Compliant Config Files (2024)

https://wxwidgets.org/blog/2024/01/using-xdg-compliant-config-files/
22•ankitg12•4d ago•2 comments

The Cypherpunk Library

https://www.cypherpunkbooks.com
338•yu3zhou4•13h ago•94 comments

How much of Thermo Fisher's antibody data has been manipulated?

https://reeserichardson.blog/2026/05/28/how-much-of-thermo-fishers-antibody-data-has-been-manipul...
377•mhrmsn•14h ago•80 comments

1worldflag: A blue dot on a transparent background

https://1worldflag.com/
144•davidbarker•20h ago•125 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)