Skip to content

Instantly share code, notes, and snippets.

how to add plugins to oh-my-zsh

Install with curl

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

Install underylying CLI tools

brew install autojump

@jaredmcqueen
jaredmcqueen / google_finance_intraday.py
Created June 17, 2017 03:08 — forked from lebedov/google_finance_intraday.py
Retrieve intraday stock data from Google Finance.
#!/usr/bin/env python
"""
Retrieve intraday stock data from Google Finance.
"""
import csv
import datetime
import re
import pandas as pd
@jaredmcqueen
jaredmcqueen / motion_215.py
Created June 10, 2017 03:25 — forked from waveform80/motion_215.py
Motion detection with a circular buffer and file recording in picamera
#!/usr/bin/env python
import io
import time
import picamera
import picamera.array
import numpy as np
from PIL import Image, ImageDraw
@jaredmcqueen
jaredmcqueen / workout.py
Created June 5, 2017 23:28 — forked from Jerdak/workout.py
Quick (hacky) script to print tabulated workout weights for Wendler's 531 workout program.
try:
from tabulate import tabulate as tb
tabulated_style = True
except Exception as ex:
tabulated_style = False
# Replace these maxes with *your* maxes
actual_max = {
"benchpress":305,