Url Scheme: https://example.com
Geo Scheme: geo:37.33182,-122.03118
| #!/bin/sh | |
| ####################################################################### | |
| # Productivity helpers | |
| draft(){ | |
| REPO_PATH=$HOME/working-documents/ | |
| FILE_NAME=tracked-$(date "+%s") | |
| # Open file for editing | |
| st -w "${REPO_PATH}${FILE_NAME}.md" |
| #!/bin/sh | |
| while read URL | |
| do | |
| curl -sL -w "%{http_code} %{url_effective}\\n" -o /dev/null -# $URL | |
| done < "${1:-/dev/stdin}" |
| #### Contents of the preconfiguration file (for jessie) | |
| ### Localization | |
| # Preseeding only locale sets language, country and locale. | |
| d-i debian-installer/locale string en_US | |
| # The values can also be preseeded individually for greater flexibility. | |
| #d-i debian-installer/language string en | |
| #d-i debian-installer/country string NL | |
| #d-i debian-installer/locale string en_GB.UTF-8 | |
| # Optionally specify additional locales to be generated. |
| echo -n "Enter device location: " && read DEVICE && sudo VBoxManage internalcommands createrawvmdk -filename ./host_device.vmdk -rawdisk $DEVICE && sudo chmod 777 $DEVICE && sudo chmod 777 ./sd-card.vmdk |