Skip to content

Instantly share code, notes, and snippets.

View zaphodikus's full-sized avatar

Conrad Braam zaphodikus

View GitHub Profile
@zaphodikus
zaphodikus / main.py
Created January 17, 2021 17:27
Steam screenshot scrollable page with all images python
"""
This script uses a simplified version of the one here:
https://snipt.net/restrada/python-selenium-workaround-for-full-page-screenshot-using-chromedriver-2x/
It contains the *crucial* correction added in the comments by Jason Coutu.
"""
# system modules
import sys
from selenium import webdriver
from selenium.webdriver.common.by import By
@zaphodikus
zaphodikus / esp8266_hotspot
Created January 21, 2020 21:38
a make tutorial code dump
// https://www.instructables.com/id/Programming-a-HTTP-Server-on-ESP-8266-12E/
#include <ESP8266WiFi.h>
const short int BUILTIN_LED1 = 2; //GPIO2
const short int BUILTIN_LED2 = 16;//GPIO16
#define LED_PIN BUILTIN_LED2
WiFiServer server(80); //Initialize the server on Port 80
void setup() {