<?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>Coding Dojo</title>
	<atom:link href="http://mmenafra.info/feed/" rel="self" type="application/rss+xml" />
	<link>http://mmenafra.info</link>
	<description>Show me the Code!</description>
	<lastBuildDate>Sun, 28 Feb 2010 19:37:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Javascript, HTML and CSS playground</title>
		<link>http://mmenafra.info/2010/02/javascript-html-and-css-playground/</link>
		<comments>http://mmenafra.info/2010/02/javascript-html-and-css-playground/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 19:37:53 +0000</pubDate>
		<dc:creator>mmenafra</dc:creator>
				<category><![CDATA[Browser]]></category>
		<category><![CDATA[Curiosities]]></category>
		<category><![CDATA[General Programming]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[playground]]></category>
		<category><![CDATA[Utility]]></category>

		<guid isPermaLink="false">http://mmenafra.info/?p=83</guid>
		<description><![CDATA[
I have just come across a very interesting website that just simply blew my mind away. It's called JsFiddle it's a virtual playground for Web Dev's to try out snippets of code.
JsFiddle comes with a variety of preloaded Javascript libraries for every taste, it also come with an Ajax echo backend so you can dive [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://mmenafra.info/wp-content/uploads/2010/02/jsfiddleLogo.png"><img class="alignleft size-full wp-image-89" title="jsfiddleLogo" src="http://mmenafra.info/wp-content/uploads/2010/02/jsfiddleLogo.png" alt="" width="165" height="35" /></a></p>
<p>I have just come across a very interesting website that just simply blew my mind away. It's called <a href="http://www.jsfiddle.net/">JsFiddle</a> it's a virtual playground for Web Dev's to try out snippets of code.</p>
<p><a href="http://www.jsfiddle.net/">JsFiddle</a> comes with a variety of preloaded Javascript libraries for every taste, it also come with an Ajax echo backend so you can dive right into hacking code.  You can also check out some very cool pre loaded examples.</p>
<p><a href="http://mmenafra.info/wp-content/uploads/2010/02/jsfiddle.png"><img class="size-medium wp-image-90 alignnone" title="jsfiddle" src="http://mmenafra.info/wp-content/uploads/2010/02/jsfiddle-300x159.png" alt="" width="300" height="159" /></a></p>
<p>It has a very slick and intuitive interface, thre distinct boxes for js, Css and HTML code to be placed and a fourth box where the results of the executed code will be displayed.</p>
<p>And something this handy wouldn't be complete if it didn't count with a very cool sharing and embed options to share your hacks with your programming peers.</p>
<p>Happy coding and enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://mmenafra.info/2010/02/javascript-html-and-css-playground/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resetting your CSS Styles</title>
		<link>http://mmenafra.info/2010/02/resetting-your-css-styles/</link>
		<comments>http://mmenafra.info/2010/02/resetting-your-css-styles/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 18:54:25 +0000</pubDate>
		<dc:creator>mmenafra</dc:creator>
				<category><![CDATA[Browser]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://mmenafra.info/?p=69</guid>
		<description><![CDATA[All HTML elements are treated differently among browsers and have default predetermined CSS styling applied to them. These predefined styles are among the most common culprits when it comes to cross browser styling issues.
So it's a very practical and recommended practice to reset these styles to prevent obscure quirks to appear in our designs. Applying [...]]]></description>
			<content:encoded><![CDATA[<p>All HTML elements are treated differently among browsers and have default predetermined CSS styling applied to them. These predefined styles are among the most common culprits when it comes to cross browser styling issues.</p>
<p>So it's a very practical and recommended practice to reset these styles to prevent obscure quirks to appear in our designs. Applying this technique will remove and neutralize the inconsistent default styling among <a href="http://developer.yahoo.com/yui/articles/gbs/index.html#history">A-grade Browsers</a> providing a solid foundation on which to create great web designs.</p>
<p>When it comes to resetting your CSS styles I've come across things of this nature:</p>
<pre>* {
padding: 0;
margin: 0;
border: 0;
}
</pre>
<p>I don't recommend using this technique it's to aggressive and breaks many default properties on some HTML elements.</p>
<p>The technique I use to reset my CSS styles is based on the <a href="http://meyerweb.com/eric/thoughts/2007/04/14/reworked-reset/">Eric's Meyer</a> technique which he also based from <a href="http://developer.yahoo.com/yui/reset/">YUI's reset.css</a>.</p>
<p>So enough said lets dive into the code:</p>
<pre>html, body, div, span,
applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dd, dl, dt, li, ol, ul,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: inherit;
	font-style: inherit;
	line-height: 1;
	font-family: inherit;
	text-align: left;
	vertical-align: baseline;
}
a img, :link img, :visited img {
	border: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
ol, ul {
	list-style: none;
}
</pre>
<p>It's almost a copy of the same rules used by Eric but with 2 small changes, I removed the property of font-size:100% which I find conflicts with the default behavior when using the Header HTML tags ( &lt;h1&gt; ..&lt;h6&gt;) and also removed the styling rules for block quotes which I have found doesn't work quite right with multilingual website designs.</p>
<p>Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://mmenafra.info/2010/02/resetting-your-css-styles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Eaccelerator</title>
		<link>http://mmenafra.info/2010/02/installing-eaccelerator/</link>
		<comments>http://mmenafra.info/2010/02/installing-eaccelerator/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 22:06:02 +0000</pubDate>
		<dc:creator>mmenafra</dc:creator>
				<category><![CDATA[Cache]]></category>
		<category><![CDATA[Optimization]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Opcode Cache]]></category>
		<category><![CDATA[webapps]]></category>

		<guid isPermaLink="false">http://mmenafra.info/?p=42</guid>
		<description><![CDATA[PHP is an interpreted language. This means that each time a PHP generated page is requested, the server must read in the various files needed and "compile" them into something the machine can understand (opcode). 
Opcode cache mechanisms preserve this generated code in cache so that it only needs to be generated a single time [...]]]></description>
			<content:encoded><![CDATA[<p><!-- 		@page { margin: 0.79in } 		P { margin-bottom: 0.08in } 		H2 { margin-bottom: 0.08in } --><span style="font-size: small;">PHP is an interpreted language. This means that each time a PHP generated page is requested, the server must read in the various files needed and "compile" them into something the machine can understand (opcode). </span></p>
<p><span style="font-size: small;">Opcode cache mechanisms preserve this generated code in cache so that it only needs to be generated a single time to serve hundreds or millions of subsequent requests. </span></p>
<p><span style="font-size: small;">Enabling opcode cache will reduce the time it takes to generate a page by up to 90%. After enabling opcode cache on my own server, I saw page loads drop from about 1.5 seconds to as low as 300ms. </span></p>
<h2><span style="font-size: small;">Opcode Cache Solutions </span></h2>
<p><span style="font-size: small;">After a bit of research and a lot of asking around, I concluded that Eaccelerator was the best choice for me. It's compatible with PHP5, is arguably the most popular of its kind, and is successfully used on sites getting far more traffic than you or I are ever likely to see. Also its worth noting that Eaccelerator works wonderfull with Zend Framework. </span></p>
<h2><span style="font-size: small;">Implementing eAccelerator</span><strong><span style="font-size: small;"> </span></strong></h2>
<p><span style="font-size: small;">Implementing opcode cache is far easier than you might imagine. The only thing you'll need is admin (root) access to your server. If you're in a shared hosting environment, ask your service provider about implementing this feature if it is not in place already. These instructions apply to *nix environments only. </span></p>
<p>Installation Steps:</p>
<ul>
<li><strong>Step 1. Compiling Eaccelerator</strong></li>
</ul>
<p>Go to the source directory were eAccelerator is located, and in the parent folder run the following commands:</p>
<pre class="wiki">phpize
./configure
make
</pre>
<ul>
<li><strong>Step 2. Installing</strong></li>
</ul>
<p>Now for the installation process run the following command:</p>
<pre class="wiki">make install
</pre>
<ul>
<li><strong>Step 3.  Configuration</strong></li>
</ul>
<p>For configuring your recent install of eAccelerator access your php.ini configuration file, at the end add the following lines:</p>
<pre class="wiki">extension="eaccelerator.so"
eaccelerator.shm_size="16"
eaccelerator.cache_dir="/tmp/eaccelerator"
eaccelerator.enable="1"
eaccelerator.optimizer="1"
eaccelerator.check_mtime="1"
eaccelerator.debug="0"
eaccelerator.filter=""
eaccelerator.shm_max="0"
eaccelerator.shm_ttl="0"
eaccelerator.shm_prune_period="0"
eaccelerator.shm_only="0"
eaccelerator.compress="1"
eaccelerator.compress_level="9"
</pre>
<ul>
<li><strong>Step 4. Create Cache Directory</strong></li>
</ul>
<p>Last but not least all you have to do is create a cache directory, if we follow the above example the cache directory should be created using the following commands:</p>
<pre class="wiki">mkdir /tmp/eaccelerator
chmod 0777 /tmp/eaccelerator
</pre>
<p>Well their you have it that all you need to start serving blazing fast PHP pages. If you want to<br />
configure the admin panel for eAccelerator all you have to do is copy the "control.php" file located inside<br />
eAccelerators source folder into a web enabled folder which you could access via a web browser.<br />
After copying the file edit the "control.php" file and add a username and password.</p>
<p>Example from Control.php file:</p>
<p>/*** CONFIG ***/<br />
$auth = true;           // Set to false to disable authentication<br />
$user = "username";<br />
$pw = "password";</p>
<p>piz</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">
<h3 id="Step1.CompilingeAccelerator">ompiling eAccelerator</h3>
</div>
]]></content:encoded>
			<wfw:commentRss>http://mmenafra.info/2010/02/installing-eaccelerator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design Tools for the Web Developer</title>
		<link>http://mmenafra.info/2010/02/design-tools-for-the-web-developer/</link>
		<comments>http://mmenafra.info/2010/02/design-tools-for-the-web-developer/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 23:54:14 +0000</pubDate>
		<dc:creator>mmenafra</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[webapps]]></category>
		<category><![CDATA[Generators]]></category>

		<guid isPermaLink="false">http://mmenafra.info/?p=40</guid>
		<description><![CDATA[OK in my last post I talked about some common tools and web apps that help me on a day to day basis as a developer.  So taking into account that am a developer and I write code for a living, lets just say my creative side is not fully developed and from time to [...]]]></description>
			<content:encoded><![CDATA[<p>OK in my last post I talked about some common tools and web apps that help me on a day to day basis as a developer.  So taking into account that am a developer and I write code for a living, lets just say my creative side is not fully developed and from time to time a need a quick and nice way to solve design issues without the need to rely on a web Designer or a Graphics Designer.</p>
<p>So here are some nice online web apps that have helped me in the past and I found that are pretty useful:</p>
<p><a href="http://www.tartanmaker.com/"><img class="alignleft size-full wp-image-58" title="tartan" src="http://mmenafra.info/wp-content/uploads/2010/02/tartan.png" alt="" width="230" height="60" /></a></p>
<p><a href="http://www.stripegenerator.com/"><img class="alignleft size-full wp-image-56" title="stripegenerator" src="http://mmenafra.info/wp-content/uploads/2010/02/stripegenerator.png" alt="" width="247" height="60" /></a></p>
<p><a href="http://www.tabsgenerator.com/"><img class="alignleft size-full wp-image-57" title="tabsgenerator" src="http://mmenafra.info/wp-content/uploads/2010/02/tabsgenerator.png" alt="" width="244" height="60" /></a></p>
<p><a href="http://www.reflectionmaker.com/"><img class="alignleft size-medium wp-image-55" title="reflectionmaker" src="http://mmenafra.info/wp-content/uploads/2010/02/reflectionmaker-300x46.png" alt="" width="300" height="46" /></a></p>
<p><a href="http://colorschemedesigner.com/"><img class="alignleft size-medium wp-image-54" title="colorschema" src="http://mmenafra.info/wp-content/uploads/2010/02/colorschema-300x44.png" alt="" width="300" height="44" /></a></p>
<p><a href="http://www.colorjack.com/"><img class="alignleft size-full wp-image-53" title="colorjack" src="http://mmenafra.info/wp-content/uploads/2010/02/colorjack.png" alt="" width="151" height="60" /></a></p>
<p><a href="http://bgpatterns.com/"><img class="alignleft size-full wp-image-52" title="bgpatterns" src="http://mmenafra.info/wp-content/uploads/2010/02/bgpatterns.png" alt="" width="249" height="60" /></a></p>
<p><a href="http://ajaxload.info/"><img class="alignleft size-full wp-image-51" title="ajaxload" src="http://mmenafra.info/wp-content/uploads/2010/02/ajaxload.png" alt="" width="174" height="60" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mmenafra.info/2010/02/design-tools-for-the-web-developer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic Tools For Web Developers</title>
		<link>http://mmenafra.info/2010/02/basic-tools-for-web-developers/</link>
		<comments>http://mmenafra.info/2010/02/basic-tools-for-web-developers/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 17:51:38 +0000</pubDate>
		<dc:creator>mmenafra</dc:creator>
				<category><![CDATA[General Programming]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[webapps]]></category>

		<guid isPermaLink="false">http://mmenafra.info/?p=15</guid>
		<description><![CDATA[Well to keep up with a sort of introduction kind of posts, I decided to show case some of the tools I use on a day to day basis when it comes to developing web applications.
Let me just state before I continue that my de facto browser for development purposes is and will ever be [...]]]></description>
			<content:encoded><![CDATA[<p>Well to keep up with a sort of introduction kind of posts, I decided to show case some of the tools I use on a day to day basis when it comes to developing web applications.</p>
<p>Let me just state before I continue that my de facto browser for development purposes is and will ever be Mozillas Firefox.</p>
<p>Having said that lets dive into the plugins I use:</p>
<ul>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1843">Firebug</a> : Firebug integrates with Firefox to put a wealth of development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/9603">fireRainbow</a> : Javascript syntax highlighting for Firebug</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/60">WebDeveloperToolbar</a> : he Web Developer extension adds a menu and a toolbar with various web developer tools.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/5369">Yslow</a> : YSlow analyzes web pages and why they're slow based on Yahoo!'s rules for high performance web sites.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/3829">Live HTTP headers</a> : View HTTP headers of a page and while browsing.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/6149">FirePHP</a> : FirePHP enables you to log to your Firebug Console using a simple PHP method call.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/590">showIp</a> : Show the IP address(es) of the current page in the status bar. It also allows querying custom information services by IP (right mouse button) and hostname (left mouse button), like whois, netcraft,etc.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/271">colorzilla</a> : Advanced Eyedropper, ColorPicker, Page Zoomer and other colorful goodies.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1146">Screen Grab</a> : Screengrab! saves webpages as images. It will capture what you can see in the window, the entire page, just a selection, a particular frame... basically it saves webpages as images - either to a file, or to the clipboard.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1802">x-ray</a> : See the tags on a page without viewing the sourcecode.</li>
</ul>
<p>Also some very cool web apps that I commonly use:</p>
<ul>
<li><a href="http://www.jslint.com/">Jslint</a> : The Javascript Code Quality Tool, created by Douglas Crockfor.</li>
<li><a href="http://www.jsonlint.com/">JsonLint</a> : A handy Json Validator.</li>
<li><a href="http://www.selectorgadget.com/">CSS selector gadget</a> : A point and click CSS selector, works as a bookmarklet, very handy tool.</li>
</ul>
<p>That would be it any questions or comments feel free to do so.</p>
<p>Happy coding! <img src='http://mmenafra.info/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 168px; width: 1px; height: 1px;">
<h5><a href="https://addons.mozilla.org/en-US/firefox/addon/1802">16.X-Ray</a></h5>
</div>
]]></content:encoded>
			<wfw:commentRss>http://mmenafra.info/2010/02/basic-tools-for-web-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turning Off Gmail Buzz</title>
		<link>http://mmenafra.info/2010/02/turning-off-gmail-buzz/</link>
		<comments>http://mmenafra.info/2010/02/turning-off-gmail-buzz/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 20:25:52 +0000</pubDate>
		<dc:creator>mmenafra</dc:creator>
				<category><![CDATA[Curiosities]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[gmail buzz]]></category>

		<guid isPermaLink="false">http://mmenafra.info/?p=29</guid>
		<description><![CDATA[First off am a Twitter fan and have been very unhappy this past week with the launch of Googles  Buzz and its current privacy settings. ( along with almost 90% of its users ).  So if you read any tech news lately you should know all  the heavy debate and heat that Google Buzz has [...]]]></description>
			<content:encoded><![CDATA[<p>First off am a Twitter fan and have been very unhappy this past week with the launch of Googles  Buzz and its current privacy settings. ( along with almost 90% of its users ).  So if you read any tech news lately you should know all  the heavy debate and heat that Google Buzz has been receiving.</p>
<p>Without going into much detail into the why Google Buzz privacy setting are so awfully bad, am just going to share with everyone this link which shows users how to turn Buzz off.</p>
<p><a href="http://tinyurl.com/yfywcfd"><strong>http://tinyurl.com/yfywcfd</strong></a></p>
<p>If you want to know more about this matter and get properly informed on exactly how much private information your handing out while using Buzz ad how intrusive it really is, just read the following articles .</p>
<p><a href="http://tinyurl.com/yff55mq"><strong>http://tinyurl.com/yff55mq</strong></a></p>
<p><a href="http://tinyurl.com/ylooemf"><strong>http://tinyurl.com/ylooemf</strong></a></p>
<p><a href="http://tinyurl.com/ykka5q7"><strong>http://tinyurl.com/ykka5q7</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mmenafra.info/2010/02/turning-off-gmail-buzz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Dropbox</title>
		<link>http://mmenafra.info/2010/02/getting-dropbox/</link>
		<comments>http://mmenafra.info/2010/02/getting-dropbox/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 19:44:17 +0000</pubDate>
		<dc:creator>mmenafra</dc:creator>
				<category><![CDATA[Curiosities]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[file sharing]]></category>
		<category><![CDATA[online sharing]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://mmenafra.info/?p=21</guid>
		<description><![CDATA[The other day I was talking with some fellow co-workers about file sharing and syncing between devices, etc... So I so bluntly told them why didn't they just use Dropbox. And to my surprise none of them knew what it was. Shortly after they had all installed it, created an account and started fooling around [...]]]></description>
			<content:encoded><![CDATA[<p>The other day I was talking with some fellow co-workers about file sharing and syncing between devices, etc... So I so bluntly told them why didn't they just use <a href="https://www.dropbox.com/">Dropbox</a>. And to my surprise none of them knew what it was. Shortly after they had all installed it, created an account and started fooling around with the features. Amazed at what a powerful app <a href="https://www.dropbox.com/">Dropbox</a> was.</p>
<p>Having noted that not many people have heard about Dropboxs magic I decided to dedicate this post to all who haven't had the chance to try it out.</p>
<p><a href="https://www.dropbox.com/">Dropbox</a> is easy to install and totally cross platform. (PC, Mac and Linux).</p>
<p><em><strong>Main features would be:</strong></em></p>
<ul>
<li>Enable file syncing among various computers and mobile devices.</li>
<li>File Sharing among friends, co-workers and Dropbox users.</li>
<li>Online backup.</li>
<li>Web access to all your Dropbox files.</li>
<li>Mobile Device access</li>
<li>And last but not least excellent Security &amp; Privacy settings.</li>
</ul>
<p><em><strong>Dropbox will replace and simplify the following common daily tasks:</strong></em></p>
<ul>
<li>Emailing file attachments to yourself and other people.</li>
<li>Using USB drives to move files between computers.</li>
<li>Renaming files to keep a history of previous versions.</li>
<li>Complicated backup software and hardware.</li>
</ul>
<p>Here is the Url where you can watch a quick video tour of Dropbox features and download the installer.</p>
<p><a href="https://www.dropbox.com/">https://www.dropbox.com/</a></p>
<p>Hope you enjoy it as much as me and my friends and spread the word.</p>
<p>bye</p>
]]></content:encoded>
			<wfw:commentRss>http://mmenafra.info/2010/02/getting-dropbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Reading</title>
		<link>http://mmenafra.info/2010/02/javascript-reading/</link>
		<comments>http://mmenafra.info/2010/02/javascript-reading/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 23:58:03 +0000</pubDate>
		<dc:creator>mmenafra</dc:creator>
				<category><![CDATA[Curiosities]]></category>
		<category><![CDATA[General Programming]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JustMe]]></category>
		<category><![CDATA[books]]></category>

		<guid isPermaLink="false">http://mmenafra.info/?p=9</guid>
		<description><![CDATA[Well it's no surprise to the people who know me that am a Javascript Fanatic!
Having said that I would like to share some of the books I have read through out the years that I have particularly liked, and most importantly found its content useful.
OReilly - Javascript the Definitive Guide 5th Edition
Apress - Pro JavaScript [...]]]></description>
			<content:encoded><![CDATA[<p>Well it's no surprise to the people who know me that am a Javascript Fanatic!</p>
<p>Having said that I would like to share some of the books I have read through out the years that I have particularly liked, and most importantly found its content useful.</p>
<p><a href="http://www.amazon.com/JavaScript-Definitive-Guide-David-Flanagan/dp/0596101996/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1265673252&amp;sr=8-1-spell">OReilly - Javascript the Definitive Guide 5th Edition</a></p>
<p><a href="http://www.amazon.com/JavaScript-Design-Patterns-Recipes-Problem-Solution/dp/159059908X/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1265673389&amp;sr=1-1">Apress - Pro JavaScript Design Patterns (2008)</a></p>
<p><a href="http://jspro.org/">Apress - Pro Javascript Techniques</a></p>
<p><a href="http://www.amazon.com/exec/obidos/ASIN/0596517742/wrrrldwideweb">OReilly - Javascript The Good Parts</a></p>
<p>Well hope you enjoy them as much as I did : )</p>
<p>Happy Coding.</p>
<p>piz</p>
]]></content:encoded>
			<wfw:commentRss>http://mmenafra.info/2010/02/javascript-reading/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inspiring Blogs</title>
		<link>http://mmenafra.info/2010/02/inspiring-blogs/</link>
		<comments>http://mmenafra.info/2010/02/inspiring-blogs/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 22:54:03 +0000</pubDate>
		<dc:creator>mmenafra</dc:creator>
				<category><![CDATA[JustMe]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://mmenafra.info/?p=4</guid>
		<description><![CDATA[Peter-Paul Koch
Well I've finished setting up my first blog and spent some time fine tuning all the setting, but have no idea what's gonna be my first post.
So before I start rambling an incoherent post with cryptic code examples am just gonna start off by sharing some of the blogs I read on a daily [...]]]></description>
			<content:encoded><![CDATA[<h2 id="top">Peter-Paul Koch</h2>
<p>Well I've finished setting up my first blog and spent some time fine tuning all the setting, but have no idea what's gonna be my first post.</p>
<p>So before I start rambling an incoherent post with cryptic code examples am just gonna start off by sharing some of the blogs I read on a daily basis and have been my source of inspiration in creating a blog of my own.</p>
<p>Joel Spolsk - blog about software</p>
<p><a href="http://www.joelonsoftware.com/">http://www.j﻿oelonsoftware.com/</a></p>
<p>Jeff Atwood (aka Coding Horror)</p>
<p><a href="http://www.codinghorror.com/blog/">http://www.codinghorror.com/blog/</a></p>
<p>Jon Resig - Javascript programmer</p>
<p><a href="http://ejohn.org/">http://ejohn.org/</a></p>
<p>Joseph Smarr - Chief Technology Officer at Plaxo</p>
<p><a href="http://josephsmarr.com/">http://josephsmarr.com/</a></p>
<p>Peter-Paul-Koch - Mobile platform strategust and consultant</p>
<p><a href="http://www.quirksmode.org/blog/">http://www.quirksmode.org/blog/</a></p>
<p><a href="http://ajaxian.com/">http://ajaxian.com/</a></p>
<p>Well the list could go on and on but I've decided to leave it like that. I think you can get a picture  of what my future posts will be about!</p>
<p>That will be all for now, next I will posting some recommended reading material.</p>
<p>piz</p>
]]></content:encoded>
			<wfw:commentRss>http://mmenafra.info/2010/02/inspiring-blogs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

