This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
property done_foldername : "URL Encoded Scripts" | |
on adding folder items to this_folder after receiving these_items | |
-- If the result folder doesn't exist, then create it | |
tell application "Finder" | |
if not (exists folder done_foldername of this_folder) then | |
make new folder at this_folder with properties {name:done_foldername} | |
set current view of container window of this_folder to list view | |
end if | |
set the target_folder to folder done_foldername of this_folder |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# makepost.py | |
''' | |
Program to create a Jekyll _post file in the correct format | |
and populated with essential frontmatter | |
''' | |
import os, re, sys, argparse | |
from datetime import date, time, datetime | |
# blogcats allows you to limit the categories of new posts in your blog |