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
// Compilo | |
cordova build --release android | |
// firmo | |
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore CordovaApp-release-unsigned.apk alias_name | |
//Optimizo | |
zipalign -v 4 CordovaApp-release-unsigned.apk xx-dev.apk |
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
// Kristoffer Dorph | |
function calcAge(dateString) { | |
var birthday = +new Date(dateString); | |
return~~ ((Date.now() - birthday) / (31557600000)); | |
} |
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
nx run-many --projects=api,frontend --target=serve --parallel |
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
npx nx g @nrwl/angular:ngrx calls --module=apps/<appname>/src/app/features/calls/calls.module.ts --defaults |
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
"entity": [ | |
{ | |
"archived": false, | |
"createdBy": "dotcms.org.1", | |
"creationDate": "2022-09-13T13:53:32.092Z", | |
"description": "my experiment description", | |
"id": "230fd8ef-b5b2-4a84-9aae-783919dddf56", | |
"lastModifiedBy": "dotcms.org.1", | |
"modDate": "2022-09-13T13:53:32.103Z", | |
"name": "my experiment", |