task name {
String in
command {
echo '${in}'
}
output {
String out = read_string(stdout())
# http://flask.pocoo.org/snippets/88/ | |
import os, sqlite3 | |
from cPickle import loads, dumps | |
from time import sleep | |
try: | |
from thread import get_ident | |
except ImportError: | |
from dummy_thread import get_ident |
This page is a curated collection of Jupyter/IPython notebooks that are notable for some reason. Feel free to add new content here, but please try to only include links to notebooks that include interesting visual or technical content; this should not simply be a dump of a Google search on every ipynb file out there.
Important contribution instructions: If you add new content, please ensure that for any notebook you link to, the link is to the rendered version using nbviewer, rather than the raw file. Simply paste the notebook URL in the nbviewer box and copy the resulting URL of the rendered version. This will make it much easier for visitors to be able to immediately access the new content.
Note that Matt Davis has conveniently written a set of bookmarklets and extensions to make it a one-click affair to load a Notebook URL into your browser of choice, directly opening into nbviewer.
import numpy | |
import Gnuplot | |
def rainfall_intensity_t10(t): | |
return 11.23 * (t**(-0.713)) | |
def rainfall_intensity_t50(t): | |
return 18.06 * (t**(-0.713)) | |
g = Gnuplot.Gnuplot() |
Simply put, destructuring in Clojure is a way extract values from a datastructure and bind them to symbols, without having to explicitly traverse the datstructure. It allows for elegant and concise Clojure code.
import strformat | |
import tables | |
# A small program to make using 256 colors in Nim less painful. | |
# Original ZSH version from: | |
# P.C. Shyamshankar <[email protected]> | |
# Copied from https://github.com/sykora/etc/blob/master/zsh/functions/spectrum/ | |
# Nim rewrite by Laszlo Szathmary <[email protected]> | |
# thanks to narimiran and kickeroo for making the code more idiomatic Nim code |
import pandas as pd
import numpy as np
from tabulate import tabulate
df = pd.DataFrame(np.random.random((4,3)), columns=['A','B','C'])
print("foo")
return(tabulate(df, headers="keys", tablefmt="orgtbl"))
curl --header 'Authorization: token INSERTACCESSTOKENHERE' \ | |
--header 'Accept: application/vnd.github.v3.raw' \ | |
--remote-name \ | |
--location https://api.github.com/repos/owner/repo/contents/path | |
# Example... | |
TOKEN="INSERTACCESSTOKENHERE" | |
OWNER="BBC-News" | |
REPO="responsive-news" |
p = subprocess.Popen(shlex.split(cmd), stdout=subprocess.PIPE) | |
# Grab stdout line by line as it becomes available. This will loop until | |
# p terminates. | |
while p.poll() is None: | |
l = p.stdout.readline() # This blocks until it receives a newline. | |
print l | |
# When the subprocess terminates there might be unconsumed output | |
# that still needs to be processed. | |
print p.stdout.read() |