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
<h1>Hello!</h1> | |
== <%= @test %> == |
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
Python 2.7.8 (default, Nov 14 2014, 15:57:55) | |
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.54)] on darwin | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> def avg1(nums): | |
... return sum(nums) / float(len(nums)) | |
... | |
>>> def avg2(nums): | |
... count, tot = 0, 0 | |
... for num in nums: | |
... count += 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
>>> def ints1(lst): | |
... return [int(x) for x in lst if x.isdigit()] | |
... | |
>>> def ints2(lst): | |
... out = [] | |
... for item in lst: | |
... try: | |
... out.append(int(item)) | |
... except ValueError: | |
... 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
# -*- encoding: utf-8 -*- | |
import hashlib | |
import itertools | |
import os | |
class BlobStore(dict): | |
def identify(self, blob): | |
return 'sha1-%s' % hashlib.sha1(blob).hexdigest() |
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
# Description: | |
# Control marathon via hubot | |
# | |
# Configuration: | |
# HUBOT_MARATHON_HOST=marathon.yourcompany.com:8080 | |
# | |
# Commands: | |
# hubot marathon - show the instances of all apps | |
# hubot marathon <id> - show the number of instances for app <id> | |
# hubot scale <id> <number> - scale app ID to <number> instances |
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
from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler | |
import json | |
from multiprocessing import Pool, Queue | |
import random | |
import requests | |
from requests.packages.urllib3.exceptions import ProtocolError | |
import sys | |
import time | |
from timeit import timeit |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
[ | |
{ | |
"children": [], | |
"name": "a task @done", | |
"tags": { | |
"done": null | |
} | |
}, | |
{ | |
"children": [ |
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
alias wheel_add="pip wheel --wheel-dir=$HOME/wheelhouse" | |
alias wheel_install="pip install --use-wheel --no-index --find-links=$HOME/wheelhouse" |
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
#cloud-config | |
coreos: | |
etcd: | |
#discovery: https://discovery.etcd.io/203df1b81a502546048a45336d7d669b | |
addr: $public_ipv4:4001 | |
peer-addr: $public_ipv4:7001 | |
units: | |
- name: etcd.service | |
command: start |