I hereby claim:
- I am raamdev on github.
- I am raamdev (https://keybase.io/raamdev) on keybase.
- I have a public key whose fingerprint is 851B E08D AF38 F6A3 81D1 DF09 92A5 D3E8 7AF3 AA99
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # ------------------------------------------------------------------- | |
| # | |
| # This script updates a WordPress theme with the latest code from | |
| # GitHub. You can set it to run as a cronjob to automatically update | |
| # a WordPress theme with the latest code from the master branch (or | |
| # any branch that you want). | |
| # | |
| # Be sure to chmod +x this file so that it can be executed via Cron. | |
| # |
| <?php | |
| error_reporting(-1); | |
| ini_set('display_errors', TRUE); | |
| /* --- Config. section. ----------------------------------------------------------------------- */ | |
| $url = 'http://yoursite.com/'; // Swap this out when testing. | |
| // Install the HTML Compressor locally, and change the following path as necessary. | |
| require_once $_SERVER['WEBSHARK_HOME'].'/websharks/html-compressor/html-compressor/stub.php'; |
| <?php | |
| add_action ("login_head", "s2_customize_login", 1000); | |
| function s2_customize_login () | |
| { | |
| ?> | |
| <script type = "text/javascript"> | |
| function getParameterByName(name) | |
| { | |
| name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]"); | |
| var regexS = "[\\?&]" + name + "=([^&#]*)"; |
| Verifying myself: My Bitcoin username is +raamdev. https://onename.io/raamdev |
| <?php | |
| error_reporting(-1); | |
| ini_set('display_errors', TRUE); | |
| function curl_download($Url){ | |
| // is cURL installed yet? | |
| if (!function_exists('curl_init')){ | |
| die('Sorry cURL is not installed!'); | |
| } |
| " Settings | |
| " https://chrome.google.com/webstore/detail/cvim/ihlenndgcmojhcghmfjfneahoeklbjjh?hl=en | |
| " Mappings | |
| unmap r "Unmaps the 'r' key for Refresh, since that's used for other things, like GitHub R reply shortcut |
| .linktable {margin-top: 15px;} | |
| .linktable a {text-decoration:none} | |
| table.linklisttable { | |
| width:100%; | |
| border-width: 0px 0px 0px 0px; | |
| border-spacing: 5px; | |
| /* border-style: outset outset outset outset; | |
| border-color: gray gray gray gray; */ |
| #menu-social ul li { | |
| float: right; | |
| } | |
| @media only screen and (max-width: 1200px) { | |
| #menu-social ul li { | |
| float: none; | |
| } | |
| } |
| cd_pwd() | |
| { | |
| if [ $# -eq 0 ]; then | |
| DIR="${HOME}" | |
| else | |
| DIR="$1" | |
| fi | |
| cd "${DIR}" | |
| pwd |