Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View h2floh's full-sized avatar
☮️
Please give peace a chance

Florian Wagner h2floh

☮️
Please give peace a chance
  • Stuttgart, Germany
  • 13:09 (UTC +02:00)
View GitHub Profile
@h2floh
h2floh / new_pair.sh
Created October 20, 2023 13:41 — forked from Jim-Holmstroem/new_pair.sh
Create a second key-pair for SSH
ssh-keygen -t rsa -f .ssh/id_rsa
@h2floh
h2floh / install_k9s.sh
Last active October 19, 2023 13:18
Install k9s on codespace / from source
cd /workspaces
git clone https://github.com/derailed/k9s.git
cd k9s
make build && ./execs/k9s
@h2floh
h2floh / add_pipelines_environment.sh
Created August 30, 2021 04:10
Bash script showing how to leverage az login to call Azure DevOps REST endpoints
#!/bin/bash
## Demo script to show how to leverage Azure DevOps CLI Extension to call DevOps REST API directly
## without the need for PAT token
# configuration
YOUR_AZURE_DEV_OPS_ORG=''
YOUR_AZURE_DEV_OPS_PROJECT_NAME=''
# Reverse Engineered this part by looking into Azure DevOps CLI Extension
# https://github.com/Azure/azure-devops-cli-extension/blob/8cf32a41126b2b66f130843d4d16de19290052b9/azure-devops/azext_devops/devops_sdk/client.py#L71