Other cheat sheets:
useful tools:
collaboration whiteboard drawing
diagram drawing
markdown
regular expressions
stream editor
online coding
- online editor with prepared UI frameworks
- code compiler/editor online
- code compiler/editor online
- typescript sandbox
- repl online
- code sandbox
code analyser
code changer
visual database ide
password storage
REST api test frameworks
useful search function for using whole cheat sheet
function cheat-grep(){
if [[ $1 == "" ]]; then
echo "nothing to search"
return;
fi
search_line=""
for each_input_arg in "$@"; do
if [[ $search_line == "" ]]; then
search_line=$each_input_arg
else
search_line=$search_line".*"$each_input_arg
fi
done
grep -r $search_line -i -A 2 $HOME_PROJECTS/cheat-sheet/*.md $HOME_PROJECTS/bash-example/*
}