frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Alberta startup sells no-tech tractors for half price

https://wheelfront.com/this-alberta-startup-sells-no-tech-tractors-for-half-price/
1105•Kaibeezy•6h ago•387 comments

Apple fixes bug that cops used to extract deleted chat messages from iPhones

https://techcrunch.com/2026/04/22/apple-fixes-bug-that-cops-used-to-extract-deleted-chat-messages...
207•cdrnsf•2h ago•61 comments

We found a stable Firefox identifier linking all your private Tor identities

https://fingerprint.com/blog/firefox-tor-indexeddb-privacy-vulnerability/
307•danpinto•5h ago•84 comments

Qwen3.6-27B: Flagship-Level Coding in a 27B Dense Model

https://qwen.ai/blog?id=qwen3.6-27b
594•mfiguiere•9h ago•300 comments

5x5 Pixel font for tiny screens

https://maurycyz.com/projects/mcufont/
344•zdw•3d ago•89 comments

Over-editing refers to a model modifying code beyond what is necessary

https://nrehiew.github.io/blog/minimal_editing/
258•pella•5h ago•139 comments

Windows 9x Subsystem for Linux

https://social.hails.org/@hailey/116446826733136456
851•sohkamyung•13h ago•198 comments

The Illuminated Man: an unconventional portrait of JG Ballard

https://www.theguardian.com/books/2026/apr/20/the-illuminated-man-by-christopher-priest-and-nina-...
37•agronaut•2h ago•12 comments

Ping-pong robot beats top-level human players

https://www.reuters.com/sports/ping-pong-robot-ace-makes-history-by-beating-top-level-human-playe...
45•wslh•7h ago•47 comments

Website streamed live directly from a model

https://flipbook.page/
91•sethbannon•4h ago•37 comments

Technical, cognitive, and intent debt

https://martinfowler.com/fragments/2026-04-02.html
168•theorchid•6h ago•33 comments

Scoring Show HN submissions for AI design patterns

https://www.adriankrebs.ch/blog/design-slop/
256•hubraumhugo•8h ago•190 comments

Our eighth generation TPUs: two chips for the agentic era

https://blog.google/innovation-and-ai/infrastructure-and-cloud/google-cloud/eighth-generation-tpu...
368•xnx•10h ago•180 comments

The Neon King of New Orleans

https://gardenandgun.com/new-orleans-neon-king
16•renameme•1h ago•1 comments

3.4M Solar Panels

https://tech.marksblogg.com/american-solar-farms-v2.html
274•marklit•10h ago•208 comments

Parallel agents in Zed

https://zed.dev/blog/parallel-agents
127•ajeetdsouza•5h ago•74 comments

Books are not too expensive

https://www.millersbookreview.com/p/no-books-are-not-remotely-too-expensive
16•herbertl•2d ago•9 comments

The great Scouse pasty war

https://www.livpost.co.uk/the-great-scouse-pasty-war/
32•DamonHD•2d ago•7 comments

Ultraviolet corona discharges on treetops during storms

https://www.psu.edu/news/earth-and-mineral-sciences/story/treetops-glowing-during-storms-captured...
181•t-3•9h ago•52 comments

Bodega cats of New York

https://bodegacatsofnewyork.com
134•zdw•4d ago•54 comments

What killed the Florida orange?

https://slate.com/business/2026/04/florida-state-orange-food-houses-real-estate.html
88•danso•2d ago•84 comments

Workspace Agents in ChatGPT

https://openai.com/index/introducing-workspace-agents-in-chatgpt/
81•mfiguiere•5h ago•27 comments

GitHub CLI now collects pseudoanonymous telemetry

https://cli.github.com/telemetry
382•ingve•11h ago•285 comments

You don't need advice from editors on rejected manuscripts

https://twitter.com/orsonscottcard/status/2046702294406680751
85•MrBuddyCasino•14h ago•53 comments

Another Day Has Come

https://daringfireball.net/2026/04/another_day_has_come
168•ndr42•1d ago•136 comments

Surveillance Pricing: Exploiting Information Asymmetries

https://lpeproject.org/blog/surveillance-pricing-exploiting-information-asymmetries/
83•cainxinth•5h ago•34 comments

Show HN: Broccoli, one shot coding agent on the cloud

https://github.com/besimple-oss/broccoli
44•yzhong94•6h ago•33 comments

Anonymous credentials: an illustrated primer (Part 2)

https://blog.cryptographyengineering.com/2026/04/17/anonymous-credentials-an-illustrated-primer-p...
21•kkl•2d ago•0 comments

Columnar Storage Is Normalization

https://buttondown.com/jaffray/archive/columnar-storage-is-normalization/
96•ibobev•10h ago•36 comments

A Vompeccc Case Study: Spotify as Pure ICR in Emacs

https://www.chiply.dev/post-vompeccc-spot
8•chiply•1d ago•3 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)