frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Jimi Hendrix was a systems engineer

https://spectrum.ieee.org/jimi-hendrix-systems-engineer
240•tintinnabula•3h ago•92 comments

First Website

https://info.cern.ch
27•shrikaranhanda•1h ago•2 comments

Making MCP cheaper via CLI

https://kanyilmaz.me/2026/02/23/cli-vs-mcp.html
90•thellimist•3h ago•48 comments

The Om Programming Language

https://www.om-language.com/
219•tosh•6h ago•47 comments

Bus stop balancing is fast, cheap, and effective

https://worksinprogress.co/issue/the-united-states-needs-fewer-bus-stops/
275•surprisetalk•7h ago•435 comments

Windows 11 Notepad to support Markdown

https://blogs.windows.com/windows-insider/2026/01/21/notepad-and-paint-updates-begin-rolling-out-...
155•andreynering•6h ago•292 comments

Show HN: Respectify – A comment moderator that teaches people to argue better

https://respectify.org/
68•vintagedave•9h ago•102 comments

The First Fully General Computer Action Model

https://si.inc/posts/fdm1/
107•nee1r•2d ago•37 comments

Large-Scale Online Deanonymization with LLMs

https://simonlermen.substack.com/p/large-scale-online-deanonymization
170•DalasNoin•1d ago•152 comments

Dissecting the CPU-memory relationship in garbage collection (OpenJDK 26)

https://norlinder.nu/posts/GC-Cost-CPU-vs-Memory/
33•jonasn•1d ago•9 comments

Why every automaker is quietly bringing back the inline-six engine

https://carbuzz.com/why-automakers-bringing-back-the-inline-six-engine/
24•teleforce•3d ago•31 comments

Learnings from 4 months of Image-Video VAE experiments

https://www.linum.ai/field-notes/vae-reconstruction-vs-generation
52•schopra909•1d ago•9 comments

Banned in California

https://www.bannedincalifornia.org/
118•pie_flavor•49m ago•107 comments

Show HN: I ported Tree-sitter to Go

https://github.com/odvcencio/gotreesitter
169•odvcencio•5h ago•71 comments

The Hydrogen Truck Problem Isn't the Truck

https://www.mikeayles.com/blog/hydrogen-refuelling-road-freight/
5•mikeayles•1d ago•2 comments

Following 35% growth, solar has passed hydro on US grid

https://arstechnica.com/science/2026/02/final-2025-data-is-in-us-energy-use-is-up-as-solar-passes...
372•rbanffy•7h ago•296 comments

How to fold the Blade Runner origami unicorn (1996)

https://web.archive.org/web/20011104015933/www.linkclub.or.jp/~null/index_br.html
247•exvi•3d ago•35 comments

Access to a Shared Unix Computer

http://tilde.club/
33•TigerUniversity•3d ago•9 comments

GNU Texmacs

https://www.texmacs.org/tmweb/home/welcome.en.html
114•remywang•8h ago•41 comments

Trellis AI (YC W24) is hiring deployment lead to accelerate medication access

https://www.ycombinator.com/companies/trellis-ai/jobs/7ZlvQkN-lead-deployment-strategist
1•macklinkachorn•7h ago

Devirtualization and Static Polymorphism

https://david.alvarezrosa.com/posts/devirtualization-and-static-polymorphism/
33•dalvrosa•5h ago•11 comments

The Misuses of the University

https://www.publicbooks.org/the-misuses-of-the-university/
114•ubasu•7h ago•82 comments

Origin of the rule that swap size should be 2x of the physical memory

https://retrocomputing.stackexchange.com/questions/32492/origin-of-the-rule-that-swap-size-should...
8•SeenNotHeard•56m ago•0 comments

Claude Code Remote Control

https://code.claude.com/docs/en/remote-control
474•empressplay•16h ago•273 comments

Never buy a .online domain

https://www.0xsid.com/blog/online-tld-is-pain
644•ssiddharth•10h ago•403 comments

Why isn't LA repaving streets?

https://lapublicpress.org/2026/02/why-isnt-la-repaving-streets/
87•speckx•7h ago•169 comments

Launch HN: TeamOut (YC W22) – AI agent for planning company retreats

https://app.teamout.com/ai
38•vincentalbouy•10h ago•47 comments

New accounts on HN more likely to use em-dashes

https://www.marginalia.nu/weird-ai-crap/hn/
563•todsacerdoti•9h ago•477 comments

Text-Based Google Directions

https://gdir.telae.net/
49•TigerUniversity•4d ago•15 comments

Danish government agency to ditch Microsoft software (2025)

https://therecord.media/denmark-digital-agency-microsoft-digital-independence
719•robtherobber•13h ago•365 comments
Open in hackernews

Using Coalton to implement a quantum compiler (2022)

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

Comments

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