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
| zend_extension=xdebug.so | |
| [xdebug] | |
| xdebug.default_enable = 1 | |
| xdebug.cli_color = 1 | |
| xdebug.overload_var_dump = 1 | |
| xdebug.var_display_max_children = -1 | |
| xdebug.var_display_max_data = 4096 | |
| xdebug.var_display_max_depth = 10 |
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
| #!/bin/bash | |
| # ./pushover.sh -t "Pushover via Bash" -m "Pushover message sent with bash from $(hostname -f)" -p1 -s siren -u http://www.google.com -n "Google" | |
| USER_TOKEN=YOUR_USER_TOKEN_HERE | |
| # YOUR APPS TOKENS / UPPERCASE NAME WITH _TOKEN (usage: "-a monitor" uses MONITOR_TOKEN) | |
| MONITOR_TOKEN=APP_TOKEN | |
| BACKUP_TOKEN=APP_TOKEN | |
| ALERT_TOKEN=APP_TOKEN | |
| APP_LIST="monitor, backup, alert" # FOR USAGE |
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/python | |
| # -*- coding: utf-8 -*- | |
| import pprint | |
| import subprocess | |
| def get_processes(): | |
| """ | |
| Parse the output of `ps aux` into a list of dictionaries representing the parsed |