- Retrieve TRANQ GUN and BLAST Rick & Morty
- Retrieve 2 vials (Blue & Yellow) + AMMONIA SALTS
- Place BLUE VIAL into HELMET and place on Rick
- Wait 60 seconds and then remove HELMET
- Reload with YELLOW VIAL and place on Morty
- Wait 60 seconds then remove HELMET
- Drag Rick & Morty to the TV COUCH
- Turn on INTERDIMENSIONAL CABLE
- Break the AMMONIA SALTS and wave under noses
- When Rick & Morty awake leave the room
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Disallow certain choices based on post_type and/or page template | |
*/ | |
add_filter('acf/prepare_field/key=field_5c6c913e0ea64', function(array $field) { | |
//unset($field['choices']['full-width-image-carousel']); | |
//unset($field['choices']['full-width-image']); | |
return $field; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# evil cowsay cd | |
cd_() { if [ "$((1 + RANDOM % 10))" = 3 ]; then _out="I'm sorry $(whoami), I can't do that for you."; $(if [ $(which cowsay) ]; then echo cowsay; else echo echo; fi) "$_out"; else cd; fi } | |
alias cd='cd_' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: networking-bug | |
recipe: pantheon | |
config: | |
framework: wordpress | |
site: networking-bug | |
id: fake-site-id |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Bounce2.h> | |
const int channel = 9; | |
const int LED = 14; | |
const int POT = 15; | |
const int DEBOUNCE_INTERVAL = 55; | |
int level; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# You want your prompt to warn you if you are in the directory tree of a production environment. | |
# Set the `LIVE_DIRS` array to the list of whatever directories should be considered production, | |
# and your prompt will contain a big, red "[PRODUCTION]" whenever you're in one of those directories, | |
# or a subdirectory thereof. | |
# Customize this variable | |
LIVE_DIRS=(/var/www/example.com /var/www/example2.com) | |
cwdEnvironment() { | |
local _live |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ./cluster/kube-up.sh | |
... Starting cluster using provider: vagrant | |
... calling verify-prereqs | |
... calling kube-up | |
Bringing machine 'master' up with 'virtualbox' provider... | |
Bringing machine 'node-1' up with 'virtualbox' provider... | |
==> master: Box 'kube-fedora23' could not be found. Attempting to find and install... | |
master: Box Provider: virtualbox | |
master: Box Version: >= 0 | |
==> master: Box file was not detected as metadata. Adding it directly... |
I hereby claim:
- I am acobster on github.
- I am acobster (https://keybase.io/acobster) on keybase.
- I have a public key ASCoxDMqIGdEVRgPACqiDJecZRkRXeyRy1oDKkVW2Bcz7go
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |