frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I've factored the RSA keys of a Certificate Authority from the 90s

https://mcpherrin.ca/2026/09/07/rsa.html
160•ahlCVA•2h ago•29 comments

TALA Is Open-Source

https://d2lang.com/blog/tala-is-open-source/
127•alixanderwang•4h ago•10 comments

Jellyfin 12.0

https://jellyfin.org/posts/jellyfin-release-12.0/
152•0xC0ncord•2h ago•61 comments

Watch Los Angeles get built, one building at a time (1880–2026)

https://lax-skyline.parcelscope.net/
245•rustywasm•9h ago•126 comments

John Margolies' photographs of roadside America

https://publicdomainreview.org/collection/john-margolies-photographs-of-roadside-america/
45•duck•3d ago•13 comments

Leaving VMware just got harder after Broadcom pulled VDDK downloads

https://www.virtualizationhowto.com/2026/09/leaving-vmware-just-got-harder-after-broadcom-pulled-...
134•josephcsible•7h ago•55 comments

WeatherNext 3

https://deepmind.google/science/weathernext/
268•matthieu_bl•4d ago•63 comments

Scientists observe Einstein's gravity in the quantum world

https://www.ox.ac.uk/news/2026-08-28-scientists-observe-einsteins-gravity-in-the-quantum-world
171•mudil•3d ago•42 comments

Trusting-Trust Attack against an Entire Linux Distribution

https://arxiv.org/abs/2607.24888
175•signa11•2d ago•37 comments

216M Spy TVs – The LG Smart TV Problem [video]

https://www.youtube.com/watch?v=6IFVTcM28KA
607•treve•1d ago•835 comments

A Screensaver for LG's Spying Smart TVs

https://weowntheglass.com
5•taylorfinley•48m ago•0 comments

Show HN: Stuxnet – A reconstructed source code of the infamous cyber-weapon

https://github.com/Sadpainy/Stuxnet
125•CMDDestory•5h ago•45 comments

Everything is free now, so why not a floating orb in my IDE

https://eighttrigrams.net/post/79
7•eighttrigrams•2d ago•1 comments

Show HN: Jigsaw Haiku

https://jigsawhaiku.com/
68•windowshopping•3d ago•23 comments

Prompting Is Dead in 6 Months. Andrew Ng, Stanford [video]

https://www.youtube.com/watch?v=9EuNUe-CJRM
20•thelastgallon•1h ago•9 comments

Colorlight 5A-75B: A dive into a popular low-cost ECP5 (FPGA) development board

https://blog.yosyshq.com/p/colorlight-part-1/
16•gregsadetsky•3d ago•5 comments

Show HN: Interactive Tree of Life

https://ptree.org/
76•Lucent•4d ago•22 comments

Emacs Bedrock 2.0

https://lambdaland.org/posts/2026-09-06-bedrock-v2/
64•ashton314•7h ago•2 comments

Caltech Mathathon – first hackathon ever devoted to research level mathematics

https://mathathonchallenge.com/index.html
245•astroanax•18h ago•84 comments

Finding a bug in Dummit and Foote's Abstract Algebra

https://kallus.org/blog/dummit_and_foote.html
74•evakhoury•3d ago•34 comments

This Month in Ladybird – August 2026

https://ladybird.org/newsletter/2026-08-31/
194•exploraz•3d ago•46 comments

Icy Moons Are Ocean Worlds

https://mceglowski.substack.com/p/icy-moons-are-ocean-worlds
141•worldvoyageur•1d ago•15 comments

Show HN: NYC MapTap – Learn NYC neighborhoods (with subway routes when you miss)

https://albertjoseph0.github.io/nyc-maptap/
4•abj908•1h ago•2 comments

Decoding the NEC V20 Microcode

https://martypc.blogspot.com/2026/09/decoding-nec-v20-microcode.html
129•mariuz•3d ago•9 comments

Simple Is Not Small

https://jyn.dev/simple-is-not-the-same-as-small/
218•zdw•4d ago•67 comments

Keep Our Servers Running

https://blog.archive.org/2026/09/01/keep-our-servers-running-your-recurring-donation-goes-3x-this...
970•sonicrocketman•1d ago•252 comments

Catching Crumbs from the Table (2000)

https://www.nature.com/articles/35014679
15•stefanpie•1d ago•5 comments

Macbeth and His Problems

https://porticoquarterly.com/essay/macbeth-and-his-problems/
47•apophatic•7h ago•18 comments

Methods for Random Gradients (2024)

https://justinjay.wang/methods-for-random-gradients/
47•nickswalker•4d ago•5 comments

bzip3

https://github.com/iczelia/bzip3
391•tosh•14h ago•111 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)