Skip to content

Instantly share code, notes, and snippets.

View leriomaggio's full-sized avatar
🧙

Valerio Maggio leriomaggio

🧙
View GitHub Profile
@leriomaggio
leriomaggio / pycon7_conference_talk_rankings.md
Last active February 2, 2016 11:20
Community Voting Results and Rankings of Talks proposed at PyCon Sette: http://pycon.it #PyDataIt #DjangoVillage
import pandas as pd
import numpy as np
@leriomaggio
leriomaggio / pydata_program.md
Last active August 29, 2015 14:04
PyData 2014 Berlin Program

#PyData Berlin Program, 2014

Friday, July 25

Time Beginner/Intermediate Tutorial Intermediate/Advanced Tutorial
12:00-12:45 Registration Registration
-- -- -- -- -- -- -- -- -- --
12:45-14:05 Frank Kaufer (bakdata) Bryan Van De Ven (Continuum Analytics)
Python and Big Data Framework Interactive Plots using Bokeh
@leriomaggio
leriomaggio / django_admin_mpld3_view.py
Last active June 30, 2020 13:47
Interactive Matplotlib (Bar) Chart with mpld3 in Django Custom Admin View
#----------------------------------------------------------------------------------------
# model.py
#----------------------------------------------------------------------------------------
from django.db import models
from numpy.random import random_sample
class CustomModel(models.Model):
# Put your fields here
def get_data(self):