I hereby claim:
- I am Zolmeister on github.
- I am zolmeister (https://keybase.io/zolmeister) on keybase.
- I have a public key whose fingerprint is 29B1 BB4C 362A 2C14 C19E 4C33 43AA D778 81AE 0EB0
To claim this, I am signing this object:
#!/usr/bin/env bash | |
set -Eeuo pipefail | |
trap cleanup SIGINT SIGTERM ERR EXIT | |
script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P) | |
usage() { | |
cat <<EOF | |
Usage: $(basename "${BASH_SOURCE[0]}") [-h] [-v] [-f] -p param_value arg1 [arg2...] |
// send network request timings to Google Analytics | |
(function() { | |
var nativeOpen = XMLHttpRequest.prototype.open | |
var nativeSend = XMLHttpRequest.prototype.send | |
var startTime = null | |
var pendingCount = 0 | |
XMLHttpRequest.prototype.open = function(_, url) { | |
this._url = url | |
return nativeOpen.apply(this, arguments) | |
} |
################################################################################ | |
# A/B test calculations # | |
# # | |
# Based on Stats Engine # | |
# //pages.optimizely.com/rs/optimizely/images/stats_engine_technical_paper.pdf # | |
################################################################################ | |
################## | |
# Helper Methods # | |
################## |
--- | |
# file: roles/app/tasks/main.yml | |
- name: ensure logging directory exists | |
file: path=/var/log/acme state=directory | |
tags: | |
- install | |
- name: ensure config directory exists | |
file: path=/etc/acme/app state=directory |
curl -s https://api.github.com/users/<USERNAME>/repos\?per_page\=200 | grep ssh_url | cut -d \" -f 4 | xargs -n 1 git clone |
I hereby claim:
To claim this, I am signing this object:
# This file has been auto-generated by i3-config-wizard(1). | |
# It will not be overwritten, so edit it as you like. | |
# | |
# Should you change your keyboard layout somewhen, delete | |
# this file and re-run i3-config-wizard(1). | |
# | |
# i3 config file (v4) | |
# | |
# Please see http://i3wm.org/docs/userguide.html for a complete reference! |
@import url(http://fonts.googleapis.com/css?family=Ubuntu+Mono); | |
.cm-s-zolmeister.CodeMirror { | |
background: #272822; color: #f8f8f2; | |
font-family:'Ubuntu Mono', monospace; | |
line-height: 1.2em; | |
} | |
.cm-s-zolmeister div.CodeMirror-selected {background: #49483E !important;} | |
.cm-s-zolmeister .CodeMirror-gutters {background: #272822; border: 1px solid rgba(0,0,0,.25);} | |
.cm-s-zolmeister .CodeMirror-gutter-text {color: #d0d0d0;} | |
.cm-s-zolmeister .CodeMirror-cursor {border-left: 1px solid #f8f8f0 !important;} |
-- | |
-- xmonad example config file. | |
-- | |
-- A template showing all available configuration hooks, | |
-- and how to override the defaults in your own xmonad.hs conf file. | |
-- | |
-- Normally, you'd only override those defaults you care about. | |
-- | |
import XMonad |
/* The MIT License (MIT) | |
Copyright (c) 2013 Zolmeister | |
Permission is hereby granted, free of charge, to any person obtaining a copy of | |
this software and associated documentation files (the "Software"), to deal in | |
the Software without restriction, including without limitation the rights to | |
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | |
the Software, and to permit persons to whom the Software is furnished to do so, | |
subject to the following conditions: |