June 2011
11 posts
2 tags
Nice list of jQuery plugins →
3 tags
Sweet open-source CKEditor File Browser
http://labs.corefive.com/Projects/FileManager/ https://github.com/simogeo/Filemanager
It’s an alternative to the paid version CKFinder.
2 tags
Excellent Electronics and Circuits Review →
2 tags
Learn Windows PowerShell →
1 tag
Running 2 copies of wordpress from 1 database →
At the bottom of the wp_config file add (replacing LIVEURL and LOCALURL with the FQDN of the live and local website):
$currenthost = $_SERVER['HTTP_HOST'];
$mypos = strpos($currenthost, 'localhost');
if ($mypos === false) {
define('WP_HOME','LIVEURL');
define('WP_SITEURL','LIVEURL');
} else {
define('WP_HOME','LOCALURL');
define('WP_SITEURL','LOCALURL');
}
3 tags
Make Videos: Basic Circuit Elements →
3 tags
My Favorite Mercurial Beginner Tutorial →
2 tags
Free Mac Temp Stat App →
3 tags
jQuery Credit Card Validator →
1 tag
Best way to deal with IE CSS issues →
2 tags
IValidatable for MVC 3 ViewModels →