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
| import ec2 | |
| ec2.credentials.ACCESS_KEY_ID = 'xxx' | |
| ec2.credentials.SECRET_ACCESS_KEY = 'xxx' | |
| print ec2.instances.all() | |
| for i in ec2.instances.filter(state='running', name__like='^production'): | |
| print i.state, i.tags['Name'] |
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
| all = lambda x: x | |
| def doit(things): | |
| yield from all(things) | |
| list(doit([])) |
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
| var dns = require('native-dns'); | |
| var server = dns.createServer(); | |
| var client = require('redis').createClient(); | |
| var aws = require('aws-lib'); | |
| server.on('request', function(req, res){ | |
| var parts = req.question[0].name.split('.'); | |
| var tag = parts[0]; | |
| var authority = parts.slice(1).join('.'); |
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
| class Logger(type): | |
| def __new__(cls, name, bases, crap): | |
| print cls, name, bases, crap | |
| class foo(dict): | |
| __metaclass__ = Logger |
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
| publish: | |
| python setup.py sdist upload | |
| clean: | |
| rm -rf *.egg-info | |
| rm -rf dist | |
| rm -rf build | |
| .PHONY: publish clean |
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 sh | |
| INSTALL_DIR=`pwd`/maxmind | |
| log() { | |
| printf "\033[90m...\033[0m $@\n" | |
| } | |
| abort() { | |
| printf "\033[31mError: $@\033[0m\n" && exit 1 |
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 | |
| # -*- coding: utf-8 -*- | |
| import sys | |
| import time | |
| import urllib2 | |
| import boto | |
| try: | |
| import simplejson as json | |
| except ImportError: |
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
| try: | |
| # Hang until we exit the script | |
| while 1: | |
| time.sleep(5) | |
| except KeyboardInterrupt: | |
| pass |
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
| def a(): | |
| print("a") | |
| return True | |
| def b(): | |
| print("b") | |
| return True | |
| print(any((a(), b()))) # :( | |
| print("") |
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
| diff --git a/django/db/models/query.py b/django/db/models/query.py | |
| index da4c69f..591ccfa 100644 | |
| --- a/django/db/models/query.py | |
| +++ b/django/db/models/query.py | |
| @@ -139,33 +139,22 @@ class QuerySet(object): | |
| def __contains__(self, val): | |
| # The 'in' operator works without this method, due to __iter__. This | |
| - # implementation exists only to shortcut the creation of Model | |
| - # instances, by bailing out early if we find a matching element. |