Click here to display the menu ↓
clock 23:19

Tech stuff

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

Last updated: 2024/11/17

Stuff I use

Here I gonna share some of programs or tools that I use, I'll cover mostly Linux/Windows programs and tools, and some Android apps.

PC:

Web Browser

Google Chrome

Firefox

Text Editor

Visual Studio Code (GUI)

Neovim (CLI)

Media Player mpv
Image Viewer qview
Password Manager/2FA Bitwarden
Virtualization VMware Workstation
Diagrams Editor

Microsoft Visio (Windows)

diagrams.net

Image Editor

Krita

Photopea

ID3 Metadata Editor kid3
Screen Awake

Powertoys Awake (Windows)

caffeine-ng (Linux)

Downloader

aria2

Transmission (Torrent Client)

Video and Audio Processing ffmpeg
Video Archiving yt-dlp

Mobile:

Music Player

Oto Music (Local)

Youtube Music (Streaming)

RSS Feed Aggregator News
Jellyfin Client Findroid
Scrobbler Pano Scrobbler

Web Extensions:

Content Blocker/Adblock

uBlock Origin Lite (Chromium)

uBlock Origin (Firefox)

Translator Simple Translate
Quick commands

This is a collection of quick terminal commands that I put here to share with other people, and also for me to to take a look at 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!

$ = Normal | # = Administrator/Root

Get the best video and audio quality from youtube (yt-dlp)

$ yt-dlp -f ”bv+ba” YOUTUBE_URL

Increase volume of a media file (ffmpeg)

$ ffmpeg -i ”MEDIA.in” -af volume=4.0 ”MEDIA.out”

Trim a media file (ffmpeg)

$ ffmpeg -ss 00:00:00 -i "MEDIA.in" -to 00:00:00 -c copy "MEDIA.out"

Flip image horizontally (imagemagick)

$ magick "IMAGE.in" -flop "IMAGE.out"

Flip image vertically (imagemagick)

$ magick "IMAGE.in" -flip "IMAGE.out"

Extract a archive file (7zip)

$ 7z x "ARCHIVE.ext"

Get all devices IP on a network (nmap)

# nmap -sn 000.000.00.000/00

Setup with a local account (Windows)

#> OOBE\BYPASSNRO

Get all used network ports (Linux)

# ss -tulpn | grep LISTEN

Detach a command from the terminal (Linux)

$ COMMAND & disown

Force logout (Linux)

$ pkill -KILL -u $USER