Skip to content

Instantly share code, notes, and snippets.

FROM ruby:2.5.5
WORKDIR /vbio
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash \
  && apt-get update && apt-get install -y nodejs && rm -rf /var/lib/apt/lists/* \
  && curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
  && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
  && apt-get update && apt-get install -y yarn && rm -rf /var/lib/apt/lists/*
@christopherlai
christopherlai / mix.exs
Created September 16, 2019 23:02
mix.exs from root of umbrella project
defmodule Projectx.MixProject do
use Mix.Project
def project do
[
apps_path: "apps",
version: "1.0.0",
start_permanent: Mix.env() == :prod,
default_release: :projectx,
deps: deps(),
@christopherlai
christopherlai / Dockerfile
Created September 16, 2019 22:57
Example Dockerfile for Elixir 1.9.1 umbrella project
FROM elixir:1.9.1-alpine as build
ENV MIX_ENV=prod
WORKDIR /build
RUN apk add --no-cache build-base nodejs yarn && \
mix local.hex --force && \
mix local.rebar --force
@christopherlai
christopherlai / get_snapshot.rb
Created May 25, 2017 17:32
Retrieving a Snapshot
get_snapshot.rb
# Ruby 2.4.1
# Require libraries
require 'rest-client'
require 'openssl'
# Setup variables
public_key = 'public key here'
secret_key = 'secret key here'
@christopherlai
christopherlai / create_snapshot.rb
Created May 18, 2017 17:38
Create Snapshot using API in Ruby
# Ruby 2.4.1
# Require libraries
require 'rest-client'
require 'openssl'
# Setup variables
public_key = 'public key here'
secret_key = 'secret key here'
digest = OpenSSL::Digest.new('sha256')
/*
These next two functions work together to lock down bbPress forums based on PMPro membership level.
Check that the current user has access to this forum. Be sure to update the $restricted_forums array based on your needs.
*/
function pmpro_check_forum()
{
global $current_user;
/*
@christopherlai
christopherlai / hack.sh
Created March 31, 2012 23:47 — forked from erikh/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh
#
@christopherlai
christopherlai / sdoc-all.rb
Created October 7, 2011 05:33 — forked from mrinterweb/sdoc-all.rb
sdoc all your installed gems
# with the help of the sdoc gem, this will generate the sdocs for all
# of your most recent gems.
# Caution! This will take a long time to run if you have a lot of gems installed.
# set an absolute path to the directory you would like your docs generated.
docs_path = "/Users/sean/tmp/docs/"
gems_output = `gem list --local`
gem_list = gems_output.gsub(/^([^ ]+).*\)/, '\1').split(/\n/)
latest_gem_dirs = gems_output.gsub(/^([^ ]+) \(([0-9\.]+).*\)/, '\1-\2').split(/\n/)
@christopherlai
christopherlai / gist:1257550
Created October 2, 2011 15:42
New Machine Setup Guide

New Machine Setup Guide

Pre–install

  1. De–authorize Apple ID from iTunes
  2. De–authorize Adobe CS Suite
  3. Backup user home folder to a external drive

Install

  1. Boot to a thumb drive with the most current Lion Install