Skip to content

Instantly share code, notes, and snippets.

View sjpfenninger's full-sized avatar

Stefan Pfenninger sjpfenninger

View GitHub Profile
@sjpfenninger
sjpfenninger / tmux.md
Last active August 29, 2015 14:16 — forked from andreyvit/tmux.md

tmux cheat sheet

(C-x means ctrl+x, M-x means alt+x)

Prefix key

The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:

remap prefix to Control + a

@sjpfenninger
sjpfenninger / pypsa_plotly.py
Last active April 12, 2019 13:16 — forked from nworbmot/pypsa_plotly.py
Minimal example of plotly working with PyPSA - using Mapbox
mapbox_access_token = 'PASTE_YOUR_TOKEN_HERE'
import plotly.offline as py
from plotly.graph_objs import *
import plotly.graph_objs as go
import pypsa
py.init_notebook_mode(connected=True)
%matplotlib inline
# extracted from http//www.naturalearthdata.com/download/110m/cultural/ne_110m_admin_0_countries.zip
# under public domain terms
country_bounding_boxes = {
'AF': ('Afghanistan', (60.5284298033, 29.318572496, 75.1580277851, 38.4862816432)),
'AO': ('Angola', (11.6400960629, -17.9306364885, 24.0799052263, -4.43802336998)),
'AL': ('Albania', (19.3044861183, 39.624997667, 21.0200403175, 42.6882473822)),
'AE': ('United Arab Emirates', (51.5795186705, 22.4969475367, 56.3968473651, 26.055464179)),
'AR': ('Argentina', (-73.4154357571, -55.25, -53.628348965, -21.8323104794)),
'AM': ('Armenia', (43.5827458026, 38.7412014837, 46.5057198423, 41.2481285671)),
@sjpfenninger
sjpfenninger / load_jupyter.sh
Last active August 7, 2019 06:50 — forked from brynpickering/jupyter_job.sh
Load Jupyter lab on a ETH euler compute node
#!/bin/bash
usage="$(basename "$0") [-h] [-p W R] -- program to run jupyter lab on a compute node, for remote access
where:
-h show this help text
-p set the tunnelling port (default = 8889)
-W set the runtime, in minutes (default = 960)
-R set the memory allocation (default = 80G)"
set -e