Skip to content

Instantly share code, notes, and snippets.

View damianavila's full-sized avatar

Damian Avila damianavila

View GitHub Profile
@damianavila
damianavila / Dockerfile
Created August 14, 2019 22:44
Test jupyter_logging extension
FROM jupyter/scipy-notebook:2ce7c06a61a1
# Add jupyter_logging
RUN conda install -c damianavila82 jupyter_logging --no-deps
# And config the extension with the proper keys
COPY jupyter_logging.json /opt/conda/etc/jupyter/jupyter_notebook_config.d/jupyter_logging.json
@damianavila
damianavila / data_science_con_python.ipynb
Created April 10, 2015 11:07
Talk about Python tools for Data Science (spanish)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@damianavila
damianavila / gist:ba1da8e71630a4c971fc
Created January 28, 2015 02:29
help reveal from cdn
ipython nbconvert test_slides.ipynb --to slides --post serve --reveal-prefix "http://cdn.jsdelivr.net/reveal.js/2.6.2"
@damianavila
damianavila / fixed_mathjax.tpl
Last active August 29, 2015 14:06
Temporary fix for mathjax problem with slides in the IPython 2.x series.
{%- macro mathjax() -%}
<!-- Load mathjax -->
<script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML"></script>
<!-- MathJax configuration -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
processEscapes: true,
@damianavila
damianavila / fixme.py
Last active August 29, 2015 14:03
more poster nikipy
# -*- coding: utf-8 -*-
#----------------------------------------------------------------------------
# Copyright (c) 2013 - Damián Avila
#
# Distributed under the terms of the Modified BSD License.
#
# A little snippet to fix @media print issue printing slides from IPython
#-----------------------------------------------------------------------------
@damianavila
damianavila / nikipy.ipynb
Last active August 29, 2015 14:03
A new bridge to share your content with the world: NikIPy.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@damianavila
damianavila / bokeh_template.py
Created March 18, 2014 23:39
Just a simple template to avoid starting with a blank page ;-)
"""A one-line description.
A longer description that spans multiple lines. Explain the purpose of the
file and provide a short list of the key classes/functions it contains. This
is the docstring shown when some does 'import foo;foo?' in IPython, so it
should be reasonably useful and informative.
"""
#-----------------------------------------------------------------------------
# Copyright (c) 2012 - 2014, Continuum Analytics, Inc. All rights reserved.
#
#!/usr/bin/env python
"""A script to generate and serve the slides from a ipython notebook
that auto updates the slides. It would be nice to include something like
this in IPython. Usage:
>>> python serve_slides.py presentation.ipynb
"""
import sys
#!/bin/bash
# This hook is run after a new virtualenv is activated.
# ~/.virtualenvs/postmkvirtualenv
libs=( PyQt4 sip.so )
python_version=python$(python -c "import sys; print (str(sys.version_info[0])+'.'+str(sys.version_info[1]))")
var=( $(which -a $python_version) )
get_python_lib_cmd="from distutils.sysconfig import get_python_lib; print (get_python_lib())"
@damianavila
damianavila / test_slides.ipynb
Last active December 21, 2015 18:09
Example ipynb to test LIVE reveal extension.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.