Skip to content

Instantly share code, notes, and snippets.

View nictrix's full-sized avatar

Nick Willever nictrix

View GitHub Profile
@nictrix
nictrix / .vimrc
Created October 2, 2019 00:09
VIM Files
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
@nictrix
nictrix / liquidpromptrc
Created September 30, 2019 17:35
Liquidprompt Settings ~/.config/liquidpromptrc
####################################
# LIQUID PROMPT CONFIGURATION FILE #
####################################
# If you want to use different themes and features,
# you can load the corresponding files here:
#source ~/.config/liquidprompt/nojhan.theme
#LP_PS1_FILE=~/.config/liquidprompt/nojhan.ps1
#############

Keybase proof

I hereby claim:

  • I am nictrix on github.
  • I am nictrix (https://keybase.io/nictrix) on keybase.
  • I have a public key ASCdo6UOiTKF-d-SBp7vszn5K1arXfhv-cG-axtX6kL62go

To claim this, I am signing this object:

@nictrix
nictrix / README.md
Created July 20, 2016 20:26 — forked from nathanielks/README.md
Simple wrapper around terraform to manage multiple environments

This script will pull down an S3 remote configuration before running any terraform actions. Assumes the following structure:

main.tf
terraform.cfg
env/dev/vars
env/staging/vars
env/whatever/vars
env/whatever/somefile.tf
@nictrix
nictrix / create_selenium_test_cases_and_suite.rb
Last active June 17, 2021 16:46
hipchat_emoticons.to_slack
require 'csv'
require 'open-uri'
team_name = ARGV[0]
#source.csv instructions
#download from: https://www.hipchat.com/emoticons (you'll need to get the URLs manually)
#
#csv format (example file):
#allthethings,https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/allthethings-1414024836@2x.png
@nictrix
nictrix / gist:0958ee19bf1ecbdf81bd
Last active August 29, 2015 14:05
json load vs. parse
require 'json'
require 'benchmark'
json = '{
"title": "Example Schema",
"type": "object",
"properties": {
"first-name": {
"type": "string"
},