HN user

mrtz

136 karma
Posts19
Comments7
View on HN
arxiv.org 2mo ago

Embedded Rust or C firmware? Lessons from an industrial microcontroller use case

mrtz
162pts165
www.tunbury.org 4mo ago

ONNX inference engine using OxCaml's SIMD intrinsics

mrtz
2pts0
blog.ezyang.com 4mo ago

Code review as human alignment, in the era of LLMs

mrtz
1pts0
brainbaking.com 4mo ago

Customizing the Emacs Email Experience with Mu4e

mrtz
5pts0
fun-ocaml.com 11mo ago

Fun OCaml 2025

mrtz
3pts0
gaultier.github.io 11mo ago

An amusing blind spot in Go's static analysis

mrtz
3pts0
drewdevault.com 11mo ago

Embedding Wren in Hare

mrtz
8pts2
redmonk.com 1y ago

The RedMonk Programming Language Rankings: January 2025

mrtz
1pts1
moritzhamann.com 1y ago

Neovim: Tips and tricks for OCaml's LSP server

mrtz
1pts0
www.bbc.co.uk 1y ago

Mattel 'deeply regrets' porn site misprint on Wicked dolls

mrtz
1pts0
moritzhamann.com 1y ago

Neovim: Logging Utilities

mrtz
3pts0
moritzhamann.com 1y ago

Switching to 5Ghz WiFi made the Raspberry Pi fly again

mrtz
32pts20
www.bbc.co.uk 1y ago

Nobel Prize goes to John Hopfield and Geoffrey Hinton work on machine learning

mrtz
21pts2
news.ycombinator.com 1y ago

Ask HN: What's your preferred stack for personal projects?

mrtz
2pts8
surfingcomplexity.blog 1y ago

Linearizability Refinement Prophecy

mrtz
29pts0
lwn.net 1y ago

The realtime preemption pull request [photo]

mrtz
2pts0
deepgram.com 1y ago

Benchmarking Open Source Speech Recognition Models (2023)

mrtz
2pts0
shkspr.mobi 1y ago

The unreasonable effectiveness of simple HTML (2021)

mrtz
48pts3
moritzhamann.com 1y ago

Handling datetime entries with native HTML inputs

mrtz
2pts0

I'm somewhat agreeing with it. CLI tools won't go away, since lines of text as an exchange format between tools is extremely powerful, especially with text based LLMs. However using an interactive TUI application to prompt agents will probably be less relevant in the future. E.g. if I want to build a web frontend, why wouldn't I just prompt and interact directly on the side I'm building?

Dark patterns 12 months ago

Funnily, it never states it's New South Wales. Even on the "About NSW" page, NSW is never written out.

The thing that annoys me with RSS is the lack of paging. It's great to get updates, but most pages only have the last x articles in their feed. Which means a lot of older, still valuable content is not discoverable anymore.

Cross-compilling from MacOS to Linux. By default OCaml does dynamic linking of all C dependencies. Even with static linking there is a dependency on libc (or the MacOS equivalent) as far as I remember. I had some success so far with Rust, Nim and Go using a musl toolchain[1], but no luck for OCaml. At the moment I'm just using a docker container which mirrors the Debian distribution running on the Pi.

[1] https://github.com/messense/homebrew-macos-cross-toolchains