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 | |
#>------------------------------------------------------------------------------ | |
#> | |
#> [ ttcUpdate.sh ] | |
#> | |
#> Download the latest data for the Tamriel Trade Centre addon and generate | |
#> a historical archive of price data with each subsequent download. | |
#> | |
#> No inputs are required when invoking this script. | |
#> |
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
{ | |
"$schema": "http://json-schema.org/schema#", | |
"type": "object", | |
"properties": { | |
"Version": { | |
"type": "integer" | |
}, | |
"Platform": { | |
"type": "string" | |
}, |
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 | |
#>------------------------------------------------------------------------------- | |
#> | |
#> [ bl3-dps ] | |
#> | |
#> Calculate damage-per-second on guns found in Borderlands 3 | |
#> | |
#> This is an interactive script (no direct inputs are required). Outputs | |
#> are saved into a local CSV file. Over time, this output file can serve | |
#> as a personal DPS database. |
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 | |
#>------------------------------------------------------------------------------ | |
#> | |
#> [ ics2json ] | |
#> | |
#> ABOUT: | |
#> | |
#> Convert an .ics calendar file into JSON syntax | |
#> | |
#> If input data is passed as a file reference, output data is written to |
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 | |
###################################################################### | |
# # | |
# UNICODE AND SYMBOLIC REFERENCE VARIABLES # | |
# Source: https://pastebin.com/raw/6AM0F6ze # | |
# # | |
#--------------------------------------------------------------------# | |
# Source detection | |
# Reference: https://stackoverflow.com/a/2684300 |
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 | |
#>------------------------------------------------------------------------------ | |
#> | |
#> [ 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 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 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 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 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 ([email protected]) | |
# | |
# Reference: | |
# | |
# # Install CUDA on Ubuntu 20 (linuxconfig.org) |
NewerOlder