Skip to content
View TWinsnes's full-sized avatar

Block or report TWinsnes

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
TWinsnes/README.md

Hello! ๐Ÿ‘‹
I'm Tom Winsnes

Builder | DevOps Enthusiast | Automator | Teacher | Avid learner

Developer

LinkedIn LinkedIn

I enjoy building things and finding better ways of building things. For me, automation is the best way to not have to do the same thing over and over, so I try to automate myself out a job anywhere I go.

๐Ÿ“• Blog posts

Pinned Loading

  1. galaxy-role-pihole galaxy-role-pihole Public

    6 4

  2. servian/vault-k8s-secret-engine servian/vault-k8s-secret-engine Public archive

    A secret engine for Hashicorp Vault to provide dynamic / just in time credentials for Kubernetes

    Go 22 6

  3. servian/TechChallengeApp servian/TechChallengeApp Public

    Application for the Servian Tech Test

    Go 24 195

  4. teamhava/hava-ui-cli teamhava/hava-ui-cli Public

    Binary CLI for Hava.io SaaS platform

    Go 5

  5. Install latest Lego on Linux Install latest Lego on Linux
    1
    # downloads latest LEGO from github releases that matches your current CPU architecture and moves it to /usr/local/bin
    2
    LATEST=$(curl -i https://github.com/go-acme/lego/releases/latest | grep location: | cut -d '/' -f 8 | tr -d '\r'); ARCH=$(uname -m); case $ARCH in armv5*) ARCH="armv5";; armv6*) ARCH="armv6";; armv7*) ARCH="arm";; aarch64) ARCH="arm64";; x86) ARCH="386";; x86_64) ARCH="amd64";;  i686) ARCH="386";; i386) ARCH="386";; esac; curl -L https://github.com/go-acme/lego/releases/download/${LATEST}/lego_${LATEST}_linux_${ARCH}.tar.gz | tar -xz && sudo mv lego /usr/local/bin