Skip to content

Instantly share code, notes, and snippets.

@aiisahik
aiisahik / pigflying
Created July 4, 2012 04:15 — forked from michellesun/pigflying
pigflying
what's up
jquery-1.7.2.min
<html>
<head>
<script src="{{url_for('static', filename='jquery-1.7.2.min.js')}}" type="text/javascript"></script>
<script src="{{url_for('static', filename='bootstrap.js')}}" type="text/javascript"></script>
<link type="text/css" rel="stylesheet" href="{{url_for('static', filename='bootstrap.css')}}" />
<link type="text/css" rel="stylesheet" href="{{url_for('static', filename='bootstrap-responsive.css')}}" />
<style>
.completed_list {
position: relative;
@aiisahik
aiisahik / load_notebook_from_s3.py
Last active December 14, 2018 17:33
Load python notebook from another python notebook, all hosted on s3 using s3contents
import json
import io, os, sys, types
import boto3
from IPython import get_ipython
import nbformat
from IPython.core.interactiveshell import InteractiveShell
S3_BUCKET_NAME = 'my-very-cool-bucket'
'''