This file has been truncated, but you can view the full file.
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
{"s":3,"t":1427405335158,"m":"t=2015-03-26T21:28:55+0000 lvl=info msg=\"registering RPC server\" app=containerinit fn=containerInitApp\nt=2015-03-26T21:28:55+0000 lvl=info msg=\"getting stdout pipe\" app=containerinit fn=containerInitApp\nt=2015-03-26T21:28:55+0000 lvl=info msg=\"getting stderr pipe\" app=containerinit fn=containerInitApp\nt=2015-03-26T21:28:55+0000 lvl=info msg=\"waiting to be resumed\" app=containerinit fn=containerInitApp\nt=2015-03-26T21:28:55+0000 lvl=info msg=\"starting RPC server\" app=containerinit fn=runRPCServer\nt=2015-03-26T21:28:55+0000 lvl=info msg=\"starting to stream state\" app=containerinit fn=StreamState\nt=2015-03-26T21:28:55+0000 lvl=info msg=\"sent initial state\" app=containerinit fn=StreamState\nt=2015-03-26T21:28:55+0000 lvl=info msg=\"waiting for state changes\" app=containerinit fn=StreamState\n"} | |
{"s":3,"t":1427405335159,"m":"t=2015-03-26T21:28:55+0000 lvl=info msg=resuming app=containerinit fn=containerInitApp\n"} | |
{"s":3,"t":1427405335159,"m":"t=2015-03-26T21:28:5 |
This file has been truncated, but you can view the full file.
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
{"s":3,"t":1427405331331,"m":"t=2015-03-26T21:28:51+0000 lvl=info msg=\"registering RPC server\" app=containerinit fn=containerInitApp\nt=2015-03-26T21:28:51+0000 lvl=info msg=\"getting stdout pipe\" app=containerinit fn=containerInitApp\nt=2015-03-26T21:28:51+0000 lvl=info msg=\"getting stderr pipe\" app=containerinit fn=containerInitApp\nt=2015-03-26T21:28:51+0000 lvl=info msg=\"waiting to be resumed\" app=containerinit fn=containerInitApp\nt=2015-03-26T21:28:51+0000 lvl=info msg=\"starting RPC server\" app=containerinit fn=runRPCServer\nt=2015-03-26T21:28:51+0000 lvl=info msg=\"starting to stream state\" app=containerinit fn=StreamState\nt=2015-03-26T21:28:51+0000 lvl=info msg=\"sent initial state\" app=containerinit fn=StreamState\nt=2015-03-26T21:28:51+0000 lvl=info msg=\"waiting for state changes\" app=containerinit fn=StreamState\n"} | |
{"s":3,"t":1427405331461,"m":"t=2015-03-26T21:28:51+0000 lvl=info msg=resuming app=containerinit fn=containerInitApp\nt=2015-03-26T21:28:51+0000 lvl=info msg=\"setting up |
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
{"s":3,"t":1427401850553,"m":"t=2015-03-26T20:30:50+0000 lvl=info msg=\"registering RPC server\" app=containerinit fn=containerInitApp\nt=2015-03-26T20:30:50+0000 lvl=info msg=\"getting stdout pipe\" app=containerinit fn=containerInitApp\nt=2015-03-26T20:30:50+0000 lvl=info msg=\"getting stderr pipe\" app=containerinit fn=containerInitApp\nt=2015-03-26T20:30:50+0000 lvl=info msg=\"waiting to be resumed\" app=containerinit fn=containerInitApp\nt=2015-03-26T20:30:50+0000 lvl=info msg=\"starting RPC server\" app=containerinit fn=runRPCServer\nt=2015-03-26T20:30:50+0000 lvl=info msg=\"starting to stream state\" app=containerinit fn=StreamState\nt=2015-03-26T20:30:50+0000 lvl=info msg=\"sent initial state\" app=containerinit fn=StreamState\nt=2015-03-26T20:30:50+0000 lvl=info msg=\"waiting for state changes\" app=containerinit fn=StreamState\n"} | |
{"s":3,"t":1427401850555,"m":"t=2015-03-26T20:30:50+0000 lvl=info msg=resuming app=containerinit fn=containerInitApp\nt=2015-03-26T20:30:50+0000 lvl=info msg=\"setting up |
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
{ | |
"directory": "app/vendor" | |
} |
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
<div class="chart-item-bg"> | |
<div class="h4 text-bold">{{chartTitle}}</div> | |
<div dx-chart="{{chartOptions}}"> | |
</div> | |
</div> |
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
angular.module('myApp') | |
.factory('ApiClient', ApiClient) | |
.factory('IndividualResource', IndividualResource) | |
.directive('evolutionGraph', evolutionGraph); | |
/* @ngInject */ | |
function ApiClient($http) { // Used to pipe request to Api host, shared with other angular services | |
var service = { | |
get: getFn, | |
}, |
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
angular.module('myApp') | |
.directive('orderRequirement', orderRequirement); | |
/* @ngInject */ | |
function orderRequirement() { | |
var directive = { | |
restrict: 'EA', // Restrict to [E]lement or [A]ttribute | |
templateUrl: 'partials/requirements-order-requirement.html', // HTML template | |
scope: { // Isolated scope, defining the tag attributes that binds to scope variables | |
orders: '=', |
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
angular.module('app') | |
.config(configFn) | |
.factory('AuthInterceptor', AuthInterceptor); | |
/* @ngInject */ | |
function configFn($httpProvider) { | |
$httpProvider.interceptors.push('AuthInterceptor'); | |
} | |
/* @ngInject */ |
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
// Rules | |
.shadow(@parent, @sel, @ruleset) { | |
@rule: ~"@{parent}::shadow @{sel}"; | |
@{rule} { | |
@ruleset(); | |
} | |
} |
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
# | |
# Send push notifications from shell, like this: | |
# | |
# $ push Your message here | |
# $ echo 'Lorem ipsum or another awesome command' | push | |
# $ docker pull image/tag && push 'Image image/tag download done' | |
# | |
# Append the following lines in your ~/.bashrc and set your PUSHBULLET_APIKEY | |
# To update current bash session, run | |
# $ . ~/.bashrc |