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 / 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 / .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
@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);
});
});
@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 / karma.config.js
Created September 26, 2016 00:13
Karma unit testing config file
// Karma configuration
var webpackConfig = require('./webpack.local.config.js');
webpackConfig.entry = {};
module.exports = function(config) {
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '',
@genomics-geek
genomics-geek / server.js
Created September 26, 2016 00:14
Node dev server
var webpack = require('webpack')
var WebpackDevServer = require('webpack-dev-server')
var config = require('./webpack.local.config')
new WebpackDevServer(webpack(config), {
publicPath: config.output.publicPath,
hot: true,
inline: true,
historyApiFallback: true
}).listen(3000, '0.0.0.0', function (err, result) {
var path = require('path');
var webpack = require('webpack');
var BundleTracker = require('webpack-bundle-tracker')
module.exports = {
context: __dirname,
devtool: null,
entry: '../static/js/index',
output: {},
plugins: [],
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