frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Motorola announces a partnership with GrapheneOS Foundation

https://motorolanews.com/motorola-three-new-b2b-solutions-at-mwc-2026/
221•km•1h ago•56 comments

Computer-generated dream world: Virtual reality for a 286 processor

https://deadlime.hu/en/2026/02/22/computer-generated-dream-world/
80•MBCook•3h ago•9 comments

Making Video Games in 2025 (without an engine)

https://www.noelberry.ca/posts/making_games_in_2025/
29•alvivar•3d ago•3 comments

If AI writes code, should the session be part of the commit?

https://github.com/mandel-macaque/memento
201•mandel_x•7h ago•207 comments

WebMCP is available for early preview

https://developer.chrome.com/blog/webmcp-epp
267•andsoitis•10h ago•149 comments

Show HN: Timber – Ollama for classical ML models, 336x faster than Python

https://github.com/kossisoroyce/timber
110•kossisoroyce•7h ago•14 comments

Evolving descriptive text of mental content from human brain activity

https://www.bbc.com/future/article/20260226-how-ai-can-read-your-thoughts
15•ggm•2h ago•9 comments

Everett shuts down Flock camera network after judge rules footage public record

https://www.wltx.com/article/news/nation-world/281-53d8693e-77a4-42ad-86e4-3426a30d25ae
203•aranaur•4h ago•41 comments

Right-sizes LLM models to your system's RAM, CPU, and GPU

https://github.com/AlexsJones/llmfit
116•bilsbie•9h ago•27 comments

Process-Based Concurrency: Why Beam and OTP Keep Being Right

https://variantsystems.io/blog/beam-otp-process-concurrency
19•linkdd•3h ago•8 comments

How to record and retrieve anything you've ever had to look up twice

https://ellanew.com/2026/03/02/ptpl-197-record-retrieve-from-a-personal-knowledgebase
33•Curiositry•4h ago•11 comments

Ghostty – Terminal Emulator

https://ghostty.org/docs
714•oli5679•20h ago•307 comments

Tove Jansson's criticized illustrations of The Hobbit (2023)

https://tovejansson.com/hobbit-tolkien/
163•abelanger•2d ago•75 comments

An interactive intro to Elliptic Curve Cryptography

https://growingswe.com/blog/elliptic-curve-cryptography
9•vismit2000•2h ago•5 comments

Little Free Library

https://littlefreelibrary.org/
112•TigerUniversity•9h ago•59 comments

Enable CORS for Your Blog

https://www.blogsareback.com/guides/enable-cors
21•cdrnsf•2d ago•10 comments

Why does C have the best file API

https://maurycyz.com/misc/c_files/
105•maurycyz•12h ago•76 comments

When does MCP make sense vs CLI?

https://ejholmes.github.io/2026/02/28/mcp-is-dead-long-live-the-cli.html
369•ejholmes•15h ago•232 comments

Decision trees – the unreasonable power of nested decision rules

https://mlu-explain.github.io/decision-tree/
469•mschnell•23h ago•74 comments

Have your cake and decompress it too

https://spiraldb.com/post/cascading-compression-with-btrblocks
14•emschwartz•2d ago•2 comments

Microgpt explained interactively

https://growingswe.com/blog/microgpt
260•growingswe•22h ago•37 comments

Long Range E-Bike (2021)

https://jacquesmattheij.com/long-range-ebike/
158•birdculture•3d ago•233 comments

Next-gen spacecraft are overwhelming communication networks

https://atempleton.bearblog.dev/how-next-gen-spacecraft-are-overwhelming-our-communication-networks/
61•korrz•2d ago•18 comments

Ape Coding [fiction]

https://rsaksida.com/blog/ape-coding/
171•rmsaksida•18h ago•114 comments

Setting up phones is a nightmare

https://joelchrono.xyz/blog/setting-up-phones-is-a-nightmare/
147•bariumbitmap•3d ago•181 comments

Why XML tags are so fundamental to Claude

https://glthr.com/XML-fundamental-to-Claude
199•glth•17h ago•136 comments

Flightradar24 for Ships

https://atlas.flexport.com/
220•chromy•21h ago•46 comments

Microgpt

http://karpathy.github.io/2026/02/12/microgpt/
1796•tambourine_man•1d ago•301 comments

C64 Copy Protection

https://www.commodoregames.net/copyprotection/
49•snvzz•3d ago•4 comments

Running Neural Amp Modeler on embedded hardware

https://www.tone3000.com/blog/running-nam-on-embedded-hardware
28•woodybury•2d ago•6 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•9mo 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•9mo 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•9mo 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•9mo 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)