frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

New 10 GbE USB adapters are cooler, smaller, cheaper

https://www.jeffgeerling.com/blog/2026/new-10-gbe-usb-adapters-cooler-smaller-cheaper/
97•calcifer•2h ago•23 comments

Google plans to invest up to $40B in Anthropic

https://www.bloomberg.com/news/articles/2026-04-24/google-plans-to-invest-up-to-40-billion-in-ant...
558•elffjs•16h ago•540 comments

A 3D Body from Eight Questions – No Photo, No GPU

https://clad.you/blog/posts/questionnaire-mlp/
44•arkadiuss•2d ago•8 comments

Paraloid B-72

https://en.wikipedia.org/wiki/Paraloid_B-72
170•Ariarule•3d ago•25 comments

Humpback whales are forming super-groups

https://www.bbc.com/future/article/20260416-the-humpback-super-groups-swarming-the-seas
94•andsoitis•3d ago•43 comments

"Plain text has been around for decades and it's here to stay." – Unsung

https://unsung.aresluna.org/plain-text-has-been-around-for-decades-and-its-here-to-stay/
77•rbanffy•7h ago•15 comments

My audio interface has SSH enabled by default

https://hhh.hn/rodecaster-duo-fw/
233•hhh•13h ago•76 comments

Replace IBM Quantum back end with /dev/urandom

https://github.com/yuvadm/quantumslop/blob/25ad2e76ae58baa96f6219742459407db9dd17f5/URANDOM_DEMO.md
138•pigeons•7h ago•16 comments

Turbo Vision 2.0 – a modern port

https://github.com/magiblot/tvision
101•andsoitis•4h ago•19 comments

Sabotaging projects by overthinking, scope creep, and structural diffing

https://kevinlynagh.com/newsletter/2026_04_overthinking/
420•alcazar•18h ago•106 comments

Iliad fragment found in Roman-era mummy

https://www.thehistoryblog.com/archives/75877
168•wise_blood•2d ago•48 comments

(Blender) Cosmology with Geometry Nodes

https://www.blender.org/user-stories/cosmology-with-geometry-nodes/
48•shankysingh•7h ago•1 comments

The Classic American Diner

https://blogs.loc.gov/picturethis/2026/04/the-classic-american-diner/
215•NaOH•13h ago•129 comments

There Will Be a Scientific Theory of Deep Learning

https://arxiv.org/abs/2604.21691
221•jamie-simon•14h ago•93 comments

A Powerful New 'QR Code' Untangles Math's Knottiest Knots

https://www.quantamagazine.org/a-powerful-new-qr-code-untangles-maths-knottiest-knots-20260422/
6•defrost•2d ago•0 comments

Education must go beyond the mere production of words

https://www.ncregister.com/commentaries/schnell-repairing-the-ruins
56•signor_bosco•8h ago•16 comments

Firefox Has Integrated Brave's Adblock Engine

https://itsfoss.com/news/firefox-ships-brave-adblock-engine/
196•nreece•6h ago•96 comments

Work with the garage door up (2024)

https://notes.andymatuschak.org/Work_with_the_garage_door_up
155•jxmorris12•3d ago•113 comments

The mail sent to a video game publisher

https://www.gamefile.news/p/panic-mail-arco-despelote-time-flies-thank-goodness-teeth
19•colinprince•3d ago•0 comments

MacBook Neo and how the iPad should be

https://craigmod.com/essays/ipad_neo/
264•jen729w•2d ago•147 comments

Email could have been X.400 times better

https://buttondown.com/blog/x400-vs-smtp-email
168•maguay•2d ago•148 comments

Open source memory layer so any AI agent can do what Claude.ai and ChatGPT do

https://alash3al.github.io/stash?_v01
25•alash3al•7h ago•6 comments

ENIAC's Architects Wove Stories Through Computing

https://spectrum.ieee.org/eniac-80th-anniversary-weaving
10•sohkamyung•3d ago•0 comments

DeepSeek v4

https://api-docs.deepseek.com/news/news260424
1890•impact_sy•1d ago•1474 comments

Show HN: I've built a nice home server OS

https://lightwhale.asklandd.dk/
113•Zta77•10h ago•46 comments

PCR is a surprisingly near-optimal technology

https://nikomc.com/2026/04/22/pcr/
12•mailyk•2d ago•0 comments

You don't want long-lived keys

https://argemma.com/blog/long-lived-keys/
53•kkl•3d ago•34 comments

Diatec, known for its mechanical keyboard brand FILCO, has ceased operations

https://gigazine.net/gsc_news/en/20260424-filco-diatec/
116•gslin•16h ago•42 comments

Reverse-engineering infrared-based electronic shelf labels

https://www.furrtek.org/?a=esl
21•pabs3•3d ago•2 comments

The Overtom Chess Computer Museum

https://tluif.home.xs4all.nl/chescom/Engindex.html
33•semyonsh•2d ago•6 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)