I hereby claim:
- I am marcusandre on github.
- I am marcusandre (https://keybase.io/marcusandre) on keybase.
- I have a public key ASCrKff2YGOK0PVAVVmuA6LQxM7sHQZR5G8giVByGEVSzgo
To claim this, I am signing this object:
/usr/sbin/mysqld --verbose --help | grep -A 1 "Default options" |
#!/usr/bin/env bash | |
ids=$(vagrant global-status | grep 'running' | cut -d ' ' -f 1 | xargs) | |
vagrant suspend $ids |
* { | |
box-sizing: border-box; | |
text-rendering: optimizeLegibility; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
font-kerning: auto; | |
} | |
html { | |
font-family: sans-serif; |
// Example to generate a random key with crypto/rand. | |
// It's useful to use it for example to prevent request forgery by comparing it | |
// inside requests. | |
package main | |
import ( | |
"crypto/rand" | |
"fmt" | |
"log" |
clone = x => [...x] | |
push = y => x => [...x, y] | |
pop = x => x.slice(0, -1) | |
unshift = y => x => [y, ...x] | |
shift = x => x.slice(1) | |
sort = f => x => [...x].sort(f) | |
del = i => x => [...x.slice(0, 1), ...x.slice(i + 1)] | |
splice = (s, c, ...y) => x => [...x.slice(0, s), ...y, ...x.slice(s + c)] |
package blockchain | |
import ( | |
"bytes" | |
"crypto/sha256" | |
"strconv" | |
"time" | |
) | |
type Blockchain struct { |
# Options | |
setopt emacs | |
setopt nobeep | |
setopt nonomatch | |
setopt shnullcmd | |
setopt extendedglob | |
setopt bashautolist | |
setopt noautomenu | |
setopt noalwayslastprompt |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
branch=`git rev-parse --abbrev-ref HEAD` | |
if [ "$branch" = "master" ]; then | |
make lint && make test | |
fi |
for i in *.RAF; do sips -s format jpeg $i --out "${i%.*}.jpg"; done |