frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Qwen 3.8 27B

https://huggingface.co/Qwen/Qwen3.8-27B-FP8
718•erdaltoprak•6h ago•456 comments

Study links coffee consumption to metabolic health and sex hormones

https://www.oulu.fi/en/news/study-links-coffee-consumption-metabolic-health-and-sex-hormones
24•_____k•53m ago•11 comments

Seven books I keep close because I love them

https://blog.plover.com/2026/08/02/
265•surprisetalk•6h ago•110 comments

RustDesk now supports true unattended remote access on Wayland

https://rustdesk.com/blog/unattended-remote-access-wayland/
170•rustdesk•5h ago•77 comments

Why does Opus 5 feel worse to work with?

https://mun-logadan.github.io/why-does-opus-5-feel-worse/
659•numeri•11h ago•608 comments

Google is making private AI practical with homomorphic encryption

https://blog.google/security/how-google-is-making-private-ai-practical-with-homomorphic-encryption/
193•u1hcw9nx•5h ago•126 comments

What You Gain by Building Your Own Game Engine

https://eliasfarhan.ch/gamedev/cpp/2026/08/14/srnative-01-why-a-custom-engine.html
19•kwakwa_cat•2h ago•16 comments

Introducing Toast 1

https://www.mixedbread.com/blog/toast-1
150•mplappert•6h ago•49 comments

AI by Hand

https://www.byhand.ai/
131•sans_souse•5h ago•11 comments

Show HN: Ember – Redshift safe color palettes

https://github.com/carpdiem/ember
28•carpdiem•5d ago•4 comments

New Lower and Upper Bounds for the Grothendieck Constant

https://arxiv.org/abs/2608.11158
16•surprisetalk•1h ago•2 comments

Ultraviolet Bird Photography

https://uvbirds.com/
75•EndXA•1w ago•13 comments

I turned my RSS feeds into an e-ink newspaper to stop reading on my phone

https://heyjonny.dev/posts/rss-to-eink-newspaper/
105•speckx•7h ago•48 comments

Show HN: Mole – Deep research agent for your terminal

https://github.com/lajosdeme/mole
26•lajosdeme•2h ago•6 comments

Maximizing the value of your Claude Code sessions

https://claude.com/blog/maximizing-the-value-of-your-claude-code-sessions
96•twapi•5h ago•67 comments

Every exterior shot in The Taking of Pelham 123

https://iafisher.com/2026/07/pelham-123
11•evakhoury•1h ago•2 comments

Turbo Pascal on CP/M, MSX-DOS and MS-DOS – Pascal for Small Machines

http://pascal.hansotten.com/delphi/turbo-pascal-on-cpm-msx-dos-and-ms-dos/
47•rbanffy•2d ago•13 comments

CEO who fired 900 people on Zoom just before Christmas wants his job back

https://www.cnn.com/2026/08/14/business/vishal-garg-better-ceo
72•pseudolus•2h ago•37 comments

ICTP Announces 2026 Dirac Medal Recipients (Physics)

https://www.ictp.it/news/2026/8/ictp-announces-2026-dirac-medal-recipients
5•rramadass•4d ago•1 comments

DeepSeek peak/off-peak pricing update

https://api-docs.deepseek.com/news/news260813/
235•fagnerbrack•11h ago•124 comments

Anthropic Risk August 2026 [pdf]

https://www-cdn.anthropic.com/f61d49fa5596956a5dec75fea0e973bf6a6a8378/Redacted%20Risk%20Report%2...
47•artninja1988•2h ago•40 comments

Every Fucking Website (2020)

https://lxe.github.io/everywebsite/
670•doubletwoyou•7h ago•384 comments

Show HN: LuaCAD – Parametric CAD Scripted in Lua

https://luacad.ad-si.com
54•adius•4h ago•13 comments

Don't classify, hallucinate

https://softwaredoug.com/blog/2026/08/10/hypothetical-classifications
198•softwaredoug•4d ago•81 comments

Everything is about to "go dark"

https://blog.cryptographyengineering.com/2026/08/14/everything-is-about-to-go-dark/
8•vslira•46m ago•0 comments

Open WireGuard Endpoints

https://proxylity.com/articles/now-available-open-wireguard-endpoints-and-async-lambda.html
17•mlhpdx•2h ago•2 comments

Moving integer division to floating-point is trivial

http://marc-b-reynolds.github.io/math/2026/08/10/IntDivByFP.html
22•matt_d•3d ago•10 comments

GLM-5.3: Frontier coding with emergent cyber capabilities

https://z.ai/blog/glm-5.3
999•pella•16h ago•493 comments

A Contract-Grade Verifier for LLM-Generated GPU Kernels

https://arxiv.org/abs/2608.12700
25•Jimmc414•4h ago•0 comments

The TEMU-Fication of Software, Digital Goods and Services

https://xn--gckvb8fzb.com/the-temu-fication-of-software-digital-goods-services/
120•surprisetalk•9h ago•83 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)