frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

iPhone Duo

https://www.apple.com/iphone-duo/
430•thecosmicfrog•2h ago•998 comments

AirPods 5

https://www.apple.com/newsroom/2026/09/apple-introduces-airpods-5-with-best-in-class-open-ear-act...
208•awad•2h ago•162 comments

Shopify acquires Tailwind

https://tailwindcss.com/blog/tailwind-is-joining-shopify
703•EdwinHoksberg•6h ago•295 comments

What do Visa and Mastercard do? An intro to card networks

https://tautology.town/2026/06/01/card-networks.html
181•evakhoury•1d ago•92 comments

Apple Watch Series 12

https://www.apple.com/newsroom/2026/09/introducing-apple-watch-series-12-with-the-all-new-health-...
129•Lealen•2h ago•114 comments

iPhone 18 Pro and iPhone 18 Pro Max

https://www.apple.com/newsroom/2026/09/apple-debuts-iphone-18-pro-and-iphone-18-pro-max/
136•meetpateltech•2h ago•94 comments

Qwen 3.8 follows GPT-5.5 Pro reasoning prefills

https://gist.github.com/wsxiaoys/e0286dc6bb624ff5fdf49e7f4c528ba3
96•wsxiaoys•2h ago•37 comments

No Man's Sky Cosmos

https://www.nomanssky.com/cosmos-update/
172•Limb•4h ago•189 comments

GPT-6 Astra, looped transformers, and hidden reasoning

https://magazine.sebastianraschka.com/p/gpt-6-astra-looped-transformers-and
246•ModelForge•5h ago•95 comments

Growing proof that autonomous cars save lives

https://spectrum.ieee.org/are-self-driving-cars-safe
59•bookofjoe•3h ago•92 comments

GNU Radio in the browser

https://gnuradioworld.com/
131•kristianpaul•4h ago•16 comments

Understanding the recent DDoS attack against Read the Docs

https://about.readthedocs.com/blog/2026/09/2026-ddos-attack/
105•davidfischer•4h ago•34 comments

Desert Ant Labs: local, fast models that run on device

https://desertant.com/blog/introducing-desert-ant-labs/
334•willwhitedc•8h ago•85 comments

Planet Labs' open satellite feed

https://tech.marksblogg.com/planet-labs-open-satellite-feed.html
103•marklit•4h ago•21 comments

How I advertise malicious software on Google Ads

https://xlii.space/eng/malicious-software-on-google-ads/
309•xlii•8h ago•188 comments

Procedural Graphs: Self-Evolving Execution Structures for LLM Agents

https://arxiv.org/abs/2609.09153
27•omarsar•3h ago•3 comments

Bespoke: A programming language for people who say please

https://blog.hofstede.it/bespoke-a-programming-language-for-people-who-say-please/
80•birdculture•3d ago•23 comments

Why Emacs Consult async searches feel slow and how to speed them up

https://www.jamescherti.com/emacs-consult-speed-async-searche-grep-ripgrep-fd-find/
28•mpweiher•3h ago•6 comments

Generating the P3 Tiling

https://k-monk.org/blog/generating-the-p3-tiling/
20•evakhoury•1d ago•2 comments

Show HN: Self-hosted company OS, Claude Code and Codex agents in departments

https://github.com/OtoDock/oto-dock
17•dimitrismrtzs•2h ago•4 comments

Claude, change the “Add to Cart” button to blue

https://opusfived.dev/
840•matthieu_bl•10h ago•347 comments

Roame (YC S23) Is Hiring Viral Content Editor

https://www.ycombinator.com/companies/roame/jobs/KuVVqSh-content-systems-builder-editor
1•zman0225•8h ago

We accidentally built a synthetic cell factory

https://bnext.bio/post/we-accidentally-built-a-synthetic-cell-factory
59•rajivm•4h ago•4 comments

What will our economic future look like?

https://www.anthropic.com/institute/econ-scenarios
114•oumua_don17•6h ago•174 comments

Apple Watch Ultra 4

https://www.apple.com/newsroom/2026/09/apple-unveils-apple-watch-ultra-4/
46•tech234a•2h ago•78 comments

Microsoft says email spammers are adopting ASCII smuggling

https://arstechnica.com/security/2026/09/once-popular-for-attacking-ai-ascii-smuggling-is-embrace...
4•utiiiD•4d ago•0 comments

Muse – Meta’s personal AI agent

https://ai.meta.com/muse/
619•yks•1d ago•676 comments

Coyote v. Acme (1990)

https://www.newyorker.com/magazine/1990/02/26/coyote-v-acme
147•ChrisArchitect•3d ago•69 comments

Better AI code comment detector

https://entropicthoughts.com/better-ai-comment-classifier
37•ibobev•4h ago•19 comments

Ancient cave art suggests first known humans in Ireland walked over from Wales

https://www.bbc.com/news/articles/c5y75dl0jpko
13•bookofjoe•2d ago•5 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)