frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OpenRouter is joining Stripe

https://openrouter.ai/blog/announcements/openrouter-is-joining-stripe/
622•rvz•7h ago•332 comments

Go 1.27

https://go.dev/blog/go1.27
433•database64128•6h ago•109 comments

Google replaced Git tags for certain source code with obtaining via Google Drive

https://grapheneos.social/@GrapheneOS/117057099753905023
288•Animux•7h ago•119 comments

Unlocking a locked/deactivated e-waste Cricut Maker

https://sprocketfox.io/xssfox/2026/07/01/cricut-unlock/
128•1e1a•6h ago•34 comments

Unsloth Dynamic 3.0 GGUFs

https://unsloth.ai/docs/basics/dynamic-3.0-ggufs
183•jonesy827•6h ago•66 comments

Manabu Kosaka's Handmade Paper Sculptures

https://coca11272000.wixsite.com/manabukosaka
21•surprisetalk•11h ago•0 comments

A joke domain purchase turned in geopolitical warfare

https://sprocketfox.io/xssfox/2026/08/19/sondehub-and-war/
750•kareiva•14h ago•114 comments

Os8088.com: IBM XT OS now has a Browser, CP/M 2.2 with Z80 core and MS Word 1.1a

https://os8088.com/spotlight/
41•jggonz•4h ago•25 comments

Casio F-B100W-1A

https://www.casio.com/uk/watches/casio/product.F-B100W-1A/
274•__fst__•10h ago•221 comments

DFlash 2: Keep Drafting Parallel

https://inco.ai/blog/dflash2/
71•mike-the-brain•4h ago•8 comments

Geolocating a random island using geometry and CUDA programming

https://yassa9.github.io/osint/gralhix-004/
403•yassa9•13h ago•75 comments

The little-known winstart.bat batch file

https://devblogs.microsoft.com/oldnewthing/20260811-00/?p=112605
76•ingve•4d ago•19 comments

Universality of Gradient Descent Neural Network Training

https://arxiv.org/abs/2007.13664
6•E-Reverance•1h ago•0 comments

PostgreSQL for Everything

https://www.raphaelbauer.com:443/posts/postgresql-everything/
301•karlmush•12h ago•187 comments

Mathematics in the age of AI

https://arxiv.org/abs/2608.16753
119•jonbaer•10h ago•120 comments

Ornith-1.5: From Self-Scaffolding to Self-Improvement

https://ornith.ai/ornith_1_5.html
168•CommonGuy•10h ago•58 comments

fx :Tiny, open, native coding agent.

https://fx.sh
174•handfuloflight•1d ago•87 comments

Pressed Penny Machine Map

https://pennypresses.net/home/map.php
42•willmeyers•5h ago•36 comments

Simulacra and Simulation

https://en.wikipedia.org/wiki/Simulacra_and_Simulation
9•soupspaces•1w ago•2 comments

Why travellers are obsessed with foreign supermarkets

https://www.bbc.com/travel/article/20260811-the-supermarket-is-becoming-a-tourist-attraction
21•edward•3d ago•12 comments

Extensible Software in the age of LLMs

https://jeremymorrell.dev/blog/extensible-software-in-the-age-of-llms/
105•coloneltcb•9h ago•49 comments

A portable, sensitive, low power, analog Geiger counter (2025)

https://ludens.cl/Electron/geiger2/geiger2.html
40•crorella•3d ago•2 comments

Xwayland 26.1.0 rc1

https://lists.x.org/archives/xorg/2026-August/062280.html
56•ErenayDev•5h ago•40 comments

Feature Request: Support AGENTS.md

https://github.com/anthropics/claude-code/issues/6235
129•fg137•4h ago•76 comments

Sol Loves to Cheat

https://jumploops.com/blog/sol-loves-to-cheat/
75•jumploops•1d ago•44 comments

Air Theremin – A browser theremin you play by waving at your webcam

https://theremin.bizibah.com/
248•gurov•15h ago•86 comments

IDE Nostalgia (2022)

https://davidsmaynard.com/blog/keyset
35•dmaynard•5d ago•1 comments

Pacing model development in an era of cyber-critical capabilities

https://openai.com/index/pacing-model-development-cyber-capabilities/
128•j4mie•1d ago•166 comments

Remote workers report the highest well-being in study of 7,700 employees

https://www.colorado.edu/today/2026/08/12/remote-workers-report-highest-well-being-study-7700-emp...
489•downbad_•9h ago•244 comments

Collaborative Human Agent Protocol (CHAP)

https://github.com/BrightbeamAI/chap
19•arsalanshahid•3h ago•3 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)