ffmpeg -i filename.mp4 -ss 00:00:00 -to 00:01:00 -c copy trimmed_video.mp4
>time is in hh:mm:ss format
#NoEnv | |
SendMode Input ; | |
NumpadEnter::Send {Media_Play_Pause} | |
^!Left::Send {Media_Prev} | |
^!Right::Send {Media_Next} | |
NumpadMult::Send {Volume_Mute} | |
NumpadAdd::Send {Volume_Up} | |
NumpadSub::Send {Volume_Down} |
# We'll just store the cloned certificates in current user "Personal" store for now. | |
$CertStoreLocation = @{ CertStoreLocation = 'Cert:\CurrentUser\My' } | |
$MS_Root_Cert = Get-PfxCertificate -FilePath C:\Test\MSKernel32Root.cer | |
$Cloned_MS_Root_Cert = New-SelfSignedCertificate -CloneCert $MS_Root_Cert @CertStoreLocation | |
$MS_PCA_Cert = Get-PfxCertificate -FilePath C:\Test\MSKernel32PCA.cer | |
$Cloned_MS_PCA_Cert = New-SelfSignedCertificate -CloneCert $MS_PCA_Cert -Signer $Cloned_MS_Root_Cert @CertStoreLocation | |
$MS_Leaf_Cert = Get-PfxCertificate -FilePath C:\Test\MSKernel32Leaf.cer |
ffmpeg -i filename.mp4 -ss 00:00:00 -to 00:01:00 -c copy trimmed_video.mp4
>time is in hh:mm:ss format
# https://geekswipe.net/technology/computing/swoop-chrome-passwords-decrypt-with-python/ | |
# https://github.com/karthikeyankc/Swoopy/blob/master/Swoopy.py | |
# INSTALL: https://github.com/mhammond/pywin32/releases | |
import os | |
import sqlite3 | |
import win32crypt | |
#path to user's login data |
sudo pacman -S git
for arch based distrosGive your commits a signature / credits
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
git init
to initialize git inside your current directory\
make sure you're in the your ~home directory , you can type cd
or ~
to go there
git init --bare $HOME/dotfiles
you can replace dotfiles with a name of choice , I chose .dotfiles
echo alias config='/usr/bin/git --git-dir=$HOME/dotfiles/ --work-tree=$HOME' >> .zshrc
feel free to name the alias what ever you want , I named it dotfiles this adds an alias named config , so instead of typing
git --git-dir=home/dotfiles
all you need to do is to write config in your terminal on bash replace .zshrc with .bashrc