I hereby claim:
- I am davidtavarez on github.
- I am dtavarez (https://keybase.io/dtavarez) on keybase.
- I have a public key ASD3W77OK4IUs7AP9_k0a9gNt6kUcUG_wMhNt_pLv2UGzQo
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| """Generate a dictionary for mobile WiFi router of Altice Dominicana | |
| We're going to create a file with all possible outcomes based on the | |
| suffix present in the SSID. | |
| """ | |
| import argparse | |
| import itertools |
I hereby claim:
To claim this, I am signing this object:
| git clone https://github.com/GrinPlusPlus/GrinPlusPlus | |
| cd GrinPlusPlus | |
| git checkout android-arm64 | |
| vcpkg install --overlay-triplets=vcpkg/custom_triplets --triplet arm64-android-static --debug mio && \ | |
| vcpkg install --overlay-triplets=vcpkg/custom_triplets --triplet arm64-android-static --debug libuuid && \ | |
| vcpkg install --overlay-triplets=vcpkg/custom_triplets --triplet arm64-android-static --debug fmt && \ | |
| vcpkg install --overlay-triplets=vcpkg/custom_triplets --triplet arm64-android-static --debug asio && \ | |
| vcpkg install --overlay-triplets=vcpkg/custom_triplets --triplet arm64-android-static --debug zlib && \ | |
| vcpkg install --overlay-triplets=vcpkg/custom_triplets --overlay-ports=vcpkg/custom_ports --triplet arm64-android-static --debug minizip && \ |
| #!/usr/bin/env bash | |
| curl -fsSL "https://zlib.net/zlib-1.2.11.tar.gz" | tar zxvf - | |
| cd zlib-1.2.11 | |
| ./configure --prefix=$PWD/install | |
| make -j$(nproc) | |
| make install | |
| cd .. | |
| #!/usr/bin/env python3 | |
| import argparse | |
| import hashlib | |
| import os | |
| import shutil | |
| import signal | |
| import subprocess | |
| import sys | |
| from pathlib import Path |