Bringing High Tech to the Low Tech World.

|
Extract Image From WordPress Post |
Tags: code, hint, php, wordpress Posted in Blog, Hints, Technical · April 28th, 2010 · Comments (0) |
This will extract an image from a wordpress post. You can use it in the loop with get_content() or get_excerpt(). There are a hundred other different uses for something like this as well. Good snippet to have.
// Pull first image thumbnail from post if none exist, default to a category image.
//
// Required:
$pattern = '/<img[^>]+src[\\s=\'"]';
$pattern .= '+([^"\'>\\s]+)/is';
// Optional:
$style = "height:50px;width:60px;margin-top:15px;";
$defaultImgURL = "http://www.yoursite.com/image/url.png";
$imgAlt = "Alt Text Here";
$imgID = "";
$imgName = "";
// If we have an Image ...
if(preg_match($pattern,get_the_content(),$match)) {
echo "<img alt=\"\" style=\"" . $style . "\" src=\"" . $match[1] . "\" />";
// If there is no img Tag ...
} else {
echo "<img alt=\"\" style=\"" . $style . "\" src=\"". $defaultImgURL ."\" />";
}
// Thats it!

|
Megahurts FRC Team #2219: Breakaway 2010 |
Tags: competition, frc, mentoring, robot, robotics, usfirst Posted in Blog, Technical, Videos, robotics · April 9th, 2010 · Comments (1) |

|
Change iPhone Carrier Name |
Tags: cellular, iphone, phone, unlock Posted in Hints, Software, Technical · March 3rd, 2010 · Comments (1) |

First off, this hint will only work on iPhones that have been “jailbroken”. For more information on “jailbreaking” your iPhone, please visit the unofficial iPhone Dev Team’s Blog.
Check out “MakeItMine” app under Cydia. This application is a must for tweakers, as it changes your carrier name. Once the app is installed, and you have made the change, you can remove the app, and your custom setting remains.
Have fun!

|
Test iPhone Post |
Tags: iphone, post, publish Posted in Blog, Technical, Updates · October 12th, 2009 · Comments (0) |

|
My Cluttered Workspace |
Tags: cluttered, computers, work, workspace, workstation Posted in Blog, Pictures, Technical · June 3rd, 2009 · Comments (0) |
Here is a snapshot of my end-of-the-week workspace. This was after imaging 50+ computers, and scattering equipment everywhere. We so many boxes from apple and IBM, we could have literally probably build the ark out of them.