Tuesday, October 25, 2016

internet attack

http://map.norsecorp.com/#/

Thursday, October 13, 2016

javascript handle async call using callback

     //timeout needed because need to place loading spin animation before async call
                    $scope.loadProgramAreas("programAreas", function(data){
                        $scope.programAreas = data;
                        if ($scope.programAreas.length == 0) {


     $scope.loadProgramAreas = function (api, callback) {
                    $timeout(function () {
                        module.changeState($scope, _log);
                        try {
                            $scope.$digest();
                        } catch (exception) {
                            frame.con.info(exception);
                        }
                    }, 0);

                    $timeout(function () {
                        frame.con.info("before getinformation:");
                        cfaes_info.getInformation("", true, "api/cfaes_module/" + api, "", "", function (data) {
                            console.log("Get program areas:data returned");
                            console.log(data);
                            if (data == null) {
                                $scope.state = "noData";
                                callback(null);
                            } else {
                                callback(data);
                            }
                         });
                        try {
                            $scope.$digest();
                        } catch (exception) {
                            frame.con.info(exception);
                        }  
                    }, 1);
                };

Location.host

Check local host name

Friday, October 7, 2016

Jira

Apex - big broad, mutilple vertical slices
component - vita, element, mobile app
themes - natural groups together, narratives, doing the same thing
    narrative behavior
Labels - close to themes

Tuesday, October 4, 2016

Google pixel

ou: When will I know?
Honey P.: Don't worry, I will raise this issue up to our dedicated team so they will check for further option for you. You may contact our dedicated team at 1-800-Sprint1 (1-800-777-4681) for more details.

Saturday, October 1, 2016

fine postgres column information

select column_name, data_type, character_maximum_length
from INFORMATION_SCHEMA.COLUMNS where table_name = 'vw_othercreativework';