Skip to content

Instantly share code, notes, and snippets.

@tomchuk
tomchuk / post-checkout
Created February 25, 2015 19:56
Post Checkout Hook
#!/usr/bin/env bash
# Delete .pyc files and empty directories from root of project
cd ./$(git rev-parse --show-cdup)
# Clean-up
find . -name ".DS_Store" -delete
NUM_PYC_FILES=$( find . -name "*.pyc" | wc -l | tr -d ' ' )
if [ $NUM_PYC_FILES -gt 0 ]; then
@tomchuk
tomchuk / trackjs.py
Last active February 25, 2017 00:37
TrackJS Incoming Webhook for Slack
#!/usr/bin/env python
import argparse
import calendar
import datetime
import hashlib
import json
import logging
import requests
import sqlite3