Format: 1A Host: http://blog.acme.com
Welcome to the ACME Blog API. This API provides access to the ACME Blog service.
| import fileinput | |
| MAX = 0 | |
| P = 10000 | |
| def identidade(matriz): | |
| for i in range(MAX): | |
| for j in range(MAX): | |
| matriz[i][j] = int((i == j)) |
| /* 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: "paul@eipper.com.br"}, | |
| license: "GPL", | |
| description: "Perform an I'm Feeling Lucky google search on the preview pane", |
| /* | |
| # 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]; |
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>Atlas-iOS/Code/Utilities/ATLMediaInputStream.m</title> | |
| <style type="text/css"> | |
| body { color:#000000; background-color:#ffffff } | |
| body { font-family:Helvetica, sans-serif; font-size:10pt } | |
| h1 { font-size:14pt } | |
| .code { border-collapse:collapse; width:100%; } | |
| .code { font-family: "Monospace", monospace; font-size:10pt } |
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 = ':' | |
| from datetime import datetime | |
| import functools | |
| class convert_argument(object): | |
| def __init__(self, data_type): | |
| print '__init__(data_type="%s")' % data_type | |
| self.prefix_converter = 'convert_' | |
| self.data_type = data_type |