Enlaces sobre las distintas iniciativas para atraer teletrabajadores a una región. Bonilista publicada gracias al patrocinio de KSchool. Kudos a los amigos de Sifdi que me proporcionaron buena parte de la información.
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
#! /usr/bin/env python3 | |
import pandas as pd | |
import pycountry | |
from datetime import date, timedelta | |
from fbprophet import Prophet | |
from concurrent.futures import ProcessPoolExecutor | |
from .base import Series | |
Blog 2020/9/1
<- previous | index | next ->
updated 2025/4/2
They have this instructions for routers running dd-wrt, but I found myself unable to setup my desktop (NetworkManager) and iPhone manually.
It seems, as those options cannot be set in any GUI/wizard OpenVPN creator, therefore a .ovpn
configuration file is needed.
I've came up with this file. It works.
Just keep in mind they might roll-out any server without a prior notice, like they'd just done today (9.11.2019) with Rejkjavik node. Strange.
- choose your server (this list of servers) and edit
namecheap.ovpn
accordingly
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
// Simple HTTP proxy server written in Go. | |
package main | |
import ( | |
"context" | |
"flag" | |
"fmt" | |
"log" | |
"net/http" | |
"net/http/httputil" |
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
package main | |
import ( | |
"context" | |
"flag" | |
"fmt" | |
"log" | |
"net/http" | |
"os" | |
"os/signal" |
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
import hashlib as hasher | |
import datetime as date | |
# Define what a Snakecoin block is | |
class Block: | |
def __init__(self, index, timestamp, data, previous_hash): | |
self.index = index | |
self.timestamp = timestamp | |
self.data = data | |
self.previous_hash = previous_hash |
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
/* Client side, works in Chrome 55 and Firefox 52 without transpilation */ | |
//https://blogs.msdn.microsoft.com/typescript/2016/11/08/typescript-2-1-rc-better-inference-async-functions-and-more/ | |
async function fetchURLs() { | |
try { | |
// Promise.all() lets us coalesce multiple promises into a single super-promise | |
var data = await Promise.all([ | |
/* Alternatively store each in an array */ | |
// var [x, y, z] = await Promise.all([ | |
// parse results as json; fetch data response has several reader methods available: | |
//.arrayBuffer() |
NewerOlder