frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Inkling: Our Open-Weights Model

https://thinkingmachines.ai/news/introducing-inkling/
344•vimarsh6739•2h ago•87 comments

Duskers, the scary command line game, is getting a sequel

https://elbowgreasegames.substack.com/p/misfits-attic-announces-duskers-20
53•spacemarine1•1h ago•6 comments

Stripe and Advent have made a joint offer to acquire PayPal – sources

https://www.reuters.com/business/finance/stripe-advent-offer-buy-paypal-more-than-53-billion-sour...
228•rvz•17h ago•116 comments

Grok Build

https://github.com/xai-org/grok-build
22•skp1995•46m ago•2 comments

Running Gemma 4 26B at 5 tokens/sec on a 13-year-old Xeon with no GPU

https://www.neomindlabs.com/2026/06/08/running-gemma-4-26b-at-5-tokens-sec-on-a-13-year-old-xeon-...
183•neomindryan•5h ago•104 comments

Voxatron

https://www.lexaloffle.com/voxatron.php
21•lsferreira42•1h ago•9 comments

Collection of Digital Clock Designs

https://clocks.dev
109•levmiseri•4h ago•31 comments

Brainless: Shadcn components that look like Claude Code, Codex and Grok

https://brainless.swerdlow.dev
18•benswerd•1h ago•2 comments

Show HN: misa77 - a codec that decodes 2x faster than LZ4 (at better ratios)

https://github.com/welcome-to-the-sunny-side/misa77
107•nonadhocproblem•5h ago•35 comments

Mysteries of Telegram Data Centers (2022)

https://dev.moe/en/3025
212•theanonymousone•7h ago•105 comments

Prioritize mental health, and why communication is so important

https://ramones.dev/posts/mental-health/
252•ramon156•9h ago•197 comments

MITS: Rockets, Calculators, and Personal Computers

https://www.abortretry.fail/p/micro-instrumentation-and-telemetry
8•BirAdam•2d ago•0 comments

Towards a harness that can do anything

https://eardatasci.github.io/c/ambiance/index.html
142•evakhoury•7h ago•69 comments

Artie (YC S23) Is Hiring Software Engineers

https://jobs.ashbyhq.com/artie
1•tang8330•4h ago

Show HN: Microcosm Industries – Simulation toys and software microcosms

https://microcosm.industries/
4•arbesman•5d ago•0 comments

Designing APIs for Agents

https://www.freestyle.sh/blog/opinion/designing-apis-for-agents
11•benswerd•2d ago•4 comments

Show HN: Capn-hook for coding agents – don't grep the same mystery twice

https://github.com/cyrusNuevoDia/capn-hook
20•knrz•2d ago•5 comments

Open-source memory for coding agents, synced over SSH

https://github.com/vshulcz/deja-vu/
86•vshulcz•4h ago•19 comments

Sleep regularity is a stronger predictor of mortality risk than sleep duration (2023)

https://academic.oup.com/sleep/article/47/1/zsad253/7280269
606•bilsbie•9h ago•300 comments

Today I Rescued 7,234 Old GIFs

https://danq.me/2026/07/10/rescuing-7234-gifs/
66•birdculture•3d ago•5 comments

Launch HN: Coasty (YC S26) – An API for computer-use agents

https://coasty.ai/docs
27•nkov47•5h ago•4 comments

Book Prizes Don't Work How You Think

https://rebeccamakkai.substack.com/p/book-prizes-dont-work-how-you-think
4•samclemens•22h ago•0 comments

Twain Town, USA

https://theamericanscholar.org/twain-town-u-s-a/
4•prismatic•22h ago•0 comments

Who Is America's Homer?

https://www.plough.com/articles/who-is-americas-homer
4•samclemens•22h ago•1 comments

Codex Micro

https://openai.com/supply/co-lab/work-louder/
229•davidbarker•4h ago•197 comments

The Memory Heist

https://www.ayush.digital/blog/the-memory-heist
74•eieio•1d ago•8 comments

Briar is in maintenance mode

https://briarproject.org/news/2026-maintenance-mode/
127•ristello•8h ago•87 comments

My midlife crisis Corolla is fast, furious, and modded

https://www.zocalopublicsquare.org/my-midlife-crisis-corolla-fast-furious-fully-modded/
131•gmays•6h ago•276 comments

Show HN: SirixDB 1.0 Beta – Git-Like Versioning, Diffs, Time-Travel Queries

https://github.com/sirixdb/sirix
8•lichtenberger•5h ago•0 comments

Unsolved Problems in MLOps

https://spawn-queue.acm.org/doi/pdf/10.1145/3762989
38•gnyeki•4h ago•4 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)