Skip to content

Instantly share code, notes, and snippets.

View fifitrixabelle's full-sized avatar
💭
🦄

Felix Hawkins fifitrixabelle

💭
🦄
View GitHub Profile
➜ ~ jx create cluster minikube
? memory (MB) 4096
? cpu (cores) 3
? disk-size (MB) 150GB
? Select driver: kvm2
Installing kvm2
We cannot yet automate the installation of KVM with KVM2 driver - can you install this manually please?
Please see: https://www.linux-kvm.org/page/Downloads and https://github.com/kubernetes/minikube/blob/master/docs/drivers.md#kvm2-dri
ver
Creating Minikube cluster...
# This file has been auto-generated by i3-config-wizard(1).
# g
# It will not be overwritten, so edit it as you like.
#
# Should you change your keyboard layout somewhen, delete
# this file and re-run i3-config-wizard(1).
#
# i3 config file (v4)
#
@fifitrixabelle
fifitrixabelle / 0_reuse_code.js
Created October 24, 2013 16:34
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
@fifitrixabelle
fifitrixabelle / new_gist_file
Created June 27, 2013 10:48
lua debug output to file
local out = assert(io.open('output', "wa"))
out:write( table.concat( {http_status, upstream, http_path, matched_group, variant}, ','), "\n")
assert(out:close())
@fifitrixabelle
fifitrixabelle / new_gist_file
Created June 18, 2013 09:04
Autovivify hash
hash = Hash.new{ |h,k| h[k] = Hash.new(&h.default_proc) }