I hereby claim:
- I am Jamesking56 on github.
- I am jamesking56 (https://keybase.io/jamesking56) on keybase.
- I have a public key whose fingerprint is 7ADA AC6A 97B2 AA4C DF5E 9472 0F1B DE01 1363 C5E8
To claim this, I am signing this object:
| #!/bin/sh | |
| set -eu | |
| if [ $# -eq 0 ]; then | |
| echo "Git Rebaser" >&2 | |
| echo "Usage:" >&2 | |
| echo "rebase {base_branch}" >&2 | |
| exit 1 | |
| fi |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| $req_url = 'http://www.tumblr.com/oauth/request_token'; | |
| $authurl = 'http://www.tumblr.com/oauth/authorize'; | |
| $acc_url = 'http://www.tumblr.com/oauth/access_token'; | |
| $conskey = 'YOUR CONSUMER KEY'; | |
| $conssec = 'YOUR CONSUMER SECRET'; | |
| session_start(); |
| <?php | |
| /** | |
| * WordPress class - Manages the WordPress XML file and gets all data from that. | |
| */ | |
| class Wordpress | |
| { | |
| public static $wpXML; |
| <?php | |
| /* | |
| ErrorHandler Class | |
| By James King | |
| v0.1 Alpha | |
| WARNING: This class is still in ALPHA phase. Not recommended for production. | |
| Manages and handles any PHP errors found in your script. |