Skip to content

Instantly share code, notes, and snippets.

View Moezenka's full-sized avatar

Mohsen V. Moezenka

View GitHub Profile
@Moezenka
Moezenka / vscode-custom-css-and-js-loader.css
Last active February 24, 2024 14:25
vscode-custom-css-and-js-loader
.terminal.focus {
border-color: 2px solid #ff0000;
opacity: 1;
}
.terminal:not(.focus) {
border-color: transparent;
}
@Moezenka
Moezenka / helm-package.sh
Created July 25, 2022 12:25 — forked from duncangrist/helm-package.sh
Wraps "helm package" in order to be able to --set values at package time. Depends on yq and helm.
#!/usr/bin/env bash
scriptName=$(basename "$0")
USAGE="Wraps \"helm package\" in order to be able to --set values at package time.
Usage:
$scriptName \\
--set key1=value1 --set key2=value2 \\
[--app-version 1.2.3] <chart-path>"