Skip to content

Instantly share code, notes, and snippets.

View jsmrcaga's full-sized avatar

Jo Colina jsmrcaga

View GitHub Profile
Verifying my Blockstack ID is secured with the address 12ZijDjYwb1us93s3JT8JMXKs2f8FBE1aa https://explorer.blockstack.org/address/12ZijDjYwb1us93s3JT8JMXKs2f8FBE1aa
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;
@jsmrcaga
jsmrcaga / cf_regions_colo.json
Created July 1, 2023 11:35
Cloudflare COLO region codes
{
"CGB": {
"city": "Cuiabá",
"country": "Brazil"
},
"COR": {
"city": "Córdoba",
"country": "Argentina"
},
"BTS": {
// 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);
});
}