frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

“I just chose words carefully”

https://unsung.aresluna.org/i-just-chose-words-carefully/
456•zdw•6h ago•116 comments

Creepy Crawlies

https://people.kernel.org/monsieuricon/creepy-crawlies
1000•zdw•1d ago•493 comments

P99 0 ms* autocomplete for 240M domain names

https://ruurtjan.com/articles/p99-0ms-autocomplete-for-240-million-domain-names
21•dbalatero•1h ago•13 comments

It takes 5 cloud services to hear my doorbell

https://blog.vghaisas.com/rube-goldberg-doorbell/
60•vghaisas•2d ago•43 comments

The EU has begun enforcing the AI Act: first RFIs to model providers

https://tokenstead.ai/guides/eu-ai-act-first-enforcement-security-rfis
19•cdnsteve•1h ago•17 comments

Matrox: Graphics for Professionals

https://www.abortretry.fail/p/matrox
57•BirAdam•5h ago•12 comments

Haiku R1/beta6 has been released

https://www.haiku-os.org/news/2026-08-26_haiku_r1_beta6
274•metrofun•12h ago•84 comments

Understanding ChatGPT Work

https://simonwillison.net/2026/Aug/30/understanding-chatgpt-work/
100•gmays•3h ago•32 comments

Cores in space: The core memory module from a 1980 Spacelab computer

https://www.righto.com/2026/08/spacelab-core-memory.html
93•pwg•8h ago•15 comments

CobaltC – The Successor to C?

https://strawberry9.github.io/the-wrong-memory/Appendix_06.html
12•SilentLambda•2h ago•17 comments

How to build a diffusion language model

https://kuleshov-group.github.io/blog/blog/2026/how-to-build-a-diffusion-language-model/
34•volodia•5h ago•2 comments

Show HN: NFC Energy-Harvesting PCB Business Card with an MCU

https://wilsonharper.net/projects/businesscard/
131•WilsonHarper•2d ago•14 comments

Internet centralization and the original sin of NAT

https://dreamstation.systems/personal/ntppost.html
6•robinpie•2h ago•0 comments

Sort branches by last commit date

https://ryangreenberg.com/til/git-branches-by-commit-date/
103•speckx•5d ago•35 comments

My hobby of building miniatures and taking pretty pictures

https://sandyuraz.com/blogs/tiny-cafe/
7•thecsw•2d ago•1 comments

Continuous Diffusion Language Models (CDLM's)

https://sander.ai/2026/08/24/continuous-dlms.html
72•peter_d_sherman•8h ago•29 comments

Why open source rocks – a new SM750 (Silicon Motion GPU) HDMI Driver

https://github.com/KodeMunkie/sm750hdmifb
89•SillyUsername•10h ago•34 comments

UC Berkeley indefinitely suspends international student work authorizations

https://www.dailycal.org/news/campus/after-second-ice-threat-uc-berkeley-indefinitely-suspends-in...
55•cbzbc•1h ago•44 comments

Hacking IKEA Furniture

https://greenlightning.eu/diy/hacking-ikea-furniture/
281•greenlightning•17h ago•193 comments

Racter (1984)

https://www.ubu.com/historical/racter/index.html
18•buescher•2d ago•6 comments

Relm4 makes developing beautiful cross-platform applications idiomatic

https://relm4.org/
22•Bluestein•4d ago•11 comments

Commercially Available Bike Generators Are Not Sustainable (2011)

https://solar.lowtechmagazine.com/2011/05/bike-powered-electricity-generators-are-not-sustainable/
38•baud147258•4d ago•32 comments

Coordination Headwind: How Organizations Are Like Slime Molds

https://komoroske.com/slime-mold/
139•rzk•12h ago•45 comments

Startup Anti-Patterns

https://www.itamarnovick.com/intro-to-startup-anti-pattern-series/
112•rzk•12h ago•60 comments

Dad’s Custom Atari Peripherals

https://www.goto10retro.com/p/dads-custom-atari-peripherals
116•rbanffy•3d ago•16 comments

How would you know whether an ancient culture had zero?

https://www.johndcook.com/blog/2026/08/21/ancient-number-system/
37•ibobev•3d ago•9 comments

Arbitrary code execution in QubesOS via copy-to-VM error reporting backchannel

https://www.qubes-os.org/news/2026/08/29/qsb-118/
215•vntok•20h ago•88 comments

Artie (YC S23) Is Hiring Technical AES

https://www.artie.com/careers?ashby_jid=e87b84d2-78b3-41a3-937a-47e83643cdf1
1•j-cheong•11h ago

Longest Straight Line Paths on Water or Land on the Earth (2018)

https://arxiv.org/abs/1804.07389
198•joebig•20h ago•58 comments

DDoS Attack Breaks Beloved Video Game Wiki After AI Bro Was Banned

https://kotaku.com/ddos-attack-breaks-beloved-video-game-wiki-after-ai-bro-was-banned-2000729335
10•razorbeamz•2h ago•0 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)