I hereby claim:
- I am satyrius on github.
- I am satyrius (https://keybase.io/satyrius) on keybase.
- I have a public key ASCqBYyDDIvy2Yj556khOSWkpKP3Gr-T1r71iu7RW3_9xQo
To claim this, I am signing this object:
| require("dotenv").config(); | |
| const H = require("highland"); | |
| const axios = require("axios"); | |
| const fs = require("fs").promises; | |
| const exportDirectory = "./export"; | |
| const apiUrl = "https://api.intercom.io"; | |
| // config axios for the authorized API request | |
| const apiClient = axios.create({ |
I hereby claim:
To claim this, I am signing this object:
| 0x65BAC2D81034ac52523fB88EfB62C2a888A756c4 |
| set-window-option -g mode-keys vi | |
| set-option -g status-keys vi | |
| # Start windows and panes at 1, not 0 | |
| set -g base-index 1 | |
| setw -g pane-base-index 1 | |
| # title | |
| set -g set-titles on | |
| set -g set-titles-string "#T" |
| FROM debian:jessie | |
| ENV PYENV_ROOT=/opt/pyenv PATH=/opt/pyenv/shims:/opt/pyenv/bin:$PATH LANG=en_US.UTF-8 | |
| RUN set -x \ | |
| && echo "LANG=$LANG" > /etc/default/locale \ | |
| && echo "$LANG UTF-8" > /etc/locale.gen \ | |
| && export DEBIAN_FRONTEND=noninteractive \ | |
| && apt-get update -qq \ | |
| && apt-get install -y locales \ | |
| && apt-get install -y \ | |
| libpq5 \ |
| for v in $(xargs --null --max-args=1 < /proc/1/environ); do export $v; done |
| #!/bin/bash -e | |
| docker ps -a -q | xargs docker rm | |
| docker images | grep '^<none>' | awk '{print $3}' | xargs docker rmi |
| package main | |
| import ( | |
| "code.google.com/p/go-tour/pic" | |
| "image" | |
| "image/color" | |
| ) | |
| type Image struct{ | |
| Width, Height int |
| package main | |
| import ( | |
| "fmt" | |
| ) | |
| type ErrNegativeSqrt float64 | |
| func (e ErrNegativeSqrt) Error() string { | |
| return fmt.Sprintf("cannot Sqrt negative number: %v", float64(e)) |
| package main | |
| import ( | |
| "fmt" | |
| "math" | |
| "math/cmplx" | |
| ) | |
| func Cbrt(x complex128) complex128 { | |
| z := complex128(1) |