Skip to content

Instantly share code, notes, and snippets.

View stanekondrej's full-sized avatar

Ondřej Staněk stanekondrej

  • Arcadia Bay
  • 19:00 (UTC +01:00)
View GitHub Profile
@stanekondrej
stanekondrej / setup-toolbox.sh
Created August 14, 2025 13:21
Toolbox setup script
#!/usr/bin/bash
# I use this script to setup new Toolbx containers - e.g. create a new container manually,
# then run this script to install what I need. I put this in my path, so that it's easily accessible.
sudo dnf install -y \
zsh \
neovim
@stanekondrej
stanekondrej / 50-microbit.rules
Created February 28, 2025 20:02
Udev rule to make micro:bit device writable
# works with v1 revision, change the idProduct field if it doesn't work for you with the v2 revision
SUBSYSTEM=="hidraw", ATTRS{idVendor}=="0d28", ATTRS{idProduct}=="0204", MODE:="a+rw"