View multiple-result-nodes-bug.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View openeo-vito-binary-download.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View openeo-scale-range-resample-issue.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View here-jupyter.sh
#!/bin/bash | |
# Build tmux session name from current directory | |
SESSION_NAME=$(pwd) | |
# Strip non-alphanumeric characters | |
SESSION_NAME=${SESSION_NAME//[^a-zA-Z0-9]/} | |
# Only keep trailing part | |
SESSION_NAME=Jupyter-${SESSION_NAME: -20} | |
# Command to run inside tmux session |
View .block
license: mit | |
height: 400 | |
border: no |
View .block
license: mit | |
height: 500 | |
border: no |
View data07-big-with-cycle.js
sankeyDraw( | |
{ | |
'nodes': [ | |
{name: "a"}, | |
{name: "b"}, | |
{name: "c"}, | |
{name: "d"}, | |
{name: "e"}, | |
{name: "f"}, | |
{name: "g"}, |
View index.html
<!DOCTYPE html> | |
<html> | |
<head> | |
<script type="text/javascript" src="http://d3js.org/d3.v2.js"></script> | |
<script type="text/javascript" src="./sankey.js"></script> | |
<title>Sankey Diagram</title> | |
<style> |
View signal_catcher_context.py
import logging | |
import os | |
import signal | |
import time | |
log = logging.getLogger(__name__) | |
class SignalCatcher: |
View .block
license: mit | |
height: 800 | |
border: no |