Skip to content

Instantly share code, notes, and snippets.

uvx --from reachy-mini[mujoco] reachy-mini-daemon --sim
#!/usr/bin/env -S uv run --script
# /// script
# requires-python = ">=3.13"
# dependencies = [
# "pillow>=10.0.0"
# ]
# ///
@raspberrypisig
raspberrypisig / strings.zig
Created October 9, 2025 02:04 — forked from AndreyArthur/strings.zig
Zig strings beginner cheat-sheet.
// When I was starting to learn Zig, strings were such a pain in the ass, so I
// made this little guide for you to understand better what each type of string
// does and why some of them seems to be "wrong".
//
// I will assume that you already know how pointers, const, var, comptime and
// the stack works. You don't need to be an expert, but I will not waste time
// detailing these concepts.
//
// Sorry for the English mistakes, I'm far from being a fluent English speaker,
// but what counts is the information.
[package]
edition = "2021"
name = "esp_home_no_std"
rust-version = "1.86"
version = "0.1.0"
[lib]
test = false
[[bin]]