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
// ____ ___ __ __ _ ___ __ __ ____ | |
// | _ \ / _ \| \/ | | |_ ___ |_ _| \/ |/ ___| | |
// | | | | | | | |\/| | | __/ _ \ | || |\/| | | _ | |
// | |_| | |_| | | | | | || (_) | | || | | | |_| | | |
// |____/ \___/|_| |_| \__\___/ |___|_| |_|\____| | |
function domToImg (dom, size) { | |
const canvas = document.createElement('canvas') | |
canvas.height= size ?? 100 | |
canvas.width= size ??100 |
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
# ____ __ __ ___ ________ _ ___ __ ____ | |
# / ___| \/ |_ _|__ / _ \| \ | \ \ / / / ___| ___ _ __ ___ ___ _ __ _ __ ___ | |
#| | | |\/| || | / / | | | \| |\ V / _____ \___ \ / __| '__/ _ \/ _ \ '_ \| '__/ __| | |
#| |___| | | || | / /| |_| | |\ | | | |_____| _ ___) | (__| | | __/ __/ | | | | | (__ | |
# \____|_| |_|___/____\___/|_| \_| |_| (_)____/ \___|_| \___|\___|_| |_|_| \___| | |
startup_message off | |
# Window list at the bottom. |
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 | |
# | |
# ____ __ __ ___ ________ _ ___ __ ____ | |
# / ___| \/ |_ _|__ / _ \| \ | \ \ / / / ___| ___ _ __ ___ ___ _ __ | |
# | | | |\/| || | / / | | | \| |\ V / _____ \___ \ / __| '__/ _ \/ _ \ '_ \ | |
# | |___| | | || | / /| |_| | |\ | | | |_____| ___) | (__| | | __/ __/ | | | | |
# \____|_| |_|___/____\___/|_| \_| |_| |____/ \___|_| \___|\___|_| |_| | |
# | |
# | |
# Create simple screen layout (bottom split) |
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
" _____ __ __ _____ __________ _ ___ __ _ | |
" / ____| \/ |_ _|___ / __ \| \ | \ \ / / (_) | |
" | | | \ / | | | / / | | | \| |\ \_/ / ______ __ ___ _ __ ___ _ __ ___ | |
" | | | |\/| | | | / /| | | | . ` | \ / |______| \ \ / / | '_ ` _ \| '__/ __| | |
" | |____| | | |_| |_ / /_| |__| | |\ | | | \ V /| | | | | | | | | (__ | |
" \_____|_| |_|_____/_____\____/|_| \_| |_| \_/ |_|_| |_| |_|_| \___| | |
" | |
" | |
" 1. Easy navigation in .vimrc: | |
" Use <Leader>ig to view indentation guides |
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 | |
# ____ __ __ ___ ________ _ ___ __ __ __ _ _ | |
# / ___| \/ |_ _|__ / _ \| \ | \ \ / / \ \ / /_ _| |_ ___| |__ ___ _ __ | |
# | | | |\/| || | / / | | | \| |\ V / _____ \ \ /\ / / _` | __/ __| '_ \ / _ \ '__| | |
# | |___| | | || | / /| |_| | |\ | | | |_____| \ V V / (_| | || (__| | | | __/ | | |
# \____|_| |_|___/____\___/|_| \_| |_| \_/\_/ \__,_|\__\___|_| |_|\___|_| | |
# | |
# | |
# Linux: apt-get install inotifywait | |
# |
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
// ____ __ __ ___ ________ _ ___ __ | |
// / ___| \/ |_ _|__ / _ \| \ | \ \ / / | |
// | | | |\/| || | / / | | | \| |\ V / | |
// | |___| | | || | / /| |_| | |\ | | | | |
// \____|_| |_|___/____\___/|_| \_| |_| | |
/** | |
* @method ramerDouglasPeucker | |
* |
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
// ____ __ __ ___ ________ _ ___ __ ____ _____ _ | |
// / ___| \/ |_ _|__ / _ \| \ | \ \ / / | _ \___ / (_)___ | |
// | | | |\/| || | / / | | | \| |\ V / _____ | | | ||_ \ | / __| | |
// | |___| | | || | / /| |_| | |\ | | | |_____| | |_| |__) | | \__ \ | |
// \____|_| |_|___/____\___/|_| \_| |_| |____/____(_)/ |___/ | |
// |__/ | |
/** | |
* @method getSkeletonChart | |
* |