frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GPU Offload in Rust: Portable, Safe, and Fast

https://arxiv.org/abs/2608.13759
132•linggen•5h ago•26 comments

Bluesky draws its logo on screenshots

https://timmarinin.net/2026/bluesky-screenshots/
67•gavide•40m ago•40 comments

A Preview of DuckDB v2.0

https://duckdb.org/2026/08/17/duckdb-20-highlights
496•ibotty•9h ago•85 comments

Quake Shareware, a CD-ROM just a little too full

https://fabiensanglard.net/quake_shareware_cd/index.html
27•shdon•54m ago•3 comments

AI-Generated GitHub Copilot “Autofix” Allowed Compromise of Snowflake's Jira

https://www.wiz.io/blog/red-agent-snowflake-copilot-cicd-bug
293•galnagli•8h ago•120 comments

Incident with Github.com

https://www.githubstatus.com/incidents/zkxwbgr0cnmx
480•SpyCoder77•9h ago•867 comments

Fairphone 6 and PostmarketOS working main camera

https://catcrafts.net/posts/fairphone-6-postmarketos-working-main-camera
25•pizzaiolo•59m ago•4 comments

AI;DR (AI; Didn't Read)

https://www.rickmanelius.com/p/aidr-ai-didnt-read
467•mooreds•3h ago•289 comments

How to disable or avoid intrusive AI

https://www.librarian.net/notoai/
232•ColinWright•8h ago•128 comments

Intriguing Stories in Computer Science

https://inventwithpython.com/blog/intriguing-stories-in-cs.html
15•gregsadetsky•5d ago•1 comments

Sun Clock

https://sunclock.net/
151•Gecko4072•6h ago•48 comments

Olo (Color)

https://en.wikipedia.org/wiki/Olo_(color)
265•inigyou•5d ago•61 comments

GPT 5.6 Sol is the best "vision" model OpenAI ever released

https://blog.roboflow.com/openai-gpt-5-6/
287•plurby•10h ago•149 comments

Judge sets framework for Nine PBS to retrieve archival data

https://current.org/2026/08/judge-sets-framework-for-nine-pbs-to-retrieve-archival-data/
108•qingcharles•6h ago•42 comments

Launch HN: Speko (YC S26) – OpenRouter for Voice AI

https://speko.ai/
84•abdik•7h ago•51 comments

Roboflow Playground: Try and Compare 30 Computer Vision Models

https://blog.roboflow.com/roboflow-playground/
33•Bluestein•4h ago•3 comments

A particle made of force: physicists say they've found mysterious 'glueball'

https://www.nature.com/articles/d41586-026-02498-1
86•Brajeshwar•5d ago•5 comments

Ask HN: Alternatives to GitHub

462•dhruv3006•9h ago•293 comments

How do functions like alloca allocate memory from the stack?

https://devblogs.microsoft.com/oldnewthing/20260817-40/?p=112617
5•ingve•1h ago•0 comments

A simple fix for LLM tail latency

https://engineering.myhoai.com/posts/a-simple-fix-for-llm-tail-latency/
25•oskrim•3d ago•11 comments

Qwen3.8 27B scores 52 on Artificial Analysis

https://artificialanalysis.ai/models/qwen3-8-27b
267•anana_•5h ago•122 comments

The oldest bar in every state

https://www.businessinsider.com/oldest-bar-every-state
50•NaOH•4d ago•29 comments

An update on leaving Gmail for Fastmail

https://moddedbear.com/an-update-on-leaving-gmail-for-fastmail/
81•neogodless•5h ago•70 comments

Nation's Largest Reservoirs Are Drying Up, Threatening Life in the Southwest

https://www.nytimes.com/2026/08/17/climate/lake-powell-record-low-colorado.html
16•johntfella•45m ago•20 comments

How to put 170 atoms in an atom

https://signoregalilei.com/2026/08/02/how-to-put-170-atoms-in-an-atom/
96•surprisetalk•8h ago•20 comments

We Are Forking dotenvy into dotenv-ng

https://secretspec.dev/blog/we-are-forking-dotenvy-into-dotenv-ng/
34•linggen•5h ago•34 comments

India has paved the way for charging merchants a fee on UPI transactions

https://www.bbc.com/news/articles/c8xnwqe00v1o
77•monkey_monkey•3h ago•69 comments

Los Puesteros, solitary men who look after ranches and livestock in Patagonia

https://www.newyorker.com/culture/photo-booth/the-lonely-men-at-the-end-of-the-world
93•bookofjoe•4h ago•35 comments

How I developed an Am29000 C compiler and web browser

https://nanochess.org/am29000_c_compiler_web_browser.html
76•nanochess•1d ago•11 comments

Show HN: Desktopcolors.com – A museum for solid background colors of classic OS

https://desktopcolors.com
135•vlowrian•15h ago•59 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)