Blog
Tips and tricks.
Convert GitHub issues to a markdown file
The Python package https://github.com/mattduck/gh2md exports Github repository issues and pull requests to a single, readable markdown file.
2024-04-04
Stellaris console commands
Stellaris console commands Stellaris IDs Stellaris cheats Stellaris mods
2024-04-04
Local time in Linux
When dual-booting Linux and Windows, it might be better to set the clock to the local time zone in Linux1 to in sync with Windows settings. timedatectl set-local-rtc 1 https://itsfoss.com/wrong-time-dual-boot/ ↩︎
2024-03-03
Nautilus places
How to recover Nautilus (File manager in Gnome) places folders with XDG environment variables.
2024-03-03
Strip Jupyter Notebook Output
Jupyter notebooks without multimedia outputs are more friendly to source control since git is not good at comparing binary data (e.g., plots, pictures, videos) in jupyter notebooks. And they tend to bloat the size of git repositories.
2024-03-03
Parse TOML files in Python
Use pathlib to read and tomllib to parse the file. (requires Python >= 3.11)
2024-03-03
Copy files in Linux
How to copy files with Linux command-line tools.