PostgreSQL coub express.js freeware git jquery laravel links linux macos mysql node.js php powershell python ubuntu vim virtualbox анекдот блог игры интересно стихи цитаты

Convert NSZ to NSP
February 13, 2026
For debian-like Linux (check your own way in case of another distro)
sudo apt install python3 python3-pip
Set up virtual env
## cd my folder with virtual env example
cd ~

## init venv
python3 -m venv my_nsz_env

## activate venv
source my_nsz_env/bin/activate

## install nsz
pip3 install nsz

## deactivate venv
deactivate

## repeat cd & activate action 
## to re-activate virtual env and use nsz again
Decompress NSZ file
nsz -D ./file.nsz


Sometimes it is not set up by default (?)

Open Settings -> Keyboard -> Navigation -> Hide all normal windows
Choose your shortcut for this


Important: switch off Alt+Shift switch in Tweaks app in case it is installed
gsettings set org.gnome.desktop.wm.keybindings switch-input-source-backward "['Shift_R']"


Get HDD or SSD serial number
February 13, 2026
Another simple one
sudo smartctl -i /dev/sda | grep "Serial Number"


Get application connections
February 13, 2026
man ss says: ss - another utility to investigate sockets

Simple thing
ss -ntp | grep -E "5661|5694"

Where 5661 and5694 - PIDs of interested process

Get app PID
ps ax | grep -i my-app-name


aghr