This file contains 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 requests | |
caniuse = requests.get('https://github.com/Fyrd/caniuse/raw/master/fulldata-json/data-2.0.json') | |
data = caniuse.json() | |
# We could do a lot more than print here, but this is just an uber quick demo | |
for agent in data['agents']: | |
print(data['agents'][agent]['browser'] + ': ' + data['agents'][agent]['current_version']) |
This file contains 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
2014/05/19 22:26:57 [debug] 17235#0: bind() 0.0.0.0:80 #6 | |
2014/05/19 22:26:57 [notice] 17235#0: using the "epoll" event method | |
2014/05/19 22:26:57 [debug] 17235#0: counter: 00007FAA59195080, 1 | |
2014/05/19 22:26:57 [notice] 17235#0: nginx/1.6.0 | |
2014/05/19 22:26:57 [notice] 17235#0: built by gcc 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) | |
2014/05/19 22:26:57 [notice] 17235#0: OS: Linux 2.6.32-431.el6.x86_64 | |
2014/05/19 22:26:57 [notice] 17235#0: getrlimit(RLIMIT_NOFILE): 1024:4096 | |
2014/05/19 22:26:57 [debug] 17235#0: write: 7, 00007FFFD4159CB0, 6, 0 | |
2014/05/19 22:26:57 [debug] 17235#0: setproctitle: "nginx: master process nginx.debug" | |
2014/05/19 22:26:57 [notice] 17235#0: start worker processes |
This file contains 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
[buildout] | |
... | |
[instance] | |
... | |
eggs= | |
... | |
z3c.saconfig | |
zcml-additional = |
This file contains 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
#!/bin/sh | |
#Run like this: | |
# wget -O - https://gist.githubusercontent.com/davidjb/8777451/raw/test-io.sh | sudo sh | |
# or | |
# curl https://gist.githubusercontent.com/davidjb/8777451/raw/test-io.sh | sudo sh | |
if command -v yum > /dev/null 2>&1; then | |
sudo rpm -ihv http://mirrors.kernel.org/fedora-epel/6/x86_64/epel-release-6-8.noarch.rpm | |
sudo yum install -y fio git | |
elif command -v apt-get > /dev/null 2>&1; then | |
sudo apt-get install -y fio git |
This file contains 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
jQuery(function($) { | |
$(window).ready(function() { | |
var reference_url = '//terrestrialclimatechange.org.au/references'; | |
var storage_key = 'references.data'; | |
var ref_link_structure = function(reference) { | |
return '<a href="' + reference_url + '#ref-' + reference + '">' + reference + '</a>'; | |
}; | |
var tooltip_structure = function(content) { | |
return $('<div class="tooltip" />').append(content); |
This file contains 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 datetime import datetime, timedelta | |
import ago | |
def human(date, | |
precision=2, | |
past_fmt="{} ago", | |
present_fmt="right now", | |
future_fmt="in {}", | |
present_tolerance=timedelta(0)): |
This file contains 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
#Notes about JPype | |
#------------------------------------ | |
#You need to install default-jre / openjdk-6-jre (Debian/Ubuntu), or | |
#java-1.6.0-openjdk (RHEL/CentOS) *and* associated development packages. | |
#The JAVA_HOME variable should be | |
#set as an environmental variable prior to using the following. | |
#You might want to use the following to set this: | |
#Ubuntu: export JAVA_HOME="/usr/lib/jvm/java-6-openjdk" | |
#RHEL: export JAVA_HOME="/etc/alternatives/java_sdk" | |
#and include these in your profile (eg ~/.bash_profile) to load them on |
This file contains 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
[extra-parts] | |
parts += | |
python-mysql | |
[python-mysql] | |
recipe = zc.recipe.egg | |
egg = MySQL-python | |
[instance1] | |
eggs += |
NewerOlder