Skip to content

Instantly share code, notes, and snippets.

@kknd22
kknd22 / 0_reuse_code.js
Created April 18, 2016 13:09
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@kknd22
kknd22 / Vagrantfile
Last active April 27, 2018 18:09 — forked from garethrees/Vagrantfile
Example Ansible Delegation
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = '2'
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = 'centos6'
config.vm.box_url = 'http://developer.nrel.gov/downloads/vagrant-boxes/CentOS-6.4-x86_64-v20130731.box'
config.vm.boot_timeout = 60