Skip to content

Instantly share code, notes, and snippets.

View GFJHogue's full-sized avatar
🥽

Greg Hogue GFJHogue

🥽
View GitHub Profile
@GFJHogue
GFJHogue / iowa_results.py
Last active February 12, 2020 03:58
Iowa Caucus Results CSV generator script (Python 3)
# Gregory Hogue (@gfjhogue)
# Python 3
#
# Run this script as-is to generate iowa_results.csv from
# https://results.thecaucuses.org
import csv
import xml.etree.ElementTree as ET
import urllib.request as request
@GFJHogue
GFJHogue / WatchToPhoneDemo.swift
Last active August 29, 2015 14:18
Example Code: Sending Data From Apple Watch To iPhone
// WatchToPhoneDemo/WatchToPhoneDemo WatchKit Extension/InterfaceController.swift
class InterfaceController: WKInterfaceController {
var str: String = "Hello iPhone!"
@IBAction func button() {
let dict: Dictionary = ["message": str]
WKInterfaceController.openParentApplication(dict, reply: {(reply, error) -> Void in