399 Yonge Street
Toronto, ON M5B
70 Gerrard Street West
| import json | |
| from django.utils.feedgenerator import SyndicationFeed, rfc2822_date | |
| class JSONFeed(SyndicationFeed): | |
| mime_type = 'application/json; charset=utf-8' | |
| def write(self, outfile, encoding): | |
| data = {} |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| """ | |
| A Python Library for Pushbullet: <https://www.pushbullet.com>. | |
| Copyright (c) 2014, Myles Braithwaite <[email protected]> | |
| All rights reserved. | |
| Redistribution and use in source and binary forms, with or without | |
| modification, are permitted provided that the following conditions | |
| are met: |
| 2014 | 2013 | 2012 | 2011 | 2010 | 2009 | 2008 | 2007 | 2006 | 2005 | 2004 | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| January | 342 | 215 | 284 | 241 | 488 | 588 | 552 | 677 | 964 | 730 | 898 |
| February | 179 | 219 | 288 | 371 | 310 | 459 | 498 | 642 | 681 | 560 | 705 |
| March | 118 | 246 | 287 | 310 | 356 | 407 | 396 | 529 | 735 | 670 | 886 |
| Apirl | 0 | 348 | 154 | 254 | 288 | 514 | 355 | 505 | 697 | 901 | 900 |
| May | 0 | 384 | 167 | 332 | 560 | 324 | 354 | 513 | 685 | 1,033 | 615 |
| June | 0 | 113 | 345 | 388 | 444 | 502 | 369 | 391 | 588 | 680 | 594 |
| July | 0 | 190 | 234 | 142 | 258 | 718 | 354 | 637 | 535 | 585 | 636 |
| August | 0 | 293 | 322 | 292 | 375 | 526 | 474 | 550 | 688 | 868 | 584 |
| #! /bin/python | |
| import urllib2 | |
| import csv | |
| import datetime | |
| import math | |
| class GmaneListStats(object): | |
| def __init__(self, what_is_recent=30, group='gmane.comp.web.zope.plone.devel'): |
| import sys | |
| import json | |
| import urllib | |
| import clipboard | |
| import webbrowser | |
| data = urllib.urlopen('http://ifconfig.me/all.json') | |
| ifconfig = json.loads(data.read()) | |
| ip_addr = ifconfig.get('ip_addr', '127.0.0.1') |
| Verifying that +myles is my Bitcoin username. You can send me #bitcoin here: https://onename.io/myles |
| require 'typogruby' | |
| module Jekyll | |
| module TypogrifyFilter | |
| # converts a & surrounded by optional whitespace or a non-breaking space | |
| # to the HTML entity and surrounds it in a span with a styled class. | |
| # | |
| # @param [String] text input text | |
| # @return [String] input text with ampersands wrapped | |
| def amp(text) |