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
#! /usr/bin/env bash | |
# | |
# [ nvidia-packages-list ] | |
# | |
# List all installed packages related to Nvidia and CUDA | |
# Created on 20201014 by h8rt3rmin8r ([email protected]) | |
# | |
soft_check=$(which jq &>/dev/null; echo $?) |
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
#! /usr/bin/env bash | |
# | |
# [ install-maven.sh ] | |
# | |
# Install Apache Maven on Ubuntu | |
# | |
# Created on 20200830 by h8rt3rmin8r ([email protected]) | |
# | |
# Reference: | |
# |
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
#! /usr/bin/env bash | |
# | |
# [ rm-charset.sh ] | |
# | |
# Remove all types of quotation marks (includes the funky slanted | |
# quotes used by Yahoo et al) and vertical lines (pipe symbols, "|") | |
# | |
# Created on 20200819 by h8rt3rmin8r ([email protected]) | |
# | |
# Source: |
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
#Bashtop glitchpad theme | |
#by glitchpad.com | |
# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" | |
# example for white: "#FFFFFF", "#ff" or "255 255 255". | |
# All graphs and meters can be gradients | |
# For single color graphs leave "mid" and "end" variable empty. | |
# Use "start" and "end" variables for two color gradient | |
# Use "start", "mid" and "end" for three color gradient |
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
#! /usr/bin/env bash | |
#>------------------------------------------------------------------------------ | |
#> | |
#> [ mshell ] | |
#> | |
#> Math shell (mshell) is a math handling script written for native Bash | |
#> | |
#> USAGE: | |
#> | |
#> mshell <TYPE> (<INPUT> ... <INPUT>) |
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
#! /usr/bin/env bash | |
#>------------------------------------------------------------------------------ | |
#> | |
#> [ future-value.sh ] | |
#> | |
#> Calculate future value based on compound interest | |
#> | |
#> USAGE: | |
#> | |
#> future-value.sh <OPTION> |
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
#! /usr/bin/env bash | |
#>------------------------------------------------------------------------------ | |
#> | |
#> [ screenshot_clean.sh ] | |
#> | |
#> About: | |
#> | |
#> Clean up the Ubuntu system screenshots from ~/Pictures | |
#> | |
#> All screenshots are renamed and moved into a new directory located at |
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
#! /usr/bin/env bash | |
# | |
# [ build-json-object.sh ] | |
# | |
# Generate JSON objects filled with custom keys and values | |
# Created on 20200616 by h8rt3rmin8r | |
# | |
## Declare variables |
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 | |
#=======================================================================================# | |
# | |
# ___________.___.____ ___________________ ____ _____________.____ | |
# \_ _____/| | | \_ _____/\_____ \| | \______ \ | | |
# | __) | | | | __)_ / ____/| | /| _/ | | |
# | \ | | |___ | \/ \| | / | | \ |___ | |
# \___ / |___|_______ \/_______ /\_______ \______/ |____|_ /_______ \ | |
# \/ \/ \/ \/ \/ \/ | |
# |
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 | |
#==============================================================================# | |
# ________________ _____ ____ ________ __________ | |
# / ____/ _/_ __/ / ___// __ \/ _/ __ \/ ____/ __ \ | |
# / / __ / / / / \__ \/ /_/ // // / / / __/ / /_/ / | |
# / /_/ // / / / ___/ / ____// // /_/ / /___/ _, _/ | |
# \____/___/ /_/ /____/_/ /___/_____/_____/_/ |_| | |
# | |
#==============================================================================# | |
# |