Skip to content

Instantly share code, notes, and snippets.

@kriskova
kriskova / codeship-elixir.sh
Created November 24, 2016 21:49 — forked from paulgoetze/codeship-elixir.sh
Codeship Elixir/Phoenix test setup
#!/bin/bash
# Erlang
ERLANG_VERSION=${ERLANG_VERSION:-19.0}
ERLANG_CACHED_DOWNLOAD="${HOME}/cache/OTP-${ERLANG_VERSION}.tar.gz"
ERLANG_DIR=${ERLANG_DIR:="$HOME/erlang"}
# Elixir
ELIXIR_VERSION=${ELIXIR_VERSION:-1.3.1}
ELIXIR_CACHED_DOWNLOAD="${HOME}/cache/elixir-v${ELIXIR_VERSION}.zip"
@kriskova
kriskova / brew_install_macvim.md
Created March 12, 2018 15:21 — forked from srpouyet/brew_install_macvim.md
How to `brew install` Vim or Macvim with the Ruby version in the current PATH (set by chruby for example)

brew install with the option --env=std so the Ruby in the current PATH will be used while compiling (mac)vim.

brew install --env=std vim --with-custom-ruby  --with-override-system-vi --with-lua --with-luajit --with-mzscheme --with-tcl
brew install --env=std macvim --with-lua --with-luajit --with-python3 --HEAD
@kriskova
kriskova / multiple_ssh_setting.md
Created June 19, 2018 19:29 — forked from jexchan/multiple_ssh_setting.md
Multiple SSH keys for different github accounts

Multiple SSH Keys settings for different github account

create different public key

create different ssh key according the article Mac Set-Up Git

$ ssh-keygen -t rsa -C "your_email@youremail.com"