Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am kylelady on github.
  • I am kylelady (https://keybase.io/kylelady) on keybase.
  • I have a public key ASC0-r7Htfasijj-L6FCqdKYJrXQOBc93pzN1I-gXXm6nwo

To claim this, I am signing this object:

@kylelady
kylelady / duo_cla_v1.txt
Last active February 21, 2018 15:51
Duo Security CLA v1
This Contributor License Agreement (“CLA” or “Agreement”) constitutes a contract between You (as defined herein) and Duo Security, Inc with offices at 123 North Ashley Street, Suite #200, Ann Arbor, MI 48104 (“Duo Security”). This Agreement is to clarify the intellectual property license granted with Contributions (as defined herein) from any person or entity to Duo Security. Duo Security must have a CLA on file that has been signed by each Contributor, indicating agreement to the license terms below. This license is for Your protection as a Contributor as well as the protection of Duo Security; it does not change Your rights to use Your own Contributions for any other purpose.
You accept and agree to the following terms and conditions for Your present and future Contributions submitted to Duo Security. Except for the license granted herein to Duo Security and recipients of services and software distributed by Duo Security, You reserve all right, title, and interest in and to Your Contributions.
1. Definiti
@kylelady
kylelady / .bash_profile
Last active December 20, 2015 00:39
My virtualenv config setup. Requires that you mkdir $HOME/.virtualenvs first. You need a place for all your virtualenv projects to live; go change '$HOME/projects' at .virtualenvs/postactivate:11 to that path. Also .virtualenvs-$foo should be put in $HOME/.virtualenvs/ after logging in for the first time but before making a new project. I should…
# uncomment if you can't/don't install globally
#export PIP_REQUIRE_VIRTUALENV=true # pip should only run if there is a virtualenv currently activated
export PIP_RESPECT_VIRTUALENV=true # tell pip to install packages into the active virtualenv environment
export VIRTUALENV_DISTRIBUTE=true # tell virtualenv to use Distribute instead of legacy setuptools
export WORKON_HOME=$HOME/.virtualenvs
export PROJECT_HOME=$HOME/projects
# change to be the location of virtualenvwrapper.sh if need be
. /usr/local/bin/virtualenvwrapper.sh