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
#!/usr/bin/python | |
'''Dump''' | |
import os, sys, codecs, json, urllib, base64, gzip, datetime, time | |
import tweepy, session | |
attrs = { | |
'status': ['author', 'contributors', 'coordinates', 'created_at', 'favorited', 'geo', 'id', 'id_str', 'in_reply_to_screen_name', 'in_reply_to_status_id', 'in_reply_to_status_id_str', 'in_reply_to_user_id', 'in_reply_to_user_id_str', 'place', 'retweet_count', 'retweeted', 'source', 'source_url', 'text', 'truncated', 'user'], | |
'user': [ 'default_profile', 'default_profile_image', 'description', 'id', 'id_str','location', 'name', 'profile_image_url', 'protected', 'screen_name', 'time_zone', 'url', 'utc_offset', 'verified'], |
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
@route('/app.manifest') | |
def manifest(): | |
""" Generate an HTML 5 offline manifest automatically """ | |
last = 0 | |
lines = [] | |
response.content_type = "ext/cache-manifest" | |
for (path, dirs, files) in os.walk('app'): | |
last = max(max(map(lambda x: os.path.getmtime(os.path.join(path, x)), files)),last) | |
map(lambda x: lines.append(os.path.join(os.path.relpath(path,'app'), x)), filter(lambda x: os.path.splitext(x)[1] in ['.css','.js','.png'], files)) | |
response.headers['Last-Modified'] = time.strftime("%a, %d %b %Y %H:%M:%S GMT", time.gmtime(last)) |
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
/* | |
* This file can be used to apply a style to all web pages you view | |
* Rules without !important are overruled by author rules if the | |
* author sets any. Rules with !important overrule author rules. | |
*/ | |
/* You can find the latest version of this ad blocking css at: | |
* http://www.floppymoose.com | |
* hides many ads by preventing display of images that are inside | |
* links when the link HREF contans certain substrings. |
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
#!/usr/bin/env python | |
# encoding: utf-8 | |
""" | |
parser.py | |
A github RSS feed sanitizer, whereby we mean "sane" - i.e., that groups updates | |
per project and not as a mess of completely unrelated events. | |
Created by Rui Carmo on 2011-01-06. Still incomplete. |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>HTML5 iPad Popup Menu</title> | |
<meta name="viewport" content="width=device-width, maximum-scale=1.0" /> | |
<style> | |
body{ |
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
from ScriptingBridge import * | |
import os, sys, re | |
pattern = re.compile("^(INBOX|Sent*|Draft*)") | |
class Census: | |
"""Tallies mail info""" | |
def __init__(self, pattern): | |
self.app = SBApplication.applicationWithBundleIdentifier_("com.apple.mail") | |
self.accounts = dict([(a.name(),a) for a in self.app.accounts()]) |
NewerOlder