Skip to content

Instantly share code, notes, and snippets.

View TheBigRoomXXL's full-sized avatar
⚗️
experimenting

TheBigRoomXXL TheBigRoomXXL

⚗️
experimenting
View GitHub Profile
@TheBigRoomXXL
TheBigRoomXXL / aws_assume.sh
Created February 18, 2025 08:29
Assume an AWS profile from SSO with a single command and autocomplete
assume () {
aws sso login --profile $1
eval "$(aws configure export-credentials --profile $1 --format env)"
}
_assume() {
COMPREPLY=()
current_word="${COMP_WORDS[COMP_CWORD]}"
aws_profiles=$(aws configure list-profiles)
@TheBigRoomXXL
TheBigRoomXXL / ps1.sh
Last active February 18, 2025 11:06
A portable script for a powerline like prompt
#!/usr/bin/env bash
# A portable script for a powerline like prompt
reset='\[\033[0m\]'
bg='\[\033[48;2;48;48;48m\]'
blue='\[\033[38;2;0;175;255m\]'
green='\[\033[38;2;95;215;0m\]'
grey='\[\033[38;2;88;88;88m\]'
greydark='\[\033[38;2;48;48;48m\]'
@MelchiSalins
MelchiSalins / http-rate-limit.go
Last active February 17, 2025 19:24
GoLang HTTP Client with Rate Limiting
package main
import (
"context"
"fmt"
"net/http"
"time"
"golang.org/x/time/rate"
)
@dsample
dsample / README.md
Last active March 27, 2025 12:55
ASCII art diagrams

ASCI art characters for creating diagrams

Characters:

Single line

  • ASCII code 191 = ┐ ( Box drawing character single line upper right corner )
  • ASCII code 192 = └ ( Box drawing character single line lower left corner )
  • ASCII code 193 = ┴ ( Box drawing character single line horizontal and up )
  • ASCII code 194 = ┬ ( Box drawing character single line horizontal down )
# get total requests by status code
awk '{print $9}' /var/log/nginx/access.log | sort | uniq -c | sort -rn
# get top requesters by IP
awk '{print $1}' /var/log/nginx/access.log | sort | uniq -c | sort -rn | head | awk -v OFS='\t' '{"host " $2 | getline ip; print $0, ip}'
# get top requesters by user agent
awk -F'"' '{print $6}' /var/log/nginx/access.log | sort | uniq -c | sort -rn | head
# get top requests by URL