frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

RubyLLM: A Ruby framework for all major AI providers

https://rubyllm.com/
105•doener•1h ago•17 comments

We’re making Bunny DNS free

https://bunny.net/blog/were-making-bunny-dns-free/
599•dabinat•7h ago•195 comments

Edsger Dijkstra's Library (Housed and Archived in Leuven, Belgium)

https://www.dijkstrascry.com/inventory
10•rramadass•57m ago•1 comments

Running Windows Games on a Hobby OS with Wine

https://astral-os.org/posts/2026/04/03/wine-on-astral.html
31•avaliosdev•1h ago•8 comments

Show HN: Nub – A Bun-like all-in-one toolkit for Node.js

https://github.com/nubjs/nub
62•colinmcd•1h ago•11 comments

Krea 2 Technical Report

https://www.krea.ai/blog/krea-2-technical-report
139•mattnewton•1d ago•13 comments

A Practical Guide to SSH Tunnels: Local and Remote Port Forwarding

https://labs.iximiuz.com/tutorials/ssh-tunnels
107•signa11•4d ago•24 comments

Haystack: Open-Source AI Framework for Production Ready Agents, RAG

https://haystack.deepset.ai/
51•doener•4h ago•16 comments

Founding a company in Germany: €9600, 152 days and I still can't send an invoice

https://paolino.me/founding-a-company-in-germany/
374•earcar•3h ago•433 comments

Genuinely, my all-time favourite image: Mamenchisaurus hochuanensis

https://svpow.com/2026/06/04/genuinely-my-all-time-favourite-image-mamenchisaurus-hochuanensis/
22•surprisetalk•2d ago•4 comments

Quebec town recognizes trees as living beings with rights

https://www.cbc.ca/news/canada/montreal/terrasse-vaudreil-quebec-tree-rights-9.7243634
20•speckx•30m ago•3 comments

Boffin claims Microsoft's "quantum leap" is invalid due to "basic Python errors"

https://www.theregister.com/research/2026/06/24/boffin-claims-microsofts-supposed-quantum-leap-do...
23•connorboyle•30m ago•10 comments

Venezuela reveals $240B in debt it cannot pay (~$100B more than expected)

https://www.euronews.com/business/2026/06/24/venezuela-plans-biggest-debt-restructuring-in-histor...
57•cs702•1h ago•48 comments

Raspberry Pi Pico W as USB Wi-Fi Adapter

https://gitlab.com/baiyibai/pico-usb-wifi
221•byb•12h ago•101 comments

Vulnerability reports are not special anymore

https://words.filippo.io/vuln-reports/
355•goranmoomin•16h ago•203 comments

Statistics that live in your SQL

https://kolistat.com/blog/the-stats-duck-v0-6-0/
103•caerbannogwhite•2d ago•15 comments

Show HN: Pure Effect – Reproduce production bugs on your laptop without a DB

https://pure-effect.org
21•tie-in•2d ago•4 comments

François Englert (1932 – 2026)

https://home.cern/francois-englert-1932-2026/
46•toomuchtodo•3d ago•3 comments

OpenAI and Broadcom unveil LLM-optimized inference chip

https://openai.com/index/openai-broadcom-jalapeno-inference-chip/
68•meetpateltech•2h ago•19 comments

Stealing Is a Skill

https://ben-mini.com/2026/stealing-is-a-skill
86•bewal416•2h ago•65 comments

"Fix" MacBook Neo Cursor Lag: Record 1 Pixel of the Screen Every 10 Seconds

https://gist.github.com/retroplasma/ec21767d0a8380c7ea9c2fbee1c7d6bf
177•retroplasma•13h ago•78 comments

Qwen-AgentWorld: Language World Models for General Agents

https://arxiv.org/abs/2606.24597
173•ilreb•13h ago•47 comments

Ashby (YC W19) Is Hiring EMEA Engineers Who Can Design

https://www.ashbyhq.com/careers?ashby_jid=87b96eef-edc1-4de4-adb6-d460126d02f8&utm_source=hn
1•abhikp•9h ago

Systems optimization should be part of CI/CD

https://ucbskyadrs.github.io/blog/levi/
6•ttanv•3h ago•1 comments

Printing Gaussian Splats

https://www.patreon.com/DanyBittel/posts/printing-splats-161333338
357•ilnmtlbnm•3d ago•43 comments

Minimus container images are now free

https://images.minimus.io/
94•dimastopel•4h ago•56 comments

Vector Graphics in Lil

http://beyondloom.com/blog/vectorgraphics.html
46•RodgerTheGreat•1d ago•2 comments

Rhombus Language 1.0

https://blog.racket-lang.org/2026/06/rhombus-v1.0.html
218•Decabytes•1d ago•77 comments

Too many R packages: CRAN is inundated with submissions

https://rworks.dev/posts/too-many-R-packages/
67•ionychal•5h ago•54 comments

Swift Package Index joins Apple

https://swiftpackageindex.com/blog/swift-package-index-joins-apple
230•JDevlieghere•22h ago•77 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)