Skip to content

Instantly share code, notes, and snippets.

View swmcc's full-sized avatar
👷‍♂️
Building things

Stephen McCullough swmcc

👷‍♂️
Building things
View GitHub Profile
@tomalrussell
tomalrussell / jekyll-new-post.py
Created February 12, 2015 10:09
Jekyll New Post
#! /usr/bin/env python3
import sys
import datetime
import os
# set title to command-line argument, or default
if (len(sys.argv) > 1):
title = sys.argv[1]
else: