Skip to content

Instantly share code, notes, and snippets.

View mav8557's full-sized avatar

Michael mav8557

View GitHub Profile
@mav8557
mav8557 / Installing GNU Chess.md
Last active December 7, 2020 01:44
A Guide on How to install GNU Chess, for a Technical Writing course.

How to Install GNU Chess

Also applies to most GNU Software

Overview

This guide details how to install GNU Chess, a small, simple, and occasionally insecure and open source chess program.

Installing GNU software, including GNU Chess, only takes a few steps.

  1. Download the software from the GNU FTP server.
@mav8557
mav8557 / InstaScraper.py
Created July 5, 2020 17:02
A simple, not robust, but mostly effective way to scrape the account on a photo sharing site. Based on Selenium, GeckoDriver, and Python 3.8+
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.common.exceptions import StaleElementReferenceException, NoSuchElementException
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from typing import List, Set
from classnames import * # class names of elements of interest on the page. Definitely subject to change.
from time import sleep
from pprint import pprint
from wget import download