I hereby claim:
- I am erkiesken on github.
- I am erkiesken (https://keybase.io/erkiesken) on keybase.
- I have a public key whose fingerprint is B2EB 926A 8B2A FA6D E919 BAA8 DFA5 3336 298B D2E4
To claim this, I am signing this object:
#!/bin/sh | |
set -e | |
# Needs node, npm, semver (npm -g i semver) and jq utility to be installed. | |
# First check if we have needed utils. | |
which node | |
which npm | |
which jq |
#!/bin/bash | |
## | |
## Bumps semantic version using node-semver. | |
## | |
## Usage: | |
## ./bump-version.sh <level> <file> | |
## | |
## <level> can be: major, minor, patch, | |
## premajor, preminor, |
#!/bin/bash | |
set -euo pipefail | |
mkdir -p out | |
while read -r hash; do | |
if [ ! -f "out/$hash" ]; then | |
curl -I -s -o "out/$hash" "http://www.gravatar.com/avatar/$hash" | |
echo "Fetched: $hash" |
#!/bin/bash | |
set -exuo pipefail | |
# Taken from https://alestic.com/2010/12/ec2-user-data-output/ | |
exec > >(tee ./tmp.log) 2>&1 | |
echo BEGIN | |
ls -lah . | |
echo END |
#!/bin/bash | |
# From http://stackoverflow.com/a/20909045/49871 | |
# | |
# Keeps the variables local | |
# | |
env $(cat .env | xargs) myprogram |
# Can;t just do this, no permission for my shell to write that file: | |
sudo echo "deb https://apt.dockerproject.org/repo debian-jessie main" > /etc/apt/sources.list.d/docker.list | |
# So wrap it into a shell command: | |
sudo sh -c 'echo "deb https://apt.dockerproject.org/repo debian-jessie main" > /etc/apt/sources.list.d/docker.list' |
I hereby claim:
To claim this, I am signing this object:
defmodule ModAuthJWT do | |
use Ejabberd.Module | |
import Joken | |
def start(_host, _opts) do | |
info('Starting ejabberd module Auth JWT') | |
:ok | |
end | |
def stop(_host) do |
a = ["Ooo","oOo","ooO","oOo"]; // like on the server listing screen of Minecraft | |
i = 0; | |
change = () => { document.querySelector("code").innerText = a[i % a.length]; i++; } | |
v = setInterval(change, 200) | |
// clearInterval(v); | |
// a = ["⦿⨀⨀⨀⨀","⨀⦿⨀⨀⨀","⨀⨀⦿⨀⨀","⨀⨀⨀⦿⨀","⨀⨀⨀⨀⦿","⨀⨀⨀⦿⨀","⨀⨀⦿⨀⨀","⨀⦿⨀⨀⨀"] |
#!/usr/bin/env bash | |
echo "${1}" | pbcopy |