-
Create self signed certificate
ca.cert
openssl req -newkey rsa:2048 -nodes -keyout ca.key -x509 -days 365 -out ca.cert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# source: https://bbs.archlinux.org/viewtopic.php?id=141933 | |
setxkbmap -option caps:escape |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
format="bestvideo[height<=480]+bestaudio/best[height<=360]" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# create or attach to named session | |
tmux new-session -A -s _main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###################################################################### | |
# merge without checkout [link](https://stackoverflow.com/a/17722977) | |
# | |
# Merge local branch 'devel' into local branch master, | |
# without having to checkout master first. | |
# Here `.` means to use the local repository as the "remote": | |
# | |
git fetch . devel:master | |
# update master branch when beeing on a different branch, e.g. devel |