Skip to content

Instantly share code, notes, and snippets.

View willirath's full-sized avatar

Willi Rath willirath

View GitHub Profile
#!/usr/bin/env bash
#SBATCH --job-name=high_throughput
#SBATCH --ntasks=13 # number of tasks running at the same time
#SBATCH --cpus-per-task=1
#SBATCH --mem-per-cpu=12G
#SBATCH --time=1:00:00 # one hour
#SBATCH --partition=cluster
#SBATCH --output=high_throughput.out
#SBATCH --error=high_throughput.err
#SBATCH [email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@willirath
willirath / rotating_velocities_on_the_NEMO_grid.ipynb
Created March 14, 2023 07:47
Rotating velocity vectors on a NEMO grid
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@willirath
willirath / plot_cape_verde_turtle_trajs_on_a_map.ipynb
Last active November 30, 2022 15:15
Plot cape verde turtles on a map.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@willirath
willirath / xarray_zarr_http.ipynb
Last active July 11, 2024 19:00
Reading Zarr via pure HTTP
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@willirath
willirath / apt.txt
Last active March 8, 2022 08:31
Minimal C and Fortran course
gcc
gfortran
make
vim
@willirath
willirath / colocate_positions_xoak.ipynb
Created November 5, 2021 13:50
Colocation of lagrangian positions with Xoak
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@willirath
willirath / Dockerfile
Created November 4, 2021 08:53
glances_demo
FROM python:3.10-buster
RUN pip install glances
RUN mkdir -p /app
COPY glances_demo.py /app/glances_demo.py
ENTRYPOINT [ "python", "/app/glances_demo.py" ]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.