| Site | ||
|---|---|---|
| https://www.orcaslicer.com/ (New Site) https://github.com/SoftFever/OrcaSlicer/releases (GitHub Repo) |
OrcaSlicer | great for Bambu Lab & others, arc fitting, ironing, Klipper suppor |
| https://www.prusa3d.com/ | PrusaSlicer | multi-material, MMU support, customizable, supports most printers |
A comprehensive bash script that automatically identifies root causes of Kubernetes deployment failures. This script can be sourced from anywhere and provides detailed analysis of deployment issues.
- Automatic Health Detection: Automatically detects if deployments are healthy or have issues
- Comprehensive Analysis: Covers deployments, pods, containers, networking, storage, and configuration
- Real-time Investigation: Fetches events, logs, and status information to identify root causes
- Color-coded Output: Easy-to-read colored output with timestamps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Define output files | |
| BREW_FILE="brew_list.txt" | |
| CASK_FILE="cask_list.txt" | |
| APP_FILE="app_list.txt" | |
| VSCODE_FILE="vscode_extensions.txt" | |
| # Backup Homebrew packages | |
| echo "Collecting Homebrew packages..." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| package main | |
| import "fmt" | |
| func main() { | |
| fmt.Println("Hello, World!") | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| awk 'NF {sub(/\r/, ""); printf "%s\\n",$0;}' CERT.pem | pbcopy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| find . -name 'FILE-*.yaml' -exec rm {} \; | |
| find . -name 'prod-*' -type d -exec rm -rf {} \; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Set project ID | |
| project_id="qwilt-playground" | |
| # Get all clusters in the project | |
| clusters=$(gcloud container clusters list --project=$project_id --format="yaml(name)") | |
| # Loop through each cluster | |
| for cluster in $clusters; do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for i in $(find . -iname "dev-ci-env.yaml");do echo $i ; SOME ACTION ON ALL ; done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| chart=Chart.yaml | |
| length=$(yq '.dependencies | length' $chart) | |
| for j in $(seq $length $END); do | |
| iter=$(($j-1)) | |
| repo=$(yq .dependencies[$iter].repository $chart) | |
| name=$(yq .dependencies[$iter].name $chart) | |
| version=$(yq .dependencies[$iter].version $chart) | |
| app_version=$(yq .appVersion $chart) | |
| randomizer=$RANDOM |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| printf "\n======= Generic Os Info =======\n" | |
| uname -a | |
| printf "\n======= Generic User Info =======\n" | |
| whoami | |
| printf "\n======= Generic Current Location Info =======\n" | |
| pwd | |
| printf "\n======= Generic Hostname Info =======\n" | |
| hostname | |
| printf "\n======= Generic Public IP Info =======\n" |
NewerOlder