frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Small models also found the vulnerabilities that Mythos found

https://aisle.com/blog/ai-cybersecurity-after-mythos-the-jagged-frontier
1017•dominicq•14h ago•275 comments

The End of Eleventy

https://brennan.day/the-end-of-eleventy/
137•ValentineC•5h ago•82 comments

I run multiple $10K MRR companies on a $20/month tech stack

https://stevehanov.ca/blog/how-i-run-multiple-10k-mrr-companies-on-a-20month-tech-stack
29•tradertef•1h ago•6 comments

Tofolli gates are all you need

https://www.johndcook.com/blog/2026/04/06/tofolli-gates/
25•ibobev•4d ago•1 comments

US appeals court declares 158-year-old home distilling ban unconstitutional

https://www.theguardian.com/law/2026/apr/11/appeals-court-ruling-home-distilling-ban-unconstituti...
99•Jimmc414•2h ago•60 comments

How We Broke Top AI Agent Benchmarks: And What Comes Next

https://rdi.berkeley.edu/blog/trustworthy-benchmarks-cont/
348•Anon84•12h ago•88 comments

How Complex is my Code?

https://philodev.one/posts/2026-04-code-complexity/
99•speckx•4d ago•18 comments

447 TB/cm² at zero retention energy – atomic-scale memory on fluorographane

https://zenodo.org/records/19513269
201•iliatoli•11h ago•99 comments

Dark Castle

https://darkcastle.co.uk/
176•evo_9•11h ago•23 comments

Pijul a FOSS distributed version control system

https://pijul.org/
132•kouosi•4d ago•22 comments

Simplest Hash Functions

https://purplesyringa.moe/blog/simplest-hash-functions/
30•ibobev•4d ago•21 comments

Apple Silicon and Virtual Machines: Beating the 2 VM Limit (2023)

https://khronokernel.com/macos/2023/08/08/AS-VM.html
189•krackers•10h ago•129 comments

How a dancer with ALS used brainwaves to perform live

https://www.electronicspecifier.com/products/sensors/how-a-dancer-with-als-used-brainwaves-to-per...
34•1659447091•5h ago•4 comments

Advanced Mac Substitute is an API-level reimplementation of 1980s-era Mac OS

https://www.v68k.org/advanced-mac-substitute/
232•zdw•16h ago•61 comments

Cirrus Labs to join OpenAI

https://cirruslabs.org/
261•seekdeep•18h ago•126 comments

Surelock: Deadlock-Free Mutexes for Rust

https://notes.brooklynzelenka.com/Blog/Surelock
204•codetheweb•3d ago•66 comments

Show HN: Pardonned.com – A searchable database of US Pardons

421•vidluther•1d ago•232 comments

How to build a `Git diff` driver

https://www.jvt.me/posts/2026/04/11/how-git-diff-driver/
107•zdw•13h ago•12 comments

Software Preservation Group: C++ History Collection

https://softwarepreservation.computerhistory.org/c_plus_plus/
19•quuxplusone•6h ago•2 comments

Why meaningful days look like nothing while you are living them

https://pilgrima.ge/p/the-grand-line
26•momentmaker•4h ago•14 comments

The Soul of an Old Machine

https://skalski.dev/the-soul-of-an-old-machine/
50•mskalski•4d ago•10 comments

High-Level Rust: Getting 80% of the Benefits with 20% of the Pain

https://hamy.xyz/blog/2026-01_high-level-rust
26•maxloh•8h ago•12 comments

Who was "Not Even Wrong" first? [2023]

https://www.math.columbia.edu/~woit/wordpress/?p=13455
5•bookofjoe•4d ago•2 comments

What is a property?

https://alperenkeles.com/posts/what-is-a-property/
70•alpaylan•4d ago•19 comments

Optimal Strategy for Connect 4

https://2swap.github.io/WeakC4/explanation/
286•marvinborner•3d ago•31 comments

Every plane you see in the sky – you can now follow it from the cockpit in 3D

https://flight-viz.com/cockpit.html?lat=40.64&lon=-73.78&alt=3000&hdg=220&spd=130&cs=DAL123
319•coolwulf•3d ago•59 comments

Building a Z-Machine in the worst possible language – Whitebeard's Realm

https://whitebeard.blog/posts/building-a-z-machine-in-elm/
22•techbelly•4h ago•2 comments

The Problem That Built an Industry

https://ajitem.com/blog/iron-core-part-1-the-problem-that-built-an-industry/
123•ShaggyHotDog•17h ago•44 comments

The APL programming language source code (2012)

https://computerhistory.org/blog/the-apl-programming-language-source-code/
66•tosh•14h ago•22 comments

Keeping a Postgres Queue Healthy

https://planetscale.com/blog/keeping-a-postgres-queue-healthy
94•tanelpoder•15h ago•25 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)