frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI's top startups are barely publishing their research

https://www.science.org/content/article/ai-s-top-startups-are-barely-publishing-their-research
425•YeGoblynQueenne•11h ago•220 comments

The coolest use for the Vision Pro

https://christianselig.com/2026/07/vision-pro-house/
629•robbiet480•11h ago•247 comments

I Have Thoughts on the iPhone Air

https://christianselig.com/2026/07/iphone-air-review/
17•janandonly•37m ago•6 comments

Show HN: Open-source engine running Gemma 4 26B in 2 GB RAM on any M-series Mac

https://github.com/drumih/turbo-fieldfare
775•gitpusher42•17h ago•272 comments

Superlogical

https://www.superlogical.com/
670•yan•16h ago•406 comments

London’s most equidistant pub

https://equidistance.io/londons-most-equidistant-pub/
35•lambfruit•4d ago•15 comments

LLM Honeypot

https://llm2human.pages.dev/
220•8thom•9h ago•57 comments

The Productivity Mirage

https://frantic.im/mirage/
210•msephton•9h ago•69 comments

Keychron announces first open-source firmware for gaming mice

https://www.digitalfoundry.net/news/2026/07/keychron-announces-first-open-source-firmware-for-gam...
365•JLO64•15h ago•147 comments

Logic for Programmers

https://logicforprogrammers.com/
103•_doctor_love•7h ago•11 comments

Anatomy of a Frontier Lab Agent Intrusion: A Timeline of the July 2026 Incident

https://huggingface.co/blog/agent-intrusion-technical-timeline
373•artninja1988•1d ago•207 comments

The Cold Email

https://zachholman.com/posts/cold-email
190•holman•11h ago•75 comments

Concurrency, interactivity, mutability, choose two

https://www.n16f.net/blog/concurrency-interactivity-mutability-choose-two/
9•billiob•3d ago•3 comments

A.I. companies are recruiting electricians and carpenters by the thousands

https://www.nytimes.com/2026/07/29/business/economy/data-center-electricians-training.html
279•thm•17h ago•335 comments

Kimi K3-256k

https://www.kimi.com/code/docs/en/kimi-code/models
419•monneyboi•13h ago•124 comments

Angels in Coptic Magic I: Introduction

https://www.coptic-magic.phil.uni-wuerzburg.de/index.php/2026/01/16/angels-in-coptic-magic-i-intr...
44•jruohonen•3d ago•4 comments

Turning a dumb AC unit smart (without losing my security deposit)

https://prilik.com/blog/post/automating-ac-nyc/
160•austinallegro•14h ago•127 comments

Show HN: CheapFoodMap – A map of good meals under $10

https://cheapfoodmap.com/
196•jaep1•15h ago•189 comments

Some thoughts about Anthropic's new cryptanalysis results

https://blog.cryptographyengineering.com/2026/07/29/some-notes-about-anthropics-new-results/
147•supermatou•15h ago•80 comments

Kuna: Decompiler Development in the Age of Coding Agents

https://noelo.org/blog/kuna-release/
28•matt_d•5h ago•7 comments

The Rust on ESP Book

https://docs.espressif.com/projects/rust/book/
151•AlexeyBrin•4d ago•15 comments

Man and the Computer by John G. Kemeny (1972 book by the co-creator of BASIC)

https://archive.org/details/mancomputerbyjoh0000john
46•MilnerRoute•9h ago•12 comments

Launch HN: Tokenless (YC S26) – Automatic model switching to save money

https://usetokenless.com/
61•rohaga•16h ago•54 comments

Refactoring cuisine: how an Iraqi stew sailed to Singapore

https://iza.ac/posts/2026/07/the-journey-of-bamya/
52•infinitewalk•3d ago•18 comments

Why the future is local app

https://getapps.cafe/blog/why-the-future-is-local-app
14•knlam•4h ago•9 comments

A Trampoline

https://dogdogfish.com/blog/2026/07/29/a-trampoline/
105•matthewsharpe3•12h ago•59 comments

NSF pilots 4-year PhDs with industry research placements

https://www.nsf.gov/news/nsf-partners-universities-industry-pilot-initiative-four
69•osnium123•5h ago•73 comments

SalesPatriot (YC W25) Is Hiring FDEs

https://www.ycombinator.com/companies/salespatriot/jobs/M46X6YX-forward-deployed-engineer
1•maciejSz•11h ago

Hamburg's Stadtpark: A Park Built to Be Used

https://alsterrunde.com/hamburgs-stadtpark-a-park-built-to-be-used/
148•mertbio•3d ago•39 comments

Recursive Filters: SMA, EMA, Low‑Pass, and a Tiny Kalman

https://www.staszewski.xyz/blog/recursive-filters/
39•kamilstaszewski•2d ago•9 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)