Skip to content

Instantly share code, notes, and snippets.

"""
Clones all of a GitHub organization's public repositories.
Includes a ``.repo-metadata.json`` in each repository with GitHub's
data on the repo.
"""
import itertools
import json
import os
import os.path
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@catherinedevlin
catherinedevlin / pyohio2015food.ipynb
Last active August 29, 2015 14:25
Proposed food budget for PyOhio 2015
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@catherinedevlin
catherinedevlin / buglist
Created July 25, 2014 23:08
potential bugs for pyohio
http://bugs.python.org/issue21987
http://bugs.python.org/issue1571878
http://bugs.python.org/issue12144
http://bugs.python.org/issue5877
http://bugs.python.org/issue8503
http://bugs.python.org/issue21705
http://bugs.python.org/issue1570255 (test exists but not packaged up right)
http://bugs.python.org/issue1185124 (test exists but not packaged up right)
http://bugs.python.org/issue3991
http://bugs.python.org/issue21560
@catherinedevlin
catherinedevlin / pyohio2014food.ipynb
Last active August 29, 2015 14:03
PyOhio 2014 food order
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@catherinedevlin
catherinedevlin / ddl-mongo-intro,ipynb
Created November 14, 2013 05:37
From Dayton Dynamic Languages Nov 13 meeting on MongodDB
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
@catherinedevlin
catherinedevlin / getvalue.py
Last active December 28, 2015 00:19
Simple IPython magic that gets a value; used to demo a problem
from IPython.core.magic import Magics, magics_class, line_magic
@magics_class
class GetValueMagics(Magics):
@line_magic
def getvalue(self, line=''):
var_name = line.split()[0]
return self.shell.user_ns[var_name]
def load_ipython_extension(ip):
@catherinedevlin
catherinedevlin / gist:6588378
Last active December 23, 2015 05:39
IPython Notebook: your new SQL Client (lightning talk from PostgresOpen 2013)
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
@catherinedevlin
catherinedevlin / Python_intro
Last active December 22, 2015 23:19
Python presentation at APCUG 2013 Regional conference: http://rleevanceapcug.wix.com/apcug-2013-regional
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{