<?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>BetaDesigns( Blog )</title>
	<atom:link href="http://www.betadesigns.co.uk/Blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.betadesigns.co.uk/Blog</link>
	<description>Flex and Component Development</description>
	<lastBuildDate>Sat, 27 Oct 2012 11:00:05 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>Wrap Akka Future With PlayFramework Promise</title>
		<link>http://www.betadesigns.co.uk/Blog/2012/10/27/wrap-akka-future-with-playframework-promise/</link>
		<comments>http://www.betadesigns.co.uk/Blog/2012/10/27/wrap-akka-future-with-playframework-promise/#comments</comments>
		<pubDate>Sat, 27 Oct 2012 11:00:05 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Akka]]></category>
		<category><![CDATA[PlayFramework]]></category>
		<category><![CDATA[Scala]]></category>
		<category><![CDATA[akka]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[playframework]]></category>
		<category><![CDATA[promise]]></category>
		<category><![CDATA[scala]]></category>

		<guid isPermaLink="false">http://www.betadesigns.co.uk/Blog/?p=593</guid>
		<description><![CDATA[Just another quick code snippet to show how to handle a Future as a Promise in PlayFramework 2.0.3. If you create some code in a reusable library and you want to call it from your PlayApplication you have to convert the Future to a Play Promise. Here is how to do just that. Akka Future [...]]]></description>
			<content:encoded><![CDATA[<p>Just another quick code snippet to show how to handle a Future as a Promise in PlayFramework 2.0.3.</p>
<p>If you create some code in a reusable library and you want to call it from your PlayApplication you have to convert the Future to a Play Promise. Here is how to do just that.</p>
<p>Akka Future Code.</p>
<script src="https://gist.github.com/3961893.js"></script>
<p>PlayFramework code to wrap Akka Future</p>
<script src="https://gist.github.com/3961916.js"></script>
<a href='http://twitter.com/share?url=http%3A%2F%2Fwww.betadesigns.co.uk%2FBlog%2F%3Fp%3D593&count=horizontal&related=&text=Wrap%20Akka%20Future%20With%20PlayFramework%20Promise' class='twitter-share-button' data-text='Wrap Akka Future With PlayFramework Promise' data-url='http://www.betadesigns.co.uk/Blog/?p=593' data-counturl='http://www.betadesigns.co.uk/Blog/2012/10/27/wrap-akka-future-with-playframework-promise/' data-count='horizontal' data-via='Omnipitence'></a>]]></content:encoded>
			<wfw:commentRss>http://www.betadesigns.co.uk/Blog/2012/10/27/wrap-akka-future-with-playframework-promise/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PlayFramework 2.0, MongoDB and UniqueField Validation</title>
		<link>http://www.betadesigns.co.uk/Blog/2012/10/26/playframework-2-0-mongodb-and-uniquefield-validation/</link>
		<comments>http://www.betadesigns.co.uk/Blog/2012/10/26/playframework-2-0-mongodb-and-uniquefield-validation/#comments</comments>
		<pubDate>Fri, 26 Oct 2012 22:12:07 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Akka]]></category>
		<category><![CDATA[mongodb]]></category>
		<category><![CDATA[PlayFramework]]></category>
		<category><![CDATA[Scala]]></category>
		<category><![CDATA[akka]]></category>
		<category><![CDATA[playframework]]></category>
		<category><![CDATA[scala]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://www.betadesigns.co.uk/Blog/?p=575</guid>
		<description><![CDATA[I could not find much information on making sure a field on a mongdb document was unique when validating a playform so here is some quick code that does the job. Im using Play-Salat to do the lookup but you could just as easily do the lookup directly.]]></description>
			<content:encoded><![CDATA[<p>I could not find much information on making sure a field on a mongdb document was unique when validating a playform so here is some quick code that does the job.</p>
<p>Im using <a title="Play-Salat" href="https://github.com/leon/play-salat">Play-Salat</a> to do the lookup but you could just as easily do the lookup directly.</p>
<script src="https://gist.github.com/3961811.js"></script>
<a href='http://twitter.com/share?url=http%3A%2F%2Fwww.betadesigns.co.uk%2FBlog%2F%3Fp%3D575&count=horizontal&related=&text=PlayFramework%202.0%2C%20MongoDB%20and%20UniqueField%20Validation' class='twitter-share-button' data-text='PlayFramework 2.0, MongoDB and UniqueField Validation' data-url='http://www.betadesigns.co.uk/Blog/?p=575' data-counturl='http://www.betadesigns.co.uk/Blog/2012/10/26/playframework-2-0-mongodb-and-uniquefield-validation/' data-count='horizontal' data-via='Omnipitence'></a>]]></content:encoded>
			<wfw:commentRss>http://www.betadesigns.co.uk/Blog/2012/10/26/playframework-2-0-mongodb-and-uniquefield-validation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Appcelerator Titanium Native Module Development First impressions</title>
		<link>http://www.betadesigns.co.uk/Blog/2012/10/23/appcelerator-titanium-native-module-development/</link>
		<comments>http://www.betadesigns.co.uk/Blog/2012/10/23/appcelerator-titanium-native-module-development/#comments</comments>
		<pubDate>Tue, 23 Oct 2012 21:01:02 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[experiments]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[appcelerator]]></category>
		<category><![CDATA[BDActivityViewController]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Modules]]></category>
		<category><![CDATA[titanium]]></category>
		<category><![CDATA[UIActivityViewController]]></category>

		<guid isPermaLink="false">http://www.betadesigns.co.uk/Blog/?p=556</guid>
		<description><![CDATA[I was recently asked to review Appcelerator's Titanium platform to see how it compares to native iOS application development. I figured the best way to do that would be to create an iOS module for the Titanium Market Place I had a quick look and decided that I would make the UIActivityViewController available as a [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently asked to review Appcelerator's Titanium platform to see how it compares to native iOS application development. I figured the best way to do that would be to create an iOS module for the <a title="Titanium Market Place" href="https://marketplace.appcelerator.com/apps/3815?1843951216" target="_blank">Titanium Market Place</a> I had a quick look and decided that I would make the <a title="UIActivityViewController" href="http://developer.apple.com/library/ios/#documentation/UIKit/Reference/UIActivityViewController_Class/Reference/Reference.html#//apple_ref/occ/cl/UIActivityViewController" target="_blank">UIActivityViewController</a> available as a Titanium Module called <a title="BDActivityViewController" href="https://marketplace.appcelerator.com/apps/3815?1843951216" target="_blank">BDActivityViewController</a>. In a follow up post I will show how I went about creating the module along with some of the issues I encountered and some neat tricks to help with your own module development. But back to the topic at hand. How does Titanium development compare to native iOS development? I have broken it down into the areas that affect me as a developer.</p>
<ul>
<li><a href="#started">Getting Started</a></li>
<li><a href="#libraries">Libraries</a></li>
<li><a href="#ide">IDE</a></li>
<li><a href="#documentation">Learning Resources / Documentation</a></li>
<li><a href="#performance">Performance</a></li>
<li><a href="#community">Community</a></li>
</ul>
<h2><a name="started"></a>Getting Started</h2>
<p>Having given up <a title="Eclipse" href="http://www.eclipse.org/" target="_blank">Eclipse</a> in favour of <a title="Intellij" href="http://www.jetbrains.com/idea/" target="_blank">Intellij</a> for my Scala development I was not looking forward to going back,<br />
However I took the plunge and installed <a title="Titanium Studio" href="https://my.appcelerator.com/resources" target="_blank">Titanium Studio.</a><br />
Once installed you are presented with some options to install pre-configured application as samples or as templates for your own applications I found it very easy to get these applications up and running. In addition the documentation for getting started on the website is very good but a little outdated. So this process was not as painful as I thought it was going to be. However creating a module application was a little more involved. I followed the <a title="iOS Module Development Guide" href="http://docs.appcelerator.com/titanium/2.1/index.html#!/guide/iOS_Module_Development_Guide" target="_blank">iOS Module Development Guide</a> to create a simple template application and I was up and running in no time. I especially liked the ease with which you can quickly test your modules by simply calling &gt;titanium run from the terminal.</p>
<h2><a name="libraries"></a>Libraries</h2>
<p>Titanium seem to have most of the iOS libraries covered but there are still some gaps in functionality and you normally have to wait up to 30 days for an official new release.<br />
On the plus side using the <a title="Titanium Market Place" href="https://marketplace.appcelerator.com/apps/3815?1843951216" target="_blank">Titanium Market Place</a> means that you can access modules for platforms that you have no coding knowledge about! and if you do have the knowledge then you can create modules that fill the gaps and allow others to benefit.</p>
<h2><a name="ide"></a>IDE</h2>
<p>The recommended way to do development is to use Titanium Studio, having used Eclipse for several years I was quickly able to get up and running, debugging and all that entails day to day development. If you have ever used Eclipse then you will feel right at home here. In addition to Eclipse you can do your coding in any editor you like and I even ended up doing most of my module test application in <a title="Sublime Text" href="http://www.sublimetext.com/" target="_blank">Sublime Text</a> only switching over to Titanium Studio when i needed to do some debugging.</p>
<h2><a name="documentation"></a>Learning Resources / Documentation</h2>
<p>There is a lot of learning resources on the Titanium Website with good example applications and even video's. In addition there seems to be a good community on the Questions and Answers board with lots of questions being answered and not just ignored by the community. I did have some issues with exposing custom  CONSTANTS as well as iOS enums to JavaScript but with some digging I was able to work it out.</p>
<h2><a name="performance"></a>Performance</h2>
<p>From what I understand there is a slight performance penalty in using Titanium to manage your application. However if you have performance critical or bottleneck code then that is where Native Modules can help. For example if you have a computationally expensive application that needs to draw many charting components to screen whilst updating them in real time, you may not want to opt for some JavaScript library, but actually get one of your Native iOS developers to create the charting components using a native technology like OpenGL or CoreGraphics to do the rending and then expose a JavaScript API to your Titanium Application.</p>
<h2><a name="community"></a>Community</h2>
<p>I mentioned the Q&amp;A forum above but appart from that I found it difficult to find much information on development. Maybe this is due to the fact you can code in plain old JavaScript, HTML and CSS so that has stopped many people blogging about it. However I was hoping for more information on Module development especially as thats the part that interests me the most.</p>
<h2><a name="conclusion"></a>Conclusion</h2>
<p>I actually enjoyed developing for the Titanium platform it was a lot simpler than I initially thought it was going to be. I have experience developing a <a title="NativeAlert" href="https://github.com/mccormicka/NativeAlert" target="_blank">NativeAlert</a> cross-platform module before in ActionScript to iOS and that was truly a challenge. In a follow up post I will again create a NativeAlert class but this time for Titanium covering some of the issues I had whilst creating the BDActivityViewController allowing with some helpful productivity tips to make the workflow a little easier.</p>
<p>If you know of any good BlogPost, Git Repositories or Tutorials for Titanium Development please leave a comment!</p>
<p>You can also follow me on Twitter @omnipitence</p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fwww.betadesigns.co.uk%2FBlog%2F%3Fp%3D556&count=horizontal&related=&text=Appcelerator%20Titanium%20Native%20Module%20Development%20First%20impressions' class='twitter-share-button' data-text='Appcelerator Titanium Native Module Development First impressions' data-url='http://www.betadesigns.co.uk/Blog/?p=556' data-counturl='http://www.betadesigns.co.uk/Blog/2012/10/23/appcelerator-titanium-native-module-development/' data-count='horizontal' data-via='Omnipitence'></a>]]></content:encoded>
			<wfw:commentRss>http://www.betadesigns.co.uk/Blog/2012/10/23/appcelerator-titanium-native-module-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Liquid-Photo only £0.69 this week!</title>
		<link>http://www.betadesigns.co.uk/Blog/2012/06/08/liquid-photo-only-0-69-this-week/</link>
		<comments>http://www.betadesigns.co.uk/Blog/2012/06/08/liquid-photo-only-0-69-this-week/#comments</comments>
		<pubDate>Fri, 08 Jun 2012 01:01:21 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[iphone]]></category>
		<category><![CDATA[liquid-photo]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[offers]]></category>
		<category><![CDATA[promotions]]></category>

		<guid isPermaLink="false">http://www.betadesigns.co.uk/Blog/?p=551</guid>
		<description><![CDATA[Liquid-Photo for ios will be at the reduced price for this week only! Get it while you can. And please retweet or share with anyone you think would like the application. Liquid-Photo]]></description>
			<content:encoded><![CDATA[<p>Liquid-Photo for ios will be at the reduced price for this week only! Get it while you can. And please retweet or share with anyone you think would like the application.</p>
<p><a href="bit.ly/JLDK1n?PHPSESSID=461f897e3b3c6af68b0632bb218fa0f4" title="Liquid-Photo" target="_blank">Liquid-Photo</a></p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fwww.betadesigns.co.uk%2FBlog%2F%3Fp%3D551&count=horizontal&related=&text=Liquid-Photo%20only%20%C2%A30.69%20this%20week%21' class='twitter-share-button' data-text='Liquid-Photo only £0.69 this week!' data-url='http://www.betadesigns.co.uk/Blog/?p=551' data-counturl='http://www.betadesigns.co.uk/Blog/2012/06/08/liquid-photo-only-0-69-this-week/' data-count='horizontal' data-via='Omnipitence'></a>]]></content:encoded>
			<wfw:commentRss>http://www.betadesigns.co.uk/Blog/2012/06/08/liquid-photo-only-0-69-this-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Liquid-Photo Free This weekend ( 18 May &#8211; 21 May 2012 )</title>
		<link>http://www.betadesigns.co.uk/Blog/2012/05/19/liquid-photo-free-this-weekend-18-may-21-may-2012/</link>
		<comments>http://www.betadesigns.co.uk/Blog/2012/05/19/liquid-photo-free-this-weekend-18-may-21-may-2012/#comments</comments>
		<pubDate>Sat, 19 May 2012 21:25:25 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[liquid-photo]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[freee]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[malware]]></category>

		<guid isPermaLink="false">http://www.betadesigns.co.uk/Blog/?p=547</guid>
		<description><![CDATA[To celebrate my Liquid-photo website getting hacked i have decided to give away Liquid-Photo for iOS for free this weekend. Please download and let me know what you think about the application. Also please retweet, facebook or otherwise let everyone know about the offer. You can download it here for free]]></description>
			<content:encoded><![CDATA[<p>To celebrate my Liquid-photo website getting hacked i have decided to give away Liquid-Photo for iOS for free this weekend. Please download and let me know what you think about the application. Also please retweet, facebook or otherwise let everyone know about the offer. You can download it here for free </p>
<p><a href="http://bit.ly/JLDK1n"><img src="http://www.betadesigns.co.uk/Blog/wp-content/uploads/2012/05/LiquidPhotoIcon.jpg" alt="" title="LiquidPhotoIcon" width="120" height="120" class="aligncenter size-full wp-image-548" /></a></p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fwww.betadesigns.co.uk%2FBlog%2F%3Fp%3D547&count=horizontal&related=&text=Liquid-Photo%20Free%20This%20weekend%20%28%2018%20May%20-%2021%20May%202012%20%29' class='twitter-share-button' data-text='Liquid-Photo Free This weekend ( 18 May - 21 May 2012 )' data-url='http://www.betadesigns.co.uk/Blog/?p=547' data-counturl='http://www.betadesigns.co.uk/Blog/2012/05/19/liquid-photo-free-this-weekend-18-may-21-may-2012/' data-count='horizontal' data-via='Omnipitence'></a>]]></content:encoded>
			<wfw:commentRss>http://www.betadesigns.co.uk/Blog/2012/05/19/liquid-photo-free-this-weekend-18-may-21-may-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Malware attack on Liquid-Photo site</title>
		<link>http://www.betadesigns.co.uk/Blog/2012/05/18/malware-attack-on-liquid-photo-site/</link>
		<comments>http://www.betadesigns.co.uk/Blog/2012/05/18/malware-attack-on-liquid-photo-site/#comments</comments>
		<pubDate>Fri, 18 May 2012 00:39:48 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[akira]]></category>
		<category><![CDATA[coca-cola]]></category>
		<category><![CDATA[cocacola]]></category>
		<category><![CDATA[coke]]></category>
		<category><![CDATA[japanese dictionary]]></category>
		<category><![CDATA[malware]]></category>

		<guid isPermaLink="false">http://www.betadesigns.co.uk/Blog/?p=529</guid>
		<description><![CDATA[I recently received a malware notification from google for my domain liquid-photo.com. It seems that somehow a malicious script managed to make it's way onto the site. I am in the process of cleaning the entire site and as such I am redirecting here to my personal Blog until I can be assured that I [...]]]></description>
			<content:encoded><![CDATA[<p>I recently received a malware notification from google for my domain liquid-photo.com. It seems that somehow a malicious script managed to make it's way onto the site. I am in the process of cleaning the entire site and as such I am redirecting here to my personal Blog until I can be assured that I have totally eradicated the issue from liquid-photo.com.<br />
I am terribly sorry if this has caused anyone issues and I hope to have the site back up and running as soon as possible. I may even take this as an opportunity to redesign both sites. </p>
<p>On a plus side i did find some old images I created when I was at University for some Applications, 3D Models and info graphics.</p>
<p>Enjoy<br />

<a href='http://www.betadesigns.co.uk/Blog/2012/05/18/malware-attack-on-liquid-photo-site/akira_thumb/' title='akira_thumb'><img width="150" height="105" src="http://www.betadesigns.co.uk/Blog/wp-content/uploads/2012/05/akira_thumb.jpg" class="attachment-thumbnail" alt="akira_thumb" title="akira_thumb" /></a>
<a href='http://www.betadesigns.co.uk/Blog/2012/05/18/malware-attack-on-liquid-photo-site/ijkgd_poster_thumb/' title='IJKGD_Poster_thumb'><img width="150" height="150" src="http://www.betadesigns.co.uk/Blog/wp-content/uploads/2012/05/IJKGD_Poster_thumb-150x150.gif" class="attachment-thumbnail" alt="IJKGD_Poster_thumb" title="IJKGD_Poster_thumb" /></a>
<a href='http://www.betadesigns.co.uk/Blog/2012/05/18/malware-attack-on-liquid-photo-site/cocacolainfo/' title='CocacolaInfo'><img width="150" height="150" src="http://www.betadesigns.co.uk/Blog/wp-content/uploads/2012/05/CocacolaInfo-150x150.gif" class="attachment-thumbnail" alt="CocacolaInfo" title="CocacolaInfo" /></a>
</p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fwww.betadesigns.co.uk%2FBlog%2F%3Fp%3D529&count=horizontal&related=&text=Malware%20attack%20on%20Liquid-Photo%20site' class='twitter-share-button' data-text='Malware attack on Liquid-Photo site' data-url='http://www.betadesigns.co.uk/Blog/?p=529' data-counturl='http://www.betadesigns.co.uk/Blog/2012/05/18/malware-attack-on-liquid-photo-site/' data-count='horizontal' data-via='Omnipitence'></a>]]></content:encoded>
			<wfw:commentRss>http://www.betadesigns.co.uk/Blog/2012/05/18/malware-attack-on-liquid-photo-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Liquid-Photo 1.1 for iOS brings thermal imaging and night vision</title>
		<link>http://www.betadesigns.co.uk/Blog/2012/05/06/liquid-photo-1-1-for-ios-brings-thermal-imaging-and-night-vision/</link>
		<comments>http://www.betadesigns.co.uk/Blog/2012/05/06/liquid-photo-1-1-for-ios-brings-thermal-imaging-and-night-vision/#comments</comments>
		<pubDate>Sun, 06 May 2012 11:34:25 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.betadesigns.co.uk/Blog/?p=525</guid>
		<description><![CDATA[New Post over at Liquid-photoLiquid-Photo 1.1 for iOS brings thermal imaging and night vision]]></description>
			<content:encoded><![CDATA[<p>New Post over at <a href="http://www.liquid-photo.com">Liquid-photo</a><br><a href="http://www.liquid-photo.com/2012/05/06/liquid-photo-1-1-for-ios-brings-thermal-imaging-and-night-vision/">Liquid-Photo 1.1 for iOS brings thermal imaging and night vision</a></p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fwww.betadesigns.co.uk%2FBlog%2F%3Fp%3D525&count=horizontal&related=&text=Liquid-Photo%201.1%20for%20iOS%20brings%20thermal%20imaging%20and%20night%20vision' class='twitter-share-button' data-text='Liquid-Photo 1.1 for iOS brings thermal imaging and night vision' data-url='http://www.betadesigns.co.uk/Blog/?p=525' data-counturl='http://www.betadesigns.co.uk/Blog/2012/05/06/liquid-photo-1-1-for-ios-brings-thermal-imaging-and-night-vision/' data-count='horizontal' data-via='Omnipitence'></a>]]></content:encoded>
			<wfw:commentRss>http://www.betadesigns.co.uk/Blog/2012/05/06/liquid-photo-1-1-for-ios-brings-thermal-imaging-and-night-vision/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Liquid-Photo Press Release</title>
		<link>http://www.betadesigns.co.uk/Blog/2012/04/20/liquid-photo-press-release/</link>
		<comments>http://www.betadesigns.co.uk/Blog/2012/04/20/liquid-photo-press-release/#comments</comments>
		<pubDate>Fri, 20 Apr 2012 08:04:29 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.betadesigns.co.uk/Blog/?p=523</guid>
		<description><![CDATA[New Post over at Liquid-photoLiquid-Photo Press Release]]></description>
			<content:encoded><![CDATA[<p>New Post over at <a href="http://www.liquid-photo.com">Liquid-photo</a><br><a href="http://www.liquid-photo.com/2012/04/20/liquid-photo-press-release/">Liquid-Photo Press Release</a></p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fwww.betadesigns.co.uk%2FBlog%2F%3Fp%3D523&count=horizontal&related=&text=Liquid-Photo%20Press%20Release' class='twitter-share-button' data-text='Liquid-Photo Press Release' data-url='http://www.betadesigns.co.uk/Blog/?p=523' data-counturl='http://www.betadesigns.co.uk/Blog/2012/04/20/liquid-photo-press-release/' data-count='horizontal' data-via='Omnipitence'></a>]]></content:encoded>
			<wfw:commentRss>http://www.betadesigns.co.uk/Blog/2012/04/20/liquid-photo-press-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LiquidPhoto Finally Available on the IOS App Store!</title>
		<link>http://www.betadesigns.co.uk/Blog/2012/04/19/liquidphoto-finally-available-on-the-ios-app-store/</link>
		<comments>http://www.betadesigns.co.uk/Blog/2012/04/19/liquidphoto-finally-available-on-the-ios-app-store/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 20:49:36 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.betadesigns.co.uk/Blog/?p=521</guid>
		<description><![CDATA[New Post over at Liquid-photoLiquidPhoto Finally Available on the IOS App Store!]]></description>
			<content:encoded><![CDATA[<p>New Post over at <a href="http://www.liquid-photo.com">Liquid-photo</a><br><a href="http://www.liquid-photo.com/2012/04/19/liquidphoto-finally-available-on-the-ios-app-store/">LiquidPhoto Finally Available on the IOS App Store!</a></p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fwww.betadesigns.co.uk%2FBlog%2F%3Fp%3D521&count=horizontal&related=&text=LiquidPhoto%20Finally%20Available%20on%20the%20IOS%20App%20Store%21' class='twitter-share-button' data-text='LiquidPhoto Finally Available on the IOS App Store!' data-url='http://www.betadesigns.co.uk/Blog/?p=521' data-counturl='http://www.betadesigns.co.uk/Blog/2012/04/19/liquidphoto-finally-available-on-the-ios-app-store/' data-count='horizontal' data-via='Omnipitence'></a>]]></content:encoded>
			<wfw:commentRss>http://www.betadesigns.co.uk/Blog/2012/04/19/liquidphoto-finally-available-on-the-ios-app-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Liquid-Photo now available for iOS!</title>
		<link>http://www.betadesigns.co.uk/Blog/2012/03/09/liquid-photo-now-available-for-ios/</link>
		<comments>http://www.betadesigns.co.uk/Blog/2012/03/09/liquid-photo-now-available-for-ios/#comments</comments>
		<pubDate>Fri, 09 Mar 2012 08:04:46 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.betadesigns.co.uk/Blog/?p=518</guid>
		<description><![CDATA[New Post over at Liquid-photoLiquid-Photo now available for iOS!]]></description>
			<content:encoded><![CDATA[<p>New Post over at <a href="http://www.liquid-photo.com">Liquid-photo</a><br><a href="http://www.liquid-photo.com/2012/03/09/liquid-photo-now-available-for-ios/">Liquid-Photo now available for iOS!</a></p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fwww.betadesigns.co.uk%2FBlog%2F%3Fp%3D518&count=horizontal&related=&text=Liquid-Photo%20now%20available%20for%20iOS%21' class='twitter-share-button' data-text='Liquid-Photo now available for iOS!' data-url='http://www.betadesigns.co.uk/Blog/?p=518' data-counturl='http://www.betadesigns.co.uk/Blog/2012/03/09/liquid-photo-now-available-for-ios/' data-count='horizontal' data-via='Omnipitence'></a>]]></content:encoded>
			<wfw:commentRss>http://www.betadesigns.co.uk/Blog/2012/03/09/liquid-photo-now-available-for-ios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
