frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

On The <dl>

https://benmyers.dev/blog/on-the-dl/
198•ravenical•3h ago•60 comments

Oura says it gets government demands for user data

https://this.weekinsecurity.com/oura-says-it-gets-government-demands-for-user-data-will-it-share-...
104•donohoe•2h ago•57 comments

80386 Microcode Disassembled

https://www.reenigne.org/blog/80386-microcode-disassembled/
146•nand2mario•4h ago•22 comments

Reverse engineering circuitry in a Spacelab computer from 1980

https://www.righto.com/2026/05/reverse-engineering-spacelab-computer.html
10•elpocko•31m ago•1 comments

z386: An Open-Source 80386 Built Around Original Microcode

https://nand2mario.github.io/posts/2026/z386/
44•wicket•2h ago•11 comments

PHP's Oddities

https://flowtwo.io/post/php%27s-oddities
24•thejoeflow•3d ago•25 comments

Making Deep Learning Go Brrrr from First Principles

https://horace.io/brrr_intro.html
92•tosh•5h ago•38 comments

The Art of Money Getting

https://kk.org/cooltools/book-freak-210-the-art-of-money-getting/
54•dxs•4h ago•18 comments

Lisp in Vim (2019)

https://susam.net/lisp-in-vim.html
17•whent•2h ago•4 comments

Highest Random Weight in Elixir

https://jola.dev/posts/highest-random-weight-in-elixir
34•shintoist•2d ago•0 comments

Italy Cancels Boeing Pegasus Order, Shifting to Airbus A330 MRTT

https://www.euronews.com/my-europe/2026/05/21/italy-moves-to-airbus-a330-tankers-in-major-nato-al...
28•embedding-shape•54m ago•3 comments

The FBI Wants 'Near Real-Time' Access to US License Plate Readers

https://www.wired.com/story/security-news-this-week-fbi-license-plate-reader-real-time-access/
84•Brajeshwar•2h ago•33 comments

Solving the “Zork” Mystery

https://www.dpolakovic.space/blogs/zork-part2
32•dpola•3d ago•12 comments

Shipping a laptop to a refugee camp in Uganda

https://notesbylex.com/shipping-a-laptop-to-a-refugee-camp-in-uganda
609•lexandstuff•19h ago•212 comments

AI Engineering from Scratch

https://aiengineeringfromscratch.com
7•rippeltippel•2d ago•0 comments

Why Japanese companies do so many different things

https://davidoks.blog/p/why-japanese-companies-do-so-many
790•d0ks•1d ago•375 comments

Improving C# Memory Safety

https://devblogs.microsoft.com/dotnet/improving-csharp-memory-safety/
98•soheilpro•2d ago•18 comments

Rubish: A Unix shell written in pure Ruby

https://github.com/amatsuda/rubish
123•winebarrel•10h ago•79 comments

BambuStudio has been violating PrusaSlicer AGPL license since their fork

https://xcancel.com/josefprusa/status/2054602354851254330
323•Tomte•8h ago•115 comments

A 1955 Los Alamos computer experiment changed our understanding of chaos

https://www.lanl.gov/media/publications/1663/science-of-unpredictability
32•LAsteNERD•4d ago•3 comments

Ebola Outbreak Now Third Largest Recorded and "Spreading Rapidly"

https://arstechnica.com/health/2026/05/ebola-outbreak-now-third-largest-recorded-and-spreading-ra...
17•Brajeshwar•1h ago•5 comments

Microsoft starts canceling Claude Code licenses

https://www.theverge.com/tech/930447/microsoft-claude-code-discontinued-notepad
403•robertkarl•23h ago•388 comments

The quadratic sandwich

https://fedemagnani.github.io/math/2026/04/08/the-quadratic-sandwich.html
105•cpp_frog•3d ago•8 comments

I Miss Terry Pratchett

https://www.mahl.me/blog/the-spell-that-wouldnt-leave/
212•gorgmah•4h ago•191 comments

US tech firms share Dutch regulator officials' names with Senate

https://www.dutchnews.nl/2026/05/us-tech-firms-share-dutch-regulator-officials-names-with-senate/
171•zqna•5h ago•118 comments

- -dangerously-skip-reading-code

https://olano.dev/blog/dangerously-skip/
29•fagnerbrack•7h ago•30 comments

Project Glasswing: An Initial Update

https://www.anthropic.com/research/glasswing-initial-update
489•louiereederson•21h ago•292 comments

ArcBrush – Node-based 2D image editor

https://arcbrush.com/
60•NatKarmios•3d ago•17 comments

Fast Factorial Algorithms

http://www.luschny.de/math/factorial/FastFactorialFunctions.htm
34•nill0•3d ago•8 comments

CISA tries to contain data leak

https://krebsonsecurity.com/2026/05/lawmakers-demand-answers-as-cisa-tries-to-contain-data-leak/
245•speckx•1d 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)