frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Toast, a beautiful by default in terminal IDE

https://github.com/paradise-runner/toast
33•dividedcomet•45m ago•13 comments

Λ Snap – An inviting programming language for kids and adults for CS study

https://snap.berkeley.edu/
33•dr_kiszonka•1h ago•12 comments

A Misalignment of AI in Mathematics

https://terrytao.wordpress.com/2026/09/11/a-severe-misalignment-of-ai-in-mathematics/
46•Iuz•1h ago•10 comments

Litelm: LiteLLM Without the Bloat

https://github.com/kennethwolters/litelm
15•kennethwolters•29m ago•2 comments

Top mathematicians are outraged by OpenAI's methods

https://www.economist.com/science-and-technology/2026/09/11/top-mathematicians-are-outraged-by-op...
10•sbulaev•33m ago•0 comments

Logo Programming Language

https://el.media.mit.edu/logo-foundation/what_is_logo/logo_programming.html
155•azhenley•2d ago•74 comments

118M Queries per Second on Neki

https://planetscale.com/blog/118-million-queries-per-second-on-neki
48•joshmgross•2h ago•27 comments

How I Prompt

https://thorstenball.com/talks/how-i-prompt/
23•luu•2d ago•1 comments

Zep AI (YC W24) Is Hiring a Head of Forward Deployed Engineering

https://www.getzep.com/careers/
1•roseway4•1h ago

I've operated petabyte-scale ClickHouse clusters for 5 years

https://www.tinybird.co/blog/what-i-learned-operating-clickhouse
99•adastral•4d ago•41 comments

Show HN: Godot and Rust based multiplexer (terminal panes and more)

https://github.com/godot-pty/gpty
55•1nv1n•2h ago•33 comments

The EPA Is Planning to Scrap Public Review Rules for Data Center Pollution

https://capitalbnews.org/data-centers-permit-rules-epa/
39•doener•34m ago•10 comments

Global Glacier Extinction Explorer

https://glacierextinction.com
114•guillego•2h ago•41 comments

Rune is now open source

https://rune.build/blog/rune-is-now-open-source
40•ernestrc•3h ago•6 comments

So you want to use OpenRouter?

https://mmoustafa.com/blog/so-you-want-to-use-openrouter/
568•player85•2d ago•159 comments

Copying login keychains between Macs fails on Secure Enclave Macs with Tahoe

https://derflounder.wordpress.com/2026/09/08/manually-copying-login-keychain-files-from-one-mac-t...
48•zdw•20h ago•34 comments

RTK reports token savings, but our cost benchmarks disagree

https://quesma.com/blog/does-rtk-make-ai-coding-cheaper/
119•michalwarda•7h ago•58 comments

Measuring the sloppiness of code

https://earendil.com/posts/measuring-code-sloppiness/
159•doppp•4h ago•185 comments

HuggingFace: Security.txt

https://huggingface.co/security.txt
177•yarapavan•4h ago•44 comments

Show HN: Bodily Oddities

https://vester.si/bodily-oddities/
88•vesterde•22h ago•78 comments

Stop making swap partitions—use swap files instead

https://gist.github.com/joshenders/c4960cec9c63a7b7d68ffa9543356c43
56•jenders•2d ago•76 comments

Claude is only available to people over 18 years

https://support.claude.com/en/articles/15171100-age-assurance-on-claude
395•Muhammad523•7h ago•459 comments

Copper lined vest to help penguins with recovery

https://apnews.com/article/chile-el-nino-humboldt-penguins-vulnerable-injuries-rehabilitation-6e9...
25•ninju•3d ago•8 comments

How the Chorleywood Bread Process transformed British bread

https://edconway.substack.com/p/the-little-holes-in-your-bread-are
58•baud147258•3d ago•71 comments

Kenyans Did College Students' Homework for Years. Then A.I. Arrived

https://www.nytimes.com/2026/09/05/technology/kenya-college-essays-ai.html
53•pseudolus•3d ago•56 comments

Re-Engineering YouTube for the Living Room: Bringing "Chrobalt" to RDK

https://www.collabora.com/news-and-blog/news-and-events/re-engineering-youtube-for-the-living-roo...
29•losgehts•4h ago•12 comments

Show HN: Hacker News, Without AI

https://www.unslop.news/
67•otherayden•2h ago•31 comments

Cherenkov Radiation - traveling faster than light

http://www.iaea.org/newscenter/news/what-is-cherenkov-radiation
191•andsoitis•9h ago•87 comments

Room 641A

https://en.wikipedia.org/wiki/Room_641A
14•paimapi•55m ago•1 comments

Google will buy half the electricity from one of Finland's nuclear power plants

https://www.bbc.com/news/articles/c8r6y4me2g6o
239•lukaspetersson•17h ago•252 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)