I hereby claim:
- I am davidjb on github.
- I am davidjb (https://keybase.io/davidjb) on keybase.
- I have a public key ASAZEqpWhpC67z2LE3_yK1mVIwTsB2AZXX22I_r7STi1rAo
To claim this, I am signing this object:
| [extra-parts] | |
| parts += | |
| python-mysql | |
| [python-mysql] | |
| recipe = zc.recipe.egg | |
| egg = MySQL-python | |
| [instance1] | |
| eggs += |
| #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 |
| 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)): |
| 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); |
| [buildout] | |
| ... | |
| [instance] | |
| ... | |
| eggs= | |
| ... | |
| z3c.saconfig | |
| zcml-additional = |
| 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 |
| 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']) |
I hereby claim:
To claim this, I am signing this object:
| #include <gio/gio.h> | |
| static void | |
| on_signal (GDBusProxy *proxy, | |
| gchar *sender_name, | |
| gchar *signal_name, | |
| GVariant *parameters, | |
| gpointer user_data) | |
| { | |
| gchar *parameters_str; |
| ldap_server ldap_users { | |
| url 'ldaps://ldap.example.org:636/dc=org?uid?sub?...'; | |
| require valid_user; | |
| } | |
| ldap_server ldap_groups { | |
| url 'ldaps://ldap.example.org:636/dc=org?uid?sub?(objectClass=person)'; | |
| group_attribute "uniqueMember"; | |
| group_attribute_is_dn on; | |
| require group 'cn=staff,ou=groups,dc=org'; |