http://map.norsecorp.com/#/
Tuesday, October 25, 2016
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);
};
$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);
};
Tuesday, October 11, 2016
Windows 7 upgraded to windows 10 click on window can not bring to the front
Disable hardware graphic acceleration
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
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. |
Sunday, October 2, 2016
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';
from INFORMATION_SCHEMA.COLUMNS where table_name = 'vw_othercreativework';
Subscribe to:
Posts (Atom)