- Max 100 MB File size allowed in commit check in. Max 10 MB if you use drag and drop on web.
- Anything above 50MB takes eons to load. You need to shrink file size as much as you can.
- MP4/MOV file support is limited to web drag and drop only thus limiting to 10 MB size. It also adds an ugly player frame with controls. Gifs are much prettier.
| ; Toggle Navigation pane in Windows Explorer | |
| !n:: | |
| { | |
| Send('!vn{enter}') | |
| } | |
| ; End | |
| ; Toggle Power Profile | |
| ^!p:: | |
| { |
| ; Mist: A browser overlay for non steam games. | |
| browserPath := "C:\Program Files\Mozilla Firefox\firefox.exe" ; replace with browser of your choice | |
| browserExe := "firefox.exe" ; exe of the browser in above line | |
| browserWidth := 1600 ; Horizontal size of browser you will like. Must be less than max horizontal resolution of primary monitor | |
| browserHeight := 900 ; Vertical size of browser you will like. Must be less than max horizontal resolution of primary monitor | |
| !Space:: ; Default hotkey is Alt + Space | |
| { | |
| ; Toggle the overlay and browser | |
| if WinExist("Dark Overlay") | |
| { |
| #!/bin/bash | |
| set -e | |
| SCRIPT=$0 | |
| ARG=$1 | |
| ACTIVITIES_FILE=~/what_next_activities.json | |
| # Colors | |
| RED=$(tput setaf 1) | |
| GREEN=$(tput setaf 2) |
A quick guide to do all things certificate related.
Ready to use self signed certificate with SAN extensions.
openssl req -x509 -newkey rsa:4096 -sha256 -days 365 -nodes \
-keyout app.domain.com.key -out app.domain.com.cer \
-subj /C=IN/ST=MH/L=PUN/O=TW/OU=IT/CN=app.domain.com \
Conventional wisdom recommends using a unique, randomized, long password for each set of credentials you setup for your use. It increases security and prevents loss of multiple accounts if any one account gets hacked thereby leaking your creds.
Conventional wisdom fails to say anything about remembering these unique long hieroglyphs. How very convinient for conventional wisdom.
The solution to this problem, like every other problem is to make it someone else's problem. In this scenario, a password manager's.
A password manager is a software that does the job of generating such unique randomized passwords for you, storing them and giving them to you when you need them, like an obedient lackey. In return all you have to do is to remember the one password for the Password Manager.
| #!/bin/bash | |
| set -e | |
| SCRIPT=$0 | |
| ARG=$1 | |
| BASE_VERSION="0.1" | |
| validation_error() { | |
| echo "Not inside a git repo. Exiting." |
| #!/bin/bash | |
| set -e | |
| ARG="$1" | |
| WORK_DIR=$(pwd) | |
| run() { | |
| find "$WORK_DIR/" -maxdepth 1 -type d | while read DIR | |
| do | |
| cd "${DIR}" |
| #!/bin/bash | |
| set -e | |
| SCRIPT_NAME=$0 | |
| OPT=$1 | |
| FILES_PATH=$2 | |
| PASSPHRASE=$3 | |
| usage() { | |
| echo -n "${SCRIPT_NAME} [OPTIONS] [FILE_PATH] [PASSPHRASE] |