Skip to content

Instantly share code, notes, and snippets.

View CallMeAreks's full-sized avatar
🍺

Alejandro González CallMeAreks

🍺
View GitHub Profile
(function(){
var pressKey = async function(keyCode) {
document.dispatchEvent(new KeyboardEvent('keydown',{'key':keyCode}));
await new Promise(r => setTimeout(r, 50));
document.dispatchEvent(new KeyboardEvent('keyup',{'key':keyCode}));
};
var play = async function(sequence, delay = 200, spaceDelay = 200) {
const dict = {
" " : () => new Promise(r => setTimeout(r, spaceDelay)),

Algo VPN Deployment Guide

1. Create or use your existing Ubuntu 16.04 installation

Pretty much.

2. Update APT

apt-add-repository -y ppa:ansible/ansible

apt-get update -y