Skip to content

Instantly share code, notes, and snippets.

View jvawdrey's full-sized avatar

Jarrod Vawdrey jvawdrey

View GitHub Profile
@jvawdrey
jvawdrey / pcfdev-aws-deploy.md
Created June 24, 2016 04:55
pcf dev AWS deploy steps

Deploying MicroPCF on AWS

January 5th, 2016

Instructions for deploying micropcf to AWS.

I encountered several challenges relating to AWS configurations and the available Vagrantfile while deploying micropcf to AWS. This documentation details the steps taken to successfully deploy micropcf to AWS.

@jvawdrey
jvawdrey / r-start.R
Created June 24, 2016 04:56
R dependencies and Greenplum database connection example
# r-start.R
########################################################################################
## Dependencies
########################################################################################
# package:: RPostgreSQL
if("RPostgreSQL" %in% rownames(installed.packages()) == FALSE)
install.packages("RPostgreSQL")
library(RPostgreSQL)
@jvawdrey
jvawdrey / madlib-postgres-ubuntu.md
Last active December 4, 2022 17:34
Instructions for installing MADlib and Postgres on Ubuntu 14.04

madlib-postgres-ubuntu

Instructions for installing MADlib and Postgres on Ubuntu 14.04

# Install Postgres 9.3, pl/r and dependencies for MADlib
sudo apt-get install -y cmake postgresql-9.3 postgresql-server-dev-9.3 postgresql-plpython-9.3 postgresql-9.3-plr libkrb5-dev postgresql-client postgresql-contrib

# grab madlib rpm
cd /home/gpadmin/tmp