<?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>WebThatMatters</title>
	<atom:link href="http://www.webthatmatters.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webthatmatters.com</link>
	<description>The internet home for designer, developer, and entrepreneur Morgan Craft</description>
	<lastBuildDate>Fri, 30 Oct 2009 17:58:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>BrusselieBabies Blog Is Up</title>
		<link>http://www.webthatmatters.com/2009/10/19/brusseliebabies-blog-is-up/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=brusseliebabies-blog-is-up</link>
		<comments>http://www.webthatmatters.com/2009/10/19/brusseliebabies-blog-is-up/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 17:50:56 +0000</pubDate>
		<dc:creator>morgan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthatmatters.com/?p=72</guid>
		<description><![CDATA[After a considerable amount of designing and hacking around on wordpress I&#8217;m happy to announce the launch of Brusselie Babies Blog.  
Most of the design work was done in Adobe Illustrator.  I ended up grabbing some custom brushes to get the sketch look I wanted for the logo of Wickett.  The rest [...]]]></description>
			<content:encoded><![CDATA[<p>After a considerable amount of designing and hacking around on wordpress I&#8217;m happy to announce the launch of <a href="http://blog.brusseliebabies.com/" target="_blank">Brusselie Babies Blog</a>.  </p>
<p>Most of the design work was done in Adobe Illustrator.  I ended up grabbing some custom brushes to get the sketch look I wanted for the logo of Wickett.  The rest of the design elements were completed using standard Illustrator brushes.</p>
<p>As always, the Wordpress setup was fairly standard along with the template creation.  I love how easy Wordpress makes everything. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.webthatmatters.com/2009/10/19/brusseliebabies-blog-is-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My take on RESTful Services a relaxed approach</title>
		<link>http://www.webthatmatters.com/2009/10/13/my-take-on-restful-a-relaxed-approach/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=my-take-on-restful-a-relaxed-approach</link>
		<comments>http://www.webthatmatters.com/2009/10/13/my-take-on-restful-a-relaxed-approach/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 15:53:33 +0000</pubDate>
		<dc:creator>morgan</dc:creator>
				<category><![CDATA[RESTful]]></category>
		<category><![CDATA[Startups]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://www.webthatmatters.com/?p=61</guid>
		<description><![CDATA[As I&#8217;ve been working part-time on developing a restful web service for a client and a service for Glaxal I thought it best to review RESTful Wev Services by Leonard Richardson and Sammy Ruby.  I had previously read the RESTFUL web-service when it was originally written in 2007 and decided I needed a refresher [...]]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;ve been working part-time on developing a restful web service for a client and a service for Glaxal I thought it best to review <a href="http://www.amazon.com/RESTful-Web-Services-Leonard-Richardson/dp/0596529260" target="_blank">RESTful Wev Services</a> by Leonard Richardson and Sammy Ruby.  I had previously read the RESTFUL web-service when it was originally written in 2007 and decided I needed a refresher of the concepts.</p>
<p>In my second reading I worried less about understanding the proper usage of http-methods like PUT or DELETE and focused more on specific structural gems buried in the text.  A perfect example is a section discussing how to structure value-pair information such as geo-cordinates (Lat and Long).  In a URI one could do /lat/34.2345/long/67.345/  problem with this structuring is it indicates that there is a hierarchical relationship between lat and long when there isn&#8217;t.  They are in fact a value-pair.  A better representation would be /geo-cords/34.2345,67.345/  One might wonder why I use a comma.  I could of course use various other characters &#8220;+&#8221; or &#8220;;&#8221; that are acceptable and do not require encoding as defined by <a href="http://www.w3.org/Addressing/rfc1738.txt" target="_blank">RFC-1738 URL</a>.  But the authors discuss that &#8220;,&#8221; should be used for ordinal sets of data and ; when the non-ordinal.  So for instance if you wanted to represent the colors found in a bedroom that could be /bedroom/colors/brown;light-blue;white/  </p>
<p>The authors also spend some time discussing the importance of creating and structuring what are known as &#8216;resources&#8217;.  A resource can be anything including a composite of multiple resources.  At one point the author makes the statement, if what you are trying to define isn&#8217;t working then perhaps you need another resource.  A better solution than trying to bend and contort an API to work with your data.</p>
<p>Lastly, As I&#8217;m now in the process of writing several RESTful services there is a need to develop an approach for documenting and visualizing the service.  Especially as my list of resources is growing and the need to organize everything into systems so I can a top-down approach.  I&#8217;ve looked at the <a href="http://apiwiki.twitter.com/Twitter-API-Documentation" target="_blank">twitter api documentation</a> which is a bottom-up perspective consisting of just a list of URLs which can be daunting to interpret.  One of the author&#8217;s Leonard Riahcardson <a href="http://www.crummy.com/2007/06/04/0" target="_blank">discusses</a> the documenting format known as WADL which is supposed to be similar to the concept of the WSDL.  However, much debate has erupted over the WADL format, for various reasons a few links: [<a href="http://plasmasturm.org/log/460/" target="_blank">Aristotle Pagaltzis</a>, <a href="http://johnheintz.blogspot.com/2007/05/does-rest-need-dl.html" target="_blank">John<br />
Heintz</a>].  Some of the arguments are valid.  I agree that having machine generated code breeds major issues and in some ways a RESTful service is self documenting.  However, having a standard that provides a methodology for documenting is never a bad thing.  Especially as I&#8217;m now in the process of creating a service with 20-30 resources each with various methods &#8211; some more RESTful than others.  I don&#8217;t plan on building a WADL file and telling people that this is the be-all-document for everyone to use.  But, having an internal documentation structure for myself would be beneficial as I&#8217;d conform to some set standard rather than creating my own.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webthatmatters.com/2009/10/13/my-take-on-restful-a-relaxed-approach/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lunchtime with a Barbarian</title>
		<link>http://www.webthatmatters.com/2009/09/19/lunchtime-with-a-barbarian/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=lunchtime-with-a-barbarian</link>
		<comments>http://www.webthatmatters.com/2009/09/19/lunchtime-with-a-barbarian/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 13:57:27 +0000</pubDate>
		<dc:creator>morgan</dc:creator>
				<category><![CDATA[Startups]]></category>

		<guid isPermaLink="false">http://www.webthatmatters.com/?p=46</guid>
		<description><![CDATA[The past few weeks I&#8217;ve been working out of the Rose Tech Ventures Incubator and every Friday features a speaker during lunch.  This past Friday co-founder Rick Web from The Barbarian Group came to to speak about the relationship between start-ups and digital marketing.  His slides are available online
The talk was fast paced [...]]]></description>
			<content:encoded><![CDATA[<p>The past few weeks I&#8217;ve been working out of the Rose Tech Ventures Incubator and every Friday features a speaker during lunch.  This past Friday co-founder <a href="http://www.barbariangroup.com/employees/rick_webb">Rick Web</a> from <a href="http://www.barbariangroup.com/barbaripedia">The Barbarian Group</a> came to to speak about the relationship between start-ups and digital marketing.  His slides are available <a href="http://www.barbariangroup.com/posts/3863-gave_a_talk_today_over_at_rose_tech_ventures_as_part_of_their">online</a></p>
<p>The talk was fast paced and informative.  Rick gave a brief overview of the client work they focus on including several high profile clients &#8211; Apple and Fox.  The discussion eventually evolved and turned towards how in the past they have worked with successful start-ups in various phases.  Of the several successful start-ups mentioned, Brooklyn based <a href="http://www.hellohealth.com">Hello Health</a> stuck out because I&#8217;d met the founder at SXSW this past year.</p>
<p>To illustrate the typical relationships with start-ups Rick had compiled an interesting line graph that depicted when start-ups generally hire a digital agency.  The take away, the beginning stages when start-ups had a little bit of money and then the end stage where business is booming.  There exists this middle lull which Rick made several speculations why start-ups chose not to contact a marketing specialist in that stage.  Common thoughts are the start-ups are in sprint mode and not marketing focused, which arguably a company should never ignore their marketing.</p>
<p>To me what mattered most was the marketing for equity offer.  Rick&#8217;s firm is approached by start-ups that want a full range of services from development to marketing.  However, for those tech-entrepreneurs that boot-strap their start-up and build their own software (conceivably the hard part) and just need marketing help for launch The Barbarian Group is willing to do that portion for equity.  Not a bad offer in the scheme of things.  This concept is not new though in that I heard a similar offer from <a href="http://www.duffy.com/" target="_blank">Duff &amp; Partners</a> at the <a href="http://smartmodels.aigany.org/" target="_blank">AIGA Smart Models</a> event last year.  But if you are software / business focused like I am which I could spend my time formulating a marketing strategy however I should focus on running the company.  And a little bit of equity share or risk share isn&#8217;t necessarily a bad thing.  Arguably, it motivates the agency to help you succeed if they want to get their return on investment. </p>
<p>Ultimately I was impressed by the presentation and the energy Rick gave.  The Barbarian Group definitely has a young and energetic energy about them that makes them very appealing once I get my software written.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webthatmatters.com/2009/09/19/lunchtime-with-a-barbarian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On installing Magento the WizardController</title>
		<link>http://www.webthatmatters.com/2009/09/09/on-installing-magento-the-wizardcontroller/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=on-installing-magento-the-wizardcontroller</link>
		<comments>http://www.webthatmatters.com/2009/09/09/on-installing-magento-the-wizardcontroller/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 13:24:54 +0000</pubDate>
		<dc:creator>morgan</dc:creator>
				<category><![CDATA[System Admin]]></category>
		<category><![CDATA[lesson learned]]></category>
		<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://www.webthatmatters.com/?p=38</guid>
		<description><![CDATA[I recently grabbed the open-source e-commerce platform Magento so I could begin delving into the code and setting up a development environment to begin building BrusselieBabies.
After my exploration was complete it was time to upload the package and configure an environment on my hosted solution.  Of course being slightly lazy I went ahead and [...]]]></description>
			<content:encoded><![CDATA[<p>I recently grabbed the open-source e-commerce platform Magento so I could begin delving into the code and setting up a development environment to begin building BrusselieBabies.</p>
<p>After my exploration was complete it was time to upload the package and configure an environment on my hosted solution.  Of course being slightly lazy I went ahead and just used ftp and dragged the unpackaged folder into the corresponding web location.</p>
<p>When the upload had completed I began the installation process.  Unfortunately the install page threw:</p>
<p><strong>Fatal error:</strong> Call to a member function append() on a non-object in /app/code/core/Mage/Install/controllers/WizardController.php on line 72</p>
<p>My attempts to google the error message returned terrible results filled with servers actually throwing the error or German forums with the error in question and no answer provided.</p>
<p>Finally while digging around I saw someone mention files may be missing from package, as a result I uploaded the archive instead.  SSH&#8217;d into my solution and unpackaged it.  Build ran fine.</p>
<p>Lesson learned: just use the package archive and go through the extra step of having to unpackage it on the server.  Otherwise you could end up wasting time trying to troubleshoot a non-existent issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webthatmatters.com/2009/09/09/on-installing-magento-the-wizardcontroller/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PhotoManagement 2.0 on MarketPublique</title>
		<link>http://www.webthatmatters.com/2009/08/28/photomanagement-on-marketpublique/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=photomanagement-on-marketpublique</link>
		<comments>http://www.webthatmatters.com/2009/08/28/photomanagement-on-marketpublique/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 21:22:49 +0000</pubDate>
		<dc:creator>morgan</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.webthatmatters.com/?p=34</guid>
		<description><![CDATA[
.myHeader{
border-bottom:1px solid #598194;
clear:left;
font-size:14px;
padding:0 0 3px 3px;
margin-bottom:10px;
}

Overview
Exciting news today as I led the release for Brooklyn based vintage auction website Marketpublique.  The release specifically includes my work on the Photo Management tools for sellers, providing a rich user interface for multiple file uploads and an easy to use drag-n-drop photo arrangement panel.
For a look at [...]]]></description>
			<content:encoded><![CDATA[<style>
.myHeader{
border-bottom:1px solid #598194;
clear:left;
font-size:14px;
padding:0 0 3px 3px;
margin-bottom:10px;
}
</style>
<h3 class="myHeader">Overview</h3>
<p><img class="alignnone size-full wp-image-36" title="mp-release-img-logo" src="http://www.webthatmatters.com/wp-content/themes/webthatmatters/images/colored-mp-logo.jpg" alt="mp-release-img-logo" />Exciting news today as I led the release for Brooklyn based vintage auction website <a href="http://shop.marketpublique.com/" target="_blank">Marketpublique</a>.  The release specifically includes my work on the Photo Management tools for sellers, providing a rich user interface for multiple file uploads and an easy to use drag-n-drop photo arrangement panel.</p>
<p>For a look at the new tools visit MarketPublique&#8217;s <a href="http://blip.tv/file/2528513" target="_blank">screen cast</a> covering the new Photo Management tool.  Also, visit their <a href="http://shop.marketpublique.com/fresh.php" target="_blank">auctions</a> to find yourself a fresh outfit for this fall.</p>
<h3 class="myHeader">Technology</h3>
<p>The design proposal called for a considerable amount of front-end work drawing inspiration from incredible upload tools such as flickr.  After researching the client libraries and my partiality to jQuery I settled on the <a href="http://www.uploadify.com/" target="_blank">Uploadify</a> library.  Uploadify is the leading swfUploader plugin for jQuery with incredible extensibility.  Some additional customization was required however to join the uploadify plugin with jQuery&#8217;s <a href="http://jqueryui.com/demos/sortable/" target="_blank"Sortable UI widget</a>.  Ultimately, the project&#8217;s front-end came together coupled with the re-architectured file system not only has user functionality been improved but site performance as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webthatmatters.com/2009/08/28/photomanagement-on-marketpublique/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screen burn competition results</title>
		<link>http://www.webthatmatters.com/2009/03/17/screen-burn-competition-results/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=screen-burn-competition-results</link>
		<comments>http://www.webthatmatters.com/2009/03/17/screen-burn-competition-results/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 17:27:58 +0000</pubDate>
		<dc:creator>morgan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthatmatters.com/?p=27</guid>
		<description><![CDATA[
I attended both Casual and Triple AAA design competitions yesterday and was disappointed in the overall management of the competition.  The impression I had from the SXSW entries were that technical merit or perspective wasn&#8217;t particularly important.

The primary focus and driver for those selected to present were based on which had the best &#8217;story&#8217;. [...]]]></description>
			<content:encoded><![CDATA[<p>
I attended both Casual and Triple AAA design competitions yesterday and was disappointed in the overall management of the competition.  The impression I had from the SXSW entries were that technical merit or perspective wasn&#8217;t particularly important.
</p>
<p>The primary focus and driver for those selected to present were based on which had the best &#8217;story&#8217;.  I realize of course the importance of story, but not every game is driven by a narrative.  And in my presentation I focused less on story and more on mechanics and technology.  Which many of the presenters failed to discuss and at the end of several presentations judges would comment on the lack of substance regarding actual game mechanics.  Or in some cases some presenters never even mentioned how the game would even play.
</p>
<p>Ultimately, I felt some of the presenters were poor in the substance or content and I didn&#8217;t feel like anyone was being innovative.  It was all just story and those that had any sort of game play established it was just a rehashed version platforms games like super mario or kirby&#8217;s dreamland.  Maybe next year they will manage to pick some game designers that are actually do something new.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webthatmatters.com/2009/03/17/screen-burn-competition-results/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finalists Announced</title>
		<link>http://www.webthatmatters.com/2009/03/13/finalists-announced/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=finalists-announced</link>
		<comments>http://www.webthatmatters.com/2009/03/13/finalists-announced/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 16:22:31 +0000</pubDate>
		<dc:creator>morgan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthatmatters.com/?p=25</guid>
		<description><![CDATA[It was announced this morning that Glaxal will not present as a finalist in the SXSW game design competition &#8211; winner list.  I&#8217;m disappointed that I will be unable to present but wish the finalist the best of luck with their upcoming presentations on Sunday.  
As semi-finalist I will be attending the competition [...]]]></description>
			<content:encoded><![CDATA[<p>It was announced this morning that Glaxal will not present as a finalist in the SXSW game design competition &#8211; <a href="http://sxsw.com/node/1286" target="_blank">winner list</a>.  I&#8217;m disappointed that I will be unable to present but wish the finalist the best of luck with their upcoming presentations on Sunday.  </p>
<p>As semi-finalist I will be attending the competition panel as part of the media coverage, if you wish to hear more about my game you can find me at the AAA session. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.webthatmatters.com/2009/03/13/finalists-announced/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Glaxal at SXSW</title>
		<link>http://www.webthatmatters.com/2009/02/10/glaxal-at-sxsw/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=glaxal-at-sxsw</link>
		<comments>http://www.webthatmatters.com/2009/02/10/glaxal-at-sxsw/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 14:23:48 +0000</pubDate>
		<dc:creator>morgan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthatmatters.com/?p=23</guid>
		<description><![CDATA[I&#8217;m excited to announce that Webthatmatters game design proposal &#8216;Glaxal&#8217; is a semi-finalist for SXSW&#8217;s screenburn game design competition in the AAA category.  With such short notice, I&#8217;m now frantically working on the finalist presentation for a chance to present to a panel of leading game developers. 
Just a teaser about my concept, Glaxal [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m excited to announce that Webthatmatters game design proposal &#8216;Glaxal&#8217; is a semi-finalist for <a href="http://www.sxsw.com/node/971" target="_blank">SXSW&#8217;s screenburn game design competition</a> in the AAA category.  With such short notice, I&#8217;m now frantically working on the finalist presentation for a chance to present to a panel of leading game developers. </p>
<p>Just a teaser about my concept, Glaxal is a persistent MMOG that will usher in the next generation of casual gaming. Built as a sci-fi resource control and simulation game, players compete against each other to build a galactic empire.  Some of the core innovative features are ubiquitous play and involved social media aspects.</p>
<p>I&#8217;ll update as events unfold.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webthatmatters.com/2009/02/10/glaxal-at-sxsw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web 2.0 Expo in the Big Apple</title>
		<link>http://www.webthatmatters.com/2008/09/14/web-20-expo-in-the-big-apple/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=web-20-expo-in-the-big-apple</link>
		<comments>http://www.webthatmatters.com/2008/09/14/web-20-expo-in-the-big-apple/#comments</comments>
		<pubDate>Sun, 14 Sep 2008 13:39:50 +0000</pubDate>
		<dc:creator>morgan</dc:creator>
				<category><![CDATA[Conferences]]></category>

		<guid isPermaLink="false">http://www.webthatmatters.com/?p=21</guid>
		<description><![CDATA[This is a big week for NYC, the O&#8217;reily Web 2.0 Expo is happening, some of the greatest technologists and entrepreneurs will be attending &#8211; including WebthatMatters.
                
Stay tuned for an updated calendar listing of which sessions we plan to [...]]]></description>
			<content:encoded><![CDATA[<p>This is a big week for NYC, the <a href="http://en.oreilly.com/webexny2008/public/content/home">O&#8217;reily Web 2.0 Expo</a> is happening, some of the greatest technologists and entrepreneurs will be attending &#8211; including WebthatMatters.
                </p>
<p>Stay tuned for an updated calendar listing of which sessions we plan to attend.
                </p>
]]></content:encoded>
			<wfw:commentRss>http://www.webthatmatters.com/2008/09/14/web-20-expo-in-the-big-apple/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Cablight release v1.01</title>
		<link>http://www.webthatmatters.com/2008/07/03/new-cablight-release-v101/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=new-cablight-release-v101</link>
		<comments>http://www.webthatmatters.com/2008/07/03/new-cablight-release-v101/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 21:10:07 +0000</pubDate>
		<dc:creator>morgan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cablight]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://www.webthatmatters.com/?p=13</guid>
		<description><![CDATA[Today I&#8217;m excited to announced the release of the new version of Cablight.  A premiere social-networking dating application built on the Facebook Development platform.
The latest release features the newly designed match-maker panel, a dual column panel that allows users to play match maker with their friends.  In addition, users requested new ways to contact [...]]]></description>
			<content:encoded><![CDATA[<p>Today I&#8217;m excited to announced the release of the new version of <a href="http://www.cablight.com" target="_blank">Cablight</a>.  A premiere social-networking dating application built on the Facebook Development platform.</p>
<p>The latest release features the newly designed match-maker panel, a dual column panel that allows users to play match maker with their friends.  In addition, users requested new ways to contact potential matches.  As a result we added new features that allow file-attachments and email support.</p>
<p>Join <a href="http://www.facebook.com/apps/application.php?id=10844711071">Cablight</a> on Facebook today to find your potential matches.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webthatmatters.com/2008/07/03/new-cablight-release-v101/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
