frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why have papers by one of history's most famous physicists been retracted?

https://www.science.org/content/article/why-have-papers-one-history-s-most-famous-physicists-been...
71•adharmad•46m ago•19 comments

Incident CVE-2026-LGTM

https://nesbitt.io/2026/06/26/incident-report-cve-2026-lgtm.html
128•mooreds•1h ago•29 comments

Om Malik has died

https://om.co/2026/06/24/1966-2026/
1107•minimaxir•18h ago•130 comments

An entire Herculaneum scroll has been read for the first time

https://scrollprize.org/firstscroll
1474•verditelabs•23h ago•316 comments

Ultrasound Imaging of the Brain

https://alephneuro.com/blog/ultrasound-brain
35•rossant•3h ago•7 comments

Bipartite Matching Is in NC

https://scottaaronson.blog/?p=9851
64•amichail•3d ago•4 comments

Libre Barcode Project

https://graphicore.github.io/librebarcode/
227•luu•11h ago•36 comments

A forgotten social media post may hold key clues to Covid-19's origin

https://www.science.org/content/article/forgotten-social-media-post-may-hold-key-clues-covid-19-s...
11•bookofjoe•58m ago•0 comments

What happened after 2k people tried to hack my AI assistant

https://www.fernandoi.cl/posts/hackmyclaw/
267•cuchoi•12h ago•113 comments

Framework's 10G Ethernet module exposes USB-C's complexity

https://www.jeffgeerling.com/blog/2026/framework-10g-ethernet-module-usb-c-complexity/
253•Alupis•13h ago•137 comments

Show HN: WebBase-III – dBASE III rebuilt in the browser with its own interpreter

https://github.com/DDecoene/WebBaseIII
34•ddecoene•2d ago•10 comments

22-year-old Mozart's handwritten notebook unearthed in 'major discovery'

https://www.classicfm.com/composers/mozart/handwritten-notebook-discovered-major-paris/
146•thunderbong•5d ago•35 comments

FEXPRs vs. vtable: how LispE interpreter works

https://github.com/naver/lispe/wiki/2.7-FEXPR-vs.-vtable
17•birdculture•2d ago•4 comments

The 'papers, please' era of the internet will decimate your privacy

https://expression.fire.org/p/the-papers-please-era-of-the-internet
904•bilsbie•17h ago•444 comments

A game where you're an OS and have to manage processes, memory and I/O events

https://github.com/plbrault/youre-the-os
295•exploraz•3d ago•55 comments

We all depend on open source. We will defend it together

https://akrites.org/letter/
359•dhruv3006•9h ago•170 comments

The Garbage Collection Handbook: The Art of Automatic Memory Management (2nd Ed) (2023)

https://gchandbook.org/
193•teleforce•15h ago•39 comments

Oxide computer 3D rack guided tour

https://explorer.oxide.computer/
422•darthcloud•3d ago•173 comments

The best thing that has ever happened for multiplayer games

https://mas-bandwidth.com/the-best-thing-that-has-ever-happened-for-multiplayer-games/
27•gafferongames•4d ago•8 comments

IBM debuts sub-1 nanometer chip technology

https://newsroom.ibm.com/2026-06-25-ibm-debuts-worlds-first-sub-1-nanometer-chip-technology
354•porridgeraisin•23h ago•191 comments

Hey Nico, you didn't vibe code your data room but stole it from Papermark

https://twitter.com/mfts0/status/2070080422482977095
484•mmunj•1d ago•197 comments

Show HN: OpenKnowledge – open source AI-first alternative to Obsidian/Notion

https://github.com/inkeep/open-knowledge
322•engomez•22h ago•155 comments

Show HN: Chess-Inspired Roguelike

https://princechazz.com
372•cowboy_henk•5d ago•120 comments

Un-0: Generating Images with Coupled Oscillators

https://unconv.ai/blog/introducing-un-0-generating-images-with-coupled-oscillators/
173•babelfish•18h ago•41 comments

The AI backlash is only getting started

https://www.economist.com/leaders/2026/06/25/the-ai-backlash-is-only-getting-started
54•andsoitis•1h ago•87 comments

Microbubbles in Medicine

https://worksinprogress.co/issue/microbubbles/
20•Jimmc414•4d ago•3 comments

Jolla Phone, Over 13 500 units sold

https://commerce.jolla.com/products/jolla-phone-october-2026
3•mrbn100ful•10m ago•0 comments

An oral history of Bank Python (2021)

https://calpaterson.com/bank-python.html
149•tosh•18h ago•59 comments

The Doorman's Fallacy in action

https://rozumem.xyz/posts/17
173•rozumem•18h ago•227 comments

Apple raises prices of MacBooks, iPads

https://www.reuters.com/world/asia-pacific/apple-raises-prices-macbooks-ipads-memory-costs-skyroc...
780•virgildotcodes•1d ago•1143 comments
Open in hackernews

Using Coalton to implement a quantum compiler (2022)

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

Comments

reikonomusha•1y 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•1y 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•1y 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•1y 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)