git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| // g++ -lstdc++ -Wno-write-strings fetch.cpp -o fetch | |
| #ifdef _WIN32 // Windows | |
| #include <winsock2.h> | |
| #include <ws2tcpip.h> | |
| #define MSG_NOSIGNAL 0 | |
| #else // Linux + Mac | |
| #include <sys/types.h> | |
| #include <sys/socket.h> | |
| #include <netinet/in.h> |
| #!/usr/bin/python | |
| #Python script that send your phone number a text as soon as Black Hat 2019 training goes live using Twilio | |
| #The script can be coupled with cronjob that runs every hour or whatever you may see fit | |
| from twilio.rest import Client | |
| import requests | |
| account_sid = '<your Twilio account SID>' | |
| auth_token = '<your Twilio authentication token>' | |
| client = Client(account_sid, auth_token) |