Skip to content

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.

Read more →

2024-04-04

Stellaris console commands

Stellaris console commands Stellaris IDs Stellaris cheats Stellaris mods

Read more →

2024-04-04

Check battery status in Windows

Open Windows Powershell with Administrator rights and run:

Read more →

2024-03-03

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/ ↩︎

Read more →

2024-03-03

Nautilus places

How to recover Nautilus (File manager in Gnome) places folders with XDG environment variables.

Read more →

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.

Read more →

2024-03-03

Parse TOML files in Python

Use pathlib to read and tomllib to parse the file. (requires Python >= 3.11)

Read more →

2024-03-03

Copy files in Linux

How to copy files with Linux command-line tools.

Read more →