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
package name | |
import () | |
var () | |
const() | |
func init() {} | |
type custom struct | |
type custom2 struct |
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
#!/bin/bash | |
cd ${HOME} | |
if [[ $unamestr == "Darwin" ]]; then | |
echo "installing... homebrew..." | |
if ! which brew > /dev/null; then | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
fi | |
echo "installing... git... go..." | |
brew install git go | |
fi |
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: "test", | |
children: [ | |
{ | |
name: "test", | |
children: [ | |
{ | |
name: "test", | |
children: [ | |
{ |
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
/** Make sure that you have orchesrtate added to your package.json inside of sail.js **/ | |
/** | |
* | |
* @This is a service script written for sailsjs.com framework for nodejs. | |
* @Author Tory Adams | |
**/ | |
var db = require("orchestrate")("your token"); |
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
rsync -azve ssh [email protected]:/path/to/folder/ ./ |