frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I Stored a Website in a Favicon

https://www.timwehrle.de/blog/i-stored-a-website-in-a-favicon/
63•theanonymousone•1h ago•24 comments

Data Compression Explained (2012)

https://mattmahoney.net/dc/dce.html
91•mtdewcmu•3d ago•7 comments

There are no instances in ATProto

https://overreacted.io/there-are-no-instances-in-atproto/
416•danabramov•16h ago•216 comments

The discovery that changed how scientists think about memory

https://www.ibm.com/think/news/discovery-changed-how-scientists-think-about-memory-kavli-prize
29•rbanffy•2d ago•3 comments

Can you see three trees?

https://www.not-ship.com/can-you-see-three-trees/
58•Pamar•1d ago•10 comments

Surprising economics of load-balanced systems

https://brooker.co.za/blog/2020/08/06/erlang.html
91•KraftyOne•10h ago•21 comments

Where to Find the Colors Your Screen Can't Show You

https://moultano.wordpress.com/2026/06/19/where-to-find-the-colors-your-screen-cant-show-you/
21•moultano•3h ago•4 comments

Hyundai buys Boston Dynamics

https://startupfortune.com/hyundai-takes-full-control-of-boston-dynamics-as-softbank-exits-for-32...
776•ck2•15h ago•345 comments

Norway imposes near ban on AI in elementary school

https://www.reuters.com/technology/norway-imposes-near-ban-ai-elementary-school-2026-06-19/
607•ilreb•15h ago•421 comments

Satellite reveals immense scale of GPS signal tampering

https://www.space.com/space-exploration/satellites/its-quite-a-bit-more-than-we-expected-satellit...
50•y1n0•3h ago•9 comments

How many of the 170k English words do you know?

https://vocabowl-870366514258.us-west1.run.app/
334•abnry•17h ago•423 comments

Project Valhalla, Explained: How a Decade of Work Arrives in JDK 28

https://www.jvm-weekly.com/p/project-valhalla-explained-how-a
583•philonoist•1d ago•360 comments

Bobby Prince, composer for Doom, Wolfenstein 3D, and Duke Nukem 3D, has died

https://www.legacy.com/legacy/robert-bobby-prince-lll
329•pgrote•11h ago•37 comments

A Perceptron in Age of Empires II

https://adewynter.github.io/notes/aoe2-circuits
64•EvgeniyZh•1d ago•29 comments

Egyptian Fractions (2006)

https://blog.plover.com/math/egyptian-fractions.html
87•luu•4d ago•7 comments

Soccer Arcade Games Through the Years

https://arcadeheroes.com/2026/06/13/world-cup-2026-soccer-arcade/
5•speckx•3d ago•0 comments

Designing a backyard deck for my house

https://blog.cosmin.cloud/posts/diy-deck.html
4•spycraft•2h ago•0 comments

John Jumper to join Anthropic

https://twitter.com/JohnJumperSci/status/2068001285173834106
116•artninja1988•13h ago•89 comments

Ask HN: Will programmers write more efficient code during the memory shortage?

85•amichail•8h ago•142 comments

GPT-5.5 hallucinates 3x more than MIT-licensed GLM-5.2

https://arrowtsx.dev/bigger-models/
79•oshrimpton•15h ago•16 comments

Court Records Should Be Free

https://www.eff.org/deeplinks/2026/06/court-records-should-be-free
346•hn_acker•13h ago•73 comments

AURpocalypse now: a look at the recent AUR attacks

https://lwn.net/SubscriberLink/1077619/f7b07c5489fdd43a/
66•jwilk•14h ago•38 comments

Telescope Ranchers

https://kottke.org/26/06/telescope-ranchers
118•bookofjoe•3d ago•44 comments

Digital Printing of Arabic: explaining the problem

https://digitalorientalist.com/2017/08/21/digital-printing-of-arabic-explaining-the-problem/
50•a_t48•3d ago•15 comments

Big Banana Car

https://bigbananacar.com/
141•Bender•13h ago•75 comments

Zen and the Art of Machine Learning Research

https://blog.jxmo.io/p/zen-and-the-art-of-machine-learning
255•jxmorris12•4d ago•89 comments

Hey, n00b, we didn't hire you to complete tasks

https://newsletter.kentbeck.com/p/hey-n00b-we-didnt-hire-you-to-complete
157•rrvsh•7h ago•79 comments

Building a robotics research setup that lives next to my desk

https://dfdxlabs.com/research/2026/robotics-setup/
144•mplappert•1d ago•49 comments

Show HN: Metiq: a real time 3D globe for 100 public datasets

https://metiq.space
115•rakeda•3d ago•31 comments

How to feed a dictator

https://www.theguardian.com/film/2026/jun/09/how-to-feed-a-dictator-film
130•Michelangelo11•6h ago•45 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)