Skip to content

Instantly share code, notes, and snippets.

@tylermumford
tylermumford / keybase.md
Created August 9, 2019 13:59
keybase.md

Keybase proof

I hereby claim:

* I am tylermumford on github.
* I am tylermumford (https://keybase.io/tylermumford) on keybase.
* I have a public key ASCOyhFwuUBwD8QIJlWUW5UE0vDQ7GTl9gg-k2VmCNmOBgo

To claim this, I am signing this object:

@tylermumford
tylermumford / git-intro.md
Last active August 29, 2015 14:21
Intro to Git

Intro to Git

Concepts

Git is a Distributed Version Control System (DVCS). It tracks changes to a project over time (and by many contributors), which facilitates rollbacks, history inspection, and merges. It's a command line tool, but there are many GUI programs which interact with it.

Git tracks the files in a given folder, called the repository or repo. Each unit of work is called a commit (KUH-mit), or a revision.

Installing Git

@tylermumford
tylermumford / Info
Last active August 29, 2015 14:15
Public key
exponent
(newline)
mod
Comment with your messages, and I'll decrypt them.
@tylermumford
tylermumford / Push Back Due.applescript
Created February 4, 2013 19:49
Pushes the due date of selected tasks back until the next Friday. If "today" is Friday, pushes until next Monday.
set d to current date
if d's weekday is Friday then
set d to d + 3 * days
else
repeat until d's weekday is Friday
set d to d + 1 * days
end repeat
end if
set d to date "12:00 AM" relative to d
@tylermumford
tylermumford / Push Back.applescript
Created February 4, 2013 19:49
Pushes the start date of selected tasks back until the next Friday. If "today" is Friday, pushes until next Monday.
set d to current date
if d's weekday is Friday then
set d to d + 3 * days
else
repeat until d's weekday is Friday
set d to d + 1 * days
end repeat
end if
set d to date "12:00 AM" relative to d
@tylermumford
tylermumford / com.apple.mail.scpt
Created January 25, 2013 21:52
A modified version of The Hit List's Mail import script. It saves only the sender's name, if available, otherwise the sender's email address. It also sets the start date to the date received, sets no due date, and sets no tags.
(*
The Hit List Mail Import
Copyright © 2012 Potion Factory LLC.
Licensed under a Creative Commons Attribution 3.0 License: http://creativecommons.org/licenses/by/3.0/
To customize this script, copy it first to: