Skip to content

Instantly share code, notes, and snippets.

View emilhorlyck's full-sized avatar

Emil Hørlyck emilhorlyck

View GitHub Profile
@emilhorlyck
emilhorlyck / clean_install.sh
Last active January 31, 2023 12:48
Script to clean install all relevant software on a new mac.
#!/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
@emilhorlyck
emilhorlyck / HealtKit_BloodGlucose_Event_Converter.py
Last active September 7, 2020 09:28
Python script to extract blood gluscose values to CSV from an Apple healthkit data export.
## 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
@emilhorlyck
emilhorlyck / Base-Readme.md
Last active November 8, 2022 14:11
Base-Readme

Logo

Project Title

A brief description of what this project does and who it's for

Tech Stack

@emilhorlyck
emilhorlyck / start_dev_cluster.sh
Last active December 26, 2022 13:28
Start Local dev cluster on Mac
#!/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
@emilhorlyck
emilhorlyck / signifyTheme.json
Last active January 17, 2023 22:49
Signifly - dark Stroke Structurizr theme
{
"name" : "Signifly theme",
"elements" : [ {
"tag" : "Element",
"shape" : "RoundedBox"
}, {
"tag" : "Software System",
"background" : "#ffffff",
"stroke" : "#521F0F",
"color" : "#521F0F"