frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

More questions about whether researchers can trust OpenAI with unpublished math

https://mathstodon.xyz/@andreasthom/117240535270608201
527•pred_•15h ago•535 comments

Cognition launches new SWE-2 model, Rivaling Fable 5.1 and GPT-Astra

https://cognition.com/blog/swe-2
326•seelos•7h ago•133 comments

NTSB Issues Investigative Update on B-767 Runway Excursion Accident in Miami

https://www.ntsb.gov:443/news/press-releases/Pages/NR20260909.aspx
30•mckn1ght•1h ago•20 comments

NASA Color Trick Was Meant for Mars. Now It's Unveiling Rock Art on Earth

https://gizmodo.com/this-nasa-color-trick-was-meant-for-mars-now-its-unveiling-rock-art-on-earth-...
233•gumby•7h ago•36 comments

Don't let anyone take away your big box of cables

https://blog.jim-nielsen.com/2026/hands-off-my-cables/
228•Brajeshwar•7h ago•179 comments

The part of Navier-Stokes no one is talking about

https://www.johndcook.com/blog/2026/09/09/formal-method-revolution/
96•ibobev•1h ago•76 comments

OpenAI Agents API

https://developers.openai.com/api/docs/guides/agents-api/overview
49•aquir•2h ago•44 comments

Music Theory for the 21st-Century Classroom

https://musictheory.pugetsound.edu/mt21c/MusicTheory.html
124•aanet•5h ago•60 comments

Bodily Oddities

https://vester.si/bodily-oddities/
21•vesterde•2h ago•16 comments

Forgejo <=16.0.3 Critical RCE

https://codeberg.org/forgejo/forgejo/src/branch/forgejo/release-notes-published/16.0.4.md
127•weierstass•6h ago•48 comments

Proof of Capture: Apple Reference Image, but open source and using steganography

https://merybenavente.me/blog/proof-of-capture
33•merybenavente•2h ago•29 comments

Shopify moves back to Native from React Native

https://shopify.engineering/back-to-native
637•fnthawar2•8h ago•430 comments

What happens when a GPU writes memory

https://blog.doubleword.ai/what-happens-when-a-gpu-writes-memory
30•ibobev•2d ago•1 comments

Hitachi launches CO2 heat pump water heaters with solar-friendly tariff controls

https://www.pv-magazine.com/2026/09/07/hitachi-launches-co2-heat-pump-water-heaters-with-solar-fr...
270•thelastgallon•1d ago•213 comments

Rust is tier-1 language at Microsoft

https://rustfoundation.org/media/guest-post-rust-is-tier-1-language-at-microsoft/
566•mmastrac•9h ago•307 comments

JEP 544: Ahead-of-Time Code Compilation

https://openjdk.org/jeps/544
58•Skinney•5h ago•23 comments

Neki

https://planetscale.com/blog/introducing-neki
182•simon_weber•6h ago•73 comments

Recursion into Madness

https://blog.coredump.cx/p/recursion-into-madness
8•surprisetalk•3d ago•0 comments

Show HN: Vertumnus – printable posters of farmers' market produce seasonality

https://vertumnus.fyi
15•perspectivezoom•2d ago•6 comments

Silicon Valley Is Transforming the Military-Industrial Complex

https://costsofwar.watson.brown.edu/paper/how-big-tech-and-silicon-valley-are-transforming-milita...
133•paimapi•6h ago•249 comments

Detecting and countering misuse of AI: September 2026

https://www.anthropic.com/threat-intelligence-report-september-2026
50•garo-pro•5h ago•24 comments

Douglas Hofstadter: Analogy as the Core of Cognition [video]

https://www.youtube.com/watch?v=n8m7lFQ3njk
119•tosh•4d ago•65 comments

Cognition's SWE-2 achieves 92.8 on Terminal-Bench 2.1

https://tokenstead.ai/models/swe-2
49•cdnsteve•5h ago•23 comments

What algorithm did Windows XP use to choose your initial user picture?

https://devblogs.microsoft.com/oldnewthing/20260909-00/?p=112683
331•soheilpro•13h ago•162 comments

iPhone Duo

https://www.apple.com/iphone-duo/
1401•thecosmicfrog•1d ago•2419 comments

Creativity is the New Moat

https://www.inventbuild.studio/blog/genuine-creativity-is-your-new-moat
100•virgil_disgr4ce•3h ago•56 comments

List of references on Sony websites to players "owning" their digital games

https://consumerrights.wiki/w/Sony_PlayStation_digital_game_ownership_lawsuit
338•haunter•10h ago•112 comments

Compute-efficient pretraining and scaling to trillion-parameter models

https://magic.dev/blog/pretraining#
106•ronfriedhaber•2d ago•59 comments

Schemy Lisp En DOS

https://sled.neocities.org/
76•AlexeyBrin•4d ago•17 comments

Stockfish 19

https://stockfishchess.org/blog/2026/stockfish-19/
258•atiedebee•3d ago•146 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)