frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

All elementary functions from a single binary operator

https://arxiv.org/abs/2603.21852
155•pizza•3h ago•51 comments

Haunt, the 70s text adventure game, is now playable on a website

https://haunt.madebywindmill.com
29•jscalo•1h ago•6 comments

Taking on CUDA with ROCm: 'One Step After Another'

https://www.eetimes.com/taking-on-cuda-with-rocm-one-step-after-another/
111•mindcrime•6h ago•83 comments

State of Homelab 2026

https://mrlokans.work/posts/state-of-homelab-2026/
48•swq115•3h ago•25 comments

Optimization of 32-bit Unsigned Division by Constants on 64-bit Targets

https://arxiv.org/abs/2604.07902
44•mpweiher•20h ago•2 comments

Show HN: boringBar – a taskbar-style dock replacement for macOS

https://boringbar.app/
301•a-ve•11h ago•174 comments

Bring Back Idiomatic Design (2023)

https://essays.johnloeber.com/p/4-bring-back-idiomatic-design
501•phil294•16h ago•264 comments

DIY Soft Drinks

https://blinry.org/diy-soft-drinks/
319•_Microft•12h ago•87 comments

Apple's accidental moat: How the "AI Loser" may end up winning

https://adlrocha.substack.com/p/adlrocha-how-the-ai-loser-may-end
75•walterbell•2h ago•61 comments

Ask HN: What Are You Working On? (April 2026)

171•david927•12h ago•504 comments

A Perfectable Programming Language

https://alok.github.io/lean-pages/perfectable-lean/
86•yuppiemephisto•8h ago•27 comments

Most people can't juggle one ball

https://www.lesswrong.com/posts/jTGbKKGqs5EdyYoRc/most-people-can-t-juggle-one-ball
297•surprisetalk•3d ago•91 comments

I gave every train in New York an instrument

https://www.trainjazz.com/
245•joshuawolk•2d ago•48 comments

Show HN: Oberon System 3 runs natively on Raspberry Pi 3 (with ready SD card)

https://github.com/rochus-keller/OberonSystem3Native/releases
176•Rochus•16h ago•37 comments

Uncharted island soon to appear on nautical charts

https://www.awi.de/en/about-us/service/press/single-view/unkartierte-insel-demnaechst-auf-seekart...
65•tannhaeuser•8h ago•27 comments

Tell HN: Docker pull fails in Spain due to football Cloudflare block

732•littlecranky67•16h ago•288 comments

Google removes "Doki Doki Literature Club" from Google Play

https://bsky.app/profile/serenityforge.com/post/3mj3r4nbiws2t
367•super256•9h ago•174 comments

We have a 99% email reputation, but Gmail disagrees

https://blogfontawesome.wpcomstaging.com/we-have-a-99-email-reputation-gmail-disagrees/
206•em-bee•16h ago•193 comments

Kindle users in uproar re: latest update, old devices now unusable: 'Fuck You '

https://nypost.com/2026/04/09/tech/kindle-to-cease-support-for-old-devices-causing-user-uproar/
15•1vuio0pswjnm7•1h ago•2 comments

Investigating How Long-Distance Couples Use Digital Games to Facilitate Intimacy

https://arxiv.org/abs/2505.09509
79•radeeyate•12h ago•24 comments

Seven countries now generate 100% of their electricity from renewable energy

https://www.the-independent.com/tech/renewable-energy-solar-nepal-bhutan-iceland-b2533699.html
540•mpweiher•15h ago•282 comments

The peril of laziness lost

https://bcantrill.dtrace.org/2026/04/12/the-peril-of-laziness-lost/
363•gpm•9h ago•119 comments

Happy Map

https://pudding.cool/2026/02/happy-map/
236•surprisetalk•5d ago•42 comments

JVM Options Explorer

https://chriswhocodes.com/vm-options-explorer.html
184•0x54MUR41•18h ago•80 comments

Exploiting the most prominent AI agent benchmarks

https://rdi.berkeley.edu/blog/trustworthy-benchmarks-cont/
503•Anon84•1d ago•130 comments

The End of Eleventy

https://brennan.day/the-end-of-eleventy/
209•ValentineC•1d ago•175 comments

Phyphox – Physical Experiments Using a Smartphone

https://phyphox.org/
202•_Microft•20h ago•32 comments

Pro Max 5x quota exhausted in 1.5 hours despite moderate usage

https://github.com/anthropics/claude-code/issues/45756
571•cmaster11•16h ago•519 comments

EasyPost (YC S13) Is Hiring

https://www.easypost.com/careers
1•jstreebin•12h ago

Is Math Big or Small?

https://chessapig.github.io/talks/Big-Small
23•robinhouston•20h ago•5 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)