I hereby claim:
- I am jnpkr on github.
- I am jonparker (https://keybase.io/jonparker) on keybase.
- I have a public key ASDe8JQXuj3eU4Z_vDTd-1b3LKNfWfrMYltJEmJ7n8Bo4Qo
To claim this, I am signing this object:
| /* Normalize.css */ | |
| /* Contents of this file must be inlined to your newsletter in production */ | |
| h1 a, | |
| h2 a, | |
| h3 a, | |
| h4 a, | |
| h5 a, | |
| h6 a, | |
| li a, |
I hereby claim:
To claim this, I am signing this object:
| { | |
| "name": "bstest", | |
| "authors": [ | |
| "Jon Parker" | |
| ], | |
| "description": "", | |
| "main": "", | |
| "license": "MIT", | |
| "homepage": "", | |
| "ignore": [ |
| # -*- coding: utf-8 -*- | |
| """ | |
| IPN Engine | |
| ~~~~~~~~~~ | |
| PayPal's Instant Payment Notification (IPN) helps integrate PayPal more | |
| deeply into your web application. When activated, PayPal will send a | |
| POST request to a specified URL when a transaction's status changes. | |
| The most obvious use is to trigger a state change, enable an account, |
| #!/bin/bash | |
| # | |
| # Run within WordPress directory | |
| # - Changes file permissions but not ownership | |
| find . -type d -exec chmod 755 {} \; | |
| find . -type f -exec chmod 644 {} \; | |
| chmod 660 ./wp-config.php | |
| #!/bin/bash | |
| #! Shell script to add domains/websites in apache | |
| echo "Enter the domain:" | |
| read domain | |
| mkdir -p "/srv/www/$domain/public_html" | |
| mkdir "/srv/www/$domain/logs" | |
| echo "<VirtualHost *:80>" >> "/etc/apache2/sites-available/$domain" | |
| echo " ServerAdmin webmaster@$domain" >> "/etc/apache2/sites-available/$domain" |