Format: 1A Host: http://blog.acme.com
Welcome to the ACME Blog API. This API provides access to the ACME Blog service.
| /* Based on Royall's original quicky script: | |
| * http://gist.github.com/16507 | |
| */ | |
| CmdUtils.CreateCommand({ | |
| name: "quicky", | |
| icon: "http://www.google.com/favicon.ico", | |
| homepage: "http://lkraider.eipper.com.br/ubiquity", | |
| author: { name: "Paul Eipper", email: "[email protected]"}, | |
| license: "GPL", | |
| description: "Perform an I'm Feeling Lucky google search on the preview pane", |
| // avcodec_sample.0.5.0.c | |
| // Original source: | |
| // http://web.me.com/dhoerl/Home/Tech_Blog/Entries/2009/1/22_Revised_avcodec_sample.c.html | |
| // | |
| // A small sample program that shows how to use libavformat and libavcodec to | |
| // read video from a file. | |
| // | |
| // This version is for the 0.4.9+ release of ffmpeg. This release adds the | |
| // av_read_frame() API call, which simplifies the reading of video frames |
| /* | |
| # README | |
| This userscript is a hack to replace HTTPS Cloudfront hosted assets on GitHub. | |
| Cloudfront serves its files *only* through 128-bit RC4/MD5 encryption, which is | |
| old and not appropriate for secure use in the modern day, and as such I have | |
| that disabled in Firefox (about:config security.ssl3.rsa_rc4_128_md5). | |
| Since there is currently no way to whitelist encryption schemes for specific |
| +---------------------------+ | |
| | o +---+ | | |
| |+-------------------------+| | |
| ||.:!3G 13:37 [###]|| | |
| ||-------------------------|| | |
| || +---+ +---+ +---+ +---+ || | |
| || |,O | | 1 | | v | | O | || | |
| || +---+ +---+ +---+ +---+ || | |
| || Msg Cal Pic Cam || |
| --- a/MWPhotoBrowser.m | |
| +++ b/MWPhotoBrowser.m | |
| @@ -95,7 +95,6 @@ | |
| pagingScrollView.backgroundColor = [UIColor blackColor]; | |
| pagingScrollView.contentSize = [self contentSizeForPagingScrollView]; | |
| pagingScrollView.contentOffset = [self contentOffsetForPageAtIndex:currentPageIndex]; | |
| - [self.view addSubview:pagingScrollView]; | |
| // Setup pages | |
| visiblePages = [[NSMutableSet alloc] init]; |
| #!/usr/bin/env python | |
| import sys | |
| import os | |
| def adf2mp3(input_path, output_path, buffer_size=1024*1024): | |
| print 'Converting', output_path | |
| input_file = open(input_path, 'rb') | |
| output_file = open(output_path, 'wb') | |
| for read_buffer in iter(lambda: input_file.read(buffer_size), ''): |
Welcome to the ACME Blog API. This API provides access to the ACME Blog service.
| import unittest | |
| import hashlib | |
| from schematics.models import Model | |
| from schematics.types import IntType, StringType, MD5Type | |
| from schematics.exceptions import ValidationError | |
| class TestTransformers(unittest.TestCase): |
| #!/bin/env python2.7 | |
| from schematics.models import Model | |
| from schematics.types import StringType | |
| from schematics.exceptions import ValidationError | |
| class EventType(StringType): | |
| DIVIDER = ':' | |
| import gevent | |
| import gevent.server | |
| import gevent.monkey | |
| gevent.monkey.patch_all() | |
| import socket | |
| import string | |
| import random | |
| import filecmp |