I hereby claim:
- I am lcherone on github.
- I am lcherone (https://keybase.io/lcherone) on keybase.
- I have a public key whose fingerprint is 3741 7D7C 39BA F498 393C 700D 968E 8ABC 3112 189E
To claim this, I am signing this object:
| <?php | |
| /** | |
| * .htaccess writer CRUD class | |
| * | |
| * @author Lawrence Cherone | |
| * @version 1.00 | |
| */ | |
| class htaccessCRUD | |
| { | |
| public $file; |
| <?php | |
| echo passgen(20); //K4YFnMW5muf0kZTMl6h3 | |
| function passgen($length = 20) | |
| { | |
| // define base string - add multiplex to pad to an infinate length | |
| $alpha = str_repeat( | |
| "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ", | |
| intval($length + 1) | |
| ); |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # Set envioroment, for cloud-init | |
| set -e | |
| export DEBIAN_FRONTEND=noninteractive | |
| export PATH='/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin' | |
| export HOME='/root' | |
| # upon launch wait for internet connection | |
| echo "Waiting for network connection." |
| 0815.ru | |
| 0815.ru0clickemail.com | |
| 0815.ry | |
| 0815.su | |
| 0845.ru | |
| 0clickemail.com | |
| 0-mail.com | |
| 0wnd.net | |
| 0wnd.org | |
| 10mail.com |
| #!/bin/bash | |
| # | |
| set -e | |
| export DEBIAN_FRONTEND=noninteractive | |
| source /etc/environment && export PATH && export HOME='/root' | |
| # Set working vars, change these to suit | |
| # | |
| # Application Name |
| #!/bin/bash | |
| # | |
| # Apply autostart to all containers and default profile. | |
| # - Especially handy if containers have their own autostart value. | |
| # - Could be used for any config value with a tweek. | |
| # | |
| # ask | |
| while true; do |
| #!/bin/bash | |
| # | |
| # Stop all running containers | |
| # | |
| # stop running containers | |
| for container in $(lxc list volatile.last_state.power=RUNNING -c n --format csv); do | |
| lxc stop "$container" | |
| done |
| #!/bin/bash | |
| # | |
| # Start all stopped containers | |
| # | |
| # stop running containers | |
| for container in $(lxc list volatile.last_state.power=STOPPED -c n --format csv); do | |
| lxc start "$container" | |
| done |
| #!/bin/bash | |
| # | |
| # Run command in all running containers | |
| # Usage: $ ./lxc-exec-all.sh apt update && apt upgrade | |
| # | |
| for container in $(lxc list volatile.last_state.power=RUNNING -c n --format csv); do | |
| lxc exec "$container" "$@" | |
| done |