This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* OPEN A STD OUT STREAM, THIS IS BETTER THEN ECHOING | |
* BECAUSE THERE IS NO BUFFERING | |
* *********************************************************************/ | |
$stdout = fopen( 'php://stdout', 'w' ); | |
// Starting Processing Designator | |
fwrite( $stdout, "========== BACKUP ==========\n" ); | |
/* Use the Autoload from Composer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Theme Name: RyanFrankel.com | |
*/ | |
@import "variables.less"; | |
@import "bootstrap/mixins.less"; | |
@import "bootstrap/normalize.less"; | |
// Bootstrap Core CSS | |
@import "bootstrap/scaffolding.less"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* SET THE HOST AND PORT OF WORDPRESS | |
* *********************************************************/ | |
backend default { | |
.host = "127.0.0.1"; | |
.port = "8080"; | |
} | |
# SET THE ALLOWED IP OF PURGE REQUESTS | |
# ########################################################## | |
acl purge { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: | |
location.href='http://nerdmash.com/save-to-nerdmash/?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: WordPress API | |
clean, usable interface. | |
Version: 0.1 | |
?> | |
<?php | |
/* ***************************************************************************** | |
CREATE TABLE ON ACTIVATION | |
***************************************************************************** */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: WordPress API | |
Plugin URI: http://plugins.swampedpublishing.com/wp-super-faq | |
Description: A lightweight Wordpress Plugin that implements an FAQ page on your site using simple jQuery animation for a clean, usable interface. | |
Version: 0.1 | |
Author: rfrankel | |
Author URI: http://plugins.swampedpublishing.com/ | |
License: GPL2 |