This file contains hidden or 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
| echo $METEOR_TOKEN > deployment_token.json | |
| echo $METEOR_SETTINGS > deployment_settings.json | |
| DEPLOY_HOSTNAME=galaxy.meteor.com METEOR_SESSION_FILE=deployment_token.json meteor deploy $METEOR_TARGET --settings deployment_settings.json |
This file contains hidden or 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
| Modal Markup: | |
| <div class="modal modal-fixed-header"> | |
| <div class="modal-header"> | |
| HEADER CONTENT | |
| </div> | |
| <div class="modal-content"> | |
| MAIN CONTENT | |
| </div> | |
| </div> |
This file contains hidden or 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
| Verifying that +natestrauser is my blockchain ID. https://onename.com/natestrauser |
This file contains hidden or 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
| #from hive console | |
| stop all miners on rig | |
| disable hashrate watchdog #don't want the last miner starting back up on it's own | |
| #from terminal | |
| ssh [email protected] #the local ip of the rig | |
| sudo apt-get install software-properties-common | |
| sudo add-apt-repository ppa:ubuntu-toolchain-r/test | |
| sudo apt-get update |
This file contains hidden or 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
| uploadImageCordova = function (callback, progressCallback, localPreviewCallback) { | |
| var fail = function (error) { | |
| callback(error); | |
| }; | |
| var cameraSuccess = function (imageURI) { | |
| if (_.isFunction(localPreviewCallback)) { | |
| window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function (fileSystem) { | |
| // console.log('image URI'); |
OlderNewer