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 python | |
import re, operator, argparse, oauth | |
from readability import ReaderClient | |
from beaker.cache import cache_regions, cache_region | |
parser = argparse.ArgumentParser(description="Look at Readability.com and determines the top domains you've read articles with") | |
parser.add_argument('file', nargs=1, help='Filename to export to.') |
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
-- based on http://stackoverflow.com/questions/2503372/how-to-close-all-or-only-some-tabs-in-safari-using-applescript | |
-- also helpful: http://www.mactech.com/articles/mactech/Vol.21/21.07/WorkingWithText/index.html | |
-- TODO: | |
-- * make work with Safari windows in full screen mode (Mac OS X Lion) | |
-- - for now wrapping in a 'try' block to ignore full screen windows, but | |
-- distracting tabs in those windows won't close with this script | |
set distractingURLs to {"twitter.com", "tumblr.com/dashboard", "google.com/reader"} | |
tell application "Safari" | |
repeat with i from (count of windows) to 1 by -1 | |
try |
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
/* | |
Not-yet-working Safari extension to embed GoodReads widget into RSS Hero, an | |
emerging feed reader. | |
Immediate goal: | |
* When no items to read, embed my "currently-reading" (or could be 'to-read') | |
library to remind me which books I'm reading | |
Longer-term goal: | |
* When no items to read, embed a dashboard reminding me what there's left to do, | |
be it paid work or whatever the word is for work we do that isn't paid but is |
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 python | |
import sys | |
from datetime import datetime | |
if __name__ == '__main__': | |
print datetime.fromtimestamp(float(sys.argv[1])) |
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
pip install mako | |
pip install feedparser | |
pip install pyyaml | |
Install http://pypi.python.org/pypi/python-dateutil/1.5 (python setup.py install once downloaded) | |
git clone https://github.com/jwiegley/ledger.git | |
cd ledger | |
./acprep dependencies | |
./acprep update | |
# failed to install |
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
(* | |
Load Tab in New Window 1.0 by Jim DeVona | |
http://web.archive.org/web/20081016132209/http://anoved.net/load_tab_in_new_window.html | |
http://anoved.net/files/ltinw.applescript | |
19 December 2006 | |
Close the frontmost Safari tab and reload it in a new window. | |
Requirements: | |
UI Scripting |
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
yum install rdoc ri zlib zlib-devel | |
yum install ruby-devel | |
wget http://rubyforge.org/frs/download.php/60718/rubygems-1.3.5.tgz | |
tar -zxvf rubygems-1.3.5.tgz | |
cd rubygems-1.3.5 | |
ruby setup.rb | |
gem install jekyll | |
Results in: | |
=========== |
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
# original found on Twitter somewhere | |
# replaces the 'mate' command that came with TextMate 1.5 | |
# create an empty file if it doesn't exist (TextMate 2 currently won't do this for you) | |
# this goes in your .profile | |
# this appears to be no longer necessary with build 9064 of TextMate 2 | |
# you may still need to go into TextMate | Preferences | Terminal and install | |
# it. I chose /usr/local/bin since ~/bin didn't exist and wasn't in my PATH | |
function mate() { |
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
# I forget if I ever actually needed this. | |
sudo gem install jeweler | |
-- added dependencies | |
sudo gem install rvm | |
sudo gem install minitest | |
sudo gem install test # installed ansi, rubytest, test | |
download https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer | |
echo insecure >> ~/.curlrc | |
bash -s < ~/Desktop/rvm-installer.txt |
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
[merge] | |
tool = opendiff | |
[core] | |
editor = emacs | |
[alias] | |
co = checkout | |
[color] | |
diff = auto | |
status = auto | |
branch = auto |