frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Terrence Tao's ChatGPT Conversation about the Jacobian Conjecture Counterexample

https://chatgpt.com/share/6a5fdc7a-d6f8-83e8-bbea-8deb42cfed56
478•gmays•5h ago•277 comments

GigaToken: ~1000x faster Language model tokenization

https://github.com/marcelroed/gigatoken/
293•syrusakbary•5h ago•56 comments

Malleable Computing, Emacs, and You

http://yummymelon.com/devnull/malleable-computing-emacs-and-you.html
37•kickingvegas•1h ago•3 comments

Quality non-fiction books are the antithesis of AI slop

https://resobscura.substack.com/p/quality-non-fiction-books-are-the
30•benbreen•8h ago•11 comments

Safari Technology Preview 248 Released

https://webkit.org/blog/18162/release-notes-for-safari-technology-preview-248/
45•Erenay09•1h ago•7 comments

Medici family mystery may be solved after more than 400 years

https://www.cnn.com/2026/07/15/science/medici-family-mystery-dna-malaria
21•effects•37m ago•2 comments

Show HN: Bento - An entire PowerPoint in one HTML file (edit+view+data+collab)

https://bento.page/slides/
567•starfallg•7h ago•137 comments

Are AI Labs Pelicanmaxxing?

https://dylancastillo.co/posts/pelicanmaxxing.html
306•dcastm•5h ago•124 comments

John C. Dvorak has died

https://twitter.com/na_announce/status/2079952538040672302
373•coleca•3h ago•97 comments

Everyone Should Know SIMD

https://mitchellh.com/writing/everyone-should-know-simd
168•WadeGrimridge•4h ago•50 comments

Any text-to-SQL benchmark should address difficulties of real-world data stores

https://cacm.acm.org/blogcacm/if-you-think-you-can-do-real-world-text-to-sql/
11•shenli3514•38m ago•1 comments

Nobody knows what a used GPU cluster is worth

https://ciphertalk.substack.com/p/nobody-knows-what-a-used-gpu-cluster
139•rbanffy•1w ago•113 comments

Making

https://beej.us/blog/data/ai-making/
239•erikschoster•6h ago•100 comments

I Inspected My Take-Home Interview Project. It Was a Whole Operation

https://citizendot.github.io/articles/fake-job-interview-git-hook-malware/
183•CITIZENDOT•1h ago•39 comments

The startup's Postgres survival guide

https://hatchet.run/blog/postgres-survival-guide
284•abelanger•9h ago•153 comments

Launch HN: Unlayer (YC W22) – Add email and document builders to your app

https://unlayer.com
40•adeelraza•6h ago•22 comments

Taking OCaml and Eio for a Spin

https://mattjhall.co.uk/posts/taking-ocaml-eio-for-a-spin.html
24•mattjhall•2d ago•2 comments

Fairphone 6 wide camera experimental Linux support

https://nondescriptpointer.com/articles/fairphone-6-wide-camera-linux/
23•helonaut•2h ago•0 comments

Nvidia DGX Spark as a daily driver

https://daniel.lawrence.lu/blog/2026-07-15-dgx-spark-as-daily-driver/
66•plun9•3d ago•46 comments

So Reddit has decided that plain HTML is unsafe

https://www.cole-k.com/2026/07/21/reddit/
176•montroser•10h ago•190 comments

Why do we love music? (2018)

https://pmc.ncbi.nlm.nih.gov/articles/PMC6353111/
12•jstrieb•2d ago•0 comments

Ghost Cut – or why Cut and Paste is broken everywhere

https://ishmael.textualize.io/blog/ghost-cut/
110•willm•7h ago•79 comments

Businesses with ugly AI menu redesigns

https://blog.fiddery.com/businesses-with-ugly-ai-menu-redesigns/
151•speckx•9h ago•120 comments

Back to Kagi

https://blog.melashri.net/micro/back-to-kagi/
165•speckx•9h ago•143 comments

Can a MUD evaluate LLMs? A $99 proof of concept

https://cruciblebench.ai/
86•Davisb135•6h ago•54 comments

Does creatine make you smarter?

https://dynomight.net/creatine/
234•surprisetalk•6h ago•211 comments

Mechanical light bulb from 1675 [video]

https://www.youtube.com/watch?v=0Y-9GbsS9Fg
67•kadohg•1w ago•38 comments

Which streaming service was that on again?

https://www.timwehrle.de/blog/which-streaming-service-was-that-on-again/
36•weetii•7h ago•57 comments

10 REM"_(C2SLFF4

https://beej.us/blog/data/mystery-comment/
152•ingve•10h ago•42 comments

“We have information that Moonshot distilled Fable for the development of K3”

https://twitter.com/mkratsios47/status/2079933645888880708
196•softwaredoug•7h ago•508 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)