TIME
21:00
19
media_banner

You can find here anything tech related that I feel sharing.

Last update: 2026/05/30
What I use?

Some programs or tools that I use, I'll cover mostly Linux and Windows programs, and some Android apps.

Desktop

  • Web browser: Google Chrome / Mozilla Firefox
  • Text editor: VSCode / Neovim
  • Terminal: Ghostty
  • Media player: mpv
  • Image viewer: qview
  • Password manager/2FA: Bitwarden
  • Virtualization: VMware Workstation
  • Image editor: Krita
  • Diagrams editor: Microsoft Visio / diagrams.net
  • ID3 metadata editor: kid3
  • Torrent client: Transmission / aria2
  • Video archiver: yt-dlp
Mobile

  • Music player: Auxio / Youtube Music
  • RSS feed: Twine
  • Jellyfin client: Findroid
  • Scrobbler: Pano Scrobbler
Web Extensions

  • Content blocker: uBlock Origin
  • Translator: Simple Translate
Quick commands

This is a collection of quick terminal commands to share with everyone, and also for me to take a look if I forget.

⚠ Warning

Run any command below at your own risk! Never blindly type commands that you found on the internet without making your own research first. I'm not responsible for any damage or harm to your computer!
Get the best video and audio quality from Youtube
$ yt-dlp -f "bv+ba" "YOUTUBE_URL"

Increase volume of a media file
$ ffmpeg -i "MEDIA.in" -af volume=4.0 "MEDIA.out"

Trim a media file
$ ffmpeg -ss 00:00:00 -i "MEDIA.in" -to 00:00:00 -c copy "MEDIA.out"

Flip image horizontally
$ magick "IMAGE.in" -flop "IMAGE.out"

Flip image vertically
$ magick "IMAGE.in" -flip "IMAGE.out"
aya