<?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>Devils Workshop &#187; Shyam Mudliar</title>
	<atom:link href="http://devilsworkshop.org/author/shyamb17/feed/" rel="self" type="application/rss+xml" />
	<link>http://devilsworkshop.org</link>
	<description></description>
	<lastBuildDate>Sat, 11 Feb 2012 12:17:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Multi-touch gestures in Ubuntu (least some of em&#8230;)</title>
		<link>http://devilsworkshop.org/a-multi-touch-gestures-in-ubuntu-least-some-of-em/</link>
		<comments>http://devilsworkshop.org/a-multi-touch-gestures-in-ubuntu-least-some-of-em/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 15:33:45 +0000</pubDate>
		<dc:creator>Shyam Mudliar</dc:creator>
				<category><![CDATA[OS]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.devilsworkshop.org/?p=12377</guid>
		<description><![CDATA[<p>Well when used my friend&#8217;s Rahul Macbook pro i found the multi-touch gestures . Though might look very minor as feature but it&#8217;s overall usability is quite nice. so being a ubuntu fresher. I googled up and few links having [...]</p><p>--
This Post <a href="http://devilsworkshop.org/a-multi-touch-gestures-in-ubuntu-least-some-of-em/">Multi-touch gestures in Ubuntu (least some of em&#8230;)</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>
<div class="related-post"><h3>Related posts:</h3>
<ul>
	        <li><a href="http://devilsworkshop.org/t-mobiles-g1-tweaked-for-multi-touch-support/" rel="bookmark" title="T-Mobile’s G1 Tweaked for Multi-Touch Support!">T-Mobile’s G1 Tweaked for Multi-Touch Support!</a><!-- (39)--></li>
	        <li><a href="http://devilsworkshop.org/new-ipod-nano-brings-music-at-your-fingertips-with-multi-touch/" rel="bookmark" title="New iPod Nano brings music at your fingertips with multi-touch">New iPod Nano brings music at your fingertips with multi-touch</a><!-- (38.9)--></li>
	        <li><a href="http://devilsworkshop.org/use-mouse-gestures-with-chrome-browser-to-simplify-browsing/" rel="bookmark" title="Use mouse gestures with Chrome browser to simplify browsing">Use mouse gestures with Chrome browser to simplify browsing</a><!-- (28.5)--></li>
	        <li><a href="http://devilsworkshop.org/review-multi-protocol-messengers-pc-based/" rel="bookmark" title="Review: Multi-protocol Messengers (PC Based)">Review: Multi-protocol Messengers (PC Based)</a><!-- (21.2)--></li>
	</ul>
</div>
]]></description>
			<content:encoded><![CDATA[<p><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-12384" src="http://devilsworkshop.org/files/2009/07/multitouch-in-linux.jpg" alt="multitouch in linux Multi touch gestures in Ubuntu (least some of em...)" width="311" height="298" title="Multi touch gestures in Ubuntu (least some of em...)" />Well when used my friend&#8217;s Rahul Macbook pro i found the multi-touch gestures . Though might look very minor as feature but it&#8217;s overall usability is quite nice. so being a ubuntu fresher. I googled up and few links having tweaking to accept few gestures. I was able find out two of the multitouch gestures specifically two finger horizontal and vertical scrolling . more gestures are available in the code bit I am yet to find em.  Happy Tweaking <img src='http://devilsworkshop.org/wp-includes/images/smilies/icon_wink.gif' alt="icon wink Multi touch gestures in Ubuntu (least some of em...)" class='wp-smiley' title="Multi touch gestures in Ubuntu (least some of em...)" />   I am using Dell 1525</p>
<p>Create new file</p>
<pre>gksudo gedit /etc/hal/fdi/policy/11-x11-synaptics.fdi</pre>
<p>Paste the following code into the file and save it.</p>
<pre>&lt;?xml version="1.0" encoding="ISO-8859-1"?&gt;
&lt;deviceinfo version="0.2"&gt;
 &lt;device&gt;
   &lt;match key="info.capabilities" contains="input.touchpad"&gt;
       &lt;merge key="input.x11_driver" type="string"&gt;synaptics&lt;/merge&gt;
       &lt;merge key="input.x11_options.SHMConfig" type="string"&gt;On&lt;/merge&gt;
       &lt;merge key="input.x11_options.EmulateTwoFingerMinZ" type="string"&gt;90&lt;/merge&gt;
       &lt;merge key="input.x11_options.VertTwoFingerScroll" type="string"&gt;1&lt;/merge&gt;
       &lt;merge key="input.x11_options.HorizTwoFingerScroll" type="string"&gt;1&lt;/merge&gt;
       &lt;merge key="input.x11_options.TapButton1" type="string"&gt;1&lt;/merge&gt;
       &lt;merge key="input.x11_options.TapButton2" type="string"&gt;3&lt;/merge&gt;  &lt;!--two finger tap -&gt; middle clieck(3) --&gt;
       &lt;merge key="input.x11_options.TapButton3" type="string"&gt;2&lt;/merge&gt;  &lt;!--three finger tap -&gt; right click(2). almost impossible to click --&gt;
   &lt;/match&gt;
 &lt;/device&gt;

&lt;/deviceinfo&gt;</pre>
<p>Restart hal and enjoy multitouch touchpad.</p>
<pre>sudo /etc/init.d/hal restart</pre>
<div id="{CFFE27DE-3F41-4087-AE08-E0CA4130E429}" class="sponser" style="margin-bottom: 25px">
<h3>Update: Diagnosing your touchpad for multi-finger-sensing-capability</h3>
<p>Few people have problem with this not working, while it works for few others. This is posted in <a rel="nofollow" href="http://ubuntuforums.org/showpost.php?p=6967145&amp;postcount=6">ubuntu forums</a></p>
<pre>synclient -m 100</pre>
</div>
<div id="{F14371D2-AE40-4BE9-B496-1617A8D270EF}" class="sponser" style="margin-bottom: 25px">Fifth column in the output <strong>f</strong> is <strong>number of fingers</strong> on your touchpad. Put two or more fingers on your touchpad and watch the column. If you see it more than one, this should work for you.</div>
<p><strong>Source:</strong> <a rel="nofollow" href="http://ubuntu-snippets.blogspot.com/2009/03/multi-touch-for-anyall-synaptics.html">Ubuntu Snippets</a> </p>

<div class="related-post"><h3>Related posts:</h3>
<ul>
	        <li><a href="http://devilsworkshop.org/t-mobiles-g1-tweaked-for-multi-touch-support/" rel="bookmark" title="T-Mobile’s G1 Tweaked for Multi-Touch Support!">T-Mobile’s G1 Tweaked for Multi-Touch Support!</a><!-- (39)--></li>
	        <li><a href="http://devilsworkshop.org/new-ipod-nano-brings-music-at-your-fingertips-with-multi-touch/" rel="bookmark" title="New iPod Nano brings music at your fingertips with multi-touch">New iPod Nano brings music at your fingertips with multi-touch</a><!-- (38.9)--></li>
	        <li><a href="http://devilsworkshop.org/use-mouse-gestures-with-chrome-browser-to-simplify-browsing/" rel="bookmark" title="Use mouse gestures with Chrome browser to simplify browsing">Use mouse gestures with Chrome browser to simplify browsing</a><!-- (28.5)--></li>
	        <li><a href="http://devilsworkshop.org/review-multi-protocol-messengers-pc-based/" rel="bookmark" title="Review: Multi-protocol Messengers (PC Based)">Review: Multi-protocol Messengers (PC Based)</a><!-- (21.2)--></li>
	</ul>
</div>
<p>--
This Post <a href="http://devilsworkshop.org/a-multi-touch-gestures-in-ubuntu-least-some-of-em/">Multi-touch gestures in Ubuntu (least some of em&#8230;)</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>]]></content:encoded>
			<wfw:commentRss>http://devilsworkshop.org/a-multi-touch-gestures-in-ubuntu-least-some-of-em/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone 3G S: S for Speeeeeeeeeeed</title>
		<link>http://devilsworkshop.org/iphone-3g-s-s-for-speeeeeeeeeeed/</link>
		<comments>http://devilsworkshop.org/iphone-3g-s-s-for-speeeeeeeeeeed/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 08:43:06 +0000</pubDate>
		<dc:creator>Shyam Mudliar</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[Speed]]></category>

		<guid isPermaLink="false">http://www.devilsworkshop.org/?p=10329</guid>
		<description><![CDATA[<p>As now the speculation is over the new iPhone 3G is now called iPhone 3G S , S stands for Speed (i know its not apple brilliant but it&#8217;s better than n73 n87 8300 and list goes on)  . The [...]</p><p>--
This Post <a href="http://devilsworkshop.org/iphone-3g-s-s-for-speeeeeeeeeeed/">iPhone 3G S: S for Speeeeeeeeeeed</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>
<div class="related-post"><h3>Related posts:</h3>
<ul>
	        <li><a href="http://devilsworkshop.org/latest-updates-iphone-5-straight-event/" rel="bookmark" title="Apple iPhone 4S; features and specifications">Apple iPhone 4S; features and specifications</a><!-- (23.1)--></li>
	        <li><a href="http://devilsworkshop.org/apple-store-preparing-iphone-4s-launch/" rel="bookmark" title="Apple Store is down; preparing for iPhone 4S launch">Apple Store is down; preparing for iPhone 4S launch</a><!-- (22.5)--></li>
	        <li><a href="http://devilsworkshop.org/apple-iphone-3g-for-99-only/" rel="bookmark" title="Apple iPhone 3G for $99 only!">Apple iPhone 3G for $99 only!</a><!-- (22.3)--></li>
	        <li><a href="http://devilsworkshop.org/disappointed-iphone-4s-read/" rel="bookmark" title="Disappointed by iPhone 4S? Just read this once!">Disappointed by iPhone 4S? Just read this once!</a><!-- (21.2)--></li>
	</ul>
</div>
]]></description>
			<content:encoded><![CDATA[<p>As now the speculation is over the new iPhone 3G is now called iPhone 3G S , S stands for Speed (i know its not apple brilliant but it&#8217;s better than n73 n87 8300 and list goes on)  . The most talked / speculated feature like matt back and glowing apple sigh on the back turns out to be untrue. The dimensions are more or less remaining same.</p>
<p>Apple claim’s almost twice speed in web page and application loading. Well real life performance has yet to be checked but as per the word in space is that processor and ram has been bumped up. Here are the key differences compared with iPhone 3G (2008 Edition).</p>
<p><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-medium wp-image-10330" src="http://devilsworkshop.org/files/2009/06/hero-intro-20090608-600x290.jpg" alt="hero intro 20090608 600x290 iPhone 3G S: S for Speeeeeeeeeeed" width="600" height="290" title="iPhone 3G S: S for Speeeeeeeeeeed" /></p>
<h2>Speed</h2>
<ul>
<li>Almost twice in web page and application loading</li>
</ul>
<h2>Connectivity</h2>
<ul>
<li>Three band UMTS/HSDPA.</li>
<li>Four band GSM/EDGE.</li>
<li>Wi-Fi 802.11b/g.</li>
<li>Bluetooth 2.1 + EDR</li>
</ul>
<h2>Camera</h2>
<p>This is one of the strong points of the iPhone 3GS, according to Apple. They increased the resolution to 3 megapixels, which—judging from the shots they showed-seems much better quality under all conditions.</p>
<ul>
<li>3 Megapixels sensor.</li>
<li>New camera, with auto focus, auto exposure, and auto white balance.</li>
<li>You can also tap to focus, changing white balance in the process. That is really neat, if you ask me.</li>
<li>Special macro and low light modes.</li>
<li>The camera also supports photo and video geotagging.</li>
<li>Any application can access all the camera functions now.</li>
<li>It supports video, 30 frames per second VGA with auto focus, auto white balance, and auto exposure.</li>
<li>You can trim the video shot just using your finger, then share it via MMS, email, MobileMe and YouTube.</li>
</ul>
<h2>Graphics</h2>
<ul>
<li>The new iPhone 3GS includes new 3D graphics support in hardware. This means faster and more complicated 3D games.</li>
<li>Same 3.5-inch widescreen multitouch display, but this time it has a fingerprint-resistant oleophobic coating. I wonder if it will withstand a full frontal cheese pizza attack.</li>
</ul>
<h2>New special features</h2>
<ul>
<li>It has a magnetometer, which works with a Compass application, third parties, and it is integrated into the new Google maps app, showing your orientation with a small semitransparent cone.</li>
<li>Voice control. You can now talk with your iPhone, Enterprise-style. You can instruct it to play similar songs to the one you are playing, or call people.</li>
<li>Nike + support built in.</li>
<li>Supports accessibility features, like zooming on text, inverting video, and voice over when you touch whatever text is on screen.</li>
</ul>
<h2>Battery life</h2>
<ul>
<li>One of the more important new features is the increased battery life.</li>
<li>According to Apple, you will get up to 12 hours of talk time on 2G and 5 on 3G, with a up to 300 hour standby time.</li>
<li>On 3G, it will deliver 5 hours of internet use.</li>
<li>On Wi-Fi, Internet goes up to 9 hours.</li>
<li>Video playback is 10 hours vs 30 hours for audio.</li>
</ul>
<p><em>(Source: <a rel="nofollow" href="http://i.gizmodo.com">i.gizmodo</a>)</em></p>
<p><em>(Image credits: <a rel="nofollow" href="http://www.apple.com">Apple</a>)</em></p>
<hr /><em>[<strong>Editor's Note:</strong></em><em> This article is submitted by </em><em><strong>Shyam Mudliar. </strong></em><em><em></em></em></p>
<p><em>If you, too would like to <a href="http://devilsworkshop.org/join-dw/" target="_blank">write</a> for Devils Workshop, please <a href="http://devilsworkshop.org/join-dw/" target="_blank">check this</a>. Details about our <a href="http://devilsworkshop.org/join-dw/" target="_blank">revenue sharing programs</a> are <a href="http://devilsworkshop.org/join-dw/" target="_blank">here</a>.]</em></p>

<div class="related-post"><h3>Related posts:</h3>
<ul>
	        <li><a href="http://devilsworkshop.org/latest-updates-iphone-5-straight-event/" rel="bookmark" title="Apple iPhone 4S; features and specifications">Apple iPhone 4S; features and specifications</a><!-- (23.1)--></li>
	        <li><a href="http://devilsworkshop.org/apple-store-preparing-iphone-4s-launch/" rel="bookmark" title="Apple Store is down; preparing for iPhone 4S launch">Apple Store is down; preparing for iPhone 4S launch</a><!-- (22.5)--></li>
	        <li><a href="http://devilsworkshop.org/apple-iphone-3g-for-99-only/" rel="bookmark" title="Apple iPhone 3G for $99 only!">Apple iPhone 3G for $99 only!</a><!-- (22.3)--></li>
	        <li><a href="http://devilsworkshop.org/disappointed-iphone-4s-read/" rel="bookmark" title="Disappointed by iPhone 4S? Just read this once!">Disappointed by iPhone 4S? Just read this once!</a><!-- (21.2)--></li>
	</ul>
</div>
<p>--
This Post <a href="http://devilsworkshop.org/iphone-3g-s-s-for-speeeeeeeeeeed/">iPhone 3G S: S for Speeeeeeeeeeed</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>]]></content:encoded>
			<wfw:commentRss>http://devilsworkshop.org/iphone-3g-s-s-for-speeeeeeeeeeed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Palm Pre: Apple&#8217;s New Competition</title>
		<link>http://devilsworkshop.org/palm-pre-apples-new-competition/</link>
		<comments>http://devilsworkshop.org/palm-pre-apples-new-competition/#comments</comments>
		<pubDate>Tue, 05 May 2009 10:46:48 +0000</pubDate>
		<dc:creator>Shyam Mudliar</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.devilsworkshop.org/?p=6797</guid>
		<description><![CDATA[<p>Palm Pre is a new smart phone that is soon going be launched in 2009 (the word is around July 2009). Its comparison with Apple’s iconic iPhone is inevitable.

I think, Palm Pre is a legit challenger to the iPhone. Some are already claiming it to be an iPhone killer. iPhone fanatics, however, think otherwise.</p><p>--
This Post <a href="http://devilsworkshop.org/palm-pre-apples-new-competition/">Palm Pre: Apple&#8217;s New Competition</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>
<div class="related-post"><h3>Related posts:</h3>
<ul>
	        <li><a href="http://devilsworkshop.org/facebook-applications-for-your-iphone-palm-sony-ericsson-inq-blackberry-nokia-android-windows-mobile-sidekick/" rel="bookmark" title="Facebook applications for your iPhone, Palm, Sony Ericsson, INQ, Blackberry, Nokia, Android, Windows Mobile, Sidekick">Facebook applications for your iPhone, Palm, Sony Ericsson, INQ, Blackberry, Nokia, Android, Windows Mobile, Sidekick</a><!-- (34.5)--></li>
	        <li><a href="http://devilsworkshop.org/nokia-makes-fun-of-apples-iphone-4s-network-loss/" rel="bookmark" title="Nokia makes fun of Apples iPhone 4&#8242;s network loss">Nokia makes fun of Apples iPhone 4&#8242;s network loss</a><!-- (25.6)--></li>
	        <li><a href="http://devilsworkshop.org/competition-for-amazon-as-google-prepares-to-sell-ebooks/" rel="bookmark" title="Competition for Amazon as Google prepares to sell eBooks!">Competition for Amazon as Google prepares to sell eBooks!</a><!-- (22.1)--></li>
	        <li><a href="http://devilsworkshop.org/apples-safari-for-windows-launched-and-exploited-within-2-hours/" rel="bookmark" title="Apples Safari for Windows &#8211; Launched and Exploited Within 2 hours!!!">Apples Safari for Windows &#8211; Launched and Exploited Within 2 hours!!!</a><!-- (21.6)--></li>
	</ul>
</div>
]]></description>
			<content:encoded><![CDATA[<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-full wp-image-7495" src="http://devilsworkshop.org/files/2009/05/159606-palm-pre-2_350.jpg" alt="159606 palm pre 2 350 Palm Pre: Apples New Competition" width="245" height="267" title="Palm Pre: Apples New Competition" /> Palm Pre is a new smart phone that is soon going be launched in 2009 (the word is  around July 2009). Its comparison with Apple’s iconic iPhone is inevitable.</p>
<p>I think, Palm Pre is a legit challenger to the iPhone. Some are already claiming it to be an iPhone killer. iPhone fanatics, however, think otherwise.</p>
<h3>Reasons why I think Palm Pre will create its own niche:</h3>
<ol>
<li>Apple has shown the world that instead of confusing the customers with array  of features, focus on limited features and provide complete narrow  experience.</li>
<li>Even Steve Jobs keynote too the Press had revolved around on few features only like: Music,  Video , Call simplicity (many would agree that having a call conference has never been this easy!)</li>
<li>People do frown on the absence of many features like camera features (only 2 mega pixel? Come on! Nokia’s low end mobile does better than that), Bluetooth file transfer  etc.</li>
<li>Palm with its new management has shown some re-incarnated spirit by reverting  to what they were i.e., innovating mobile platform.</li>
<li>Palm unveiled the new mobile  operating system they will be using henceforth, called WebOS . Palm claims developers can create applications with <em>html </em>and <em>css  &#8211; </em>no new language  has to be adopted (there is a hot debate going on this right now on how viable is  this, although Palm has showcased it Mojo SDK which is yet to be tested and  seen)</li>
<li>Like iPhone, Pre too uses multi touch (Tim Cook , Interim CEO of Apple had  clearly given a hint that a legal war might be very well in waiting but guess we  have to wait how that tide turns out ) and any one who has used multi touch would tell you  how superior it feels as compared to other touch screens.</li>
<li>It also has a removable battery and  physical Qwerty keyboard that many users were craving for.</li>
</ol>
<h3>There are things that go against Palm too, like:</h3>
<ul>
<li> Their consumers&#8217; lost  faith</li>
<li> Current financial woes</li>
<li>Ever increasing competition</li>
</ul>
<p>But if every thing  goes right, we could have a new exciting mobile platform in waiting. For consumers, I&#8217;d say, bring it on. More the competition&#8230; the merrier!</p>
<p><em>(Image Credits: <a rel="nofollow" href="http://www.mobihealthnews.com" target="_self">MobiHealthNews</a>)</em></p>
<hr /><em>[<strong>Editor's Note:</strong></em><em> This article is submitted by </em><em><strong>Shyam Mudliar. </strong></em><em><strong></strong><em>This is his first blog post on Devils Workshop.</em></em></p>
<p><em>If you, too would like to <a href="http://devilsworkshop.org/join-dw/" target="_blank">write</a> for Devils Workshop, please <a href="http://devilsworkshop.org/join-dw/" target="_blank">check this</a>. Details about our <a href="http://devilsworkshop.org/join-dw/" target="_blank">revenue sharing programs</a> are <a href="http://devilsworkshop.org/join-dw/" target="_blank">here</a>.]</em></p>

<div class="related-post"><h3>Related posts:</h3>
<ul>
	        <li><a href="http://devilsworkshop.org/facebook-applications-for-your-iphone-palm-sony-ericsson-inq-blackberry-nokia-android-windows-mobile-sidekick/" rel="bookmark" title="Facebook applications for your iPhone, Palm, Sony Ericsson, INQ, Blackberry, Nokia, Android, Windows Mobile, Sidekick">Facebook applications for your iPhone, Palm, Sony Ericsson, INQ, Blackberry, Nokia, Android, Windows Mobile, Sidekick</a><!-- (34.5)--></li>
	        <li><a href="http://devilsworkshop.org/nokia-makes-fun-of-apples-iphone-4s-network-loss/" rel="bookmark" title="Nokia makes fun of Apples iPhone 4&#8242;s network loss">Nokia makes fun of Apples iPhone 4&#8242;s network loss</a><!-- (25.6)--></li>
	        <li><a href="http://devilsworkshop.org/competition-for-amazon-as-google-prepares-to-sell-ebooks/" rel="bookmark" title="Competition for Amazon as Google prepares to sell eBooks!">Competition for Amazon as Google prepares to sell eBooks!</a><!-- (22.1)--></li>
	        <li><a href="http://devilsworkshop.org/apples-safari-for-windows-launched-and-exploited-within-2-hours/" rel="bookmark" title="Apples Safari for Windows &#8211; Launched and Exploited Within 2 hours!!!">Apples Safari for Windows &#8211; Launched and Exploited Within 2 hours!!!</a><!-- (21.6)--></li>
	</ul>
</div>
<p>--
This Post <a href="http://devilsworkshop.org/palm-pre-apples-new-competition/">Palm Pre: Apple&#8217;s New Competition</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>]]></content:encoded>
			<wfw:commentRss>http://devilsworkshop.org/palm-pre-apples-new-competition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 7/43 queries in 0.043 seconds using apc
Object Caching 1108/1156 objects using apc

Served from: devilsworkshop.org @ 2012-02-11 19:51:59 -->
