Skip to content

Instantly share code, notes, and snippets.

View timbook's full-sized avatar

timbook

  • eSimplicity
  • Washington, DC
View GitHub Profile
@timbook
timbook / dsi-student-install-guide.md
Last active May 31, 2019 02:30
Public Install Guide for General Assembly's Data Science Immersive Program
@timbook
timbook / todo.py
Last active September 16, 2018 06:49
Simple todo list app for the command line
#!/usr/bin/env python3
import sys
import os
def todo_init():
if not os.path.exists('todo.txt'):
os.mknod('todo.txt')
else:
print("todo.txt already exists!")