Skip to content

Instantly share code, notes, and snippets.

View tylerneylon's full-sized avatar
😆

Tyler Neylon tylerneylon

😆
View GitHub Profile
@commanda
commanda / timey
Created April 27, 2016 19:52
a bash script that i use to tell me to get back to work after a set number of minutes
#!/bin/bash
if [ "$#" -ne 1 ]; then
echo "usage: timey <number of minutes> &";
exit;
fi
SECONDS=$(($1 * 60))
echo "Timey set for $1 minutes, which is $SECONDS seconds"
sleep $SECONDS
open -a "Google Chrome.app" https://media.giphy.com/media/yWh7b6fWA5rJm/giphy.gif
@clintel
clintel / gist:1155906
Created August 19, 2011 02:40
Fenced code in bullet lists with GitHub-flavoured MarkDown??

Fenced code blocks inside ordered and unordered lists

  1. This is a numbered list.

  2. I'm going to include a fenced code block as part of this bullet:

    Code
    More Code