I hereby claim:
- I am kadel on github.
- I am tomaskral (https://keybase.io/tomaskral) on keybase.
- I have a public key whose fingerprint is E4A4 3FE4 4620 8597 647F B587 E690 DA7E 4F29 1FA6
To claim this, I am signing this object:
| <html> | |
| <head> | |
| <title></title> | |
| <script type='text/javascript'> | |
| function add_to_body() { | |
| var divObal = document.createElement("div"); | |
| divObal.setAttribute("id", "obal"); | |
| divObal.style.width = "400px"; | |
| divObal.style.height = "300px"; | |
| divObal.style.backgroundColor = "Grey"; |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #define TRUE 1 | |
| #define FALSE 0 | |
| typedef char bool; | |
| ganglia-monitor: | |
| pkg: | |
| - installed | |
| service: | |
| - running | |
| - watch: | |
| - file: /etc/ganglia/gmond.conf | |
| - pkg: ganglia-monitor | |
| file: | |
| - managed |
| package: | |
| - pkg.installed | |
| - version: {{ pkg_version }} |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <!-- Replace the group ID with your group ID --> | |
| <groupId>com.mycompany.hadoopproject</groupId> | |
| <!-- Replace the artifact ID with the name of your project --> | |
| <artifactId>my-hadoop-project</artifactId> | |
| <version>1.0-SNAPSHOT</version> | |
| <packaging>jar</packaging> |
| test = {1:1, 2:{2.1:2.1}, 3:{3.1:{3.2:3.2}}} | |
| def r(a, path=[]): | |
| for k,v in a.iteritems(): | |
| if type(v) == dict: | |
| path.append(k) | |
| r(v, path) | |
| path.pop() | |
| else: |
| # Codenames for Debian suites according to their alias. Update these when | |
| # needed. | |
| OLDSTABLE_CODENAME="squeeze" | |
| UNSTABLE_CODENAME="sid" | |
| TESTING_CODENAME="jessie" | |
| STABLE_CODENAME="wheezy" | |
| STABLE_BACKPORTS_SUITE="$STABLE_CODENAME-backports" | |
| # List of Debian suites. | |
| DEBIAN_SUITES=($OLDSTABLE_CODENAME $UNSTABLE_CODENAME $TESTING_CODENAME $STABLE_CODENAME |
I hereby claim:
To claim this, I am signing this object:
| background-color: rgb(37,46,50) | |
| font: Monospace 14 | |
| foreground-color: rgb(148,163,165) | |
| palette: ['rgb(0,0,0)', 'rgb(204,0,0)', 'rgb(78,154,6)', 'rgb(196,160,0)', 'rgb(52,101,164)', 'rgb(117,80,123)', 'rgb(6,152,154)', 'rgb(211,215,207)', 'rgb(85,87,83)', 'rgb(239,41,41)', 'rgb(138,226,52)', 'rgb(252,233,79)', 'rgb(114,159,207)', 'rgb(173,127,168)', 'rgb(52,226,226)', 'rgb(238,238,236)'] |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |