<?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>The Lost Notebook &#124; The Lost Notebook</title>
	<atom:link href="http://deeb.me/feed" rel="self" type="application/rss+xml" />
	<link>http://deeb.me</link>
	<description>Things I tend to forget</description>
	<lastBuildDate>Thu, 04 Apr 2013 11:07:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Drush in Jail Shell</title>
		<link>http://deeb.me/20130403/drush-as-jail-shell</link>
		<comments>http://deeb.me/20130403/drush-as-jail-shell#comments</comments>
		<pubDate>Wed, 03 Apr 2013 05:55:18 +0000</pubDate>
		<dc:creator>abdallah</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[chroot]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[drush]]></category>
		<category><![CDATA[jailkit]]></category>
		<category><![CDATA[procedure]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://deeb.me/?p=637</guid>
		<description><![CDATA[I am not a drupal expert. We got a request from a customer today asking to install drush in a jailed shell so that the user would only be able to run drush, but use it to do everything. Or at least this is how I understood the task. Installing &#8230;]]></description>
				<content:encoded><![CDATA[<p>I am not a drupal expert.<br />
We got a request from a customer today asking to install drush in a jailed shell so that the user would only be able to run drush, but use it to do everything. Or at least this is how I understood the task. </p>
<p>Installing drush on CentOS (as root): </p>
<div class="dean_ch" style="white-space: wrap;">yum <span class="kw2">install</span> php-pear<br />
pear channel-discover pear.drush.org<br />
pear <span class="kw2">install</span> drush/drush</div>
<p>Do I need jailkit?<br />
Here&#8217;s how to install jailkit:</p>
<div class="dean_ch" style="white-space: wrap;">yum <span class="kw2">install</span> <span class="kw2">gcc</span> <span class="kw2">make</span><br />
<span class="kw2">wget</span> -c http://olivier.sessink.<span class="kw2">nl</span>/jailkit/jailkit<span class="nu0">-2.15</span>.<span class="kw2">tar</span>.bz2<br />
<span class="kw2">tar</span> xf jailkit-*.<span class="kw2">tar</span>.bz2<br />
<span class="kw3">cd</span> jailkit-*<br />
./configure<br />
<span class="kw2">make</span><br />
<span class="kw2">make</span> <span class="kw2">install</span></div>
<p>The jailkit configuration files are in /etc/jailkit/</p>
<p>Jailing drush is in fact about jailing php-cli (or just php depending on your distro). </p>
<p>Turns out no scripts are needed (other than jailkit). I added the following to /etc/jailkit/jk_init.ini</p>
<div class="dean_ch" style="white-space: wrap;"><span class="re0"><span class="br0">&#91;</span>php<span class="br0">&#93;</span></span><br />
<span class="re1">comment </span>=<span class="re2"> PHP and libs</span><br />
<span class="re1">paths </span>=<span class="re2"> php</span><br />
<span class="re1">users </span>=<span class="re2"> root, www-data, phpjtest</span><br />
<span class="re1">groups </span>=<span class="re2"> root, www-data</span></p>
<p><span class="re0"><span class="br0">&#91;</span>drush<span class="br0">&#93;</span></span><br />
<span class="re1">comment </span>=<span class="re2"> Drupal Shell</span><br />
<span class="re1">paths </span>=<span class="re2"> /usr/bin/drush, /usr/share/drush, /etc/drush</span><br />
<span class="re1">includesections </span>=<span class="re2"> php</span><br />
&nbsp;</div>
<p>And ran: </p>
<div class="dean_ch" style="white-space: wrap;"><span class="kw2">mkdir</span> /srv/jail<br />
<span class="kw2">chown</span> root:root /srv/jail<br />
<span class="kw2">chmod</span> <span class="nu0">0755</span> /srv/jail<br />
jk_init -j /srv/jail jk_lsh<br />
jk_init -j /srv/jail drush<br />
adduser phpjtest<br />
jk_jailuser -v -m -j /srv/jail phpjtest<br />
&nbsp;</div>
<p>Now to setup the drush alias: </p>
<div class="dean_ch" style="white-space: wrap;"><span class="kw2">mkdir</span> ~/.drush/ <span class="re3"># <span class="kw1">if</span> not already there</span><br />
vi ~/.drush/aliases.drushrc.php</div>
<p>with the following contents:</p>
<div class="dean_ch" style="white-space: wrap;"><span class="kw2">&lt;?php</span><br />
<span class="re0">$aliases</span><span class="br0">&#91;</span><span class="st0">&#8216;remote1&#8242;</span><span class="br0">&#93;</span> = <a href="http://www.php.net/array"><span class="kw3">array</span></a><span class="br0">&#40;</span><br />
&nbsp; <span class="st0">&#8216;uri&#8217;</span> =&gt; <span class="st0">&#8216;stage.example.com&#8217;</span>,<br />
&nbsp; <span class="st0">&#8216;root&#8217;</span> =&gt; <span class="st0">&#8216;/var/www/example.com&#8217;</span>,<br />
&nbsp; <span class="st0">&#8216;remote-host&#8217;</span> =&gt; <span class="st0">&#8216;remote.host.ip.or.name&#8217;</span>,<br />
&nbsp; <span class="st0">&#8216;remote-user&#8217;</span> =&gt; <span class="st0">&#8216;phpjtest&#8217;</span>,<br />
<span class="br0">&#41;</span>;<br />
<span class="kw2">?&gt;</span></div>
<p>Next, set up a passwordless login to the remote server using: </p>
<div class="dean_ch" style="white-space: wrap;"><span class="re3"># this is <span class="kw1">done</span> on the client side <span class="br0">&#40;</span>home pc<span class="br0">&#41;</span></span><br />
<span class="kw2">ssh-keygen</span> -t rsa<br />
ssh-copy-<span class="kw2">id</span> phpjtest@remote.host.ip.or.name</div>
<p>And you should be able to run drush commands from the local machine using:<br />
<code>drush @remote1 status</code></p>
<p>Going to test this shortly&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://deeb.me/20130403/drush-as-jail-shell/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Diet Day Three (When It Crashed and Burned)</title>
		<link>http://deeb.me/20130330/diet-day-three</link>
		<comments>http://deeb.me/20130330/diet-day-three#comments</comments>
		<pubDate>Sat, 30 Mar 2013 17:56:17 +0000</pubDate>
		<dc:creator>abdallah</dc:creator>
				<category><![CDATA[Food]]></category>
		<category><![CDATA[diet]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[Holiday]]></category>

		<guid isPermaLink="false">http://deeb.me/?p=635</guid>
		<description><![CDATA[Breakfast: mortadella and rockets wrap. So far so good. But then it hit me: We&#8217;re going up to Bekaa to visit Pia&#8217;s aunt. Plenty of food today! Here&#8217;s a sample (low quality pics from my phone!): Tabbouleh: An assortment of sauteed wild greens and fresh &#8220;Aisha Khanum&#8221; beans the traditional &#8230;]]></description>
				<content:encoded><![CDATA[<p>Breakfast: mortadella and rockets wrap. So far so good.</p>
<p>But then it hit me: We&#8217;re going up to Bekaa to visit Pia&#8217;s aunt. Plenty of food today! Here&#8217;s a sample (low quality pics from my phone!):</p>
<p>Tabbouleh:<br />
<a href="http://deeb.me/wp-content/uploads/wpid-IMG_20130330_142333.jpg"><img title="IMG_20130330_142333.jpg" class="alignnone size-full" alt="image" src="http://deeb.me/wp-content/uploads/wpid-IMG_20130330_142333.jpg" /></a></p>
<p>An assortment of sauteed wild greens and fresh &#8220;Aisha Khanum&#8221; beans the traditional vegetarian way:<br />
<a href="http://deeb.me/wp-content/uploads/wpid-IMG_20130330_141735.jpg"><img title="IMG_20130330_141735.jpg" class="alignnone size-full" alt="image" src="http://deeb.me/wp-content/uploads/wpid-IMG_20130330_141735.jpg" /></a></p>
<p>Wild thym:<br />
<a href="http://deeb.me/wp-content/uploads/wpid-IMG_20130330_141727.jpg"><img title="IMG_20130330_141727.jpg" class="alignnone size-full" alt="image" src="http://deeb.me/wp-content/uploads/wpid-IMG_20130330_141727.jpg" /></a></p>
<p>Wild dandelion with caramelized onions on top:<br />
<a href="http://deeb.me/wp-content/uploads/wpid-IMG_20130330_141629.jpg"><img title="IMG_20130330_141629.jpg" class="alignnone size-full" alt="image" src="http://deeb.me/wp-content/uploads/wpid-IMG_20130330_141629.jpg" /></a></p>
<p>The beans again:<br />
<a href="http://deeb.me/wp-content/uploads/wpid-IMG_20130330_141617.jpg"><img title="IMG_20130330_141617.jpg" class="alignnone size-full" alt="image" src="http://deeb.me/wp-content/uploads/wpid-IMG_20130330_141617.jpg" /></a></p>
<p>Pickled green olives:<br />
<a href="http://deeb.me/wp-content/uploads/wpid-IMG_20130330_142257.jpg"><img title="IMG_20130330_142257.jpg" class="alignnone size-full" alt="image" src="http://deeb.me/wp-content/uploads/wpid-IMG_20130330_142257.jpg" /></a></p>
<p>Pumpkin Kibbeh with Spinach, Chickpeas and Walnuts:<br />
<a href="http://deeb.me/wp-content/uploads/wpid-IMG_20130330_134858.jpg"><img title="IMG_20130330_134858.jpg" class="alignnone size-full" alt="image" src="http://deeb.me/wp-content/uploads/wpid-IMG_20130330_134858.jpg" /></a></p>
<p>I really did not eat that much, but I knew that the diet was over. The next day we were invited to a friend&#8217;s house (a sushi chef) and he made the most beautiful sushi/maki plates. His wife and other friends made Pancit, roasted chicken legs with rosemary, organic green salad, and about 10 other things. And then a couple of days later we were invited for a barbecue dinner at my in-laws. And more invites are lined up for the coming days and weeks. So I&#8217;m giving up&#8230;</p>
<p>Or maybe I&#8217;ll restart again in a couple of days. Meanwhile, I finished baking a wonderful whole-wheat sandwich loaf with honey and olive oil. The smell is great and I&#8217;m pretty sure it tastes great as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://deeb.me/20130330/diet-day-three/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Diet Day Two</title>
		<link>http://deeb.me/20130329/diet-day-two</link>
		<comments>http://deeb.me/20130329/diet-day-two#comments</comments>
		<pubDate>Fri, 29 Mar 2013 20:00:25 +0000</pubDate>
		<dc:creator>abdallah</dc:creator>
				<category><![CDATA[Food]]></category>
		<category><![CDATA[diet]]></category>
		<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://deeb.me/?p=611</guid>
		<description><![CDATA[Just started the day with a healthy breakfast of two eggs baked in last night&#8217;s salad leftovers (tomato, cucumber, wild thym) Coffee brewing now. Good day. On with lunch: Pia made me a beautiful salad (same as yesterday), with a large portion of moudardara. Feeling full and satisfied! I wrapped &#8230;]]></description>
				<content:encoded><![CDATA[<p>Just started the day with a healthy <strong>breakfast</strong> of two eggs baked in last night&#8217;s salad leftovers (tomato, cucumber, wild thym)<br />
<a href="http://deeb.me/wp-content/uploads/wpid-IMG_20130329_094855.jpg"><img title="IMG_20130329_094855.jpg" class="alignnone size-full" alt="image" src="http://deeb.me/wp-content/uploads/wpid-IMG_20130329_094855.jpg" /></a></p>
<p><span id="more-611"></span></p>
<p>Coffee brewing now. Good day.</p>
<p><strong>On with lunch:</strong><br />
Pia made me a beautiful salad (same as yesterday), with a large portion of moudardara. Feeling full and satisfied!<br />
<img title="Moudardara + Salad" class="alignnone size-full" src="http://deeb.me/wp-content/uploads/IMG_20130329_145654.jpg" /></p>
<p>I wrapped 3 thin slices of salami and lots of rockets in a medium size Lebanese pita bread for an afternoon snack.</p>
<p>And then for <strong>dinner</strong> (after having a beer with friends) Pia suggested baked potatoes. I just added a sprinkle of light tuna, some baba ghanouj and a few mint leaves. Great stuff, and I still feel light (did 2 quick sets of 35 pushups afterwards).<br />
<a href="http://deeb.me/wp-content/uploads/wpid-IMG_20130329_223037.jpg"><img title="IMG_20130329_223037.jpg" class="alignnone size-full" alt="image" src="http://deeb.me/wp-content/uploads/wpid-IMG_20130329_223037.jpg" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://deeb.me/20130329/diet-day-two/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Little Acrobat</title>
		<link>http://deeb.me/20130329/my-little-acrobat</link>
		<comments>http://deeb.me/20130329/my-little-acrobat#comments</comments>
		<pubDate>Fri, 29 Mar 2013 14:37:16 +0000</pubDate>
		<dc:creator>abdallah</dc:creator>
				<category><![CDATA[Cat]]></category>
		<category><![CDATA[Mood]]></category>
		<category><![CDATA[grooming]]></category>

		<guid isPermaLink="false">http://deeb.me/?p=623</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><a href="http://deeb.me/wp-content/uploads/wpid-IMG_20130329_162747.jpg"><img title="" class="alignnone size-full" alt="image" src="http://deeb.me/wp-content/uploads/wpid-IMG_20130329_162747.jpg" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://deeb.me/20130329/my-little-acrobat/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Could you hold still, I&#8217;m trying to sleep here!</title>
		<link>http://deeb.me/20130329/could-you-hold-still-im-trying-to-sleep-here</link>
		<comments>http://deeb.me/20130329/could-you-hold-still-im-trying-to-sleep-here#comments</comments>
		<pubDate>Fri, 29 Mar 2013 14:33:14 +0000</pubDate>
		<dc:creator>abdallah</dc:creator>
				<category><![CDATA[Cat]]></category>
		<category><![CDATA[Mood]]></category>
		<category><![CDATA[cute]]></category>

		<guid isPermaLink="false">http://deeb.me/?p=621</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><a href="http://deeb.me/wp-content/uploads/wpid-IMG_20130329_151447.jpg"><img title="" class="alignnone size-full" alt="image" src="http://deeb.me/wp-content/uploads/wpid-IMG_20130329_151447.jpg" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://deeb.me/20130329/could-you-hold-still-im-trying-to-sleep-here/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Diet Day One</title>
		<link>http://deeb.me/20130328/diet-day-one</link>
		<comments>http://deeb.me/20130328/diet-day-one#comments</comments>
		<pubDate>Thu, 28 Mar 2013 21:08:38 +0000</pubDate>
		<dc:creator>abdallah</dc:creator>
				<category><![CDATA[Food]]></category>
		<category><![CDATA[Holidays]]></category>
		<category><![CDATA[diet]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[healthy living]]></category>

		<guid isPermaLink="false">http://deeb.me/?p=609</guid>
		<description><![CDATA[Decided to go on a diet. Mostly because everyone is doing it. But also to make a point. Or rather to check if my hypotheses holds against my not so scientific experiments. And here is the menu from day one Breakfast: 3 slices of mortadella with olives, wrapped in medium &#8230;]]></description>
				<content:encoded><![CDATA[<p>Decided to go on a diet. Mostly because everyone is doing it. But also to make a point. Or rather to check if my hypotheses holds against my not so scientific experiments.<br />
And here is the menu from day one</p>
<p><span id="more-609"></span></p>
<p>Breakfast: 3 slices of mortadella with olives, wrapped in medium size Lebanese bread<br />
Lunch: bulgur bedfeen light (~2 cups)<br />
Dinner: egg drop noodle (70gr dry noodles, 1 egg, 2 table spoons coconut milk, spices)<br />
Snacks: 1 apple, 1 handful of peanuts, 1 grapefruit with a teaspoon of honey. </p>
<p>Weighted in at 83kg</p>
<p>Let&#8217;s see how this goes.<br />
<em>Pia tells me the lot makes up for 1739 cal. </em></p>
]]></content:encoded>
			<wfw:commentRss>http://deeb.me/20130328/diet-day-one/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Email Me When You&#8217;re Done</title>
		<link>http://deeb.me/20130313/email-me-when-youre-done</link>
		<comments>http://deeb.me/20130313/email-me-when-youre-done#comments</comments>
		<pubDate>Wed, 13 Mar 2013 13:11:28 +0000</pubDate>
		<dc:creator>abdallah</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://deeb.me/?p=604</guid>
		<description><![CDATA[Here&#8217;s a script that emails you when a long running process finishes. Best run this in a screen. I wish this worked with people too!]]></description>
				<content:encoded><![CDATA[<p>Here&#8217;s a script that emails you when a long running process finishes. Best run this in a screen.<br />
<script src="https://gist.github.com/5151711.js"></script><noscript><pre><code class="language-shell shell">PROCESS=$1
SLEEP_TIME=60
EMAIL_ADDRESS=abdallah@example.com
while [ -n &quot;$(pidof $PROCESS)&quot; ]; do sleep $SLEEP_TIME; done; echo &quot;Finished ...&quot; | mail -s &quot;Work finished&quot; $EMAIL_ADDRESS</code></pre></noscript></p>
<p>I wish this worked with people too! </p>
]]></content:encoded>
			<wfw:commentRss>http://deeb.me/20130313/email-me-when-youre-done/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Maven Script</title>
		<link>http://deeb.me/20130308/install-maven-script</link>
		<comments>http://deeb.me/20130308/install-maven-script#comments</comments>
		<pubDate>Fri, 08 Mar 2013 13:00:03 +0000</pubDate>
		<dc:creator>abdallah</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://deeb.me/?p=600</guid>
		<description><![CDATA[Just a quick install script. Use it: wget http://v.gd/installmvn &#124; bash and here&#8217;s the gist of it]]></description>
				<content:encoded><![CDATA[<p>Just a quick install script. Use it:</p>
<div class="dean_ch" style="white-space: wrap;"><span class="kw2">wget</span> http://v.gd/installmvn | bash</div>
<p>and here&#8217;s the gist of it<br />
<script src="https://gist.github.com/5116054.js"></script><noscript><pre><code class="language-shell shell">#!/bin/sh
URL=&quot;http://apache.mirrors.hoobly.com/maven/maven-3/3.0.5/binaries/apache-maven-3.0.5-bin.tar.gz&quot;
INSTALLATION_DIR=/usr/local/maven
if [ -d $INSTALLATION_DIR ]; then
    mv $INSTALLATION_DIR $INSTALLATION_DIR.$(date +&quot;%Y%m%d&quot;)
fi
mkdir $INSTALLATION_DIR
wget -O- $URL | tar zx --strip-components=1 -C $INSTALLATION_DIR
cat &lt;&lt; _EOF_ &gt; /etc/profile.d/maven.sh
#!/bin/bash
export MAVEN_HOME=$INSTALLATION_DIR
_EOF_
cat &lt;&lt; 'EOF' &gt;&gt; /etc/profile.d/maven.sh
export PATH=$INSTALLATION_DIR/bin:$PATH
EOF
echo maven installed to $INSTALLATION_DIR
$INSTALLATION_DIR/bin/mvn --version</code></pre></noscript></p>
]]></content:encoded>
			<wfw:commentRss>http://deeb.me/20130308/install-maven-script/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This and Lots of That</title>
		<link>http://deeb.me/20130304/this-and-lots-of-that</link>
		<comments>http://deeb.me/20130304/this-and-lots-of-that#comments</comments>
		<pubDate>Mon, 04 Mar 2013 14:51:32 +0000</pubDate>
		<dc:creator>abdallah</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Mood]]></category>
		<category><![CDATA[Todo]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[dyi]]></category>
		<category><![CDATA[flexget]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[htpc]]></category>
		<category><![CDATA[lamps]]></category>
		<category><![CDATA[torrents]]></category>
		<category><![CDATA[xbmc]]></category>

		<guid isPermaLink="false">http://deeb.me/?p=587</guid>
		<description><![CDATA[It&#8217;s been a while since I wrote anything here. We moved, then kept on moving until we could move no more. Or at least that&#8217;s how it felt. From the quiet fresh and mostly healthy environment in the mountains of Lebanon to the confinements of Beirut, it wasn&#8217;t really that &#8230;]]></description>
				<content:encoded><![CDATA[<p>It&#8217;s been a while since I wrote anything here. We moved, then kept on moving until we could move no more. Or at least that&#8217;s how it felt. From the quiet fresh and mostly healthy environment in the mountains of Lebanon to the confinements of Beirut, it wasn&#8217;t really that much fun. It took a while to get settled, and I could honestly say that after 3 months of that we&#8217;re still not there yet. I don&#8217;t think we will be settled here in any case, so it&#8217;s not that big a deal.<br />
The only problem is that the coping is not the same as enjoying. And the creative process needed for coping is pretty different.<br />
I won&#8217;t go on a rant, I still have things to do. I just thought I would share a few things I&#8217;ve been doing in the last 3 months or so.</p>
<h2>Bread making</h2>
<p>We had been thinking about this <a href="http://www.moulinex.com/Products/breadmakers/home-bread.aspx">Moulinex bread machine</a> for a rather long time. Pia did the research and it seemed like the best one we could find in the Lebanese market. We didn&#8217;t shell out an extra 60$ for the &#8220;Baguette&#8221; version as it seemed very silly to pay that much for a simple insert!<br />
Since then, we have been making our own bread. Played around with the recipes and indulged in some &#8220;pain au lait&#8221; and brioche the first week or so. Then we moved back to our regular whole wheat bread. That smells and tastes just great.<br />
I am still looking for Rye flour, and not finding any. Maybe I&#8217;m just looking in the wrong places.<br />
<ins>pics coming soon</ins></p>
<h2>Small hacks</h2>
<h3>Desk lamp</h3>
<p>For some reason, I am not able to find anything these days. Or things are simply too expensive to be reasonable. We need a couple of desk lamps, but I couldn&#8217;t find anything below 100$. Now tell me this is not crazy! I found clip-on lamps at the Chinese store in Manara for 4000LBP(~3$). But their necks were too low. So I bought a microphone stand for 15$ and fixed the neck of the clip-on lamp on that. Pia was positively impressed and I felt pretty proud of myself. Compare this to prices on <a href="http://www.amazon.com/b?ie=UTF8&#038;node=1063292">Amazon</a>! *sigh*<br />
<ins>pics coming soon</ins></p>
<h3>Internet TV</h3>
<p>I did not hook the TV to the cable/antenna/sat receiver  yet. For different reasons (mainly being lazy). I will probably do that soon, but meanwhile I am enjoying getting all the latest TV series and my favourite movies thru a combination of <a href="http://flexget.com/">flexget</a>, <a href="http://deluge-torrent.org/">deluge</a> and <a href="http://xbmc.org/">xbmc</a>. Oh, and here&#8217;s a good <a href="http://www.havetheknowhow.com/Install-the-software/Configure-FlexGet.html">howto</a> to get you started.<br />
I also use the <a href="https://play.google.com/store/apps/details?id=org.xbmc.android.remote">official XBMC remote for android</a> and <a href="http://www.transdroid.org/">Transdroid (not from market)</a> from my phone to control those. It&#8217;s a good combination, pretty easy and I don&#8217;t have to think about it. The only problem I have is that the old Dell i6400 I&#8217;ve been using as HTPC is slowly dying of old age and I have yet to find a suitable replacement!</p>
<h3>Cloud9 IDE</h3>
<p>Almost all of the PCs/Laptops we have are in sync. Still using the IDE and re-syncing the files on the laptop after working all day on the desktop (even with the ease of <a href="http://git-scm.com/">git</a>) is a bit annoying for the lazy programmer in me. And I have been looking for an IDE to use on the road even when I&#8217;m out of the house. Enter <a href="https://c9.io/">Cloud9 IDE</a>. Sure it&#8217;s nice to work in the cloud, but it turns out they have a <a href="https://github.com/ajaxorg/cloud9/">standalone version</a> that doesn&#8217;t have all the bells and whistles (no problem here). You will need nodejs setup along with a few dependencies and modules. But it&#8217;s really worth it. I&#8217;ve been playing with a new personal app for the android (and perhaps iOS) to be released soon and doing all of the work (so far) inside c9.</p>
<h2>Gadgets wishlist</h2>
<p>Here&#8217;s my list for the coming months: </p>
<ul>
<li><a href="https://getmyo.com">MYO: Unleash your inner Jedi. <em>preordered</em></a></li>
<li><a href="http://www.gosphero.com/">Sphero</a>: I&#8217;m wondering if I should get a dog with that, or just let the cats play with it</li>
<li>Laptop/Tablet: still not sure what to get</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://deeb.me/20130304/this-and-lots-of-that/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tony Hanna&#8217;s Moustache</title>
		<link>http://deeb.me/20121024/tony-hannas-moustache</link>
		<comments>http://deeb.me/20121024/tony-hannas-moustache#comments</comments>
		<pubDate>Wed, 24 Oct 2012 07:10:26 +0000</pubDate>
		<dc:creator>abdallah</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Mood]]></category>
		<category><![CDATA[honor]]></category>
		<category><![CDATA[moustache]]></category>
		<category><![CDATA[mustache]]></category>
		<category><![CDATA[tony hanna]]></category>

		<guid isPermaLink="false">http://deeb.me/?p=582</guid>
		<description><![CDATA[At one time, the only guarantee needed from a man in Lebanon was him touching his moustache. That was the same as saying "you have my word". Not anymore!]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been playing the mandolin every day since I got it, and songs like <a href="http://en.wikipedia.org/wiki/Speak_Softly_Love_%28Love_Theme_from_The_Godfather%29">Speak Softly Love</a> (from The Godfather) and <a href="http://www.youtube.com/watch?v=OO8_hpQtKxo">For Elena</a> (<a href="http://www.imdb.com/title/tt0095765/">Cinema Paradiso</a>) are getting easier to follow through. But it seems that between exercises for songs I want to play, I always end up playing tunes that I remember from old times. The introduction to You&#8217;re the Love or &#8220;Enta el Hob&#8221; (Umm Kulthum) is a constant for some reason. It is a catchy tune!</p>
<p>Yesterday I was playing For Elena, and I ended up with <a href="http://yala.fm/en/artists/tony-hanna-393031f30729a5029695cd43085ea48e/biography">Tony Hanna</a>&#8216;s &#8220;<a href="http://www.youtube.com/watch?v=EX9mXG74VZ0">La thalifini bil shanab</a>&#8220;. Don&#8217;t ask why, the mind works in strange ways. And after I finished going through it the first time (slowly) I started thinking of the cultural implications of this song. Let me try to translate the first part in English and see if it makes sense:</p>
<blockquote><p>Don&#8217;t make me swear on my moustache<br />
Don&#8217;t try to shame me with reproaches<br />
From the bottom of my heart I swear to you<br />
That I will always be faithful to your love<br />
But keep the moustache out of it</p></blockquote>
<p>The moustache has a very important part of the male look for centuries. In Arabic many idioms, sayings and even curses are related to the facial hair on the upper lip. At one time, the only guarantee needed from a man in Lebanon was him touching his moustache. That was the same as saying &#8220;you have my word&#8221; or &#8220;I swear on the Bible/Coran&#8221;. Tony Hanna was in fact saying,  you can have anything you want and I&#8217;ll offer all the guarantees you need, but don&#8217;t even think of mentioning the moustache in a derogatory way.<br />
But in this day and age where men are clean-shaven and won&#8217;t live up to their end of any bargain even if it&#8217;s written, sealed and notarized, does Tony Hanna&#8217;s Shanab/Moustache mean anything?</p>
<p>Here&#8217;s one saying I heard from my dad a lot during my early teens (when I had a moustache), translated: <em>if the moustache makes a man, a [scaredy] cat would be the most manly man</em>. [that really needs a better translation!] </p>
<p><em>Sorry Tony Hanna, this is really not about you. It&#8217;s about the image of virility and manly honour you represented in that song.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://deeb.me/20121024/tony-hannas-moustache/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
