This file contains hidden or 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
#!/bin/sh | |
cnt=0 | |
depth=0 | |
while read -n 1 char; do | |
case $char in | |
"{") | |
((depth++)) | |
;; | |
"}") | |
((depth--)) |
This file contains hidden or 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
#!/Users/jgraves/environments/python/bin/python | |
import time | |
import sys | |
import Growl | |
try: | |
minutes = float(sys.argv[1]) | |
except IndexError: | |
print "How many minutes?" |