frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GPT-6 Astra

https://openai.com/index/gpt-6-astra/
1307•kibae•6h ago•1026 comments

.name Termination

https://neil.fraser.name/news/2026/09/03/
1342•pavel_lishin•10h ago•378 comments

Qwen 3.8 27B available on Cerebras at 1500 tokens/s

https://inference-docs.cerebras.ai/models/overview
447•altertable•6h ago•130 comments

The largest electric aircraft just flew [video]

https://www.youtube.com/watch?v=nM86DBOqgPM
193•feb•2d ago•126 comments

Artificial beaver dams saw juvenile coho salmon survival rates go from 8% to 60%

https://www.discoverwildlife.com/animal-facts/artificial-beaver-dams-california
154•speckx•9h ago•50 comments

Porting my 1993 Amiga game to Godot, with an LLM reading the 68000 assembly

https://babyloniantwins.com/blog/porting-a-1993-amiga-game-to-godot/
195•rabahs•11h ago•60 comments

New type of dice guarantees no tie when deciding who goes first

https://www.cbc.ca/lite/story/9.7328614
15•colinprince•1d ago•13 comments

Which tools do Claude, Codex and Cursor choose? We measured 17k runs to find out

https://armature.tech/blog/which-tools-coding-agents-install
93•screm•4h ago•27 comments

K2 Horizon: A connected fleet of six open models

https://ifm.ai/blog/k2/
256•karimf•9h ago•82 comments

GPS glitched across the US by as much as 33 feet

https://www.sciencealert.com/gps-glitched-across-the-us-by-as-much-as-33-feet-scientists-have-nev...
115•thread_id•1d ago•61 comments

Any Human Ever – One life, drawn at random from all who have ever lived

https://anyhumanever.com/
464•thinkingemote•10h ago•234 comments

Xanadu was waiting for agents

https://zed.dev/blog/agentic-xanadu
83•nsm•2d ago•34 comments

GLP-1s are being linked to fewer serious infections, including TB

https://gizmodo.com/ozempic-and-other-glp-1s-are-being-linked-to-fewer-serious-infections-includi...
53•gumby•2h ago•32 comments

Go grandmaster Shin defeats AI KataGo with a two-stone handicap

https://www.kedglobal.com/artificial-intelligence/newsView/ked202607210007
196•gmays•1d ago•56 comments

Tasklet (YC P26) Is Hiring a Customer Success Engineer

https://tasklet.ai/careers/customer-success-engineer
1•mayop100•4h ago

A PCB business card with a batteryless LED, powered by the phone that taps it

https://www.kevin.md/the-business-card-that-lights-up.md/
34•thekevintang•2d ago•11 comments

Ask HN: Who is using MCP in production?

10•sukit•14h ago•18 comments

OpenAI's GPT-6 Astra on ARC-AGI-3

https://arcprize.org/blog/astra
164•vignesh_warar•5h ago•96 comments

Unusual Suspects

https://neal.fun/unusual-suspects/
109•beeperboy95•1d ago•24 comments

Audacity 4.0

https://github.com/audacity/audacity/releases/tag/Audacity-4.0.0
1049•ClydeN•14h ago•234 comments

How concerned should we be about Astra's recurrent architecture?

https://www.lesswrong.com/posts/PLisnSFir8y5AHkmP/how-concerned-should-we-be-about-astra-s-recurrent
90•yurivish•8h ago•47 comments

Ask HN: Are others seeing Google's reCAPTCHA rejecting Firefox users?

26•Animats•5h ago•9 comments

The true horror of Edgar Allan Poe’s stories lies in their confessions

https://yalereview.org/article/emily-ogden-edgar-allan-poe
53•lermontov•1d ago•21 comments

Google Antigravity TOS: 3rd party usage can get Google account suspended

https://twitter.com/GergelyOrosz/status/2095453567955968398
278•tosh•14h ago•192 comments

Dextroproporphan: An Analogue for a Better Dextromethorphan?

https://monfak.top/blog/posts/dextroproporphan
28•znano•1d ago•9 comments

The asteroid currently hitting front end web development

https://nolanlawson.com/2026/08/23/the-asteroid-currently-hitting-frontend-web-development/
74•codechicago277•6h ago•81 comments

Ask HN: Why were OpenAI, Claude, and Grok simultaneously down?

328•halcdev•10h ago•525 comments

How to get a free .arpa domain

https://hawksley.dev/blog/get-free-arpa-domain
115•ethanhawksley•3d ago•13 comments

ITA Controlled English (CE)

https://github.com/ce-store/ce-store
6•teleforce•1d ago•1 comments

Static Allocation, Constant Work

https://matklad.github.io/2026/09/02/static-allocation-constant-work.html
104•surprisetalk•1d ago•20 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)