Skip to content

Instantly share code, notes, and snippets.

View davidfischer's full-sized avatar

David Fischer davidfischer

  • Read the Docs
  • San Diego, CA
  • 11:27 (UTC -07:00)
View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
### Keybase proof
I hereby claim:
* I am davidfischer on github.
* I am davidfischer (https://keybase.io/davidfischer) on keybase.
* I have a public key whose fingerprint is 3010 78D6 3493 6CEB 7FCD F13B F0C9 B0AD A737 AB60
To claim this, I am signing this object:
@davidfischer
davidfischer / web-scrapers-toolkit.ipynb
Created October 24, 2014 13:55
This was a five minute talk on web scraping given by David Fischer at a San Diego Python meetup on October 23, 2014.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@davidfischer
davidfischer / python-cryptography.ipynb
Created November 15, 2014 22:48
A talk on the Python cryptography library (cryptography.io) given by @davidfischer at the San Diego Python Django Unconference on November 15, 2014
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@davidfischer
davidfischer / README.md
Last active August 29, 2015 14:16
Meetup Growth of San Diego Python

This graph shows the growth of San Diego Python since the group was rebooted in February 2012. Growth has been very steady and regular.

@davidfischer
davidfischer / README.md
Last active August 29, 2015 14:21
Beer Styles
  • International bittering units or IBU is a way of measuring the perceived bitterness of beer
  • Standard Reference Method or SRM is a system for measuring the color of beer
@davidfischer
davidfischer / README.txt
Created June 4, 2012 03:58
How Social is Your Code?
When one says "social coding" I ask "how social"? One measure of social-ness is the number of distinct collaborators.
The data is from the github.timeline dataset. The visualization uses D3 and is adapted from the Sunburst example.
Click http://bl.ocks.org/2866246 to view it in all its glory.
@davidfischer
davidfischer / README.md
Last active December 16, 2015 18:28
Ruby on Rails contributions

Rails contributions

Where does open source come from? This is a visualization of Ruby on Rails contributions from the second GitHub Data Challenge. If a contributor provided a location, it was geocoded (or at least attempted) into latitude and longitude so that it could be displayed on a map.

If you aren't viewing this on bl.ocks.org, click

@davidfischer
davidfischer / gitlogjson.py
Last active December 18, 2015 11:19
Converts git commits to JSON using pygit2
import json
import sys
from datetime import datetime
import pygit2
def main(repository):
repo = pygit2.Repository(repository)
@davidfischer
davidfischer / gitjson.py
Created June 14, 2013 02:58
Dump git repository objects to JSON with pygit2
"""
Writes all the tags and commits from a repository to JSON
"""
import base64
import json
import sys
from datetime import datetime
import pygit2