Skip to content

Instantly share code, notes, and snippets.

View jreniel's full-sized avatar
👽

Jaime R Calzada jreniel

👽
View GitHub Profile
@jreniel
jreniel / multitasking.py
Created February 18, 2023 15:20 — forked from donkirkby/multitasking.py
Worker processes with mpi4py
#! /usr/bin/env python
import argparse
import csv
from mpi4py import MPI
import logging
import time
def parseOptions(comm_world):
parser = argparse.ArgumentParser(
@jreniel
jreniel / tmux_local_install.sh
Last active June 11, 2020 13:07 — forked from ryin/tmux_local_install.sh
bash script for installing tmux without root access
#!/bin/bash
# Script for installing tmux on systems where you don't have root access.
# tmux will be installed in $HOME/local/bin.
# It's assumed that wget and a C/C++ compiler are installed.
# exit on error
set -e
TMUX_VERSION=3.1b