I hereby claim:
- I am jessuppi on github.
- I am jessuppi (https://keybase.io/jessuppi) on keybase.
- I have a public key ASBM8UruRpHyciuqdbFZ4e-MSobAfGRdujAbFLkXHCl_zAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| ## empty file ## |
| #!/bin/sh | |
| # NOTE: This is an example that sets up SSH authorization. To use it, you'd need to replace "ssh-rsa AA... [email protected]" with your SSH public. | |
| # You can replace this entire script with anything you'd like, there is no need to keep it | |
| mkdir -p /root/.ssh | |
| chmod 600 /root/.ssh | |
| echo ssh-rsa AA... [email protected] > /root/.ssh/authorized_keys |
| ## block these spam domains from your referrer analytics and/or using firewall rules ## | |
| ## the majority of these abusive bots are from China (but not all of them) ## | |
| adelachrist.top | |
| ammgm.org | |
| anti-crisis-seo.com | |
| barbarahome.top | |
| bavsac.com | |
| briankatrine.top | |
| blogking.top |
| ## critical functions (aliases) for this script to function ## | |
| apt () { command DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical PATH='/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin' /usr/bin/apt -q --yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" "$@"; } | |
| wget () { command wget --no-check-certificate --no-cache --no-cookies --tries=3 --timeout=15 "$@"; } | |
| cp () { command cp -R -f -d --no-preserve=mode,ownership "$@"; } | |
| rm () { command rm -R -f "$@"; } | |
| mkdir () { command mkdir -p "$@"; } | |
| unzip () { command unzip -o "$@"; } |
| https://stackoverflow.com/questions/39301196/embedding-most-recent-youtube-video-with-channel-id |
| Year after year, more business goes online -- this includes shopping, marketing, and yes, consulting. | |
| In certain ways, competition has increased, because there are more freelancers offering similar services. But in other ways, there is more opportunity than ever before for freelancers with quality services. | |
| One issue that I've noticed getting "worse" in some respects is the number of clients who expect a "free" consultation from potential service providers; while sometimes this can be a fair request, in most cases it is not. | |
| Allow me to explain: | |
| Unlike salaried full-time employees, every minute you take from a consultant without paying him is money lost. |
| ;; empty ;; |
| <?php | |
| $options = array( | |
| 'post_type' => 'person', | |
| 'posts_per_page' => 99, | |
| 'orderby' => 'date', | |
| 'order' => 'ASC', | |
| 'paged' => $paged, | |
| ); | |
| $query = new WP_Query( $options ); | |
| if ( $query->have_posts() ) : |
| #### MONIT PANEL #### | |
| location /monit/ { | |
| rewrite ^/monit/(.*) /$1 break; | |
| proxy_ignore_client_abort on; | |
| proxy_pass https://127.0.0.1:2812; | |
| proxy_set_header Host $host; | |
| proxy_redirect https://127.0.0.1:2812 /monit; | |
| } |