Skip to content

Instantly share code, notes, and snippets.

View geovanisouza92's full-sized avatar
🏠
Working from home

Geo geovanisouza92

🏠
Working from home
View GitHub Profile
This file has been truncated, but you can view the full file.
{"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.
{"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
@geovanisouza92
geovanisouza92 / flynn-etcd-c98ee139eaa74e6aad287a8d0788657a.log
Created March 26, 2015 21:18
/tmp/flynn-host-logs/flynn-etcd-c98ee139eaa74e6aad287a8d0788657a/flynn-etcd-c98ee139eaa74e6aad287a8d0788657a.log
{"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
@geovanisouza92
geovanisouza92 / .bowerrc
Last active August 29, 2015 14:14
Setup para app Angular com AppCache
{
"directory": "app/vendor"
}
<div class="chart-item-bg">
<div class="h4 text-bold">{{chartTitle}}</div>
<div dx-chart="{{chartOptions}}">
</div>
</div>
@geovanisouza92
geovanisouza92 / app.js
Last active August 29, 2015 14:14
Angular.js directive example 2
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,
},
@geovanisouza92
geovanisouza92 / app.js
Created January 27, 2015 13:06
Angular.js sample directive
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: '=',
angular.module('app')
.config(configFn)
.factory('AuthInterceptor', AuthInterceptor);
/* @ngInject */
function configFn($httpProvider) {
$httpProvider.interceptors.push('AuthInterceptor');
}
/* @ngInject */
@geovanisouza92
geovanisouza92 / rules.less
Created November 26, 2014 12:14
Rules to expand "html /deep/" and "::shadow" classes for Polymer/WebComponents
// Rules
.shadow(@parent, @sel, @ruleset) {
@rule: ~"@{parent}::shadow @{sel}";
@{rule} {
@ruleset();
}
}
@geovanisouza92
geovanisouza92 / .bashrc
Created October 31, 2014 13:30
Send push notifications from shell
#
# 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