frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Your ePub Is fine

https://andreklein.net/your-epub-is-fine-kobo-disagrees-blame-adobe/
502•sohkamyung•8h ago•179 comments

Curl will not accept vulnerability reports during July 2026

https://daniel.haxx.se/blog/2026/06/15/curl-summer-of-bliss/
248•secret-noun•1h ago•57 comments

Even more batteries included with Emacs

https://karthinks.com/software/even-more-batteries-included-with-emacs/
157•signa11•5h ago•28 comments

Apple Foundation Models

https://platform.claude.com/docs/en/cli-sdks-libraries/libraries/apple-foundation-models
43•MehrdadKhnzd•2h ago•5 comments

Show HN: Kage – Shadow any website to a single binary for offline viewing

https://github.com/tamnd/kage
533•tamnd•14h ago•107 comments

Bitsy

https://bitsy.org/
164•tosh•3d ago•4 comments

Dalus (YC W25) Is Hiring a Senior Software Engineer in Germany

https://www.ycombinator.com/companies/dalus/jobs/5IDmKJt-senior-software-frontend-engineer-german...
1•sebastianvoelkl•44m ago

There Is(Ǝ) – Such That (∋)

https://www.fractalkitty.com/there-is-3-such-that/
14•evakhoury•3d ago•0 comments

Firewood Splitting Simulator

https://screen.toys/firewood/
776•memalign•5d ago•237 comments

21 years and counting of 'eight fallacies of distributed computing' (2025)

https://blog.apnic.net/2025/12/08/21-years-and-counting-of-eight-fallacies-of-distributed-computing/
67•teleforce•7h ago•14 comments

The Last Surviving Japanese Porsche 912 Police Car

https://kottke.org/26/06/the-last-surviving-japanese-porsche-912-police-car
65•zdw•2d ago•13 comments

Why does paper fold so well?

https://www.bbc.co.uk/programmes/w3ct8k70
30•zeristor•1d ago•5 comments

Rio de Janeiro's "homegrown" LLM appears to be a merge of an existing model

https://github.com/nex-agi/Nex-N2/issues/4
335•unrvl22•16h ago•182 comments

A short history of Cerro Torre, the most controversial mountain (2012)

https://www.markhorrell.com/blog/2012/a-short-history-of-cerro-torre/
33•joebig•4d ago•13 comments

Show HN: Trace – Offline Mac meeting transcripts you can flag mid-call

https://traceapp.info
151•AG342•1d ago•55 comments

Ask HN: What are you working on? (June 2026)

217•david927•15h ago•768 comments

Formal methods and the future of programming

https://blog.janestreet.com/formal-methods-at-jane-street-index/?from_theconsensus=1
250•eatonphil•19h ago•89 comments

Chaosnet (1981)

https://tumbleweed.nu/r/lm-3/uv/amber.html
80•RGBCube•12h ago•9 comments

Windows 11 users are tired of MS account requirements creeping into everything

https://www.windowscentral.com/microsoft/windows-11/windows-11-users-are-tired-of-microsoft-accou...
274•josephcsible•10h ago•184 comments

Caddy compatibility for zeroserve: 3x throughput and 70% lower latency

https://su3.io/posts/zeroserve-caddy-compat
178•losfair•18h ago•52 comments

TorchCodec 0.14: HDR Video Decoding for CPU and CUDA, and Fast Wav Decoder

https://github.com/meta-pytorch/torchcodec/releases/tag/v0.14.0
40•scott_s•4d ago•5 comments

The only scalable delete in Postgres is DROP TABLE

https://planetscale.com/blog/the-only-scalable-delete
159•hollylawly•3d ago•56 comments

Perlisisms (1982)

https://www.cs.yale.edu/homes/perlis-alan/quotes.html
109•tosh•16h ago•54 comments

Show HN: Discover Wikipedia articles popular on Hacker News

https://www.orangecrumbs.com/
99•octopus143•13h ago•25 comments

Write for One Person

https://wizardzines.com/comics/write-for-one-person/
194•evakhoury•2d ago•63 comments

Segmented type appreciation corner (2018)

https://aresluna.org/segmented-type/
71•unexpectedVCR•3d ago•16 comments

Prove you're human by winning a claw machine

https://feralui.vercel.app/#/captcha
58•speckx•2d ago•44 comments

I indexed 669 GB of my GoPro videos using my M1 Max computer and local ML models

361•iliashad•16h ago•87 comments

How to earn a billion dollars

https://paulgraham.com/earn.html
605•kingstoned•19h ago•1602 comments

FarOutCompany

https://faroutcompany.com/
118•bookofjoe•17h ago•19 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)