frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Why I may ‘hire’ AI instead of a graduate student

https://www.science.org/content/article/why-i-may-hire-ai-instead-graduate-student
41•doener•41m ago•36 comments

Canada's bill C-22 mandates mass metadata surveillance

https://www.michaelgeist.ca/2026/03/a-tale-of-two-bills-lawful-access-returns-with-changes-to-war...
683•opengrass•12h ago•196 comments

Starlink Mini as a Failover

https://www.jackpearce.co.uk/posts/starlink-failover/
22•jkpe•1h ago•5 comments

How I write software with LLMs

https://www.stavros.io/posts/how-i-write-software-with-llms/
183•indigodaddy•8h ago•129 comments

The 49MB web page

https://thatshubham.com/blog/news-audit
545•kermatt•14h ago•246 comments

Chrome DevTools MCP (2025)

https://developer.chrome.com/blog/chrome-devtools-mcp-debug-your-browser-session
468•xnx•14h ago•198 comments

Home Assistant waters my plants

https://finnian.io/blog/home-assistant-waters-my-plants/
20•finniananderson•3d ago•1 comments

Six ingenious ways how Canon DSLRs used to illuminate their autofocus points

https://exclusivearchitecture.com/03-technical-articles-CSDS-00-table-of-contents.html
26•ExAr•1d ago•1 comments

Kona EV Hacking

http://techno-fandom.org/~hobbit/cars/ev/
40•AnnikaL•4d ago•11 comments

Electric motor scaling laws and inertia in robot actuators

https://robot-daycare.com/posts/actuation_series_1/
79•o4c•3d ago•16 comments

What every computer scientist should know about floating-point arithmetic (1991) [pdf]

https://www.itu.dk/~sestoft/bachelor/IEEE754_article.pdf
62•jbarrow•4d ago•5 comments

LLM Architecture Gallery

https://sebastianraschka.com/llm-architecture-gallery/
395•tzury•17h ago•30 comments

Stop Sloppypasta

https://stopsloppypasta.ai/
321•namnnumbr•16h ago•142 comments

LLMs can be exhausting

https://tomjohnell.com/llms-can-be-absolutely-exhausting/
211•tjohnell•12h ago•148 comments

Separating the Wayland compositor and window manager

https://isaacfreund.com/blog/river-window-management/
290•dpassens•18h ago•142 comments

How far can you go with IX Route Servers only?

https://blog.benjojo.co.uk/post/how-far-can-you-get-with-ix-route-servers
35•ingve•3d ago•3 comments

The Linux Programming Interface as a university course text

https://man7.org/tlpi/academic/index.html
97•teleforce•9h ago•10 comments

Lies I was told about collaborative editing, Part 2: Why we don't use Yjs

https://www.moment.dev/blog/lies-i-was-told-pt-2
66•antics•3d ago•38 comments

Glassworm is back: A new wave of invisible Unicode attacks hits repositories

https://www.aikido.dev/blog/glassworm-returns-unicode-attack-github-npm-vscode
262•robinhouston•20h ago•161 comments

//go:fix inline and the source-level inliner

https://go.dev/blog/inliner
152•commotionfever•4d ago•66 comments

The emergence of print-on-demand Amazon paperback books

https://www.alexerhardt.com/en/enshittification-amazon-paperback-books/
153•aerhardt•1d ago•119 comments

SpiceCrypt: A Python library for decrypting LTspice encrypted model files

https://github.com/jtsylve/spice-crypt
39•luu•1d ago•4 comments

What makes Intel Optane stand out (2023)

https://blog.zuthof.nl/2023/06/02/what-makes-intel-optane-stand-out/
205•walterbell•18h ago•147 comments

A new Bigfoot documentary helps explain our conspiracy-minded era

https://www.msn.com/en-us/news/us/a-new-bigfoot-documentary-helps-explain-our-conspiracy-minded-e...
64•zdw•11h ago•63 comments

A Visual Introduction to Machine Learning (2015)

https://r2d3.us/visual-intro-to-machine-learning-part-1/
361•vismit2000•22h ago•31 comments

Bus travel from Lima to Rio de Janeiro

https://kenschutte.com/lima-to-rio-by-bus/
170•ks2048•4d ago•67 comments

Cannabinoids remove plaque-forming Alzheimer's proteins from brain cells (2016)

https://www.salk.edu/news-release/cannabinoids-remove-plaque-forming-alzheimers-proteins-from-bra...
122•anjel•9h ago•78 comments

Federal Right to Privacy Act – Draft legislation

https://righttoprivacyact.github.io
80•pilingual•7h ago•43 comments

Learning athletic humanoid tennis skills from imperfect human motion data

https://zzk273.github.io/LATENT/
155•danielmorozoff•18h ago•31 comments

Bandit: A 32bit baremetal computer that runs Color Forth [video]

https://www.youtube.com/watch?v=HK0uAKkt0AE
70•surprisetalk•3d ago•5 comments
Open in hackernews

Using Coalton to implement a quantum compiler (2022)

https://coalton-lang.github.io/20220906-quantum-compiler/
57•andsoitis•10mo ago

Comments

reikonomusha•10mo 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•10mo 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•10mo 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•10mo 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)