A brief description of what this project does and who it's for
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
{ | |
"name" : "Signifly theme", | |
"elements" : [ { | |
"tag" : "Element", | |
"shape" : "RoundedBox" | |
}, { | |
"tag" : "Software System", | |
"background" : "#ffffff", | |
"stroke" : "#521F0F", | |
"color" : "#521F0F" |
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/env bash | |
brew install minikube | |
brew unlink minikube | |
brew link minikube | |
minikube start | |
kubectl create namespace argocd | |
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml |
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
## Place the script in th folder with the healthkit export and make sure the export is named eksport.xml | |
# Rum the script in place and wait for the csv to be generated. | |
from xml.etree import ElementTree | |
import os | |
import csv | |
tree = ElementTree.parse("eksport.xml") | |
# Glucose measurements |
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/env bash | |
# | |
# Bootstrap script for setting up a new OSX machine | |
# | |
# This should be idempotent so it can be run multiple times. | |
# | |
# Some apps don't have a cask and so still need to be installed by hand. These | |
# include: | |
# | |
# These will be specified en the last echo |