···4242 alias cdz="cd ~/code/zapier"
4343fi
44444545+# Accepts a target markdown file and opens it with firefox.
4646+#
4747+# Expects the [markdown viewer](https://github.com/simov/markdown-viewer)
4848+# FF extension to be installed.
4949+function mdp {
5050+ local file="${PWD}/${1}"
5151+ # if $file does not end with `.md`, bail
5252+ if [[ ! "$file" == *".md" ]]; then
5353+ echo "Must provide a markdown file"
5454+ exit 1
5555+ fi
5656+ firefox "${file}"
5757+}
5858+4559function rand {
4660 count=$1
4761 if [ -z "$count" ]; then