Skip to content

Instantly share code, notes, and snippets.

@catherinedevlin
catherinedevlin / writers.ipynb
Created March 29, 2013 18:34
ipython-sql %%sql magic demonstration
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@catherinedevlin
catherinedevlin / SQL_Comparitor.ipynb
Created May 3, 2013 23:06
Class for IPython or IPython Notebook that compares query results across multiple database connections.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@catherinedevlin
catherinedevlin / video_count.ipynb
Last active December 17, 2015 16:09
Count of views of PyOhio 2012 videos at pyvideo.org
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@catherinedevlin
catherinedevlin / food_order_pyohio2013
Last active December 19, 2015 05:49
Food order for PyOhio 2013 (proposed)
{
"metadata": {
"name": "food_order_pyohio2013"
},
"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": [
{
@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 / 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 / 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 / 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 / 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