frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Nano Banana Pro

https://blog.google/technology/ai/nano-banana-pro/
903•meetpateltech•13h ago•552 comments

Android and iPhone users can now share files, starting with the Pixel 10

https://blog.google/products/android/quick-share-airdrop/
537•abraham•11h ago•324 comments

FEX-emu – Run x86 applications on ARM64 Linux devices

https://fex-emu.com/
106•open-paren•1w ago•34 comments

Why top firms fire good workers

https://www.rochester.edu/newscenter/employee-turnover-why-top-firms-churn-good-workers-681832/
44•hhs•3h ago•26 comments

Exploring the Fragmentation of Wayland, an xdotool adventure

https://www.semicomplete.com/blog/xdotool-and-exploring-wayland-fragmentation/
52•viraptor•5d ago•26 comments

New Glenn Update

https://www.blueorigin.com/news/new-glenn-upgraded-engines-subcooled-components-drive-enhanced-pe...
125•rbanffy•7h ago•62 comments

New OS aims to provide (some) compatibility with macOS

https://github.com/ravynsoft/ravynos
158•kasajian•8h ago•66 comments

Data-at-Rest Encryption in DuckDB

https://duckdb.org/2025/11/19/encryption-in-duckdb
145•chmaynard•9h ago•16 comments

Over-regulation is doubling the cost

https://rein.pk/over-regulation-is-doubling-the-cost
98•bilsbie•5h ago•134 comments

NTSB Preliminary Report – UPS Boeing MD-11F Crash [pdf]

https://www.ntsb.gov/Documents/Prelimiary%20Report%20DCA26MA024.pdf
149•gregsadetsky•10h ago•163 comments

He built underground maze of light-filled earth homes in CA Sierras [video]

https://www.youtube.com/watch?v=U0bHhmpyKGg
29•surprisetalk•1w ago•8 comments

GitHut – Programming Languages and GitHub (2014)

https://githut.info/
56•tonyhb•6h ago•21 comments

The Lions Operating System

https://lionsos.org
127•plunderer•10h ago•30 comments

CBP is monitoring US drivers and detaining those with suspicious travel patterns

https://apnews.com/article/immigration-border-patrol-surveillance-drivers-ice-trump-9f5d05469ce8c...
594•jjwiseman•8h ago•675 comments

Okta's NextJS-0auth troubles

https://joshua.hu/ai-slop-okta-nextjs-0auth-security-vulnerability
242•ramimac•2d ago•92 comments

The Banished Bottom of the Housing Market

https://www.ryanpuzycki.com/p/the-banished-bottom-of-the-housing
170•barry-cotter•12h ago•192 comments

Free interactive tool that shows you how PCIe lanes work on motherboards

https://mobomaps.com
166•tagyro•1d ago•30 comments

Measuring Latency (2015)

https://bravenewgeek.com/everything-you-know-about-latency-is-wrong/
14•dempedempe•2h ago•4 comments

Show HN: F32 – An Extremely Small ESP32 Board

https://github.com/PegorK/f32
210•pegor•1d ago•32 comments

Microsoft makes Zork open-source

https://opensource.microsoft.com/blog/2025/11/20/preserving-code-that-shaped-generations-zork-i-i...
481•tabletcorry•10h ago•198 comments

Adversarial poetry as a universal single-turn jailbreak mechanism in LLMs

https://arxiv.org/abs/2511.15304
256•capgre•16h ago•136 comments

Hilbert space: treating functions as vectors

https://eli.thegreenplace.net/2025/hilbert-space-treating-functions-as-vectors/
8•signa11•1w ago•0 comments

Launch HN: Poly (YC S22) – Cursor for Files

45•aabhay•10h ago•50 comments

Two recently found works of J.S. Bach presented in Leipzig [video]

https://www.youtube.com/watch?v=4hXzUGYIL9M#t=15m19s
115•Archelaos•3d ago•77 comments

Interactive World History Atlas Since 3000 BC

http://geacron.com/home-en/
299•not_knuth•18h ago•130 comments

Autocomp: An ADRS Framework for Optimizing Tensor Accelerator Code

https://adrs-ucb.notion.site/autocomp
67•accheng•6h ago•49 comments

Show HN: My hobby OS that runs Minecraft

https://astral-os.org/posts/2025/10/31/astral-minecraft.html
141•avaliosdev•3d ago•17 comments

Ask HN: How are Markov chains so different from tiny LLMs?

133•JPLeRouzic•3d ago•88 comments

World Othello Championship Finals

https://flipthedisc.com/live/320
6•Tepix•5d ago•1 comments

Go Cryptography State of the Union

https://words.filippo.io/2025-state/
140•ingve•11h ago•51 comments
Open in hackernews

Using Coalton to implement a quantum compiler (2022)

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

Comments

reikonomusha•6mo 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•6mo 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•6mo 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•6mo 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)