<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>new element designs blog</title>
	<atom:link href="http://www.newelementdesigns.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.newelementdesigns.com/blog</link>
	<description>web design and development</description>
	<lastBuildDate>Fri, 11 Jun 2010 00:24:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Introducing Centrifuge CMS</title>
		<link>http://www.newelementdesigns.com/blog/2010/06/10/introducing-centrifuge-cms/</link>
		<comments>http://www.newelementdesigns.com/blog/2010/06/10/introducing-centrifuge-cms/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 15:08:08 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.newelementdesigns.com/blog/?p=122</guid>
		<description><![CDATA[The new Centrifuge CMS website is live. All current features are listed, the demo site is up and video tutorials are coming soon! Visit http://www.centrifugecms.com]]></description>
			<content:encoded><![CDATA[<p>The new Centrifuge CMS website is live. All current features are listed, the demo site is up and video tutorials are coming soon! Visit <a href="http://www.centrifugecms.com">http://www.centrifugecms.com</a></p>
<p>
<a href="http://www.centrifugecms.com"><img class="alignnone size-medium wp-image-123" title="Centrifuge CMS" src="http://www.newelementdesigns.com/blog/wp-content/uploads/2010/06/LittleSnapper-300x231.jpg" alt="Centrifuge CMS" width="300" height="231" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.newelementdesigns.com/blog/2010/06/10/introducing-centrifuge-cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL PDO Class</title>
		<link>http://www.newelementdesigns.com/blog/2010/05/28/mysql-pdo-class/</link>
		<comments>http://www.newelementdesigns.com/blog/2010/05/28/mysql-pdo-class/#comments</comments>
		<pubDate>Fri, 28 May 2010 14:18:35 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.newelementdesigns.com/blog/?p=110</guid>
		<description><![CDATA[PDO provides a good way to connect to different databases in PHP. This code example is for MySQL although I have a version for Oracle as well. If you want the Oracle version just comment and I will send it to you. Read on for the code. class DB{ // database connection variables private $db_user [...]]]></description>
			<content:encoded><![CDATA[<p>PDO provides a good way to connect to different databases in PHP. This code example is for MySQL although I have a version for Oracle as well. If you want the Oracle version just comment and I will send it to you. Read on for the code.</p>
<p><span id="more-110"></span></p>
<pre class="brush:php syntax">
class DB{

// database connection variables
private $db_user = 'USERNAME';
private $db_pass = 'PASSWORD';
private $db_host = 'localhost';

// PDO class var
private $DBH;
// PDO Statement class var
public $STH;

	// The singleton instance
	private static $DB_Instance;

	// Initiate connection to DB
	private function __construct(){

		try {
			// DB Connection
			$this->DBH = new PDO('mysql:host='.$this->db_host, $this->db_user, $this->db_pass);
			//$this->DBH->setAttribute (PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

		} catch(PDOException $e) {
			// DB connection error message
			trigger_error("Could not connect to database: ". $e->getMessage(), E_USER_ERROR);
		}

	}
	public function __desctruct(){
		$this->DBH = null;
	}

	// Start singleton DB instance
	public static function open(){

        if (!self::$DB_Instance){
            self::$DB_Instance = new DB();
        }

        return self::$DB_Instance;
    }

	/* Prepare query SQL statement
	@param mixed $sql
	@return bool
	*/
	public function q($sql){

		if( !($this->STH = $this->DBH->prepare($sql)) ){

			$this->error($this->STH->errorCode(), $this->STH->errorInfo());

		} else {

			return true;	

		}

	}

	/* Bind variables with type
	@param string $bind
	@param mixed $var
	@param string $type
	@param int $len
	@return bool
	*/
	public function bind($bind, $var, $type, $len = null){

		switch ($type)
		{
			case 'STR':
					return $this->STH->bindParam($bind, $var, PDO::PARAM_STR, $len);
				break;

			case 'INT':
					return $this->STH->bindParam($bind, $var, PDO::PARAM_INT, $len);
				break;

			case 'LOB':
					return $this->STH->bindParam($bind, $var, PDO::PARAM_LOB);
				break;
		}

	}

	/* Execute the SQL statement
	@return bool
	*/
	public function run(){

		if(!$this->STH->execute()){
			$this->error($this->STH->errorCode(), $this->STH->errorInfo());
		} else {
			return true;
		}

	}

	/* Email error
	@param array $error
	*/
	private function error($errorCode, $errorInfo){

		$mssg .= 'Code: '.$errorCode."\n\r";
		$mssg .= $errorInfo[0].': '.$errorInfo[1]."\n\r";
		$mssg .= $errorInfo[2]."\n\r";

		mail("youremail@domain.com", "MySQL Error", "$mssg");

	}

} // END class DB

// EXAMPLE USAGE
/*
$DB = DB::open();

// Simple Query
$sql = "SELECT col1, col2 FROM table";
$DB->q($sql);
//$DB->bind(':var', $var, 'STR');
$DB->run();

while($row = $DB->STH->fetch()){

	echo $row['COL1'].' '.$row['COL2'].'';

}
*/
</pre>
<p>This is just a simple connection. I&#8217;m sure it can be improved. If you have any flavor you want to add, comment and I will consider your addition.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.newelementdesigns.com/blog/2010/05/28/mysql-pdo-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Centrifuge CMS</title>
		<link>http://www.newelementdesigns.com/blog/2010/05/27/centrifuge-cms/</link>
		<comments>http://www.newelementdesigns.com/blog/2010/05/27/centrifuge-cms/#comments</comments>
		<pubDate>Fri, 28 May 2010 01:58:51 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[Site News]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.newelementdesigns.com/blog/?p=108</guid>
		<description><![CDATA[I now have my very own CMS for any new web development. New clients can easily take advantage of Centrifuge. This will give you the ability to manage the content on your website. It&#8217;s primary focus is page content, but includes content management for blogging, events. A more detailed post is coming soon with a [...]]]></description>
			<content:encoded><![CDATA[<p>I now have my very own CMS for any new web development. New clients can easily take advantage of Centrifuge. This will give you the ability to manage the content on your website. It&#8217;s primary focus is page content, but includes content management for blogging, events. A more detailed post is coming soon with a featured list and screen shots.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.newelementdesigns.com/blog/2010/05/27/centrifuge-cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reward Buck v3.0</title>
		<link>http://www.newelementdesigns.com/blog/2010/05/27/reward-buck-v3-0/</link>
		<comments>http://www.newelementdesigns.com/blog/2010/05/27/reward-buck-v3-0/#comments</comments>
		<pubDate>Fri, 28 May 2010 01:45:36 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.newelementdesigns.com/blog/?p=104</guid>
		<description><![CDATA[The new version of Reward Buck is live. This is the 3rd version of the local gift certificate site. A new addition is the certificate API. This will allow a site owner to sell their own local certificates through Reward Buck&#8217;s API. For more information you can contact them here.]]></description>
			<content:encoded><![CDATA[<p>The new version of Reward Buck is live. This is the 3rd version of the local gift certificate site. A new addition is the certificate API. This will allow a site owner to sell their own local certificates through Reward Buck&#8217;s API. For more information you can contact them <a href="http://www.rewardbuck.com/contact.php">here</a>.</p>
<p><a href="http://www.rewardbuck.com"><img class="alignnone size-medium wp-image-105" title="rb-screenshot_sm" src="http://www.newelementdesigns.com/blog/wp-content/uploads/2010/05/rb-screenshot_sm-300x291.jpg" alt="Reward Buck 3.0" width="300" height="291" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.newelementdesigns.com/blog/2010/05/27/reward-buck-v3-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Datachambers Site Launch</title>
		<link>http://www.newelementdesigns.com/blog/2010/01/27/datachambers-site-launch/</link>
		<comments>http://www.newelementdesigns.com/blog/2010/01/27/datachambers-site-launch/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 20:54:13 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.newelementdesigns.com/blog/?p=99</guid>
		<description><![CDATA[I recently launched a new site for Datachambers. Data Chambers is a technology and Information Management services company providing Business Continuity services, Electronic online data backup, Hardcopy Records Management and Data Center Solutions. This site is based on WordPress and features some nice jQuery effects. View http://www.datachambers.com]]></description>
			<content:encoded><![CDATA[<p>I recently launched a new site for Datachambers. Data Chambers is a technology and Information Management services company providing Business Continuity services, Electronic online data backup, Hardcopy Records Management and Data Center Solutions.</p>
<p>This site is based on WordPress and features some nice jQuery effects. View <a href="http://www.datachambers.com" target="_blank">http://www.datachambers.com</a></p>
<p><img class="alignnone size-medium wp-image-100" title="DC-Comp-2-4" src="http://www.newelementdesigns.com/blog/wp-content/uploads/2010/01/DC-Comp-2-4-280x300.jpg" alt="" width="280" height="300" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.newelementdesigns.com/blog/2010/01/27/datachambers-site-launch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Long Time, No Updates, Lots Going On&#8230;</title>
		<link>http://www.newelementdesigns.com/blog/2009/06/19/long-time-no-updates/</link>
		<comments>http://www.newelementdesigns.com/blog/2009/06/19/long-time-no-updates/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 19:53:35 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.newelementdesigns.com/blog/?p=92</guid>
		<description><![CDATA[Wow. I&#8217;ve been real busy. It has been a while sine I updated the blog. A few projects going on around here. Walkerfirst.com is going up with a new look. They have introduced an online ordering system for telecom equipment. They are also now offering virtual warehousing for equipment and serial number tracking. Elle Wedding [...]]]></description>
			<content:encoded><![CDATA[<p>Wow. I&#8217;ve been real busy. It has been a while sine I updated the blog. A few projects going on around here.</p>
<p><a title="Walker First" href="http://beta.walkerfirst.com" target="_blank">Walkerfirst.com</a> is going up with a new look. They have introduced an online ordering system for telecom equipment. They are also now offering virtual warehousing for equipment and serial number tracking.</p>
<p><a href="http://beta.walkerfirst.com"><img class="alignnone size-medium wp-image-93" title="Walker and Associates" src="http://www.newelementdesigns.com/blog/wp-content/uploads/2009/06/WF_NEW_homepage-300x263.jpg" alt="Walker and Associates" width="300" height="263" /></a></p>
<p><a title="Elle Wedding Gowns" href="http://elleweddinggowns.com" target="_blank">Elle Wedding Gowns</a> is a site going up soon for people that want to buy or sell used wedding gowns. It will feature a shopping cart with order tracking and a messaging system for those selling their gowns. A consignment option will be available too.</p>
<p><a href="http://elleweddinggowns.com"><img class="alignnone size-medium wp-image-94" title="Elle Wedding Gowns" src="http://www.newelementdesigns.com/blog/wp-content/uploads/2009/06/elle-300x112.jpg" alt="Elle Wedding Gowns" width="300" height="112" /></a></p>
<p>Last but not least is the new Data Chambers site. Work is just beginning and will feature a totally refreshed design based on the ever so popular WordPress engine.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.newelementdesigns.com/blog/2009/06/19/long-time-no-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Date Range Picker</title>
		<link>http://www.newelementdesigns.com/blog/2009/01/17/jquery-date-range-picker/</link>
		<comments>http://www.newelementdesigns.com/blog/2009/01/17/jquery-date-range-picker/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 15:43:06 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[date picker]]></category>

		<guid isPermaLink="false">http://www.newelementdesigns.com/blog/?p=78</guid>
		<description><![CDATA[Date Range Picker using jQuery UI 1.6 and jQuery UI CSS Framework. This is a very nice date range picker. By far one of the best I&#8217;ve seen. It uses the new jQuery UI CSS Framewwork and it comes with 17 differnt themes to choose from. There is an issue using more than one instance [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.filamentgroup.com/lab/date_range_picker_using_jquery_ui_16_and_jquery_ui_css_framework/"><img class="size-medium wp-image-80 alignright margin-right" title="jQuery Date Range Picker" src="http://www.newelementdesigns.com/blog/wp-content/uploads/2009/01/date1-300x180.jpg" alt="jQuery Date Range Picker" width="240" height="144" align="right" /></a> <a href="http://www.filamentgroup.com/lab/date_range_picker_using_jquery_ui_16_and_jquery_ui_css_framework/" target="_blank">Date Range Picker using jQuery UI 1.6 and jQuery UI CSS Framework</a>. This is a very nice date range picker. By far one of the best I&#8217;ve seen. It uses the new jQuery UI CSS Framewwork and it comes with 17 differnt themes to choose from. There is an issue using more than one instance per page, but they have stated this will be fixed  soon. Give it a try for yourself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.newelementdesigns.com/blog/2009/01/17/jquery-date-range-picker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Frosted Glass Tutorial in Photoshop</title>
		<link>http://www.newelementdesigns.com/blog/2009/01/13/frosted-glass-tutorial-in-photoshop/</link>
		<comments>http://www.newelementdesigns.com/blog/2009/01/13/frosted-glass-tutorial-in-photoshop/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 01:33:35 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[frosted]]></category>
		<category><![CDATA[glass]]></category>
		<category><![CDATA[photoshop]]></category>

		<guid isPermaLink="false">http://www.newelementdesigns.com/blog/?p=55</guid>
		<description><![CDATA[This is a beginners tutorial on how to create a frosted glass effect. Cultured Code used this effect when they launched Things 1.0 for Mac. I know there are several ways to achieve this look, but I&#8217;m using the following techniques to keep the original image in a non-destructive way and keep it simple. So [...]]]></description>
			<content:encoded><![CDATA[<p>This is a beginners tutorial on how to create a frosted glass effect. <a href="http://culturedcode.com" target="_blank">Cultured Code</a> used this effect when they launched Things 1.0 for Mac. I know there are several ways to achieve this look, but I&#8217;m using the following techniques to keep the original image in a non-destructive way and keep it simple. So lets begin.</p>
<p style="text-align: center;"><img class="size-full wp-image-68 aligncenter" title="frost-sample1" src="http://www.newelementdesigns.com/blog/wp-content/uploads/2009/01/frost-sample1.jpg" alt="frost-sample1" width="150" height="116" /></p>
<h3><span id="more-55"></span></h3>
<h3>Step 1 &#8211; Use about any image</h3>
<p>You can use any image for this tutorial. I&#8217;ve found that darker images work a little better since the frost look is already a lighter effect. This is the image I&#8217;m going to use.</p>
<p><img class="size-medium wp-image-56 alignnone" title="step-1" src="http://www.newelementdesigns.com/blog/wp-content/uploads/2009/01/step-1-300x225.jpg" alt="step-1" width="300" height="225" /></p>
<h3>Step 2 &#8211; Duplicate the layer</h3>
<p>Once you have your image open in Photoshop, duplicate the layer. You can do this easily by clicking and dragging the background layer to the &#8216;create new layer&#8217; icon at the bottom of the layer palette.</p>
<p><img class="size-full wp-image-57 alignnone" title="step-2a" src="http://www.newelementdesigns.com/blog/wp-content/uploads/2009/01/step-2a.jpg" alt="step-2a" width="217" height="289" /></p>
<h3 style="text-align: left;">Step 3 &#8211; Set guides and copy section</h3>
<p style="text-align: left;">Now we are going to use guides to set an area we want to apply the frost effect to. If you do not have rulers enabled, please do so in the menu by going to &#8216;View&#8217; -&gt; and check &#8216;Rulers&#8217;. You should now see rulers around your image. With your mouse click in the top ruler area ad drag drop into the image. It will bring a guide down where you can place it into the image. Place two guides on the image about 2-3 inches apart. Mine looks like this:</p>
<p><img class="size-medium wp-image-58 alignnone" title="guides" src="http://www.newelementdesigns.com/blog/wp-content/uploads/2009/01/guides-300x256.jpg" alt="guides" width="300" height="256" /></p>
<h3 style="text-align: left;">Step 4 &#8211; Selections</h3>
<p style="text-align: left;">Now , using the guides, we are going to select a piece of the image where we want to start the effect. Grab the rectangle marquee tool in the tools palette. Make sure you are on the new layer you just created. Select the area inside the guides. If you have snaping turned on Photoshop will help snap your selection to the guides. To enable snapping in the menu go to &#8216;View&#8217; -&gt; and click &#8216;Snap&#8217;. With the rectangle marquee tool start from one of the corners and drag it to the opposite diagonal corner to select the entire area inside the guides. When you are done, release the mouse and press Command C (Mac) or Control C (Windows) and copy the selection. Now create a new layer in the layers palette and press Command V (Mac) or Control V (Windows) to paste the selection on the new layer. You probably won&#8217;t see anything happen, but you will see your new selection on the new layer just like the below image.</p>
<p style="text-align: left;"><img class="size-full wp-image-59 alignnone" title="step-4" src="http://www.newelementdesigns.com/blog/wp-content/uploads/2009/01/step-4.jpg" alt="step-4" width="216" height="288" /></p>
<h3 style="text-align: left;">Step 5 &#8211; The frost begins</h3>
<p style="text-align: left;">Click on the &#8216;create new layer&#8217; icon in the layers palette. Now, as we did in the last step with the rectangle marquee selection tool, select the area inside the guides. Next, select the paint bucket tool, change the foreground color to white (#FFFFFF) and click inside the selected area to fill it with white. Press Command D (Mac) or Control D (Windows)  to get rid of the marquee. Your image should now look like this:</p>
<p style="text-align: left;"><img class="size-medium wp-image-60 alignnone" title="step-5" src="http://www.newelementdesigns.com/blog/wp-content/uploads/2009/01/step-5-300x185.jpg" alt="step-5" width="300" height="185" /></p>
<h3 style="text-align: left;">Step 6 &#8211; Apply the frosting</h3>
<p style="text-align: left;">Click on the layer title &#8216;Layer 1&#8242; in the layers palette. In the menu go to Filter -&gt; Blur -&gt; Gaussian Blur. Set the radius to 4 and click OK as noted in the example below.</p>
<p style="text-align: left;"><img class="size-medium wp-image-61 alignnone" title="step-6a" src="http://www.newelementdesigns.com/blog/wp-content/uploads/2009/01/step-6a-300x300.jpg" alt="step-6a" width="300" height="300" /></p>
<p style="text-align: left;">Now click on &#8216;Layer 2&#8242; in the layers palette. In the adjustments area of the layer palette, set the opacity to 40% like below.</p>
<p style="text-align: left;"><img class="size-full wp-image-62 alignnone" title="step-6b" src="http://www.newelementdesigns.com/blog/wp-content/uploads/2009/01/step-6b.jpg" alt="step-6b" width="217" height="200" /></p>
<h3 style="text-align: left;">Step 7 &#8211; Bring the noise</h3>
<p style="text-align: left;">Now with &#8216;Layer 2&#8242; still selected in the layers palette, in the menu, go to &#8216;Filter&#8217; -&gt; &#8216;Noise&#8217; and choose &#8216;Add Noise&#8217;. Set the amount to 10 and click OK. This will polish off the frost look.</p>
<p style="text-align: left;"><img class="size-medium wp-image-63 alignnone" title="step-6c" src="http://www.newelementdesigns.com/blog/wp-content/uploads/2009/01/step-6c-234x300.jpg" alt="step-6c" width="234" height="300" /></p>
<h3 style="text-align: left;">Final Result</h3>
<p style="text-align: left;">That&#8217;s it. I know there are other ways to accomplish this, but this is very easy for beginners. You can use adjustment layers and masks, but I tried not to include too much in this simple tutorial. You can download the PSD file <a href="http://www.newelementdesigns.com/files/frosted-glass.zip">here</a></p>
<p style="text-align: left;"><img class="size-medium wp-image-64 alignnone" title="final-result" src="http://www.newelementdesigns.com/blog/wp-content/uploads/2009/01/final-result-300x225.jpg" alt="final-result" width="300" height="225" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.newelementdesigns.com/blog/2009/01/13/frosted-glass-tutorial-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>RewardBuck.com Finally Launched</title>
		<link>http://www.newelementdesigns.com/blog/2009/01/11/rewardbuckcom-finally-launched/</link>
		<comments>http://www.newelementdesigns.com/blog/2009/01/11/rewardbuckcom-finally-launched/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 04:47:09 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://www.newelementdesigns.com/blog/?p=51</guid>
		<description><![CDATA[It&#8217;s finally here! We gave birth to a new site, RewardBuck.com. It&#8217;s a gift certificate/coupon site that hosts local half-priced gift certificates and more. Please check it out. The deals are very nice.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s finally here! We gave birth to a new site, <a title="Reward Buck" href="http://www.rewardbuck.com" target="_blank">RewardBuck.com</a>. It&#8217;s a gift certificate/coupon site that hosts local half-priced gift certificates and more. Please check it out. The deals are very nice.</p>
<p><a href="http://www.rewardbuck.com"><img class="aligncenter size-medium wp-image-52" title="reward-buck-half-priced-gift-certificates-and-coupons-winston-salem-greensboro-lexington-north-carolina-click-save-entertain" src="http://www.newelementdesigns.com/blog/wp-content/uploads/2009/01/reward-buck-half-priced-gift-certificates-and-coupons-winston-salem-greensboro-lexington-north-carolina-click-save-entertain-300x236.jpg" alt="reward-buck-half-priced-gift-certificates-and-coupons-winston-salem-greensboro-lexington-north-carolina-click-save-entertain" width="300" height="236" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.newelementdesigns.com/blog/2009/01/11/rewardbuckcom-finally-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Killer Mac Apps Going Into 2009</title>
		<link>http://www.newelementdesigns.com/blog/2009/01/01/killer-mac-apps-going-into-2009/</link>
		<comments>http://www.newelementdesigns.com/blog/2009/01/01/killer-mac-apps-going-into-2009/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 00:44:40 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[Mac Apps]]></category>

		<guid isPermaLink="false">http://www.newelementdesigns.com/blog/?p=38</guid>
		<description><![CDATA[2009 brings great things for Mac users. Snow Leopard comes out this year and a some new exciting apps are on the horizon. All of the ones I&#8217;m going to discuss are in public beta or the final version will be released next week during Macworld &#8217;09 or later. I won&#8217;t go into too much [...]]]></description>
			<content:encoded><![CDATA[<p>2009 brings great things for Mac users. Snow Leopard comes out this year and a some new exciting apps are on the horizon. All of the ones I&#8217;m going to discuss are in public beta or the final version will be released next week during Macworld &#8217;09 or later. I won&#8217;t go into too much detail on these apps, just wanted those not aware of these great tools to download and try them out for themselves.</p>
<p><span id="more-38"></span></p>
<h3>Things</h3>
<p>First up is <a href="http://culturedcode.com" target="_blank">Things</a> form Cultured Code. They recently relased 1.0RC2 and are planning  on releasing the final version at Macworld &#8217;09. Things is a task management app based on cocoa with a slick and very intuitive interface. You can organize tasks by projects, areas, teammates as well as put tasks into a today and someday queue. Things will cost $49.95 USD and there is also a Things iPhone version available now for $9.99 USD.</p>
<p><a href="file:///Users/donjones/Desktop/things.tiff"></a><a href="http://culturedcode.com"><img class="aligncenter size-medium wp-image-42" title="Things" src="http://www.newelementdesigns.com/blog/wp-content/uploads/2009/01/things-300x197.jpg" alt="Things" width="300" height="197" /></a></p>
<h3>Fontcase</h3>
<p>The next app I&#8217;m excited about is <a href="http://http://www.bohemiancoding.com/fontcase/" target="_blank">Fontcase</a> from Bohemian Coding. Fontcase is a new font management app for Leopard. I personally think it&#8217;s designed better than <a href="http://extensis.com" target="_blank">Suitcase Fusion</a> and <a href="http://linotype.com">FontExplorer X</a>. It has a unique way of viewing and organizing fonts. You can find a good review of Fontcase over at the <a href="http://the-danimal.com/" target="_blank">The Danimal</a>. No word yet on a price for Fontcase. It is currently in public beta and you can download Fontcase from <a href="http://www.bohemiancoding.com/download/fontcase.zip" target="_blank">http://www.bohemiancoding.com/download/fontcase.zip</a>.</p>
<p><a href="http://www.bohemiancoding.com/fontcase/"><img class="aligncenter size-medium wp-image-43" title="Fontcase" src="http://www.newelementdesigns.com/blog/wp-content/uploads/2009/01/fontcase-300x221.jpg" alt="Fontcase" width="300" height="221" /></a></p>
<h3>EventBox</h3>
<p>Last but not least is <a href="http://thecosmicmachine.com/" target="_blank">EventBox</a> developed by The Cosmic Machine. This is an all-in-one social networking application allows you to post updates to Twitter, Facebook, Flickr and share links to Reddit and in the future Digg.com. EventBox makes it easier to post to multiple social networks and for some, such as Flickr and Facebook, you can view images too. EventBox is currently $15 USD until they release a final version, then it will cost $20 USD.</p>
<p><a href="http://thecosmicmachine.com/"><img class="aligncenter size-medium wp-image-44" title="EventBox" src="http://www.newelementdesigns.com/blog/wp-content/uploads/2009/01/alllinone-300x255.jpg" alt="EventBox" width="300" height="255" /></a></p>
<p>That&#8217;s all I have. Please download and try these great apps. They&#8217;ve helped me to be better organized.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.newelementdesigns.com/blog/2009/01/01/killer-mac-apps-going-into-2009/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
