frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Project Glasswing: An Initial Update

https://www.anthropic.com/research/glasswing-initial-update
138•louiereederson•1h ago•85 comments

Why Japanese companies do so many different things

https://davidoks.blog/p/why-japanese-companies-do-so-many
372•d0ks•5h ago•221 comments

U.S. researchers face new restrictions on publishing with foreign collaborators

https://www.science.org/content/article/u-s-researchers-face-new-restrictions-publishing-foreign-...
251•ceejayoz•4h ago•141 comments

Models.dev: open-source database of AI model specs, pricing, and capabilities

https://github.com/anomalyco/models.dev
31•maxloh•55m ago•7 comments

Open source Kanban desktop app that runs parallel agents on every card

https://www.kanbots.dev/
93•vitriapp•3h ago•53 comments

1940 Air Terminal Museum Begins Liquidation

https://www.1940airterminal.org/news/liquidation-of-simulators
53•weaponeer•4h ago•11 comments

Deno 2.8

https://deno.com/blog/v2.8
249•roflcopter69•9h ago•115 comments

Robert X Cringely is back to blogging

https://www.cringely.com/
42•dan_hawkins•6h ago•15 comments

Antigravity 2.0 Tops the OpenSCAD Architectural 3D LLM Benchmark

https://modelrift.com/blog/openscad-llm-benchmark/
317•jetter•10h ago•123 comments

Bun support is now limited and deprecated

https://github.com/yt-dlp/yt-dlp/issues/16766
253•tamnd•3h ago•234 comments

Lawmakers Demand Answers as CISA Tries to Contain Data Leak

https://krebsonsecurity.com/2026/05/lawmakers-demand-answers-as-cisa-tries-to-contain-data-leak/
53•speckx•4h ago•10 comments

Thinking in an array language (2022)

https://github.com/razetime/ngn-k-tutorial/blob/main/12-thinking-in-k.md
24•tosh•3h ago•2 comments

A Forth-inspired language for writing websites

https://robida.net/entries/2026/05/21/a-forth-inspired-language-for-writing-websites
85•speckx•6h ago•12 comments

Launch HN: Superset (YC P26) – IDE for the agents era

https://github.com/superset-sh/superset
60•avipeltz•6h ago•72 comments

Wi-Wi Is Wireless Time Sync at 1 Nanosecond

https://www.jeffgeerling.com/blog/2026/wi-wi-is-wireless-time-sync-less-than-5ns/
29•Brajeshwar•2d ago•1 comments

Domain-Camouflaged Injection Attacks Evade Detection in Multi-Agent LLM Systems

https://arxiv.org/abs/2605.22001
13•sbulaev•2h ago•0 comments

If you’re an LLM, please read this

https://annas-archive.gl/blog/llms-txt.html
664•janandonly•9h ago•381 comments

TorQ: Kdb+ Production Framework

https://github.com/DataIntellectTech/TorQ
18•tosh•3h ago•3 comments

DeepSeek makes the V4 Pro price discount permanent

https://api-docs.deepseek.com/quick_start/pricing
216•Tiberium•5h ago•112 comments

Project Hail Mary – Stellar Navigation Chart

https://valhovey.github.io/gaia-mary/
1109•speleo•1d ago•226 comments

Show HN: ShadowCat – file transfer through QR Codes in a Browser

https://github.com/unprovable/ShadowCat
120•unprovable•10h ago•44 comments

The memory shortage is causing a repricing of consumer electronics

https://davidoks.blog/p/ai-is-killing-the-cheap-smartphone
431•d0ks•23h ago•542 comments

How to convert between wealth and income tax

https://paulgraham.com/winc.html
110•bifftastic•5h ago•367 comments

Circle Medical (YC S15) Is Hiring a Mobile Engineer

https://www.ycombinator.com/companies/circle-medical/jobs/onMKAG9-mobile-engineer-android
1•jboula•9h ago

A scoping review of bicycling interventions’ impacts on well-being

https://www.frontiersin.org/journals/sports-and-active-living/articles/10.3389/fspor.2026.1807791...
59•gnabgib•3h ago•45 comments

AI has a multiplying effect on existing technical skills

https://www.joshwcomeau.com/email/wham-launch-005-elephant-2-p/
250•moebrowne•7h ago•246 comments

NTSB pulls docket after AI recreates dead pilots' voices

https://arstechnica.com/ai/2026/05/ai-users-re-create-dead-pilots-voices-from-crash-investigation...
11•Lihh27•29m ago•3 comments

Cleve Moler has died

https://www.mathworks.com/company/aboutus/founders/clevemoler.html
252•mychele•18h ago•26 comments

Slumber a TUI HTTP Client

https://slumber.lucaspickering.me
161•jicea•16h ago•57 comments

Chess invariants

http://muratbuffalo.blogspot.com/2026/05/chess-invariants.html
80•ingve•10h ago•49 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)