Skip to content

Instantly share code, notes, and snippets.

View scottarnold's full-sized avatar

Scott Arnold scottarnold

View GitHub Profile

SpotServ Ad - Launch Check

  • Home Team on right side of score. Or bottom of boxscore.

SportServ Documentation

Table Of Contents

  • SportServ SDK
  • Anatomy of Ad (sportserv feed + templating)
  • Handling Assets
  • Data Examples:
@scottarnold
scottarnold / new-git.sh
Created August 27, 2011 17:16
New git repo function
# New Git Repo w/ Basic .gitignore
function new-git() {
mkdir $1
cd $1
touch .gitignore
echo ".DS_Store" >> .gitignore
git init
git add --all
git commit -m "First Commit. Added basic .gitignore"
}