I hereby claim:
- I am growse on github.
- I am growse (https://keybase.io/growse) on keybase.
- I have a public key whose fingerprint is 6F8A 63EE DB54 7814 15B3 F21C 7332 9B94 4E12 79FD
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
<?xml version="1.0"?> | |
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?> | |
<configuration> | |
<property> | |
<name>fs.defaultFS</name> | |
<value>hdfs://mycluster</value> | |
</property> | |
<property> | |
<name>ha.zookeeper.quorum</name> |
#!/usr/bin/env python | |
import argh | |
import sh | |
import subprocess | |
import ping | |
import socket | |
import time | |
import sys | |
import re |
Exception in thread "main" java.lang.RuntimeException: No such var: leiningen.util.injected/add-hook, compiling:(NO_SOURCE_PATH:1:3757) | |
at clojure.lang.Compiler.analyze(Compiler.java:6380) | |
at clojure.lang.Compiler.analyze(Compiler.java:6322) | |
at clojure.lang.Compiler$InvokeExpr.parse(Compiler.java:3573) | |
at clojure.lang.Compiler.analyzeSeq(Compiler.java:6562) | |
at clojure.lang.Compiler.analyze(Compiler.java:6361) | |
at clojure.lang.Compiler.analyze(Compiler.java:6322) | |
at clojure.lang.Compiler$BodyExpr$Parser.parse(Compiler.java:5708) | |
at clojure.lang.Compiler.analyzeSeq(Compiler.java:6560) | |
at clojure.lang.Compiler.analyze(Compiler.java:6361) |
var bkmkltFontChooser = function () { | |
return { | |
v: "1.10.2", | |
jQueryDone: false, | |
webfontDone: false, | |
fontChooserLoaded: false, | |
loadjQuery: function () { | |
if (window.jQuery === undefined || window.jQuery.fn.jquery < bkmkltFontChooser.v) { | |
console.log("Loading jQuery"); | |
var script = document.createElement("script"); |
Add-Type -Assembly System.ServiceModel.Web,System.Runtime.Serialization | |
function Read-Stream { | |
PARAM( | |
[Parameter(Position=0,ValueFromPipeline=$true)]$Stream | |
) | |
process { | |
$bytes = $Stream.ToArray() | |
[System.Text.Encoding]::UTF8.GetString($bytes,0,$bytes.Length) | |
}} |
#!/bin/bash | |
/usr/sbin/unbound-control stats|grep -E '^total\.|^num\.' | sed 's/=/\t/' | gawk 'BEGIN{"hostname -f" | getline hstnm ; }; {print "unbound." hstnm "." $0"\t" strftime("%s")}' |
#!/usr/bin/python | |
import sys, os, re, socket, time | |
"""ARGF from Ruby in Python. | |
Released into the public domain by Andrew Gwozdziewycz, 2010 | |
""" | |
class _ARGF(object): | |
def __init__(self): |
#!/usr/bin/python | |
""" | |
Run this with something like iostat -nx 60 2 | iostat_to_graphite.py | |
""" | |
import sys, os, re, socket, time | |
"""ARGF from Ruby in Python. | |
Released into the public domain by Andrew Gwozdziewycz, 2010 | |
""" |
#!/usr/bin/perl | |
# by Andreas Kammlott, thanks to perl and its community | |
use IO::Socket::SSL; | |
use Data::Dumper; | |
use HTTP::Date qw(str2time); | |
use HTTP::Date qw(parse_date); | |
use Date::Format; | |
use Mail::IMAPClient; | |
use Mail::Box::Maildir; |