<?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>Kristou Says</title>
	<atom:link href="http://mehrez.kristou.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://mehrez.kristou.org</link>
	<description>I share my experience</description>
	<lastBuildDate>Wed, 29 Jun 2011 19:25:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Recursively chmod directories or files only</title>
		<link>http://mehrez.kristou.org/recursively-chmod-directories-or-files-only/</link>
		<comments>http://mehrez.kristou.org/recursively-chmod-directories-or-files-only/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 13:25:14 +0000</pubDate>
		<dc:creator>Kristou Mehrez</dc:creator>
				<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mehrez.kristou.org/?p=1640</guid>
		<description><![CDATA[find . -type d -exec chmod 755 {} \; This will recursively search your directory tree (starting at dir â€˜dotâ€™) and chmod 755 all directories only. Similarly, the following will chmod all files only (and ignore the directories): find . -type f -exec chmod 644 {} \; &#160;]]></description>
			<content:encoded><![CDATA[<p><code>find . -type d -exec chmod 755 {} \;<br />
</code><br />
This will recursively search your directory tree (starting at dir â€˜dotâ€™) and chmod 755 all directories only.</p>
<p>Similarly, the following will chmod all files only (and ignore the directories):</p>
<p><code>find . -type f -exec chmod 644 {} \;</code></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://mehrez.kristou.org/recursively-chmod-directories-or-files-only/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Counting all files in a directory (and subdirectories)</title>
		<link>http://mehrez.kristou.org/counting-all-files-in-a-directory-and-subdirectories/</link>
		<comments>http://mehrez.kristou.org/counting-all-files-in-a-directory-and-subdirectories/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 06:26:31 +0000</pubDate>
		<dc:creator>Kristou Mehrez</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mehrez.kristou.org/?p=1631</guid>
		<description><![CDATA[I found a useful CLI command to count the number of files in my directory. ls -Ra1 /usr&#124;grep -v /&#124;grep -vx ""&#124;grep -vx "\.*"&#124;wc -l]]></description>
			<content:encoded><![CDATA[<p>I found a useful CLI command to count the number of files in my directory.</p>
<blockquote>
<pre dir="ltr">ls -Ra1 /usr|grep -v /|grep -vx ""|grep -vx "\.*"|wc -l
</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://mehrez.kristou.org/counting-all-files-in-a-directory-and-subdirectories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update EEE PC BIOS</title>
		<link>http://mehrez.kristou.org/update-eee-pc-bios/</link>
		<comments>http://mehrez.kristou.org/update-eee-pc-bios/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 02:41:09 +0000</pubDate>
		<dc:creator>Kristou Mehrez</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mehrez.kristou.org/?p=1626</guid>
		<description><![CDATA[Tu update or flash you bios follow these steps Get the latest bios for your model from http://support.asus.com/download/download.aspx Rename the file to 1005P.ROM Format your USB storage device fat16. Put 1005P.ROM on the USB storage device. Shut down the netbook. Turn the netbook back on. Hold down alt, and press f2 repeatedly. The ASUS ezflash utility [...]]]></description>
			<content:encoded><![CDATA[<p>Tu update or flash you bios follow these steps</p>
<ol type="1">
<li>Get the latest bios for your model from <a href="http://support.asus.com/download/download.aspx">http://support.asus.com/download/download.aspx</a></li>
<li>Rename the file to 1005P.ROM</li>
<li>Format your USB storage device fat16.</li>
<li>Put 1005P.ROM on the USB storage device.</li>
<li>Shut down the netbook.</li>
<li>Turn the netbook back on.</li>
<li>Hold down alt, and press f2 repeatedly.</li>
<li>The ASUS ezflash utility should come up. Allow it to do its work.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://mehrez.kristou.org/update-eee-pc-bios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVN undo the add operation</title>
		<link>http://mehrez.kristou.org/svn-undo-the-add-operation/</link>
		<comments>http://mehrez.kristou.org/svn-undo-the-add-operation/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 12:57:58 +0000</pubDate>
		<dc:creator>Kristou Mehrez</dc:creator>
				<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://mehrez.kristou.org/?p=1621</guid>
		<description><![CDATA[If you use SVN to commit your work and get the error “is scheduled for addition, but is missing” when committing to the repository, then problem is that the file is scheduled for the add operation but somehow it has been deleted and SVN couldn’t send it to the repository because the file no longer [...]]]></description>
			<content:encoded><![CDATA[<p>If you use SVN to commit your work and get the error “is scheduled  for addition, but is missing” when committing to the repository, then  problem is that the file is scheduled for the add operation but somehow  it has been deleted and SVN couldn’t send it to the repository because  the file no longer exist.</p>
<p>To make the commit works, all you need to do is undo the add operation</p>
<pre>svn revert myfile
</pre>
<p>Hope this helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://mehrez.kristou.org/svn-undo-the-add-operation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>10 Dead Simple Gmail Tips, Tricks &amp; Shortcuts</title>
		<link>http://mehrez.kristou.org/10-dead-simple-gmail-tips-tricks-shortcuts/</link>
		<comments>http://mehrez.kristou.org/10-dead-simple-gmail-tips-tricks-shortcuts/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 13:31:26 +0000</pubDate>
		<dc:creator>Kristou Mehrez</dc:creator>
				<category><![CDATA[Online service]]></category>

		<guid isPermaLink="false">http://mehrez.kristou.org/?p=1612</guid>
		<description><![CDATA[I liked very much a post on mashable dealing with Gmail tips. I liked this tip: Add Emphasis in Chat Gmail’s instant messaging Chat function is one of the more basic options around, but there are a few bits of formatting you can use to add nuance to your online communication. To bold a word, [...]]]></description>
			<content:encoded><![CDATA[<p>I liked very much a post on <a href="http://mashable.com" target="_blank">mashable</a> dealing with Gmail tips.</p>
<p>I liked this tip:</p>
<h2>Add Emphasis in Chat</h2>
<hr /><img title="gmail chat tricks" src="http://cdn.mashable.com/wp-content/uploads/2010/09/gmailchattricks.jpg" alt="" width="273" height="173" /></p>
<p>Gmail’s  instant messaging Chat function is one of the more basic options  around, but there are a few bits of formatting you can use to add nuance  to your online communication.</p>
<p>To bold a word, asterisk it like this: *Mashable*</p>
<p>To add italics, just underscore before and after the word like this:  _Mashable_</p>
<p>And to strike a word through, add hyphens before and after like so: -Mashable-</p>
<p>and this tip:</p>
<h2>Create Variations of Your E-mail Address</h2>
<hr /><img title="gmail variations on email address" src="http://cdn.mashable.com/wp-content/uploads/2010/09/gmail-variations-on-email-address.jpg" alt="" width="296" height="168" /></p>
<p>Although  technically you only have one Gmail address, you can create as many  variations of it as you wish to help manage your incoming mail.</p>
<p>You can do this by adding a word after your name with a plus sign (if the site you’re entering the address into allows it). So, <strong>yourname+newsletters@gmail.com</strong>, <strong>yourname+shopping@gmail.com</strong>, and so on.</p>
<p>This  alias system then comes into its own if you also set up filters to  direct those messages where you want them. For example, they could skip  the inbox and be archived, have a label applied, be forwarded to another  account, and so on.</p>
<p>To set up a filter, go to “Settings,” hit the “Filters” tab, select “Create New Filter” and follow the simple steps from there.</p>
<p>The original post can be found <a href="http://mashable.com/2010/09/24/gmail-tips-tricks-shortcuts/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+Mashable+%28Mashable%29" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://mehrez.kristou.org/10-dead-simple-gmail-tips-tricks-shortcuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

