View recursive-resize.sh
This file contains 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 | |
SAVEIFS=$IFS | |
IFS=$(echo -en "\n\b") | |
SIZE=$1 | |
DIR=$2 | |
function resizeImages { | |
for IMAGE in $@ | |
do |
View my-code-extensions.sh
This file contains 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
# Installs vs-code extensions I use | |
# After the install is done, I manually remove Winter-something theme, Peacock, NxConsole and I think one more, | |
# they come with John Papa's Angular essentials package | |
code --install-extension alefragnani.pascal | |
code --install-extension alefragnani.pascal-formatter | |
code --install-extension Angular.ng-template | |
code --install-extension arthurwhite.white | |
code --install-extension asvetliakov.vscode-neovim | |
code --install-extension BriteSnow.vscode-toggle-quotes |