Skip to content

Instantly share code, notes, and snippets.

View jtanadi's full-sized avatar

Jesen Tanadi jtanadi

  • Durham, NC
View GitHub Profile
@jtanadi
jtanadi / distribute_files.py
Last active March 2, 2020 14:39
py script to distribute files
#! /usr/bin/env python3
"""
py3 script to copy files of a certain extension
to their own individual directories.
ex:
~/src/file1.pdf
~/src/file2.pdf
~/src/file3.pdf
@jtanadi
jtanadi / tasks.json
Created December 14, 2018 19:43
RoboFont vscode build
{
"version": "2.0.0",
"tasks": [
{
"label": "RF build",
"type": "shell",
"command": "roboFont",
"args": ["-p", "${file}"]
}
]