Skip to content

Instantly share code, notes, and snippets.

View cameronraysmith's full-sized avatar
🥝

Cameron Smith cameronraysmith

🥝
View GitHub Profile
@cameronraysmith
cameronraysmith / multistopwatch-cleanup-chrome-extension
Last active July 21, 2016 15:39
multistopwatch-cleanup-chrome-extension
multistopwatch-cleanup-chrome-extension
get [jquery-2.0.3.min.js](https://code.jquery.com/jquery-2.0.3.min.js)

Keybase proof

I hereby claim:

  • I am cameronraysmith on github.
  • I am cameronraysmith (https://keybase.io/cameronraysmith) on keybase.
  • I have a public key ASAJEAXyiSX3WUhn0We-sUt8NmgJ8fKSC10tb2009p1uBgo

To claim this, I am signing this object:

<!doctype html>
<meta charset="utf-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.9.0/katex.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.9.0/katex.min.js"></script>
<script src="https://distill.pub/template.v1.js"></script>
<script type="text/front-matter">
title: "Title"
description: "subtitle or description"
#!/usr/bin/env bash
# use /usr/bin/env bash instead of /bin/bash
# because some folks use BSD
# use set -e instead of #!/bin/bash -e in case we're
# called with `bash ~/bin/scriptname`
set -e # bail out early if any command fails
set -u # fail if we hit unset variables
set -o pipefail # fail if any component of any pipe fails