- Editing video - Lightworks pro version - https://lwks.com/
- Record display - OBS studio
- Record voice - standard windows voice recorder
- Coding - phpstorm
- Making presentation - MS powerpoint
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sometimes ago I realized that ma /var/lib/docker is ~300GB, so I needed to take some steps :D | |
Below is a list of some useful docker commands to clean disk space | |
1. Remove Unused Docker Containers | |
docker container prune | |
2. Remove Unused Docker Images | |
docker image prune -a | |
3. Remove Unused Docker Volumes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Disk usage | |
Korzystanie z ncdu (NCurses Disk Usage) | |
ncdu to bardziej interaktywne narzędzie do przeglądania zajętości dysku. Umożliwia nawigację po katalogach i łatwiejsze zrozumienie, co zajmuje miejsce. | |
Aby zainstalować ncdu, możesz użyć menedżera pakietów pacman: | |
``` | |
sudo pacman -S ncdu | |
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. sudo diskutil list | |
2. erase disk usb sudo diskutil eraseDisk FAT32 USB /dev/disk4 | |
3. sudo diskutil unmountDisk /dev/disk4 | |
4. sudo dd if=./manjaro-kde-24.1.1-241011-linux610.iso of=/dev/disk4 bs=1m |