Skip to content

Instantly share code, notes, and snippets.

View joereddington's full-sized avatar

Joe Reddington joereddington

View GitHub Profile
@joereddington
joereddington / index.html
Last active February 1, 2021 08:04 — forked from CodeMyUI/index.html
Responsive Comic Book Layout
<html>
<!-- this might be useful https://codemyui.com/hand-drawn-border-buttons-css/ -->
<head>
<link rel="stylesheet" type="text/css" href="style.css" media="screen"/><!-- could be "print"-->
</head>
<body>
<img src="test.png" class="panel">
<div class="panel">
<img src="test.png">
<p class="text top-left">Suddenly...</p>
@joereddington
joereddington / export_repo_issues_to_csv.py
Created February 10, 2017 14:46 — forked from unbracketed/export_repo_issues_to_csv.py
Export Issues from Github repo to CSV (API v3)
"""
Exports Issues from a specified repository to a CSV file
Uses basic authentication (Github username + password) to retrieve Issues
from a repository that username has access to. Supports Github API v3.
"""
import csv
import requests
@joereddington
joereddington / tweet_dumper.py
Created October 3, 2015 11:47 — forked from yanofsky/LICENSE
A script to download all of a user's tweets into a csv
#!/usr/bin/env python
# encoding: utf-8
import tweepy #https://github.com/tweepy/tweepy
import csv
#Twitter API credentials
consumer_key = ""
consumer_secret = ""
access_key = ""