frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Long presumed dead, a thriving coral reef is discovered in West Africa

https://e360.yale.edu/digest/benin-coral-reef
198•speckx•3h ago•29 comments

AI Didn't Make Programming Easier. It Just Made It Differently Difficult

https://cacm.acm.org/opinion/ai-didnt-make-programming-easier-it-just-made-it-differently-difficult/
55•tchalla•54m ago•14 comments

Freeink: Open Ecosystem for E-Readers

https://freeink.org/
34•FriedPickles•45m ago•7 comments

Cheap Self-Hosted Kubernetes on Hetzner Cloud

https://blog.qstars.nl/posts/cheap-self-hosted-kubernetes-on-hetzner-cloud/
38•victorbrink•59m ago•14 comments

Gemini 3.6 Flash, 3.5 Flash-Lite, and 3.5 Flash Cyber

https://blog.google/innovation-and-ai/models-and-research/gemini-models/gemini-3-6-flash-3-5-flas...
433•logickkk1•4h ago•348 comments

Apple has decided to compete for creativity app users

https://alex4d.com/notes/item/apple-competing-for-creativity-app-users
24•speckx•53m ago•0 comments

Meta's AI Models Are Powering the First Wave of Genesis Mission Projects

https://ai.meta.com/blog/genesis-mission-lawrence-berkeley-national-laboratory-segment-anything-d...
56•surprisetalk•2h ago•38 comments

Advertise in ChatGPT

https://ads.openai.com/
88•montecarl•26m ago•85 comments

Show HN: A self-running space economy SIM in Rust and Bevy

https://github.com/Kalcode/spaceprojectsim
20•kalcode•54m ago•2 comments

Apple Private Cloud Compute SoC 3 audit reports

https://support.apple.com/guide/certifications/apple-private-cloud-compute-soc-3-audit-apc95a31b9...
22•throwfaraway4•1h ago•0 comments

Bloomy (YC S26) is hiring a founding engineer

1•alexsouthmayd•2h ago

Qwen-Image-3.0: Rich Content, Authentic Details, Deep Knowledge

https://qwen.ai/blog?id=qwen-image-3.0
494•ilreb•10h ago•202 comments

France's Anssi Will Block PQC-Free Products from Certification Starting 2027

https://postquantum.com/security-pqc/anssi-pqc-certification-2027/
58•Sami_Lehtinen•3h ago•11 comments

PCjs Machines

https://www.pcjs.org/
142•naves•5h ago•13 comments

Jack Dorsey launches Buzz to combine team chat, AI agents and Git hosting

https://runtimewire.com/article/jack-dorsey-block-buzz-team-chat-ai-agents-git
75•ryanmerket•2h ago•64 comments

Show HN: Imagin Raw – A 9MB Open-Source Alternative to Adobe Bridge for Mac

https://github.com/cristibaluta/Imagin-Raw
32•cristi_baluta•1h ago•7 comments

The unreasonable difficulty of time series forecasting

https://suzyahyah.github.io/machine%20learning/2026/06/27/trouble-with-time-series.html
61•suzyahyah•3d ago•21 comments

Recreating the Bell Labs Cafeteria

https://danielmiessler.com/blog/recreating-the-bell-labs-cafeteria
17•walterbell•3d ago•2 comments

The World's 2,400 Castles

https://thecastlemap.com/
116•marklit•3h ago•88 comments

Show HN: CodeAlmanac – Karpathy-style codebase wiki from your conversations

https://github.com/AlmanacCode/codealmanac/
17•divitsheth•2h ago•7 comments

Greedy is optimal for single-pass semi-streaming matching

https://arxiv.org/abs/2607.14656
6•MarcoDewey•1h ago•0 comments

Slater – Low-memory graphdb designed for read-heavy graphs

https://github.com/Hikari-Systems/slater
6•rickkjp•45m ago•2 comments

Uhubctl – control USB power per-port on smart USB hubs

https://github.com/mvp/uhubctl
20•gregsadetsky•2h ago•6 comments

AI Agent – TRMNL

https://help.trmnl.com/en/articles/14130438-ai-agent
7•joeyespo•52m ago•6 comments

My USB Drive Has a Hidden Encrypted Vault

https://rootkitlabs.com/2026/06/22/I%27m-Building-a-Secure-USB-Drive/
74•machinehum•1d ago•50 comments

Laguna S 2.1

https://poolside.ai/blog/introducing-laguna-s-2-1
41•rexledesma•2h ago•5 comments

The Price of Happiness

https://happiness-science.org/price-of-happiness/
3•andyjohnson0•42m ago•0 comments

YouTube System Design for Robotics Data Infrastructure

https://hebbianrobotics.com/blog/youtube-system-design-for-robotics-data-infrastructure
6•kstonekuan•1h ago•1 comments

Python 3.15's Ultra-Low Overhead Interpreter Profiling Mode – Ken Jin's Blog

https://fidget-spinner.github.io/posts/ultra-fast-tracing.html
131•rbanffy•6d ago•11 comments

Apple Defeats Liability for Not Scanning iCloud for CSAM

https://blog.ericgoldman.org/archives/2026/07/apple-defeats-liability-for-not-scanning-icloud-for...
218•speckx•4h ago•187 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)