79 private links
find [FOLDER_NAME] -type f -name "*.tar.gz" -exec gunzip -tv {} \;
find [FOLDER_NAME] -type f -name "*.tar.gz"
finds every tar.gz file in a foldergunzip -tv
checks the integrity and outputs if the file is OK.
You will need ffmpeg
installed.
Use the xrandr
to discover your monitor, copy the resolution + offset, eg 1366x768+1920+113
and pass it to the ffmpeg
command below.
Run the command pactl list short sources
. Get a monitor, like alsa_output.pci-0000_00_1f.3.analog-stereo.monitor
and pass it to the ffmpeg command below.
Run the command:
ffmpeg -video_size 1366x768 -framerate 60 -f x11grab -i :0.0+1920,113 -f pulse -ac 2 -i alsa_output.pci-0000_00_1f.3.analog-stereo.monitor output.mp4
Notice that there's resolution + the offset. Very important.
Restrict specific week days and times.
net user simon /time:M-F,17:30-22:30;Sa-Su,16:30-22:30
Remove restrictions
net user simon /time:all
windows
// mount windows root then,
cd /mnt/Microsoft/Windows/System32/config/
cp SAM SAM.original
chntpw -l SAM
chntpw -i SAM
Some common mistakes candidates make during the interview that are highly avoidable, so I thought I’d spend just a little bit of time writing those down and share them.