frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Localsend: An open-source cross-platform alternative to AirDrop

https://github.com/localsend/localsend
248•bilsbie•2h ago•103 comments

Microsoft VibeVoice: Open-Source Frontier Voice AI

https://github.com/microsoft/VibeVoice
110•tosh•2h ago•64 comments

Show HN: Live Sun and Moon Dashboard with NASA Footage

https://www.lumara-space.app/
20•beeswaxpat•1h ago•2 comments

OpenAI CEO's Identity Verification Company Announced Fake Bruno Mars Partnership

https://www.vice.com/en/article/openai-ceo-identity-verification-company-fake-bruno-mars-partners...
58•BoggleOhYeah•59m ago•21 comments

Talkie: a 13B vintage language model from 1930

https://talkie-lm.com/introducing-talkie
492•jekude•16h ago•192 comments

The World's Most Complex Machine

https://worksinprogress.co/issue/the-worlds-most-complex-machine/
192•mellosouls•3d ago•100 comments

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...
936•helsinkiandrew•1d ago•794 comments

Deep under Antarctic ice, a long-predicted cosmic whisper breaks through

https://phys.org/news/2026-04-deep-antarctic-ice-cosmic-strange.html
11•rbanffy•1d ago•2 comments

The predictable failure of the QDay Prize

https://algassert.com/post/2601
28•firefly284•1d ago•2 comments

UAE Leaves OPEC and OPEC+

https://www.reuters.com/markets/commodities/uae-says-it-quits-opec-opec-statement-2026-04-28/
80•TechTechTech•1h ago•4 comments

Is my blue your blue? (2024)

https://ismy.blue/
638•theogravity•18h ago•417 comments

Period tracking app has been yapping about your flow to Meta

https://femtechdesigndesk.substack.com/p/your-period-tracking-app-has-been
116•campuscodi•2h ago•96 comments

I Spent My Sabbatical Building a Power Meter for Sledgehammers

https://leblancfg.com/intensity-pad-founder-story.html
21•alin23•1d ago•12 comments

WASM is not quite a stack machine

https://purplesyringa.moe/blog/wasm-is-not-quite-a-stack-machine/
101•signa11•9h ago•36 comments

Can You Find the Comet?

https://apod.nasa.gov/apod/ap260427.html
95•ColinWright•1d ago•51 comments

GTFOBins

https://gtfobins.org/
296•StefanBatory•7h ago•75 comments

GitHub Copilot code review will start consuming GitHub Actions minutes

https://github.blog/changelog/2026-04-27-github-copilot-code-review-will-start-consuming-github-a...
56•whtsky•5h ago•61 comments

Tiled Words 6 Month Update

https://paulmakeswebsites.com/writing/six-months-of-tiled-words/
43•paulhebert•1d ago•12 comments

Pgrx: Build Postgres Extensions with Rust

https://github.com/pgcentralfoundation/pgrx
138•luu•3d ago•13 comments

Mo RAM, Mo Problems (2025)

https://fabiensanglard.net/curse/
173•blfr•2d ago•30 comments

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

https://app.oravys.com/blog/mercor-breach-2026
574•Oravys•1d ago•216 comments

In Kannauj, perfumers have been making monsoon-infused mitti attar for centuries

https://www.atlasobscura.com/articles/smell-of-rain-kannauj-perfume-mitti-attar-india
30•bcaulfield•1d ago•6 comments

Men who stare at walls

https://www.alexselimov.com/posts/men_who_stare_at_walls/
657•aselimov3•1d ago•302 comments

UAE to leave OPEC in blow to oil cartel

https://www.ft.com/content/8c354f2d-3e66-47f1-aad4-9b4aa30e386d
110•bazzmt•1h ago•101 comments

Meetings are forcing functions

https://www.mooreds.com/wordpress/archives/3734
154•zdw•2d ago•93 comments

An Update on GitHub Availability

https://github.blog/news-insights/company-news/an-update-on-github-availability/
189•salkahfi•4h ago•164 comments

High Performance Git

https://gitperf.com/
190•gnabgib•13h ago•64 comments

Easyduino: Open Source PCB Devboards for KiCad

https://github.com/Hanqaqa/Easyduino
232•Hanqaqa•20h ago•40 comments

Three men are facing charges in Toronto SMS Blaster arrests

https://www.tps.ca/media-centre/stories/unprecedented-sms-blaster-arrests/
186•gnabgib•17h ago•101 comments

Networking changes coming in macOS 27

https://eclecticlight.co/2026/04/23/networking-changes-coming-in-macos-27/
244•pvtmert•22h ago•217 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)