This file contains hidden or 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
<!DOCTYPE html> | |
<html><head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
<title>Phoenix in Kubernetes</title> | |
<style> | |
body { | |
margin:0; | |
padding:0; | |
background-color:#000000; | |
} |
This file contains hidden or 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 | |
# Notes: The repository name could be a variable and the script containerized | |
# create/update a local copy of the repo | |
if [ ! -d dbk-infra.git ] ; then | |
git clone --bare git@github.com:deBijenkorf/dbk-infra.git | |
else | |
cd dbk-infra.git | |
git fetch git@github.com:deBijenkorf/dbk-infra.git |
This file contains hidden or 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/env python | |
import pyActigraphy | |
from os import listdir | |
from os.path import isfile, join | |
import argparse | |
from pathlib import Path | |
parser = argparse.ArgumentParser( |