Skip to content

Instantly share code, notes, and snippets.

View sillygwailo's full-sized avatar

Richard Eriksson sillygwailo

View GitHub Profile
@sillygwailo
sillygwailo / top_readability_domains.py
Last active September 27, 2015 15:08
Top Domains in Readability
#!/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.')
@sillygwailo
sillygwailo / Close Distracting Tabs in Safari.scpt
Created November 24, 2011 00:33
Close tabs containing distracting websites in Safari
-- 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
@sillygwailo
sillygwailo / gist:1419934
Created December 1, 2011 21:15
Embed Goodreads Widget in RSS Hero Has No Unread Items to Show
/*
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
@sillygwailo
sillygwailo / timestamp.py
Created December 15, 2011 00:43
Convert Unix timestamp into human-readable date
#!/usr/bin/env python
import sys
from datetime import datetime
if __name__ == '__main__':
print datetime.fromtimestamp(float(sys.argv[1]))
@sillygwailo
sillygwailo / gist:1549901
Created January 2, 2012 08:40
Yak Shaving for Running Iron Blogger on CentOS 5.7
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
@sillygwailo
sillygwailo / gist:1635735
Created January 18, 2012 21:22
Load Tab in New Window 1.0 by Jim DeVona
(*
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
@sillygwailo
sillygwailo / gist:1636108
Created January 18, 2012 22:06
Yak Shaving for Running Jekyll on CentOS 5.7
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:
===========
@sillygwailo
sillygwailo / gist:1645935
Created January 20, 2012 07:11
Open a file in TextMate 2 with the command line
# 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() {
@sillygwailo
sillygwailo / gist:1807225
Created February 12, 2012 08:20
Yak Shaving for Installing RVM
# 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
@sillygwailo
sillygwailo / gist:1849230
Created February 17, 2012 00:39
Git config file (personal info removed)
[merge]
tool = opendiff
[core]
editor = emacs
[alias]
co = checkout
[color]
diff = auto
status = auto
branch = auto