frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GUIs should be fully keyboard-driven

https://ckardaris.com/blog/2026/08/28/keyboard-driven-guis.html
522•ckardaris•8h ago•273 comments

Htmx 4.0

https://four.htmx.org/announcements/2026-08-28-htmx-4.0.0-is-released
463•rmsaksida•10h ago•114 comments

Just the rumour of a bug is enough to find an exploit these days

https://anil.recoil.org/notes/rumour-is-the-exploit
225•avsm•7h ago•82 comments

U.S. sanctions against the A/I Collective

https://www.inventati.org/
439•exiguus•10h ago•407 comments

Inception-style curved map for turn-by-turn directions

https://www.orbify.eu/demo/
398•smoser•11h ago•134 comments

Curvature Beziers: Improving on a timeless recipe

https://acko.net/blog/curvature-beziers/
63•leephillips•4d ago•11 comments

Judge rules Trump administration’s blacklisting of Anthropic was illegal

https://www.nytimes.com/2026/08/27/technology/anthropic-government-blacklisting-ruling.html
478•jbegley•21h ago•345 comments

The Twelve-Factor App (2025)

https://12factor.net/
208•jxmorris12•1d ago•109 comments

Processing in Memory: DRAM Is About to Do Math

https://ben3d.ca/blog/processing-in-memory
46•bhouston•2d ago•13 comments

Autonomous Mathematical Discovery in an Open-World Multi-Agent Environment

https://arxiv.org/abs/2608.23691
72•stephenchung•6h ago•15 comments

GLM-5.3 is now open-weight

https://huggingface.co/zai-org/GLM-5.3
546•jeudesprits•8h ago•196 comments

Visual Analysis of Binary Files

https://binvis.io/#/
54•vismit2000•2d ago•14 comments

Show HN: Sesame - a local-first, open-source password manager

https://usesesame.app/
24•d0mkaaa•4h ago•27 comments

Identifying fake cosmetics using AI

https://groverlab.org/hnbfpr/2026-08-26-ai-counterfeit-cosmetics.html
6•wgrover•1h ago•1 comments

Stopping the smart TV from being used against you

https://www.s-config.com/stopping-a-smart-tv-from-being-used-against-you/
128•speckx•3h ago•102 comments

Verschlimmbesserung: The Word Your Software Updates Need

https://geekyschmidt.com/post/2026-08-25-verschlimmbesserung/
98•speckx•8h ago•63 comments

Luanti removed from Google Play due to baseless AI copyright notice

https://blog.luanti.org/2026/08/27/luanti-dmca-tracer-ai/
418•miniBill•16h ago•128 comments

Sloc Cloc and Code 4.0 (scc) – Finding the files that need the most attention

https://boyter.org/posts/sloc-cloc-code-hotspots-finding-files-that-need-attention/
20•boyter•4d ago•0 comments

Attimet (YC F24) Is Hiring Members of Technical Staff – Engineering and Research

https://www.ycombinator.com/companies/attimet/jobs/6btZFDg-member-of-technical-staff-engineering
1•kbanothu•6h ago

Hilariously fast volume computation with the divergence theorem (2018)

https://alyssarosenzweig.ca/blog/hilariously-fast-volume-computation-with-the-divergence-theorem....
243•luu•14h ago•65 comments

The ArtQrCode a twist on the classic black and white Quick Response Code

https://art-qrcode.com/
5•Bluestein•3d ago•0 comments

Migrating to HTTPX2

https://github.com/openai/openai-python/blob/main/httpx2.md
180•tosh•11h ago•77 comments

Global demand for sand spawned a worldwide boom in illegal mining (2015)

https://www.wired.com/2015/03/illegal-sand-mining/
52•EndXA•3d ago•22 comments

State of the Map 2026

https://2026.stateofthemap.org/
135•lode•9h ago•50 comments

Get your Windows license refund

https://en.refund4freedom.org/
638•smartmic•9h ago•259 comments

An investigation into the state of corvid–human relations

https://www.audubon.org/magazine/are-crows-really-our-friends
105•speckx•10h ago•63 comments

Some conservationists are helping to restore Africa’s wild dog populations

https://www.smithsonianmag.com/science-nature/africa-wild-dogs-most-hated-carnivores-continent-he...
63•speckx•8h ago•28 comments

Smaller reactors bring nuclear power closer to fulfilling its promise

https://www.nature.com/articles/d41586-026-02506-4
116•sohkamyung•11h ago•158 comments

Aspirational Clownmaxxing and Joey's cadillac todo list

https://charlesleifer.com/blog/aspirational-clownmaxxing-and-joey-s-cadillac-todo-list/
10•farlight•4h ago•0 comments

EasyEffects can massively improve laptop speaker sound quality

https://www.osnews.com/story/145883/easyeffects-should-be-part-of-every-linux-distribution-and-de...
93•birdculture•8h ago•41 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)