frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Gemini 3.7 Flash

https://blog.google/innovation-and-ai/models-and-research/gemini-models/introducing-gemini-3-7-fl...
357•thisisauserid•2h ago•229 comments

Accelerating GPT-5.6 Sol Ultrafast

https://www.cerebras.ai/blog/accelerating-gpt-5-6-sol-ultrafast-with-openai
179•pr337h4m•1h ago•56 comments

Donkey.bas is 45 Years Old – 131 line of Glory

https://donkeybas.com/
87•jkrauska•2h ago•35 comments

Mistral OCR 4.1

https://docs.mistral.ai/models/ocr-4-1
143•spelk•2h ago•49 comments

Spaghettifying DRAM

https://github.com/xoreaxeaxeax/skitter-creek-bath-salts
363•matt_d•5h ago•111 comments

Choose Boring Technology (2015)

https://mcfunley.com/choose-boring-technology
125•tosh•2h ago•64 comments

Where did the old web go? We followed 657,607 links to find out

https://0.mk/blog/link-rot
60•tdx•2h ago•30 comments

Single log line is 49KB+ (ext4) / 110KB+ (btrfs) of systemd-journald disk writes

https://github.com/systemd/systemd/issues/40262
37•ValdikSS•1h ago•7 comments

Understanding is the new bottleneck

https://www.geoffreylitt.com/2026/07/02/understanding-is-the-new-bottleneck
26•sebg•1h ago•10 comments

How Organizations Use AI: Evidence from ChatGPT [pdf]

https://cdn.openai.com/pdf/how-organizations-use-chatgpt.pdf
6•malshe•38m ago•0 comments

Tocharian Online

https://lrc.la.utexas.edu/eieol/tokol/0
35•Bluestein•2h ago•1 comments

Kubernetes on Oxide: How customer needs shaped our integrations

https://oxide.computer/blog/kubernetes-on-oxide
115•stevehipwell•5h ago•51 comments

DeepSeek Harness developer preview

https://deepseek.com/harness/en/
474•bjin•7h ago•215 comments

Come for ENIAC, Stay for UNIVAC and Skeduflo

https://uniqueatpenn.wordpress.com/2026/08/05/come-for-eniac-stay-for-univac-and-skeduflo/
50•cainxinth•2d ago•13 comments

AI At Home Part 1: A Box Of Scraps

https://jdagostino.github.io/ai-pt1-box-o-scraps/index.html
46•timmmmmmay•3h ago•22 comments

How art invented humanity

https://aeon.co/essays/humans-did-not-invent-art-it-was-the-other-way-around
57•prismatic•21h ago•16 comments

Gloomberb

https://gloom.sh/
323•rbanffy•6h ago•165 comments

Choosing an AI model: one prompt, 11 models, different results

https://www.netlify.com/blog/one-prompt-11-models-very-different-results/
141•toddmorey•6h ago•61 comments

Idol Mahjong Final Romance: A Slideshow Disguised as a Video Game

https://nicole.express/2026/more-like-idle-mahjong.html
5•nicole_express•3d ago•0 comments

Ordinary abundance

https://ordinaryabundance.com/
140•yen223•6h ago•65 comments

Codex in ChatGPT desktop app for Linux is now in preview

https://community.openai.com/t/codex-in-chatgpt-desktop-app-for-linux-is-now-in-preview/1390027
417•allanrbo•15h ago•288 comments

I built a 500k-domain search engine for makers in a weekend for $10

https://alexmorleyfinch.github.io/marlin/history/v1/article/the_birth.html
109•dreamforever•6h ago•61 comments

ATG (YC F25) Is Hiring Member of Technical Staff (Data Platform)

https://atg.science/careers
1•dkobran•8h ago

JDK 27 G1/Parallel/Serial GC Changes

https://tschatzl.github.io/2026/08/10/jdk27-g1-serial-parallel-gc-changes.html
22•0x54MUR41•2h ago•7 comments

Show HN: OpenCode Senses, An insanely fast and highly accurate vision plugin

https://github.com/itsmeadarsh2008/opencode-senses
7•itsmeadarsh•1h ago•0 comments

Solid 2.0 RC: The Big <Reveal>

https://www.solidjs.com/blog/solid-2-0-rc-the-big-reveal
18•GavinAnderegg•2h ago•3 comments

GoAccess – Open-source real-time log analyzer and interactive viewer

https://goaccess.io/
24•gregsadetsky•3h ago•4 comments

Graduate student proves a quantum uncertainty principle for fractals

https://www.quantamagazine.org/graduate-student-proves-the-fractal-uncertainty-principle-20260812/
51•bookofjoe•5h ago•8 comments

Launch HN: Bullet (YC S26) – A Faster Coding Agent

https://www.codewithbullet.com
33•adi1•11h ago•33 comments

Better Gaussian Splatting in Julia

https://pxl-th.github.io/blog/better-gs-julia/
102•pxl-th•4d ago•17 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)