frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GPT-6 Sol and Luna

https://openai.com/index/introducing-gpt-6-sol-and-luna/
359•OfficialTurkey•48m ago•172 comments

Claude Opus 5.5

https://www.anthropic.com/claude-opus-5-5
580•km144•2h ago•529 comments

OpenAI GPT–6 Astra breaks Enigma message that has resisted solution since 2005

https://www.cryptocellar.org/bgac/the-mvueh-break.html
405•sohkamyung•4h ago•305 comments

WordPress: Unauthenticated path traversal leading to conditional RCE

https://github.com/WordPress/wordpress-develop/security/advisories/GHSA-7hp8-65ch-5whp
69•vntok•2h ago•28 comments

Claude Opus 5.5 Intelligence, Performance and Price Analysis (Max)

https://artificialanalysis.ai/models/claude-opus-5-5
87•theanonymousone•1h ago•33 comments

There's a high chance of devices being sold with GrapheneOS preinstalled in 2027

https://grapheneos.social/@GrapheneOS/117299954135808210
120•Cider9986•1h ago•47 comments

OpenAI is well positioned to fast-follow Jev

https://arcturus-labs.com/blog/2026/09/21/will-openai-eat-jevs-lunch/
181•JohnBerryman•4h ago•129 comments

16-bit Intel 8088 chip (c. 1985)

https://allpoetry.com/16-bit-Intel-8088-chip
73•rbanffy•2h ago•10 comments

Launch HN: Coverage Cat (YC S22) – Umbrella insurance via your personal agent

https://www.coveragecat.com/
16•botacode•1h ago•15 comments

Writing Rust code that's fast by asking agents to make the code faster

https://minimaxir.com/2026/09/agentic-iteration/
64•mooreds•3h ago•28 comments

Apple has added persistent 'ads' to iOS, and it's driving users crazy

https://www.techradar.com/phones/iphone/i-wish-apple-would-just-stop-that-crap-apple-has-added-pe...
424•MC995•4h ago•332 comments

George Lucas Returns to Earth, Bearing Gifts

https://commonedge.org/george-lucas-returns-to-earth-bearing-gifts/
14•surprisetalk•1d ago•1 comments

Show HN: AI·rete·RAG – a Rete rule engine decides, RAG explains why

https://ai-rete-rag.com/
25•ZaharaHussain•2h ago•1 comments

Solitaire Alone Together

https://solitairealonetogether.com/
91•eieio•20h ago•22 comments

Show HN: Drop – A rootless Linux sandbox with gVisor support

https://droprun.sh/
119•mixedbit•4h ago•40 comments

Can gzip be a language model?

https://nathan.rs/posts/gzip-lm/
347•networked•12h ago•130 comments

One Minute Park

https://oneminutepark.tv/
28•namuorg•1d ago•4 comments

AMD's random number generator can't generate a 0?

https://board.flatassembler.net/topic.php?t=24261
216•BruceEel•10h ago•160 comments

Truman World

https://trumanworld.live
32•trollied•2d ago•28 comments

Show HN: InstinctFlash – Run 5B world-action models in real time on Jetson Thor

https://github.com/General-Instinct/InstinctFlash
15•guanming0717•3h ago•0 comments

Training a model to identify AI-generated web content from structure alone

https://arxiv.org/abs/2609.15369
9•jochenmadler•5h ago•2 comments

Relativistic raytracing

https://publish.obsidian.md/h1m3/Articles/Relativistic+raytracing
28•vismit2000•1d ago•5 comments

The Economics of Open-Weight Inference

https://data.ornn.com/publications/the-economics-of-open-weight-inference
27•marinesebastian•5h ago•17 comments

MUNI Heritage Weekend in San Francisco

https://daniel.lawrence.lu/blog/2026-09-20-muni-heritage-weekend/
115•plun9•1d ago•25 comments

Side-stepping the Secretary Problem, unwittingly

https://www.evalapply.org/posts/side-step-secretary-problem-hiring/index.html
13•pvdebbe•16h ago•1 comments

I asked Meta’s Muse for its filesystem and it sent me 6.8GB

https://mouse.dev/blog/muse-runtime-export/
229•Aeroi•3h ago•118 comments

Meta’s Muse has a serious 0-day

https://arstechnica.com/security/2026/09/muse-metas-extraordinarily-privileged-ai-assistant-has-a...
92•pavel_lishin•4h ago•38 comments

Vacate a drone restriction that criminalized recording immigration agents

https://www.eff.org/deeplinks/2026/09/dc-circuit-must-vacate-drone-flight-restriction-criminalize...
74•hn_acker•3h ago•15 comments

I said no and Apple said yes

https://dbushell.com/2026/09/22/apple-intelligence/
722•thatslast•10h ago•574 comments

MiMo v2.6

https://mimo.xiaomi.com/mimo-v2-6
1068•volf_•22h ago•464 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)