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
#B1: Cai nodejs | |
#B2: Cai CLI 365:npm i -g @pnp/cli-microsoft365 | |
#B3: Regis AppID and Login | |
# Run cmd:powershell -ExecutionPolicy Bypass -File .\export-flows.ps1 | |
# Neu chua login hoac token expired: m365 logout -> m365 login -> m365 status --output json | ConvertFrom-Json | |
# File code:export-flows.ps1; File flow: flows.txt ([link flow details]_FlowName:[Name]) | |
# Doc danh sach Flow URL tu file flows.txt |
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
// Auto update column created_at | |
create trigger trg_myTable_update on myTable for update as | |
begin | |
update myTable | |
set updatedAt = CURRENT_TIMESTAMP | |
end | |
ALTER TABLE myTable |
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 replaceTextSpecial(text){return text.replace(/&/g, "&").replace(/>/g, ">").replace(/</g, "<").replace(/"/g, """);} |
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
{"version":1,"resource":"file:///c%3A/Users/Admin/Downloads/Compressed/Microsoft.PowerApps/apps/13768819799650473801/13768819799650473801.json","entries":[{"id":"euj9.json","timestamp":1688662077937},{"id":"yYlm.json","timestamp":1688662263499}]} |
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
<!-- json --> | |
<dependency> | |
<groupId>com.fasterxml.jackson.core</groupId> | |
<artifactId>jackson-core</artifactId> | |
<version>2.9.6</version> | |
</dependency> | |
<dependency> | |
<groupId>com.fasterxml.jackson.core</groupId> | |
<artifactId>jackson-annotations</artifactId> |