Skip to content

Instantly share code, notes, and snippets.

View genomics-geek's full-sized avatar

Michael Gonzalez genomics-geek

View GitHub Profile
@genomics-geek
genomics-geek / README.md
Last active September 25, 2016 02:57
Guide to Virtual Environments

Guide to Virtual Environments

A Virtual Environment is a tool to keep the dependencies required by different projects in separate places, by creating virtual Python environments for them. It solves the “Project X depends on version 1.x but, Project Y needs 4.x” dilemma, and keeps your global site-packages directory clean and manageable.

For example, you can work on a project which requires Django 1.3 while also maintaining a project which requires Django 1.0.

I highly recommend using virtualenvwrapper, it makes your life so much easier!

Set up

  1. Install pip
@genomics-geek
genomics-geek / setup_MacOSX_env.md
Last active November 20, 2017 17:58
Setting up your MacOSX machine as a dev machine
@genomics-geek
genomics-geek / Install_PostgreSQL_on_MacOSX.md
Created April 20, 2016 18:29
Installing PostgreSQL on Mac OSX

Installing PostgreSQL on Mac OSX

The easiest way I have found to install PostgreSQL on Mac OSX is by using Postgres.app.

Download Postgres.app

Postgres.app Download

Install

  1. Move the downloaded file to ~/Applications
  2. Double click
@genomics-geek
genomics-geek / Migrate_and_Deploy_Django_app_on_Heroku.md
Last active July 18, 2018 16:48
Guide on how to migrate your Django web application to be deployed on Heroku
@genomics-geek
genomics-geek / .env
Created April 20, 2016 19:24
Example .env file
SECRET_KEY=13dfdasfaw3rarfdafjpj*(*&YO&D&FAFAHUH
DEBUG=true
ALLOWED_HOSTS=localhost 0.0.0.0 127.0.0.1
DATABASE_URL=postgres://user:password@localhost:5432/database
@genomics-geek
genomics-geek / .bashrc
Created June 25, 2016 20:08
An example .bashrc file
export PIP_REQUIRE_VIRTUALENV=true
gpip(){
PIP_REQUIRE_VIRTUALENV="" pip "$@"
}
test -f /usr/local/bin/virtualenvwrapper.sh && source /usr/local/bin/virtualenvwrapper.sh
if which pyenv > /dev/null ; then eval "$(pyenv init -)"; fi
root = true
# Unix-style newlines with a newline ending every file
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
# Python settings
# virtual environments
venv
# Python files
*.pyc
__pycache__
# Python Notebook dot files
.ipynb*
@genomics-geek
genomics-geek / test_index.js
Created September 25, 2016 02:28
Karma tests entry point
var testsContext = require.context(".", true, /_test$/);
testsContext.keys().forEach(testsContext);
@genomics-geek
genomics-geek / example_test.jsx
Created September 25, 2016 02:29
Example test using expect
import expect from 'expect';
describe('Something abstract', () => {
it('works', () => {
expect(1).toEqual(1);
});
});