I hereby claim:
- I am cnicolaou on github.
- I am cnicolaou (https://keybase.io/cnicolaou) on keybase.
- I have a public key ASBFP7NXhX9M-4u12JfBQUwN5peg3tR5O8uW1P_mWW5F5Qo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Principles of Adult Behavior
import string | |
import uuid | |
alphabet = string.digits + string.ascii_letters | |
def base62_encode(n): | |
ret = '' | |
while n > 0: | |
ret = alphabet[n % 62] + ret | |
n /= 62 |
#!/bin/bash | |
export TERM=xterm-color | |
export CLICOLOR=1 | |
export GREP_OPTIONS='--color=auto' | |
# export LSCOLORS=Exfxcxdxbxegedabagacad | |
export LSCOLORS=gxfxcxdxbxegedabagacad # Dark lscolor scheme | |
# Don't put duplicate lines in your bash history | |
export HISTCONTROL=ignoredups | |
# increase history limit (100KB or 5K entries) | |
export HISTFILESIZE=100000 |
swagger: 2 | |
info: | |
title: The new Uber API | |
description: Move your app forward with the Uber API | |
version: "1.0.0" | |
host: api.uber.com | |
schemes: | |
- https | |
basePath: /v1 | |
produces: |