Skip to content

Instantly share code, notes, and snippets.

@mattsparks
mattsparks / move-data-tutorial.json
Created May 28, 2019 18:59
Just sample data for a tutorial...
[
{
"Title": "The Matrix",
"Year": "1999",
"Rated": "R",
"Released": "31 Mar 1999",
"Runtime": "136 min",
"Genre": "Action, Sci-Fi",
"Director": "Lana Wachowski, Lilly Wachowski",
"Writer": "Lilly Wachowski, Lana Wachowski",
@mattsparks
mattsparks / delete_ds_store.py
Created July 19, 2016 01:02
Python Script to Delete .DS_Store Files on MacOS
import glob, os
for root, dirs, files in os.walk('/'):
i = 0
for file in files:
if file.endswith('.DS_Store'):
path = os.path.join(root, file)
print "Deleting: %s" % (path)