I hereby claim:
- I am ashpool on github.
- I am magnusljadas (https://keybase.io/magnusljadas) on keybase.
- I have a public key whose fingerprint is 09CC 459C 91D8 4A06 474C D818 608F 4B2C 8ADE 197A
To claim this, I am signing this object:
| #!/usr/bin/python | |
| ''' | |
| A Simple mjpg stream http server for the Raspberry Pi Camera | |
| inspired by https://gist.github.com/n3wtron/4624820 | |
| ''' | |
| from BaseHTTPServer import BaseHTTPRequestHandler,HTTPServer | |
| import io | |
| import time | |
| import picamera |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash -v | |
| GRAPHITE_INSTALL=/root/graphite-install | |
| function installPackage() { | |
| echo "Installing $1"; | |
| cd $GRAPHITE_INSTALL/$1 | |
| python setup.py install | |
| } | |
| yum -y --enablerepo=epel install python-zope-interface python-memcached python-ldap gcc python26-devel mod_python mod_wsgi Django django-tagging pycairo |
| <html> | |
| <head> | |
| <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" /> | |
| <meta http-equiv="Pragma" content="no-cache" /> | |
| <meta http-equiv="Expires" content="0" /> | |
| <style> | |
| iframe { | |
| width: 356px; | |
| height: 100%; | |
| border: none; |
| mkdir $GRAPHITE_INSTALL | |
| cd $GRAPHITE_INSTALL | |
| wget https://launchpad.net/graphite/0.9/0.9.10/+download/graphite-web-0.9.10.tar.gz | |
| wget https://launchpad.net/graphite/0.9/0.9.10/+download/carbon-0.9.10.tar.gz | |
| wget https://launchpad.net/graphite/0.9/0.9.10/+download/whisper-0.9.10.tar.gz | |
| wget https://launchpad.net/graphite/0.9/0.9.10/+download/check-dependencies.py | |
| wget http://pypi.python.org/packages/source/T/Twisted/Twisted-12.1.0.tar.bz2 | |
| tar xfj Twisted-12.1.0.tar.bz2 |
| #!/bin/bash | |
| git rev-list --all | ( | |
| while read revision; do | |
| git grep -F $1 $revision | |
| done | |
| ) |
| require 'rubygems' | |
| require 'iconv' | |
| require 'roo' | |
| require 'swedishgrid' | |
| separator = "\t" | |
| grid = SwedishGrid.new(:sweref99tm) | |
| oo = Excel.new("Sverige - riskklass 1 o 2.xls") |
| var Inspect = { | |
| TYPE_FUNCTION: 'function', | |
| // Returns an array of (the names of) all methods | |
| methods: function(obj) { | |
| var testObj = obj || self; | |
| var methods = []; | |
| for (var prop in testObj) { | |
| if (typeof testObj[prop] == Inspect.TYPE_FUNCTION && typeof Inspect[prop] != Inspect.TYPE_FUNCTION) { | |
| methods.push |
| from gevent.queue import Queue | |
| message_queue = Queue() | |
| def receiver(n): | |
| while not message_queue.empty(): | |
| message = message_queue.get() | |
| print('Received %s message %s' % (n, message)) | |
| gevent.sleep(0) |
| #!/bin/bash | |
| function f() { | |
| sleep "$1" | |
| echo "$1" | |
| } | |
| while [ -n "$1" ] | |
| do | |
| f "$1" & | |
| shift | |
| done |