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
| <row> | |
| <select class="form-control" ng-model="currentDay" ng-options="d for d in dateOptions" ng-change="refreshAlarms()"></select> | |
| </row> |
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
| describe('sanity', function() { | |
| describe('index', function() { | |
| browser.get('/#/') | |
| var title = element(by.tagName('h1')) | |
| expect(title.getText()).toEqual("Sanity Test Check") | |
| }) | |
| }) |
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
| 'use strict'; | |
| var angular = require('angular') | |
| require('ng-grid') | |
| require('angular-bootstrap') | |
| require('bootstrap-tpl') | |
| require('ui-router') | |
| require('restangular') | |
| angular.module('app', [ |
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
| module.exports = angular.module('main', ['ui.router']) | |
| .config(function ($stateProvider, $urlRouterProvider) { | |
| $urlRouterProvider.otherwise('/') | |
| $stateProvider | |
| .state('root', { | |
| url: '/', | |
| templateUrl: 'views/main/home.html', | |
| controller: 'HomeCtrl', | |
| resolve: { |
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
| module.exports = function($scope, redacted, redacted) { | |
| $scope.redacted = redacted.data | |
| $scope.redacted = redacted.data | |
| } |
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
| "jquery": "jQuery", | |
| "ng-grid": { | |
| "depends": [ | |
| "angular", | |
| "jquery:jQuery" | |
| ] | |
| }, |
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
| { file: '/Users/gerred/dev/pw_threat_console/bower_components/angular/angular.js', | |
| info: | |
| { package_json: '/Users/gerred/dev/pw_threat_console/package.json', | |
| packageDir: '/Users/gerred/dev/pw_threat_console/', | |
| shim: { exports: 'angular', depends: undefined }, | |
| exposeGlobals: {}, | |
| browser: | |
| { jquery: './bower_components/jquery/dist/jquery.js', | |
| lodash: './bower_components/lodash/dist/lodash.js', | |
| angular: './bower_components/angular/angular.js', |
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
| ### Keybase proof | |
| I hereby claim: | |
| * I am gerred on github. | |
| * I am gerred (https://keybase.io/gerred) on keybase. | |
| * I have a public key whose fingerprint is 5816 134F DC84 C8A3 8A46 3F9C 7011 BD5F 80A2 9193 | |
| To claim this, I am signing this object: |
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
| function parseThrift(thriftEncodedData, callback) { | |
| var thrift = require('thrift'); | |
| var transport = new thrift.TBufferedTransport(thriftEncodedData); | |
| var protocol = new thrift.TBinaryProtocol(transport); | |
| var clientClass = require('./gen-nodejs/observation_types').Observation; | |
| var client = new clientClass(); | |
| client.read(protocol); | |
| callback(null, client); | |
| } |
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
| ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQD4jHxEJvqfnPM+1Tropn/J551X0HW7cVlGF2RyK/y5meRxrHG//AAdZfEt5fhRFu2JQx/CvlKkl30bYmJEOhOzHfZc+HWrfSxYURKLJd3su+3Llms0ZPkQiJQp15OLeFUvWEZRHNO1SVH/UbBRIea71FGV+PFA9kpOCdgjSBLaG2+hzQ08xcRN62ZElv3Wg51J8ccv5NtfIqiuekH1bEcJeBUxt2unToDcZ8twSyNpZTO3EclVfASFGABhv5C3f7nt8IrZY83+tcauH4byx+Cpy+OlYdVAs2OVT8QQ/yXSQXcW9enwfmL667XtLGFBzXYJ6VpLuLhT2g+4wGRlVLzh hello@gerred.com |