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
| # -*- coding: utf-8 -*- | |
| """ | |
| Generates a requirements.txt from any packages | |
| in the current working directory. | |
| """ | |
| import os | |
| import glob | |
| import contextlib | |
| import functools |
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
| """ | |
| functional library for generating xml documents | |
| """ | |
| import xml.dom.minidom as xml | |
| class Document(object): | |
| """ | |
| XML Document Builder |
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
| import re | |
| import json | |
| from parsec import ( | |
| sepBy, | |
| regex, | |
| string, | |
| generate, | |
| many | |
| ) |
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
| import xmlrpc.client | |
| proxy = xmlrpc.client.ServerProxy('http://localhost:7000/xmlrpc') | |
| print(proxy.hello('there')) |
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
| yum -y install erlang perl perl-RRD-Simple.noarch perl-Log-Log4perl-RRDs.noarch gnuplot perl-Template-Toolkit | |
| wget http://tsung.erlang-projects.org/dist/tsung-1.6.0.tar.gz | |
| tar zxfv tsung-1.6.0.tar.gz | |
| cd tsung-1.6.0 | |
| ./configure && make && sudo make install |
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
| // background-image: radial-gradient(circle at 50% 50%, spin(rgba(255,221,0,1), 0) 29%, spin(rgba(255,221,0,1), -16%) 120%); | |
| background-image: radial-gradient(circle at 50% 50%, spin(rgba(0,116,217,1), -16%) 29%, spin(rgba(0,116,217,1), 0) 120%); |
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
| font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif; |
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
| source 'https://rubygems.org' | |
| gem 'jekyll' | |
| gem 'wdm', '>= 0.1.0' | |
| gem 'hitimes', :platforms => :ruby # not sure if this works, had to install the pure ruby version manually (see build.sh) |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| * { | |
| padding: 0; | |
| margin: 0; | |
| } | |
| html, body { | |
| height: 100%; |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| * { | |
| padding: 0; | |
| margin: 0; | |
| } | |
| html, body { | |
| height: 100%; |