frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Nvidia agrees to acquire Hugging Face for $13B

https://www.businessinsider.com/nvidia-in-talks-to-buy-hugging-face-13-billion-dollars-2026-8
1491•mfiguiere•12h ago•670 comments

Pollen Robotics (Hugging Face) Microduck

https://pollen-robotics.com/microduck/
152•robotswantdata•3h ago•52 comments

Emacs 31: An unofficial guide to Markdown-ts-mode

https://rahuljuliato.com/posts/markdown-ts-mode-emacs-31
17•RahulMJ•44m ago•0 comments

CoMaps integration with the wider FLOSS ecosystem – CoMaps

https://www.comaps.app/news/2026-08-23/comaps-integration-with-the-wider-floss-ecosystem/
17•janandonly•37m ago•0 comments

Harness Engineering

https://Habitat-Thinking.github.io/ai-literacy-superpowers/plugins/ai-literacy-superpowers/explan...
5•tomrod•12m ago•1 comments

Show HN: Pause – weekly curated 1:1 coffee matches for London professionals

https://joinpause.co/
17•tanaysaboo123•21m ago•6 comments

Never Launch Alone

https://launchgenius.app
8•leejamiesj•21m ago•2 comments

Confdiff – semantic diff for config files (JSON/YAML/TOML) that redacts secrets

https://github.com/esperanza-volkov/confdiff
7•esperanzavolkov•59m ago•2 comments

Show HN: RealDiff – runtime behavior diffing for pull requests (six languages)

https://github.com/issacnitin/RealDiff
7•issacnitin•49m ago•0 comments

Adentris (YC P25) Is Hiring

https://www.ycombinator.com/companies/adentris/jobs/ZpMXZ0C-founding-engineer-ai-rcm-healthcare-p...
1•SergeyYudovskiy•2h ago

AC2 Protocol: The missing security layer for AI agents

https://www.ac2protocol.org
3•josephcecala•11m ago•2 comments

Mechanical Turk shutting down September 30

https://www.mturk.com/
451•tmp10423288442•14h ago•142 comments

Aphantasia Beginner's Guide

https://aphantasia.com/guide
7•ksec•52m ago•1 comments

U.S. State Department pauses immigrant visa applications

https://www.wsj.com/politics/policy/u-s-state-department-pauses-immigrant-visa-applications-25b31b23
689•sss111•20h ago•1010 comments

Asahi Linux Progress Report: Linux 7.2

https://asahilinux.org/2026/08/progress-report-7-2/
336•pizzaiolo•15h ago•175 comments

Tailcat – Like netcat, but over Tailscale’s data plane

https://github.com/tailscale/tailcat
625•nderjung•20h ago•110 comments

An ongoing 3D-printer AGPL violation

https://lwn.net/SubscriberLink/1089390/46116614cc74b814/
452•Velocifyer•20h ago•198 comments

Trade (and Tariffs)

https://xkcd.com/3290/
11•throw0101d•17m ago•1 comments

Did Meta's Big Settlement Actually Help It?

https://www.nytimes.com/2026/08/27/business/dealbook/meta-settlement-teens.html
8•thm•34m ago•2 comments

Tell HN: PayPal Blocks GrapheneOS

235•leumon•4h ago•145 comments

Stripe acquires Clerky

https://www.clerky.com/blog/clerky-is-joining-stripe
211•zakshay•16h ago•49 comments

CEO fired developers to make room for AI. Developers create open source AI CEO

https://github.com/SenteLabsAI/OpenExecutive
785•GrumpySciGuy•12h ago•535 comments

Australia Bans Generative A.I. From Official Music Charts

https://www.nytimes.com/2026/08/25/world/australia/australia-ai-music-chart-ban.html
72•bookofjoe•3h ago•48 comments

Worst-case glacial lake flood scenarios in a transboundary Himalayan basin 2022

https://nhess.copernicus.org/articles/22/3765/2022/nhess-22-3765-2022.html
233•totetsu•15h ago•167 comments

Landsat 9 pass captured the effects of yesterday's catastrophic glacier collapse

https://twitter.com/WxNB_/status/2092875025246261494
37•chinathrow•2h ago•8 comments

Zohran and the Short Link

https://iamwillwang.com/notes/zohran-and-the-short-link/
249•wxw•14h ago•114 comments

The Hugging Face incident and the road ahead

https://openai.com/index/hugging-face-incident-and-the-road-ahead/
295•amrrs•18h ago•388 comments

The Harness Is the Thing

https://scott-fryxell.github.io/blog/the-harness-is-the-thing/
166•sfryxell•21h ago•84 comments

FDA approves first in class targeted therapy for metastatic pancreatic cancer

https://www.fda.gov/news-events/press-announcements/fda-approves-first-class-targeted-therapy-met...
267•leopoldj•21h ago•63 comments

CoMaps: The Offline App That Guided Rescuers Without a Signal in Venezuela

https://hotosm.org/en/news/comaps-the-offline-app-that-guided-rescuers-without-a-signal-in-the-ve...
314•gedankenstuecke•20h ago•76 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)