I hereby claim:
- I am k2nr on github.
- I am k2nr (https://keybase.io/k2nr) on keybase.
- I have a public key ASCYfKJsYFkLAe0Ur2o4xFZ9kfk3uYkwFmt0d2h8wunqKAo
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
import subprocess | |
import os | |
import argparse | |
wdir = os.environ["HOME"]+"/.wa" | |
def get(command): | |
return subprocess.check_output(["/bin/bash", "-c", command]).decode("utf-8") |
--- | |
- hosts: localhost | |
connection: local | |
become: true | |
vars: | |
- google_file: /etc/apt/sources.list.d/google-chrome.list | |
tasks: | |
- name: base deps | |
apt: name={{ item }} update_cache=yes | |
with_items: |
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 some time, 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! | |
set $mod Mod4 |
keycode 97 = grave asciitilde | |
keycode 132 = grave asciitilde |
(ns md5.core | |
(:require [clojure.core.reducers :as r] | |
[clojure.string :as s]) | |
(:import [java.security MessageDigest] | |
[javax.xml.bind DatatypeConverter])) | |
(defn ^String hexdigest [^String s] | |
(let [digester (MessageDigest/getInstance "MD5")] | |
(. digester update (.getBytes s)) | |
(DatatypeConverter/printHexBinary (.digest digester)))) |
#!/bin/bash | |
RAMDISK_SIZE=1024 # MB | |
RAMDISK_BLOCKS=$((2048*$RAMDISK_SIZE)) | |
RAMDISK_ROOT=/Volumes/ramdisk | |
diskutil erasevolume HFS+ "ramdisk" `hdiutil attach -nomount ram://$RAMDISK_BLOCKS` &> /dev/null | |
mkdir $RAMDISK_ROOT/mysql | |
unset TMPDIR |
(defmacro defmemo | |
[name & fdecl] | |
`(def ~name | |
(memoize (fn ~fdecl)))) |
function removeDups(array) { | |
var obj = {}, | |
len = array.length, | |
res = [], | |
i; | |
for(i=0; i < len; i++) { | |
obj[JSON.stringify(array[i])] = array[i]; | |
} |
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |