Skip to content

Instantly share code, notes, and snippets.

# Some useful OSX aliases for your .zshrc or .bash_aliases
alias np='Open /Applications/TextEdit.app' # Open the notepad for easier copy-pasting from terminal.
alias py='python3'
alias pyp='pip3'
alias pep8='autopep8 -i -a -a -a'
alias sp='python3 ~/RCF/sp.py'
#!/usr/bin/python3
import os
def crawlAndPullRepos():
issue_dirs = []
for dirname, subdirs, filenames in os.walk(os.getcwd()):
if '.git' in subdirs:
print("\nDirectory " + dirname + " is a git repository.")
output = os.system("cd " + dirname + " && git pull")
on run {input, parameters}
-- RCF: Quick Action for folders in Finder.app
-- Opens a new terminal window within the passed folder.
-- V2: Opens for every selected folder.
if (exists input) then
repeat with folderPath in input
set POSIXPath to POSIX path of folderPath
on run {input, parameters}
-- RCF: Quick Action for folders in Finder.app
-- Opens a new terminal window within the passed folder.
set POSIXPath to POSIX path of input
set newDirCmd to ("cd " & POSIXPath & " && clear")
(* Your script goes here *)
tell application "Terminal"