Skip to content

Instantly share code, notes, and snippets.

View syntaxaire's full-sized avatar

syntaxaire

  • ion8
  • Ontario
  • 13:09 (UTC -04:00)
View GitHub Profile
@catleeball
catleeball / TwitchPlaysCoQ.go
Last active May 18, 2021 22:20
Twitch Plays Caves of Qud
// Go script to allow Twitch viewers to play Caves of Qud via Twitch chat.
//
// This is a really messy, hacky, bad script.
package main
import (
"fmt"
"regexp"
"strings"
@philpownall
philpownall / Hydro.py
Created December 20, 2016 17:35
Hydro.py Selenium Webdriver script to extract usage data and graphs from Hydro One
# -*- coding: utf-8 -*-
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import NoAlertPresentException
import unittest, time, re
class Hydro(unittest.TestCase):