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
@echo off | |
@REM kubectl config rename-context aksympdescbscus yomp | |
@REM kubectl config set-context --current --namespace=yompqa | |
@REM kubectl config use-context yomp | |
kubectl config get-contexts | |
kubectl config use-context %* | |
kubectl config get-contexts |
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
@echo off | |
powershell %* |
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
@echo off | |
@REM kubectl config rename-context aksympdescbscus yomp | |
@REM kubectl config set-context --current --namespace=yompqa | |
@REM kubectl config use-context yomp | |
@REM kubectl config use-context %* | |
kubectl config get-contexts |
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
convert "calculo costo.png" -background white -alpha remove -alpha off calculo_costo_2.png |
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
@echo off | |
call .\venv\Scripts\activate.bat | |
@REM pip install pipdeptree | |
echo ======================== | |
echo Installed packages | |
echo ======================== | |
pip show %* | |
echo ======================== |
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
# read parameters from the command line | |
param( | |
[string]$namespace = "default", | |
[string]$pattern = "", | |
[bool]$previous = $false | |
) | |
# check if pattern has a space and if so, split it in two and use the first part | |
$container = "" | |
if ($pattern.Contains(" ")) { |
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
function addOrSubtractMinutes(timeString, minutesToAddOrSubtract) { | |
var timeParts = timeString.split(':'); | |
var hours = parseInt(timeParts[0], 10); | |
var minutes = parseInt(timeParts[1], 10); | |
var date = new Date(); | |
date.setHours(hours); | |
date.setMinutes(minutes + minutesToAddOrSubtract); | |
var newHours = date.getHours(); |
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
# read parameters from the command line | |
param( | |
[string]$namespace = "default", | |
[string]$pattern = "", | |
[bool]$previous = $false | |
) | |
# check if pattern has a space and if so, split it in two and use the first part | |
$container = "" | |
if ($pattern.Contains(" ")) { |
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
# read parameters from the command line | |
param( | |
[string]$namespace = "default", | |
[string]$pattern = "", | |
[bool]$previous = $false | |
) | |
# check if pattern has a space and if so, split it in two and use the first part | |
$container = "" | |
if ($pattern.Contains(" ")) { |
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 documentation, see https://www.sumatrapdfreader.org/settings3.2.html | |
MainWindowBackground = #80fff200 | |
EscToExit = false | |
ReuseInstance = false | |
UseSysColors = false | |
RestoreSession = true | |
FixedPageUI [ | |
TextColor = #000000 |
NewerOlder