I hereby claim:
- I am dale-c-anderson on github.
- I am dandersonacro (https://keybase.io/dandersonacro) on keybase.
- I have a public key ASB8FyCb8A6pltKoFsk6MSYmXKc5tu2e39YEELmGPdimtAo
To claim this, I am signing this object:
| <form method=GET action="<?php htmlentities(basename(_FILE_)); ?>"> | |
| <input type=text name="q" value="<?php echo htmlentities($_REQUEST["q"]); ?>"> | |
| <input type=submit value="WHOIS"> | |
| </form> | |
| <pre><?php | |
| /* | |
| * whois.php | |
| */ | |
| main(); |
| #!/bin/bash -ue | |
| # update-wordpress.sh | |
| # To be run from a nightly cron. | |
| # Assumes cron email notifications are working correctly. | |
| WORKINGDIR="/var/www/mysite/public_html" | |
| cd "$WORKINGDIR" | |
| # Don't let errors before pipes go unnoticed. |
| # Customize BASH PS1 prompt to show current GIT repository and branch. | |
| # by Mike Stewart - http://MediaDoneRight.com | |
| # SETUP CONSTANTS | |
| # Bunch-o-predefined colors. Makes reading code easier than escape sequences. | |
| # I don't remember where I found this. o_O | |
| # Reset | |
| Color_Off="\[\033[0m\]" # Text Reset |
| #!/bin/bash -ue | |
| ################################################################################ | |
| # Simulates the certificate files that LetsEncrypt creates, creating self signed ones instead | |
| # Ignores all arguments except the last one, which is assumed to be your FQDN. | |
| ################################################################################ | |
| if [ $# -lt 1 ]; then | |
| >&2 echo "I need at least a FQDN to do anything." | |
| exit 1 |
| #!/bin/bash | |
| # Install Prometheus Node Exporter on CentOS 6. | |
| set -eu | |
| set -o pipefail | |
| set -x | |
| REPOFILE='/etc/yum.repos.d/coprs.ibotty.prometheus-exporters.repo' | |
| INSTALLED=0 |
| <?php | |
| /** | |
| ################## | |
| ip.php | |
| ################## | |
| A php page that simply displays the IP address of the visitor. | |
| Serves plain text by default, serves a pretty html version by request, or if |
| ######################################################################## | |
| # THERE ARE TWO FILES WORTH OF CODE IN THIS GIST | |
| ######################################################################## | |
| ##### | |
| # /etc/nginx/includes/account-project.php-fpm.conf | |
| ##### | |
| ## PHP socket config has been broken out into its own file, since it needs to be reused from many places. |
| {"sidebarBg":"#e8e4d9","sidebarText":"#2e2e2e","sidebarUnreadText":"#cb4b16","sidebarTextHoverBg":"#DCD6C6","sidebarTextActiveBorder":"#cb4b16","sidebarTextActiveColor":"#cb4b16","sidebarHeaderBg":"#e8e6df","sidebarHeaderTextColor":"#424242","onlineIndicator":"#52adad","awayIndicator":"#d4b579","dndIndicator":"#f74343","mentionBj":"#ffffff","mentionColor":"#ffffff","centerChannelBg":"#fdf6e3","centerChannelColor":"#444444","newMessageSeparator":"#f2777a","linkColor":"#2aa198","buttonBg":"#cb4b16","buttonColor":"#ffffff","errorTextColor":"#fd5960","mentionHighlightBg":"#ebd8c2","mentionHighlightLink":"#cb4b16","codeTheme":"github","mentionBg":"#cb4b16"} |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # | |
| # /etc/rc.d/init.d/node_exporter | |
| # | |
| # Prometheus node exporter | |
| # | |
| # description: Prometheus node exporter | |
| # processname: node_exporter | |
| # Source function library. |