frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Git Commands I Run Before Reading Any Code

https://piechowski.io/post/git-commands-before-reading-code/
227•grepsedawk•2h ago•47 comments

Veracrypt Project Update

https://sourceforge.net/p/veracrypt/discussion/general/thread/9620d7a4b3/
400•super256•4h ago•108 comments

I've Sold Out

https://mariozechner.at/posts/2026-04-08-ive-sold-out/
76•doppp•2h ago•37 comments

Revision Demoparty 2026: Razor1911 [video]

https://www.youtube.com/watch?v=Lw4W9V57SKs&t=5716s
210•tetrisgm•6h ago•76 comments

Project Glasswing: Securing critical software for the AI era

https://www.anthropic.com/glasswing
1324•Ryan5453•17h ago•664 comments

Show HN: We built a camera only robot vacuum for less than 300$ (Well almost)

https://indraneelpatil.github.io/blog/2026/robot-vacuum/
42•indraneelpatil•2d ago•7 comments

Lunar Flyby

https://www.nasa.gov/gallery/lunar-flyby/
753•kipi•20h ago•183 comments

Your File System Is Already A Graph Database

https://rumproarious.com/2026/04/04/your-file-system-is-already-a-graph-database/
26•alxndr•2d ago•3 comments

Protect your shed

https://dylanbutler.dev/blog/protect-your-shed/
184•baely•8h ago•52 comments

Audio Reactive LED Strips Are Diabolically Hard

https://scottlawsonbc.com/post/audio-led
12•surprisetalk•21h ago•0 comments

System Card: Claude Mythos Preview [pdf]

https://www-cdn.anthropic.com/53566bf5440a10affd749724787c8913a2ae0841.pdf
725•be7a•17h ago•521 comments

GLM-5.1: Towards Long-Horizon Tasks

https://z.ai/blog/glm-5.1
544•zixuanlimit•19h ago•222 comments

Slightly safer vibecoding by adopting old hacker habits

http://addxorrol.blogspot.com/2026/03/slightly-safer-vibecoding-by-adopting.html
122•transpute•5d ago•65 comments

Native Americans had dice 12k years ago

https://www.nbcnews.com/science/science-news/native-americans-dice-games-probability-study-rcna26...
80•delichon•4d ago•30 comments

Struggle Against the Gods

https://firstthings.com/struggle-against-the-gods/
9•marcofloriano•1h ago•0 comments

How to get better at guitar

https://www.jakeworth.com/posts/how-to-get-better-at-guitar/
357•jwworth•2d ago•175 comments

Cambodia unveils statue to honour famous landmine-sniffing rat

https://www.bbc.com/news/articles/c0rx7xzd10xo
408•speckx•18h ago•93 comments

S3 Files

https://www.allthingsdistributed.com/2026/04/s3-files-and-the-changing-face-of-s3.html
315•werner•15h ago•92 comments

A truck driver spent 20 years making a scale model of every building in NYC

https://www.smithsonianmag.com/smart-news/a-truck-drive-spent-20-years-making-this-astonishing-sc...
341•1659447091•2d ago•57 comments

Show HN: An interactive map of Tolkien's Middle-earth

https://middle-earth-interactive-map.web.app/
218•frasermarlow•14h ago•41 comments

Binary obfuscation used in AAA Games

https://blog.farzon.org/2026/04/binary-obfuscation-that-doesnt-kill-lto.html
103•noztol•2d ago•45 comments

Cloudflare targets 2029 for full post-quantum security

https://blog.cloudflare.com/post-quantum-roadmap/
340•ilreb•21h ago•103 comments

A database of analog cameras that can be 3D printed

https://printed.analogcamera.space/
113•thomasjb•5d ago•15 comments

The Clock

https://blog.senko.net/the-clock
79•senko•4d ago•29 comments

US and Iran agree to provisional ceasefire

https://www.theguardian.com/us-news/2026/apr/07/trump-iran-war-ceasefire
510•g-b-r•12h ago•1500 comments

Mario and Earendil

https://lucumr.pocoo.org/2026/4/8/mario-and-earendil/
11•doppp•2h ago•0 comments

Hobby CNC machining and resin casting (2015)

https://lcamtuf.coredump.cx/gcnc/
16•achierius•3d ago•6 comments

Xilem – An experimental Rust native UI framework

https://github.com/linebender/xilem
108•Levitating•12h ago•44 comments

JSIR: A High-Level IR for JavaScript

https://discourse.llvm.org/t/rfc-jsir-a-high-level-ir-for-javascript/90456
64•nnx•10h ago•17 comments

Rescuing old printers with an in-browser Linux VM bridged to WebUSB over USB/IP

https://printervention.app/details
204•gmac•19h ago•86 comments
Open in hackernews

Using Coalton to implement a quantum compiler (2022)

https://coalton-lang.github.io/20220906-quantum-compiler/
57•andsoitis•11mo ago

Comments

reikonomusha•11mo 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•11mo 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•11mo 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•11mo 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)