Skip to content

Instantly share code, notes, and snippets.

View strund3r's full-sized avatar

Franzwagner Ternus strund3r

View GitHub Profile
Arctic Monkeys ███████████████░░ 768 plays
Foster the People ▎░░░░░░░░░░░░░░░░ 16 plays
All Time Low ▎░░░░░░░░░░░░░░░░ 15 plays
Paramore ▎░░░░░░░░░░░░░░░░ 15 plays
Alex Turner ▎░░░░░░░░░░░░░░░░ 14 plays
The Lonely Island ▏░░░░░░░░░░░░░░░░ 12 plays
Swim Deep ▏░░░░░░░░░░░░░░░░ 7 plays
twenty one pilots ▏░░░░░░░░░░░░░░░░ 7 plays
Ben Howard ░░░░░░░░░░░░░░░░░ 6 plays
The Black Keys ░░░░░░░░░░░░░░░░░ 6 plays
🔫 Counter-Strike 2 🕘 3127 hrs 47 mins
🎮 Test Drive Unlimited Solar Crown Playtest 🕘 5 hrs 38 mins
🚀 Rocket League 🕘 67 hrs 58 mins
🚓 Grand Theft Auto V 🕘 539 hrs 22 mins
🍳 PUBG: BATTLEGROUNDS 🕘 222 hrs 55 mins
Terraform 10 mins ███████▍░░░░░░░░░░░░░ 35.4%
JavaScript 10 mins ███████▍░░░░░░░░░░░░░ 35.3%
Python 4 mins ██▊░░░░░░░░░░░░░░░░░░ 13.2%
INI 2 mins █▉░░░░░░░░░░░░░░░░░░░ 9.3%
JSON 2 mins █▍░░░░░░░░░░░░░░░░░░░ 6.8%
@strund3r
strund3r / CS:GO config files
Last active August 14, 2023 17:58
CS:GO config files
.cfg
launch options
aurora json
@strund3r
strund3r / vault-secrets-the-simple-way.md
Created February 9, 2023 14:45 — forked from xuwang/vault-secrets-the-simple-way.md
Vault Secrets The Simple Way

Vault Secrets the Simple Way

This article introduces a simple way of working with Hashicorp Vault key-value secrets engine.

Prerequisites

You should have a running Hashicorp/Vault service and Vault command available.

Here is a quick way to install a Vault dev server.

#!/bin/bash
clear
RED='\033[0;31m'
BOLDRED='\033[1;31m'
GREEN='\033[0;32m'
BOLDGREEN='\033[1;32m'
YELLOW='\033[1;93m'
#BACKGROUND='\e[0;30;41m' # Black text
@strund3r
strund3r / lambda_sns_publish.go
Created March 31, 2022 21:18
AWS Lambda to publish an AWS Health event on an AWS SNS topic
package main
import (
"context"
"encoding/json"
"fmt"
"log"
"os"
"strings"
@strund3r
strund3r / csgo.ps1
Last active March 23, 2022 22:17
Start CSGO and Aurora
$Principal = New-Object Security.Principal.WindowsPrincipal([Security.Principal.WindowsIdentity]::GetCurrent())
# Add log color command to clipboard
Set-Clipboard -Value "log_color General FFD700FF; cl_showpos 1"
# Start CSGO
(New-Object -Com Shell.Application).Open("steam://rungameid/730")
Start-Sleep 10
@strund3r
strund3r / Jenkinsfile
Created September 21, 2019 18:39
Jenkins
pipeline {
agent any
options {
timestamps()
gitLabConnection('GitLab')
gitlabBuilds(builds: ['JUnit Test', 'SonarQube Analysis', 'Quality Gate'])
}
environment {
@strund3r
strund3r / k8s-decrypt-secret.sh
Created January 25, 2021 11:50
k8s shell functions
help-k8s-decrypt-secret() {
echo ""
echo "Usage"
echo " k8s-decrypt-secret [options] <secret> <namespace>"
echo ""
echo "Options:"
echo " <secret> kubernetes secret"
echo " <namespace> kubernetes namespace"
echo " -v verbose output (show kubectl command)"
echo " -h show this help"