This file contains hidden or 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 (161803398@email.tg) | |
| # | |
| # Source: |
This file contains hidden or 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 (161803398@email.tg) | |
| # | |
| # Reference: | |
| # |
This file contains hidden or 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 (161803398@email.tg) | |
| # | |
| soft_check=$(which jq &>/dev/null; echo $?) |
This file contains hidden or 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-visual-profiler ] | |
| # | |
| # Launch Nvidia Visual Profiler via Open JDK | |
| # Created on 20201014 by h8rt3rmin8r (161803398@email.tg) | |
| # | |
| # Reference: | |
| # | |
| # # Install CUDA on Ubuntu 20 (linuxconfig.org) |
This file contains hidden or 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 | |
| #>------------------------------------------------------------------------------ | |
| #> | |
| #> [ root-test ] | |
| #> | |
| #> Run a quick test for access to "sudo" | |
| #> | |
| #> No inputs are required when invoking this function. Outputs are printed | |
| #> to STDOUT as either "PASS" or "FAIL" and corresponding exit codes are | |
| #> emitted. |
This file contains hidden or 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 | |
| #>------------------------------------------------------------------------------ | |
| #> | |
| #> [ print-line ] | |
| #> | |
| #> Print an eighty-character line to the terminal. | |
| #> | |
| #> No inputs are required when invoking this script. | |
| #> | |
| #> Printed lines will default to being constructed with dashes (-) but can |
This file contains hidden or 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 | |
| #>------------------------------------------------------------------------------ | |
| #> | |
| #> [ csslinks ] | |
| #> | |
| #> Extract URLs from an input CSS document | |
| #> | |
| #> USAGE: | |
| #> | |
| #> ./csslinks <INPUT> |
This file contains hidden or 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 | |
| #>------------------------------------------------------------------------------ | |
| #> | |
| #> [ wfox-parallel ] | |
| #> | |
| #> Download all links in a referenced input file using GNU parallel | |
| #> | |
| #> Outputs will be situated into a new directory hierarchy that mirrors the | |
| #> origin website URL path for each file. File exif data will be retained | |
| #> if the 'xattr' package is installed on the local machine. |
This file contains hidden or 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 | |
| ###################################################################### | |
| # # | |
| # UNICODE AND SYMBOLIC REFERENCE VARIABLES # | |
| # Source: https://pastebin.com/raw/6AM0F6ze # | |
| # # | |
| #--------------------------------------------------------------------# | |
| # Source detection | |
| # Reference: https://stackoverflow.com/a/2684300 |
This file contains hidden or 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 | |
| #>------------------------------------------------------------------------------ | |
| #> | |
| #> [ ics2json ] | |
| #> | |
| #> ABOUT: | |
| #> | |
| #> Convert an .ics calendar file into JSON syntax | |
| #> | |
| #> If input data is passed as a file reference, output data is written to |