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: No Widows | |
| Plugin URI: http://timwhitlock.info/ | |
| Description: Prevents typographical widows in titles and post body content | |
| Author: Tim Whitlock | |
| Version: 1.0 | |
| Author URI: http://timwhitlock.info/ | |
| */ |
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 | |
| function require_wp_db() { | |
| global $wpdb; | |
| if ( isset($wpdb) ){ | |
| return; | |
| } | |
| // Should check for override db.php file first | |
| // - including both means fatal error on duplicate class | |
| if ( file_exists( WP_CONTENT_DIR . '/db.php' ) ){ | |
| require_once( WP_CONTENT_DIR . '/db.php' ); |
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
| #!/bin/bash | |
| # dos2unix utility using translate characters command | |
| # requires /usr/bin/tr | |
| for f in "$@" | |
| do | |
| if [ -f "$f" ]; then | |
| echo "dos2unix $f" | |
| cat $f | /usr/bin/tr -d "\015" > "$f.tmp" | |
| mv "$f.tmp" "$f" |
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
| retweet.html | |
| rt-loader.js |
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
| $ git diff install.old install.php | |
| diff --git a/install.old b/install.php | |
| index d23073b..6b2202e 100644 | |
| --- a/install.old | |
| +++ b/install.php | |
| @@ -39,7 +39,7 @@ require_once( dirname( dirname( __FILE__ ) ) . '/wp-load.php' ); | |
| require_once( dirname( __FILE__ ) . '/includes/upgrade.php' ); | |
| /** Load wpdb */ |
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 | |
| /** | |
| * Add magic quotes to $_GET, $_POST, $_COOKIE, and $_SERVER. | |
| * | |
| * Also forces $_REQUEST to be $_GET + $_POST. If $_SERVER, $_COOKIE, | |
| * or $_ENV are needed, use those superglobals directly. | |
| * | |
| * @access private | |
| * @since 3.0.0 | |
| */ |
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: CDN Tools | |
| Plugin URI: http://web.2point1.com/tag/wp-cdn | |
| Description: Simple tool for deploying Wordpress assets on a CDN | |
| Version: 0 | |
| Author: Tim Whitlock | |
| Author URI: http://twitter.com/timwhitlock | |
| */ |
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
| /* [twhitlock] define some configs before Wordpress can beat our plug-ins to it */ | |
| define('WP_CDN_ROOT','http://cdn.timwhitlock.info/wordpress'); | |
| define('WP_CONTENT_URL', WP_CDN_ROOT.'/wp-content'); | |
| /** Sets up WordPress vars and included files. */ | |
| require_once(ABSPATH . 'wp-settings.php'); |
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
| // source | |
| void ( function(){ | |
| try { | |
| var s = window.getSelection(); | |
| var q = s ? s.toString().replace(/(^\W+|\W+$)/g,'') : ''; | |
| if( ! q ){ | |
| q = prompt('Enter a word to look up'); | |
| if( ! q ){ | |
| return; | |
| } |
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
| isNaN(NaN); // true | |
| NaN == NaN; // false | |
| typeof NaN; // "number" |