- Create a Yahoo! ID
- Do some Yahoo! Pipe magic
- Get the RSS feed
- Copy the url of a list, for example http://twitter.com/erwinelling/eightmedia
- Modify the url to look like this http://api.twitter.com/1/erwinelling/lists/eightmedia/statuses.atom
from pymouse import PyMouse from time import sleep from random import randint m = PyMouse() w, h = m.screen_size() while True: try: m.move(randint(0, w), randint(0, h)) sleep(20) except KeyboardInterrupt: print "Goodby!" break
on open location the_url tell application "System Events" set browser_apps to the name of every process whose visible is true if "Opera" is in browser_apps then tell application "Opera" open location the_url activate end tell else if "firefox-bin" is in browser_apps then tell application "Firefox" open location the_url activate end tell else if "Google Chrome" is in browser_apps then tell application "Google Chrome" open location the_url activate end tell else tell application "WebKit" open location the_url activate end tell end if end tell end open location
<key>CFBundleIdentifier</key> <string>nl.pepijndevos.urlhandler</string> <key>CFBundleURLTypes</key> <array> <dict> <key>CFBundleURLName</key> <string>Applescript urls</string> <key>CFBundleURLSchemes</key> <array> <string>http</string> <string>https</string> <string>file</string> </array> <key>LSIsAppleDefaultForScheme</key> <true/> </dict> </array>