frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A Preview of DuckDB v2.0

https://duckdb.org/2026/08/17/duckdb-20-highlights
239•ibotty•3h ago•33 comments

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

https://www.wiz.io/blog/red-agent-snowflake-copilot-cicd-bug
115•galnagli•2h ago•50 comments

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

https://speko.ai/
30•abdik•1h ago•10 comments

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

https://blog.roboflow.com/openai-gpt-5-6/
194•plurby•4h ago•100 comments

How to disable or avoid intrusive AI

https://www.librarian.net/notoai/
82•ColinWright•2h ago•28 comments

Incident with Github.com

https://www.githubstatus.com/incidents/zkxwbgr0cnmx
121•SpyCoder77•3h ago•632 comments

How to put 170 atoms in an atom

https://signoregalilei.com/2026/08/02/how-to-put-170-atoms-in-an-atom/
45•surprisetalk•2h ago•5 comments

Ask HN: Alternatives to GitHub

196•dhruv3006•2h ago•126 comments

Olo (Color)

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

Qwen 3.8 27B is excellent, but it defaults to overthinking things

https://simonwillison.net/2026/Aug/16/qwen-38-27b/
713•bilsbie•17h ago•332 comments

Apple's App Tracking Transparency treated its own apps better than rivals

https://www.bundeskartellamt.de/SharedDocs/Meldung/EN/Pressemitteilungen/2026/08_17_2026_Apple_AT...
171•nyku•2h ago•58 comments

How I developed an Am29000 C compiler and web browser

https://nanochess.org/am29000_c_compiler_web_browser.html
34•nanochess•20h ago•4 comments

Show HN: Sokoban AI Solver

https://mkornreich.me/projects/sokoban/
41•enjoyyourlife•3h ago•31 comments

Anthropic's ‘watermark’ text adulteration in Claude is a perversion of writing

https://daringfireball.net/2026/08/anthropics_watermark_text_adulteration_in_claude_is_a_perversi...
616•ropbear•18h ago•543 comments

How to ship a database every day

https://turbopuffer.com/blog/control-plane
31•tarunnnp•2h ago•2 comments

Show HN: Learn Flags Quiz

https://flagquizzes.com/
16•artiomyak•2h ago•6 comments

Show HN: Saggar, a Mac terminal that keeps sessions and your attention organized

https://saggar.marginalutility.dev/
12•mcclowes•2h ago•2 comments

On AI regulation and messaging

https://twitter.com/DarioAmodei/status/2088758816376807762
194•jacquesm•14h ago•393 comments

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

https://desktopcolors.com
96•vlowrian•8h ago•38 comments

How Go detects struct copies with sync.noCopy

https://func25.dev/posts/go-sync-nocopy/
47•func25•4d ago•44 comments

A third world engineer responds to “RISC-V: They should have known better”

https://rvembedded.com/blog_post/12/
591•Narishma•23h ago•304 comments

Online clinics and influencers are promoting Cialis as a longevity drug

https://www.npr.org/2026/08/17/nx-s1-5928263/cialis-viagra-tadalafil-longevity-heart-health
74•brandonb•3h ago•49 comments

Universal Health Coverage Could Save $1T and 114k Lives a Year, Yale Study

https://ysph.yale.edu/news-article/universal-health-coverage-could-save-one-trillion-dollars-and-...
204•karakoram•59m ago•258 comments

Mexico crackdown on coastal development

https://yucatanmagazine.com/mexico-crackdown-on-coastal-development/
77•untiledsource•4h ago•15 comments

Linear algebra done right

https://linear.axler.net/
193•the-mitr•11h ago•69 comments

Reticulum – Decentralized Mesh Network

https://reticulum.network/
195•sudo_cowsay•16h ago•65 comments

Judge relying wholly on AI in order is covered by judicial immunity, court rules

https://reason.com/volokh/2026/08/17/judges-allegedly-relying-wholly-on-ai-in-order-is-covered-by...
27•delichon•2h ago•26 comments

The only known trebuchet casualty in history

https://arstechnica.com/science/2026/08/meet-the-only-known-trebuchet-casualty-in-history/
31•Tomte•2h ago•10 comments

AGI-64 Brings Sierra Adventures to the Commodore 64

https://meanhamster.com/news/agi-64-brings-sierra-adventures-to-the-commodore-64
118•erickhill•15h ago•17 comments

How do I permanently disable random Google Photos popup to backup photos? (2024)

https://support.google.com/photos/thread/256212140/how-do-i-permanently-disable-google-photos-pop...
200•dt3ft•3d ago•138 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)