I hereby claim:
- I am blpabhishek on github.
- I am blpabhishek (https://keybase.io/blpabhishek) on keybase.
- I have a public key whose fingerprint is A4F9 C550 A2AE 3CED 2B73 51D4 0400 2DBA 6899 71C5
To claim this, I am signing this object:
export HOMEBREW_NO_GITHUB_API=1 | |
export HOMEBREW_NO_ANALYTICS=1 | |
export N_PREFIX=~/.n | |
#zmodload zsh/zprof | |
# Handle Zsh history | |
export HISTFILE=~/.zsh_history | |
export HISTSIZE=15000 | |
export SAVEHIST=10000 | |
setopt BANG_HIST # Treat the '' character specially during expansion. |
syntax on | |
colo desert | |
set nocompatible | |
set ruler | |
set nu | |
set expandtab | |
set tabstop=2 | |
set shiftwidth=2 | |
filetype indent plugin on |
I hereby claim:
To claim this, I am signing this object:
tell application "Safari" | |
activate | |
set counter to 0 | |
repeat | |
set counter to (counter + 1) | |
tell front window of application "Safari" to set current tab to tab (counter) | |
delay 2 | |
set counter to (counter mod 5) | |
end repeat | |
end tell |
ssh-keygen -m PEM -t rsa -b 4096 | |
openssl rsa -in identity -pubout | |
echo content | openssl rsautl -encrypt -pubin -inkey identity.pub.pem > ciphertext.txt | |
openssl rsautl -decrypt -inkey identity -in ciphertext.txt |
openssl genrsa -out private.pem 2048 | |
openssl rsa -in private.pem -outform PEM -pubout -out public.pem |
ssh -i ${KEY_FILE} -o ProxyCommand="ssh -i ${KEY_FILE} $2@bastion.$1.example.com nc %h %p" $2@$3 $4 |
import argparse | |
import boto.sqs | |
import json | |
import os | |
parser = argparse.ArgumentParser(description='Saves all messages from an AWS SQS queue into a folder.') | |
parser.add_argument( | |
'-q', '--queue', dest='queue', type=str, required=True, | |
help='The name of the AWS SQS queue to save.') |
export GOENV_VERSION=1.10.3 | |
export GOPATH=$HOME/go | |
export PATH=$PATH:$GOPATH/bin | |
export PATH=/usr/local/opt/freetds@0.91/bin:$PATH |
export HOMEBREW_NO_GITHUB_API=1 | |
export HOMEBREW_NO_ANALYTICS=1 | |
export N_PREFIX=~/.n | |
# Handle Zsh history | |
export HISTFILE=~/.zsh_history | |
export HISTSIZE=10000000 | |
export SAVEHIST=10000000 | |
setopt BANG_HIST # Treat the '!' character specially during expansion. |