frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Microsoft and OpenAI end their exclusive and revenue-sharing deal

https://www.bloomberg.com/news/articles/2026-04-27/microsoft-to-stop-sharing-revenue-with-main-ai...
716•helsinkiandrew•10h ago•636 comments

New Integrated by Design FreeBSD Book

https://vivianvoss.net/blog/integrated-by-design-launch
16•vermaden•43m ago•0 comments

Is my blue your blue?

https://ismy.blue/
276•theogravity•3h ago•175 comments

Three men are facing charges in Toronto SMS Blaster arrests

https://www.tps.ca/media-centre/stories/unprecedented-sms-blaster-arrests/
70•gnabgib•3h ago•33 comments

Easyduino: Open Source PCB Devboards for KiCad

https://github.com/Hanqaqa/Easyduino
155•Hanqaqa•6h ago•23 comments

The quiet resurgence of RF engineering

https://atempleton.bearblog.dev/quiet-resurgence-of-rf-engineering/
111•merlinq•2d ago•53 comments

Spanish archaeologists discover trove of ancient shipwrecks in Bay of Gibraltar

https://www.theguardian.com/science/2026/apr/15/hidden-treasures-spanish-archaeologists-discover-...
72•1659447091•1d ago•9 comments

Talkie: a 13B vintage language model from 1930

https://talkie-lm.com/introducing-talkie
12•jekude•2h ago•0 comments

Networking changes coming in macOS 27

https://eclecticlight.co/2026/04/23/networking-changes-coming-in-macos-27/
191•pvtmert•8h ago•160 comments

4TB of voice samples just stolen from 40k AI contractors at Mercor

https://app.oravys.com/blog/mercor-breach-2026
423•Oravys•14h ago•156 comments

China blocks Meta's acquisition of AI startup Manus

https://www.cnbc.com/2026/04/27/meta-manus-china-blocks-acquisition-ai-startup.html
280•yakkomajuri•12h ago•178 comments

Men who stare at walls

https://www.alexselimov.com/posts/men_who_stare_at_walls/
414•aselimov3•12h ago•196 comments

The woes of sanitizing SVGs

https://muffin.ink/blog/scratch-svg-sanitization/
168•varun_ch•8h ago•66 comments

The Secret Life of NaN

https://anniecherkaev.com/the-secret-life-of-nan
22•prakashqwerty•1d ago•10 comments

Super ZSNES – GPU Powered SNES Emulator

https://zsnes.com/
216•haunter•6h ago•58 comments

Radar Laboratory – Interactive Radar Phenomenology

https://radarlaboratory.com/
12•jonbaer•2d ago•0 comments

NPM website was down

https://status.npmjs.org
108•18nleung•2h ago•46 comments

Meetings Are Forcing Functions

https://www.mooreds.com/wordpress/archives/3734
4•zdw•1d ago•0 comments

“Why not just use Lean?”

https://lawrencecpaulson.github.io//2026/04/23/Why_not_Lean.html
243•ibobev•9h ago•167 comments

GitHub Copilot is moving to usage-based billing

https://github.blog/news-insights/company-news/github-copilot-is-moving-to-usage-based-billing/
512•frizlab•7h ago•393 comments

Pgbackrest is no longer being maintained

https://github.com/pgbackrest/pgbackrest
391•c0l0•13h ago•198 comments

Fully Featured Audio DSP Firmware for the Raspberry Pi Pico

https://github.com/WeebLabs/DSPi
253•BoingBoomTschak•2d ago•75 comments

Show HN: OSS Agent I built topped the TerminalBench on Gemini-3-flash-preview

https://github.com/dirac-run/dirac
289•GodelNumbering•11h ago•116 comments

FDA approves first gene therapy for treatment of genetic hearing loss

https://www.fda.gov/news-events/press-announcements/fda-approves-first-ever-gene-therapy-treatmen...
206•JeanKage•13h ago•78 comments

Magic by return of post: How mail order delivered the occult

https://publicdomainreview.org/essay/magic-by-return-of-post/
37•Vigier•2d ago•4 comments

L123: A Lotus 1-2-3–style terminal spreadsheet with modern Excel compatibility

https://github.com/duane1024/l123
61•duane1024•4h ago•15 comments

US Supreme Court reviews police use of cell location data

https://www.nytimes.com/2026/04/27/us/politics/supreme-court-cell-data-geofence.html
213•unethical_ban•8h ago•131 comments

Quarkdown – Markdown with Superpowers

https://quarkdown.com/
242•amai•15h ago•85 comments

Adding a team was the wrong strategic decision

https://learnings.aleixmorgadas.dev/p/adding-a-team-was-the-wrong-strategic
69•milkglass•2d ago•21 comments

Decoupled DiLoCo: Resilient, Distributed AI Training at Scale

https://deepmind.google/blog/decoupled-diloco/
43•metadat•7h 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)