I hereby claim:
- I am svdgraaf on github.
- I am svdgraaf (https://keybase.io/svdgraaf) on keybase.
- I have a public key ASCNRi7ZhWzZoXGXEv3E6dxE6R62g1x_e5w_22l1u0ZrJgo
To claim this, I am signing this object:
| # import PyV8, duh! | |
| import PyV8 | |
| # define a class which methods should be available in Javascript | |
| class epicClass(PyV8.JSClass): | |
| def ponies(self): | |
| return "Ponies!" | |
| def doubletime(self, what, amount): | |
| for i in range(0, amount): |
| # create a dir | |
| mkdir foobar | |
| cd foobar | |
| # instantiate a virtual environment | |
| virtualenv --no-site-packages . | |
| # start your virtualenv | |
| source bin/activate |
| { | |
| "environments": [], | |
| "name": "focus", | |
| "repository": { | |
| "location": "git@github.com:hub-nl/nl.focusmedia.git", | |
| "name": "foo", | |
| "variant": "git" | |
| }, | |
| "variant": "python" | |
| } |
| import pygraphviz as pgv | |
| class MachineGraph(object): | |
| def get_graph(self, title=None): | |
| """Generate a DOT graph with pygraphviz.""" | |
| state_attrs = { | |
| 'shape': 'circle', | |
| 'height': '1.2', | |
| } |
| # varnish | |
| sudo yum remove varnish* | |
| sudo rpm --nosignature -i http://repo.varnish-cache.org/redhat/varnish-3.0/el6/noarch/varnish-release-3.0-1.el6.noarch.rpm | |
| sudo yum install varnish-3.0.3 | |
| sudo yum install pcre-devel libedit libedit-devel | |
| # varnish source | |
| wget http://repo.varnish-cache.org/source/varnish-3.0.3.tar.gz | |
| tar -zxvf varnish-3.0.3.tar.gz | |
| ./configure |
| # import the abtesting vmod | |
| import abtest; | |
| sub vcl_deliver { | |
| # only continue, if the config file with all the rules can be loaded | |
| if (abtest.load_config("/etc/varnish/abtest-rules.cfg") == 0) { | |
| # if there isn't a named cookie 'ab' in the request, we can add one | |
| if (req.http.Cookie !~ "ab=") { |
| convert [inputfilename.jpg] -gravity north -background black -extent [width]x[height] +repage -box black -fill white -pointsize 12 -gravity southwest -annotate +3+3 '(c)Unicorns and magic sparkledust inc.' -gravity southeast -annotate +3+3 "`date +%H:%I`" -quality 99% output.png |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| import boto3 | |
| import requests | |
| ec2 = boto3.resource('ec2') | |
| # fetch the instance id | |
| response = requests.get('http://169.254.169.254/latest/meta-data/instance-id') | |
| instance_id = response.text |
| version: 0.1 | |
| phases: | |
| pre_build: | |
| commands: | |
| - pip install awscli | |
| build: | |
| commands: | |
| post_build: | |
| commands: |