This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import numpy as np | |
from time import perf_counter | |
from pandas import to_datetime, Series | |
from datetime import datetime | |
fromtimestamp = datetime.fromtimestamp | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cd $HOME | |
mkdir ~/bin | |
# Downloading stuff will take a while: | |
curl https://mirror.openshift.com/pub/openshift-v4/clients/oc/latest/linux/oc.tar.gz -Lo oc.tar.gz | |
curl https://mirror.openshift.com/pub/openshift-v4/clients/crc/latest/crc-linux-amd64.tar.xz -Lo crc-linux-amd64.tar.xz | |
tar xf oc.tar.gz |