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
consol.log('hello world'); |
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
{ | |
"id": 12345, | |
"name": "International Beer Company", | |
"status": 1, // Incomplete, Approved, Disabled, Rejected | |
"images": { | |
"banner": { | |
"url": "....", | |
"w": 600, | |
"h": 200 | |
}, |
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
var url; | |
var app_protocol = "YOUR_APP_PROTOCOL_HERE:/" | |
var app_path = window.location.pathname | |
if (/Android/i.test(navigator.userAgent)) { | |
url = "ANDROID_APP_URL"; | |
} | |
if (/iPhone/i.test(navigator.userAgent)) { | |
url = "IPHONE_APP_URL"; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# BOOTSTRAP COMMANDS | |
alias kb="knife bootstrap" | |
# alias k="knife bootstrap windows ssh FQDN | |
# alias k="knife bootstrap windows winrm FQDN | |
# CLIENT COMMANDS | |
alias kbdc="knife client bulk delete" | |
alias kcc="knife client create --editor /usr/bin/sublime" | |
alias kdc="knife client delete" | |
alias kec="knife client edit" |
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
# This is the default .slate file. | |
# If no ~/.slate file exists this is the file that will be used. | |
config defaultToCurrentScreen true | |
config nudgePercentOf screenSize | |
config resizePercentOf screenSize | |
# Resize Bindings | |
bind right:ctrl resize +5% +0 | |
bind left:ctrl resize -5% +0 |