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
Verifying my Blockstack ID is secured with the address 12ZijDjYwb1us93s3JT8JMXKs2f8FBE1aa https://explorer.blockstack.org/address/12ZijDjYwb1us93s3JT8JMXKs2f8FBE1aa |
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
server { | |
listen 80; | |
server_name pgw.bottomatik.com; | |
rewrite ^ https://$server_name$request_uri? permanent; | |
} | |
server { | |
gzip on; | |
gzip_http_version 1.0; | |
gzip_min_length 256; |
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
{ | |
"CGB": { | |
"city": "Cuiabá", | |
"country": "Brazil" | |
}, | |
"COR": { | |
"city": "Córdoba", | |
"country": "Argentina" | |
}, | |
"BTS": { |
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
// Tested on node 18 | |
// The result is sequential | |
function rand_promise(i) { | |
return new Promise((r) => { | |
const timeout = Math.random() * 1000; | |
setTimeout(() => r(i), timeout); | |
}); | |
} |
OlderNewer