Skip to content

Instantly share code, notes, and snippets.

@josep11
josep11 / README.md
Last active May 9, 2022 11:01
ths-modal-templates

Ths modal templates

They will be injected by Tampermonkey

Info

index-testing-modal1.html and index-testing-modal2.html are only for testing locally the UI. The ones that will be injected will be modal1-select.html and modal2.html

modal1 is for selecting templates

@josep11
josep11 / pre-commit
Created November 23, 2021 11:04
pre-commit hook to run unit tests
#!/bin/bash
current_branch=`git rev-parse --abbrev-ref HEAD`
if [[ $current_branch =~ master|main ]]; then
message="Please don't push directly to $current_branch."
echo -e "\033[1;31mERROR: $message\033[0m";
exit 1
fi
repo_dir=`git rev-parse --show-toplevel`
@josep11
josep11 / average.sh
Last active June 25, 2018 15:26
sed example
#!/bin/bash
awk '{s+=$1}END{print "\nAverage:",s/NR,"\n"}' numbers.txt