Skip to content

Instantly share code, notes, and snippets.

View richieri's full-sized avatar

Ronaldo Richieri richieri

View GitHub Profile
rsync -aHAXxv --numeric-ids --progress -e "ssh -T -o Macs=umac-64-etm@openssh.com -o ControlMaster=no -o ControlPath=none -o Compression=no -o KexAlgorithms=ecdh-sha2-nistp256 -c aes128-ctr -o Compression=no -x" /LOCALFOLDER HOST:/FOLDER
@richieri
richieri / scrape_google_groups.py
Created February 21, 2018 14:02 — forked from punchagan/scrape_google_groups.py
A simple script to scrape a google group.
import json
from os.path import exists
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.common.exceptions import TimeoutException
class GoogleGroupsScraper(object):
""" A simple class to scrape a google group. """