Notes: Sumit Patel

Expose localhost port to internet

  1. 80 is on which port to map, 5000 is the localhost port, the service we want to expose.
ssh -R 80:localhost:5000 nokey@localhost.run

Set input devices permissions while starting Display server.

sudo chown root:stroky /dev/input/ --recursive

file tranfer from CLI to share.

  1. Temp.sh (4G) https://temp.sh/

  2. Bashupload (insane size) https://bashupload.com/ Read more…

Add new change in previous commit

  1. Find the commit hash you want to edit
git log 
Read more…

Combine audio & video of different length

  1. Long audio & shortvideo:
ffmpeg -i Downloads/pooja_updated.mp4 -i aum.opus -map 0:v:0 -map 1:a:0 -c:v copy -shortest -y output3.mp4
Read more…