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
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()]) |
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
<!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 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 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 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 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 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 Quartz import * | |
from AppKit import * | |
from Foundation import * | |
import WebKit | |
import objc | |
import time | |
windows = {} | |
views = {} |
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
# | |
# Copyright (C) 2010, 2011 Vinay Sajip. All rights reserved. | |
# | |
import logging | |
import os | |
class ColorizingStreamHandler(logging.StreamHandler): | |
# color names to indices | |
color_map = { | |
'black': 0, |
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
<?php | |
echo "<pre> | |
Adoro a tua luz, a tua cor, o teu sinal | |
Mas o que mais adoro em ti é o Tal Canal | |
Adoro a tua voz, a tua escrita, a tua oral | |
Mas o que mais adoro em ti é o Tal Canal | |
Adoro o teu olhar, teu gaguejar, teu ar fatal | |
Mas o que mais adoro em ti é o Tal Canal | |
Adoro a tua grelha, a tua taxa, o teu jornal |
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
-- get properties of the playing track | |
tell application "iTunes" | |
set thisTrack to current track | |
set trackAlbum to the album of thisTrack | |
set trackYear to the year of thisTrack | |
set trackName to the name of thisTrack | |
set trackArtist to the artist of thisTrack | |
end tell | |
-- | |
-- change the status message to your liking here: |
OlderNewer