frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Who's afraid of Chinese models?

https://stratechery.com/2026/whos-afraid-of-chinese-models/
294•mfiguiere•15h ago•188 comments

Kimi Work

https://www.kimi.com/products/kimi-work
408•ms7892•9h ago•185 comments

Human mathematicians are being outcounterexampled

https://xenaproject.wordpress.com/2026/07/20/human-mathematicians-are-being-outcounterexampled/
220•artninja1988•7h ago•77 comments

Jelly UI: Soft-body physics for native HTML form controls

https://jelly-ui.com/
354•baldvinmar•9h ago•139 comments

Jellyfin founder Andrew leaves team

https://forum.jellyfin.org/t-project-leadership-changes
55•swat535•2h ago•13 comments

Hacker wipes Romania's land registry database

https://news.risky.biz/risky-bulletin-hacker-wipes-romanias-entire-land-registry-database/
575•speckx•12h ago•326 comments

Nativ: Run frontier open models locally on your Mac

https://blaizzy.github.io/nativ/
186•aratahikaru5•7h ago•72 comments

The Psychology of Software Teams

https://www.routledge.com/The-Psychology-of-Software-Teams/Hicks/p/book/9781032963389
34•dcre•5d ago•6 comments

Show HN: Immersive Gaussian Splat tour of grace cathedral, San Francisco

https://vincentwoo.com/3d/grace_cathedral/
80•akanet•6h ago•15 comments

Airport Simulator

https://airport.apunen.com/
720•apunen•15h ago•142 comments

Flock Credibility Lost as It Repeatedly Lies to City Councils, Police, & Public

https://www.aclu.org/news/privacy-technology/tracking-alpr-cameras/flock-safety-credibility-lost-...
66•StatsAreFun•1h ago•4 comments

I wrote an bash enumerator because I was sick of xargs

https://numerlab.org/2025/07/20/bashumerate-enumerator/
60•wallach-game•6h ago•51 comments

Agent swarms and the new model economics

https://cursor.com/blog/agent-swarm-model-economics
125•jlaneve•8h ago•51 comments

China’s open-weights AI strategy is winning

https://werd.io/american-ai-is-locked-down-and-proprietary-its-losing/
988•benwerd•11h ago•788 comments

Launch HN: Bloomy (YC S26) – AI-powered mastery learning for K-12

60•alexsouthmayd•9h ago•75 comments

LEDs’ potential to save our night skies

https://spectrum.ieee.org/led-light-pollution
210•defrost•13h ago•162 comments

Corners Don't Look Like That: Regarding Screenspace Ambient Occlusion (2012)

https://nothings.org/gamedev/ssao/
149•firephox•11h ago•65 comments

The Power of Awareness: Overcoming Surveillance Capitalism

https://www.scottrlarson.com/presentations/overcoming-surveillance-capitalism-with-awareness/
58•trinsic2•6h ago•7 comments

Atomic Physics in Pure Anglo-Saxon

https://www.ling.upenn.edu/~beatrice/110/docs/uncleftish-beholding.html
7•xelxebar•1w ago•2 comments

Perfection is not over-engineering

https://var0.xyz/posts/perfection-is-not-over-engineering.html
196•var0xyz•12h ago•89 comments

How we measured AI writing across arXiv, and where the measurement breaks

https://unslop.run/blog/measuring-ai-writing-on-arxiv
194•dopamine_daddy•9h ago•143 comments

My two year old taught me constraint solving

https://thecomputersciencebook.com/posts/how-my-2yo-taught-me-constraint-solving/
33•bambataa•1w ago•17 comments

Opaque, Interoperable Passkey Records (and a Go API)

https://words.filippo.io/passkey-record/
14•gnabgib•3h ago•3 comments

You only need the frontier model for one single edit

https://stencil.so/blog/prewalk
72•jxmorris12•5d ago•18 comments

Shinjuku Station in 3D

https://satoshi7190.github.io/Shinjuku-indoor-threejs-demo/
154•Gecko4072•12h ago•29 comments

85.3 GFlops: Optimizing FP32 Matrix Multiplication on a Single AMD Zen 3 Core

https://github.com/houslast3/85.30-GFLOPS-Single-Core-FP32-Matrix-Multiplication-on-AMD-Zen-3
48•houslast•3d ago•17 comments

The drivers behind software delivery inefficiency

https://dl.acm.org/doi/10.1145/3800646.3800650
63•qaprof•8h ago•30 comments

Kimi K3, Qwen 3.8, and Anthropic's (Potential) Unravelling

https://www.emergingtrajectories.com/lh/frontier-lab-economics/
295•cl42•10h ago•298 comments

Claude Fable produced a counterexample to the Jacobian Conjecture

https://xcancel.com/__alpoge__/status/2079028340955197566
679•loubbrad•23h ago•440 comments

The Voice of Google

https://www.newyorker.com/culture/the-weekend-essay/the-voice-of-google
178•littlexsparkee•10h ago•92 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)