<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Five Minutes</title>
	<atom:link href="http://www.fiveminutes.eu/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fiveminutes.eu</link>
	<description>Technology and Marketing Solutions</description>
	<lastBuildDate>Mon, 16 Jan 2012 09:01:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Targeting High Screen Densities with CSS Media Queries by Mobile site CSS with CSS3 media queries (Mobilizing websites with responsive design and HTML5 part 5) &#124; Open Source Hacker</title>
		<link>http://www.fiveminutes.eu/targeting-hight-screen-densities-with-css-media-queries/#comment-1779</link>
		<dc:creator>Mobile site CSS with CSS3 media queries (Mobilizing websites with responsive design and HTML5 part 5) &#124; Open Source Hacker</dc:creator>
		<pubDate>Mon, 16 Jan 2012 09:01:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.fiveminutes.eu/?p=1838#comment-1779</guid>
		<description>[...] http://www.fiveminutes.eu/targeting-hight-screen-densities-with-css-media-queries/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.fiveminutes.eu/targeting-hight-screen-densities-with-css-media-queries/" rel="nofollow">http://www.fiveminutes.eu/targeting-hight-screen-densities-with-css-media-queries/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Battle of the Android screens by Ivan</title>
		<link>http://www.fiveminutes.eu/battle-of-the-screens/#comment-1766</link>
		<dc:creator>Ivan</dc:creator>
		<pubDate>Wed, 09 Nov 2011 18:21:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.fiveminutes.eu/?p=2886#comment-1766</guid>
		<description>Comment</description>
		<content:encoded><![CDATA[<p>Comment</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A bird&#8217;s eye view on Samsung Smart TV Apps development by IvanFerdelja</title>
		<link>http://www.fiveminutes.eu/a-birds-eye-view-on-samsung-smart-tv-apps-development/#comment-1694</link>
		<dc:creator>IvanFerdelja</dc:creator>
		<pubDate>Mon, 10 Oct 2011 09:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.fiveminutes.eu/?p=2475#comment-1694</guid>
		<description>Hi! Thanks for your comment! What IE version are you using? What kind of problems do you have?</description>
		<content:encoded><![CDATA[<p>Hi! Thanks for your comment! What IE version are you using? What kind of problems do you have?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A bird&#8217;s eye view on Samsung Smart TV Apps development by smart tv</title>
		<link>http://www.fiveminutes.eu/a-birds-eye-view-on-samsung-smart-tv-apps-development/#comment-1687</link>
		<dc:creator>smart tv</dc:creator>
		<pubDate>Sat, 08 Oct 2011 14:34:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.fiveminutes.eu/?p=2475#comment-1687</guid>
		<description>Hi, Neat post. There is a problem together with your site in internet explorer, might check this? IE still is the market leader and a huge part of people will miss your fantastic writing due to this problem.</description>
		<content:encoded><![CDATA[<p>Hi, Neat post. There is a problem together with your site in internet explorer, might check this? IE still is the market leader and a huge part of people will miss your fantastic writing due to this problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Maven release plugin &#8211; 8 tips &amp; tricks by Vathanak</title>
		<link>http://www.fiveminutes.eu/maven-release-plugin-8-tips-tricks/#comment-1669</link>
		<dc:creator>Vathanak</dc:creator>
		<pubDate>Mon, 03 Oct 2011 17:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.fiveminutes.eu/?p=2645#comment-1669</guid>
		<description>Great explanation, thanks.</description>
		<content:encoded><![CDATA[<p>Great explanation, thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Powershell tips for bash users, part 2, Day to day scripting by georgh</title>
		<link>http://www.fiveminutes.eu/powershell-tips-for-bash-users-part-2-day-to-day-scripting/#comment-1634</link>
		<dc:creator>georgh</dc:creator>
		<pubDate>Wed, 14 Sep 2011 22:16:42 +0000</pubDate>
		<guid isPermaLink="false">https://fiveminutesltd.wordpress.com/2010/11/02/powershell-tips-for-bash-users-part-2-day-to-day-scripting/#comment-1634</guid>
		<description>Thanks for your post nd tips, I am a powershell newbie and it was very helpful.

When doing this things in unix, I found the grep -r very useful, as it searches recursively and -l returns the mathcing file names. You can also pass -i option to sed to do the replace in-place. An empty parameter is passed to -i so no backups are created.

&lt;code&gt;
grep -lr $find $path &#124; xargs sed -i&#039;&#039; &quot;s&#124;$find&#124;$replace&#124;g&quot;
&lt;/code&gt;

If you still want to keep track of the matched files you can use tee, which writes to a file and to standard output:

&lt;code&gt;
grep -lr $find $path &#124; tee matchingfiles.txt &#124; xargs sed -i&#039;&#039; &quot;s&#124;$find&#124;$replace&#124;g&quot;
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Thanks for your post nd tips, I am a powershell newbie and it was very helpful.</p>
<p>When doing this things in unix, I found the grep -r very useful, as it searches recursively and -l returns the mathcing file names. You can also pass -i option to sed to do the replace in-place. An empty parameter is passed to -i so no backups are created.</p>
<p><code><br />
grep -lr $find $path | xargs sed -i'' "s|$find|$replace|g"<br />
</code></p>
<p>If you still want to keep track of the matched files you can use tee, which writes to a file and to standard output:</p>
<p><code><br />
grep -lr $find $path | tee matchingfiles.txt | xargs sed -i'' "s|$find|$replace|g"<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A bird&#8217;s eye view on Samsung Smart TV Apps development by Ivan Ferdelja</title>
		<link>http://www.fiveminutes.eu/a-birds-eye-view-on-samsung-smart-tv-apps-development/#comment-1630</link>
		<dc:creator>Ivan Ferdelja</dc:creator>
		<pubDate>Tue, 13 Sep 2011 19:09:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.fiveminutes.eu/?p=2475#comment-1630</guid>
		<description>Hey Doug! I was referring to apps in general, but yes we all dislike preloaded content :-)</description>
		<content:encoded><![CDATA[<p>Hey Doug! I was referring to apps in general, but yes we all dislike preloaded content :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A bird&#8217;s eye view on Samsung Smart TV Apps development by Doug</title>
		<link>http://www.fiveminutes.eu/a-birds-eye-view-on-samsung-smart-tv-apps-development/#comment-1628</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Mon, 12 Sep 2011 22:43:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.fiveminutes.eu/?p=2475#comment-1628</guid>
		<description>I don&#039;t mean to be a dick but what idiot wants a device with preloaded content? Computers come with bloatware, my droid comes with a madden game that I can&#039;t remove. I never ever want preloaded content. It&#039;s retarded, its nice that they let the consumer decide. Second, over 1000 apps? Where are you looking? There are 300 at most. almost a third are really piss poor games.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t mean to be a dick but what idiot wants a device with preloaded content? Computers come with bloatware, my droid comes with a madden game that I can&#8217;t remove. I never ever want preloaded content. It&#8217;s retarded, its nice that they let the consumer decide. Second, over 1000 apps? Where are you looking? There are 300 at most. almost a third are really piss poor games.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone image processing by mushtaque</title>
		<link>http://www.fiveminutes.eu/iphone-image-processing/#comment-1611</link>
		<dc:creator>mushtaque</dc:creator>
		<pubDate>Tue, 06 Sep 2011 12:18:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.fiveminutes.eu/?p=1967#comment-1611</guid>
		<description>can u plz send me the code brother.. can u explain how can i do the same for brightness.</description>
		<content:encoded><![CDATA[<p>can u plz send me the code brother.. can u explain how can i do the same for brightness.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Facebook platform and Nokia WRT applications by Srđan Stanić</title>
		<link>http://www.fiveminutes.eu/facebook-platform-and-nokia-wrt-applications/#comment-1587</link>
		<dc:creator>Srđan Stanić</dc:creator>
		<pubDate>Mon, 29 Aug 2011 08:31:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.fiveminutes.eu/?p=1259#comment-1587</guid>
		<description>Hi Gaurav Toshniwal,

Thanks for your comment. So you&#039;re actually pulling facebook user data through your web application? That&#039;s also a good solution for this issue, but it didn&#039;t fit our case because we wanted to avoid having server side code.</description>
		<content:encoded><![CDATA[<p>Hi Gaurav Toshniwal,</p>
<p>Thanks for your comment. So you&#8217;re actually pulling facebook user data through your web application? That&#8217;s also a good solution for this issue, but it didn&#8217;t fit our case because we wanted to avoid having server side code.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

