<?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>Tony de Jesus</title>
	<atom:link href="http://www.tonyjesus.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tonyjesus.com</link>
	<description>Because knowledge is power...</description>
	<lastBuildDate>Thu, 12 Feb 2015 22:23:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.4.33</generator>
	<item>
		<title>Compress CSS using PHP</title>
		<link>http://www.tonyjesus.com/2011/compress-css-using-php</link>
		<comments>http://www.tonyjesus.com/2011/compress-css-using-php#comments</comments>
		<pubDate>Sun, 09 Oct 2011 13:52:20 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[compression]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=1401</guid>
		<description><![CDATA[One of the most important things to consider when creating a website is its loading time. The loading time of a website is as important as its functionality. What&#8217;s the point in having a great website if it takes too long to load? Who wants to wait for it? There are a lot of resources [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1404" title="CSS compression" src="http://www.tonyjesus.com/wp-content/uploads/2011/10/css-compressor.jpg" alt="image of a compressor with a CSS box" width="70" height="65" />One of the most important things to consider when creating a website is its loading time. The loading time of a website is as important as its functionality. What&#8217;s the point in having a great website if it takes too long to load? Who wants to wait for it? There are a lot of resources that you can optimize on your website and one of them is the CSS code. In this post I&#8217;ll show you a way to compress your CSS code using PHP.<span id="more-1401"></span></p>
<p>There are some methods that require changing the file extension from .css to .php. However, with this method, you don&#8217;t need to do that. First of all, add the following PHP code at the very beginning of your CSS file:</p>
<pre class="brush: php; title: ; notranslate">

if(extension_loaded('zlib')){

     ob_start (&quot;ob_gzhandler&quot;);

     header(&quot;Content-type: text/css; charset: UTF-8&quot;);

     header(&quot;Cache-Control: must-revalidate&quot;);

     $expires = &quot;Expires: &quot; .

     gmdate(&quot;D, d M Y H:i:s&quot;,

     time() + (60 * 60)) . &quot; GMT&quot;;

     header($expires);

}

</pre>
<p>Now we need to tell the web server to process our CSS file as a PHP file. We can use a .htacess file to do that:</p>
<pre class="brush: plain; title: ; notranslate">

&lt;Files yourcssfilename.css&gt;
AddType application/x-httpd-php .css
&lt;/Files&gt;

</pre>
<p>Don&#8217;t forget to change &#8220;yourcssfilename.css&#8221; to the name of your CSS file.</p>
<p>For some reason, in my <a title="Media Temple" href="http://www.mediatemple.net/go/order/?refdom=tonyjesus.com" target="_blank">Media Temple host</a> this directive does not work. Instead of that you can use:</p>
<pre class="brush: plain; title: ; notranslate">

&lt;Files yourcssfilename.css&gt;
SetHandler php-script
&lt;/Files&gt;

</pre>
<p>Here is a screenshot of Firebug&#8217;s network tab. As you can see, the browser is loading a CSS file called styles.css and its size is 24.4KB.</p>
<p><img class="aligncenter size-full wp-image-1420" title="CSS uncompressed" src="http://www.tonyjesus.com/wp-content/uploads/2011/10/css-uncompressed.jpg" alt="Screenshot of firebug network tab" width="500" height="53" /></p>
<p>Here is the same file, but using the compression method described above. Now the size of the file is 5.2KB.</p>
<p><img class="aligncenter size-full wp-image-1422" title="CSS compressed" src="http://www.tonyjesus.com/wp-content/uploads/2011/10/css-compressed.jpg" alt="Screenshot of firebug network tab" width="500" height="52" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/10/css-compressed-300x31.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/10/css-compressed.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></p>
<p>Do you know a better method to do this? Any ideas that contribute to optimize CSS loading? Please share your thoughts in the comments section.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/compress-css-using-php/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>RIP Steve Jobs: Stay hungry, stay foolish</title>
		<link>http://www.tonyjesus.com/2011/rip-steve-jobs-stay-hungry-stay-foolish</link>
		<comments>http://www.tonyjesus.com/2011/rip-steve-jobs-stay-hungry-stay-foolish#comments</comments>
		<pubDate>Thu, 06 Oct 2011 21:53:56 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=1368</guid>
		<description><![CDATA[Apple co-founder Steve Jobs, who changed the daily habits of millions by reinventing computing, music and mobile phones, died Wednesday at the age of 56. His death after a long battle with pancreatic cancer sparked an outpouring of tributes as world leaders, business rivals and fans alike lamented his premature passing and celebrated his monumental [&#8230;]]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-1369" title="Steve Jobs tribute" src="http://www.tonyjesus.com/wp-content/uploads/2011/10/steve-jobs.jpg" alt="Steve Jobs tribute" width="500" height="268" /></p>
<p>Apple co-founder Steve Jobs, who changed the daily habits of millions by reinventing computing, music and mobile phones, died Wednesday at the age of 56. His death after a long battle with pancreatic cancer sparked an outpouring of tributes as world leaders, business rivals and fans alike lamented his premature passing and celebrated his monumental achievements.<span id="more-1368"></span></p>
<p>Apple loses a visionary leader who inspired personal computing and iconic products such as the iPod, iPhone and iPad, which made Jobs one of the most significant industry leaders of his generation. </p>
<p>Six years ago, Jobs had talked about how a sense of his mortality was a major driver behind that vision.</p>
<p>&#8220;Remembering that I&#8217;ll be dead soon is the most important tool I&#8217;ve ever encountered to help me make the big choices in life,&#8221; Jobs said during a Stanford commencement ceremony in 2005.</p>
<p>&#8220;Because almost everything —all external expectations, all pride, all fear of embarrassment or failure — these things just fall away in the face of death, leaving only what is truly important.&#8221;</p>
<p>&#8220;Remembering that you are going to die is the best way I know to avoid the trap of thinking you have something to lose. You are already naked. There is no reason not to follow your heart.&#8221;</p>
<p style="text-align: center;"> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/rip-steve-jobs-stay-hungry-stay-foolish/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #23</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-23</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-23#respond</comments>
		<pubDate>Fri, 30 Sep 2011 21:54:07 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=1342</guid>
		<description><![CDATA[This week my list contains Slavery Footprint, a lifestyle survey that shows consumers how many forced laborers have contributed to make the stuff you might find in a medicine cabinet or in a gym bag; Dentsu Network, an advertising, marketing, media and technology agency network; Dunnellon Depot, a website concerned about preserving the history of Dunnellon; Fork, [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This week my list contains Slavery Footprint, a lifestyle survey that shows consumers how many forced laborers have contributed to make the stuff you might find in a medicine cabinet or in a gym bag; Dentsu Network, an advertising, marketing, media and technology agency network; Dunnellon Depot, a website concerned about preserving the history of Dunnellon; Fork, an open-source CMS; and JuiceBox Creative, a Perth-based brand and web agency in North Perth, Western Australia.<span id="more-1342"></span></p>
<p style="text-align: left;"> </p>
<h3><a title="Slavery Footprint - Made In A Free World" href="http://www.slaveryfootprint.org/" target="_blank">Slavery Footprint &#8211; Made In A Free World</a></h3>
<p style="text-align: center;"><a href="http://www.slaveryfootprint.org/" target="_blank"><img class="aligncenter size-full wp-image-1390" style="border: 0pt none;" title="Slavery Footprint - Made In A Free World" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/slaveryfootprint.org_.jpg" alt="Screenshot of Slavery Footprint" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/slaveryfootprint.org_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/slaveryfootprint.org_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p style="text-align: left;"> </p>
<h3><a title="Dentsu Network" href="http://dentsunetwork.com" target="_blank">Dentsu Network</a></h3>
<p style="text-align: center;"><a href="http://dentsunetwork.com" target="_blank"><img class="aligncenter size-full wp-image-1392" style="border: 0pt none;" title="Dentsu Network" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/dentsunetwork.com_.jpg" alt="Screenshot of Dentsu Network" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/dentsunetwork.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/dentsunetwork.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p style="text-align: left;"> </p>
<h3><a title="Greater Dunnellon Historical Society" href="http://dunnellondepot.com/" target="_blank">Greater Dunnellon Historical Society</a></h3>
<p style="text-align: center;"><a href="http://dunnellondepot.com/" target="_blank"><img class="aligncenter size-full wp-image-1394" style="border: 0pt none;" title="Greater Dunnellon Historical Society" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/dunnellondepot.com_.jpg" alt="Screenshot  of Greater Dunnellon Historical Society" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/dunnellondepot.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/dunnellondepot.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p style="text-align: left;"> </p>
<h3><a title="Fork the Open Source CMS" href="http://www.fork-cms.com/" target="_blank">Fork</a></h3>
<p style="text-align: center;"><a href="http://www.fork-cms.com/" target="_blank"><img class="aligncenter size-full wp-image-1396" style="border: 0pt none;" title="Fork the Open Source CMS" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/fork-cms.com_.jpg" alt="Screenshot of Fork the Open Source CMS" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/fork-cms.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/fork-cms.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p style="text-align: left;"> </p>
<h3><a title="JuiceBox Creative" href="http://www.juicebox.com.au/" target="_blank">JuiceBox Creative</a></h3>
<p style="text-align: center;"><a href="http://www.juicebox.com.au/" target="_blank"><img class="aligncenter size-full wp-image-1397" style="border: 0pt none;" title="JuiceBox Creative" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/juicebox.com_.au_.jpg" alt="Screenshot of JuiceBox Creative" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/juicebox.com_.au_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/juicebox.com_.au_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-3829"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-3829','','','0'); </script> or <a href="http://www.twitter.com/#!/tonyjesusdotcom" target="_blank">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-23/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #22</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-22</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-22#respond</comments>
		<pubDate>Fri, 23 Sep 2011 19:53:19 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=1338</guid>
		<description><![CDATA[For this Sites of the Week I have selected some great sites such as lega-lega, a very nice online shop; Waldschmidt &#124; Arp, two business strategist consultors; Team Fannypack, a group of young adults helping to bring about a cure for Multiple Sclerosis; The Photoshop Etiquette Manifesto for Web Designers, a collection of ways to [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>For this Sites of the Week I have selected some great sites such as lega-lega, a very nice online shop; Waldschmidt | Arp, two business strategist consultors; Team Fannypack, a group of young adults helping to bring about a cure for Multiple Sclerosis; The Photoshop Etiquette Manifesto for Web Designers, a collection of ways to improve the clarity of a PSD when transferred and Marie Catribs, a fantastic restaurant in Grand Rapids, Michigan.<span id="more-1338"></span></p>
<p style="text-align: left;"> </p>
<h3><a title="Lega-lega online shop" href="http://www.lega-lega.com/" target="_blank">Lega-lega online shop</a></h3>
<p style="text-align: center;"><a href="http://www.lega-lega.com/" target="_blank"><img class="aligncenter size-full wp-image-1375" style="border: 0pt none;" title="Lega-lega online shop" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/lega-lega.com_.jpg" alt="Screenshot of Lega-lega online shop" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/lega-lega.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/lega-lega.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p style="text-align: left;"> </p>
<h3><a title="Waldschmidt | Arp" href="http://www.waldschmidtarp.com/" target="_blank">Waldschmidt | Arp</a></h3>
<p style="text-align: center;"><a href="http://www.waldschmidtarp.com/" target="_blank"><img class="aligncenter size-full wp-image-1378" style="border: 0pt none;" title="Waldschmidt | Arp" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/waldschmidtarp.com_.jpg" alt="Screenshot of Waldschmidt | Arp" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/waldschmidtarp.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/waldschmidtarp.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p style="text-align: left;"> </p>
<h3><a title="Team Fannypack" href="http://www.teamfannypack.com/" target="_blank">Team Fannypack</a></h3>
<p style="text-align: center;"><a href="http://www.teamfannypack.com/" target="_blank"><img class="aligncenter size-full wp-image-1379" style="border: 0pt none;" title="Team Fannypack" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/teamfannypack.com_.jpg" alt="Screenshot of Team Fannypack" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/teamfannypack.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/teamfannypack.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p style="text-align: left;"> </p>
<h3><a title="The Photoshop Etiquette Manifesto for Web Designers" href="http://photoshopetiquette.com/" target="_blank">The Photoshop Etiquette Manifesto for Web Designers</a></h3>
<p style="text-align: center;"><a href="http://photoshopetiquette.com/" target="_blank"><img class="aligncenter size-full wp-image-1381" style="border: 0pt none;" title="The Photoshop Etiquette Manifesto for Web Designers" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/photoshopetiquette.com_.jpg" alt="Screenshot of The Photoshop Etiquette Manifesto for Web Designers" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/photoshopetiquette.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/photoshopetiquette.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p style="text-align: left;"> </p>
<h3><a title="Marie Catribs" href="http://www.mariecatribs.com/" target="_blank">Marie Catribs</a></h3>
<p style="text-align: center;"><a href="http://www.mariecatribs.com/" target="_blank"><img class="aligncenter size-full wp-image-1384" style="border: 0pt none;" title="Marie Catribs" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/mariecatribs.com_.jpg" alt="Screenshot of Marie Catribs" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/mariecatribs.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/mariecatribs.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p style="text-align: left;"> </p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-6379"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-6379','','','0'); </script> or <a href="http://www.twitter.com/#!/tonyjesusdotcom" target="_blank">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-22/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #21</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-21</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-21#comments</comments>
		<pubDate>Fri, 16 Sep 2011 19:56:34 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=1326</guid>
		<description><![CDATA[In this week&#8217;s collection, I have designs from Moods of Norway, a Norwegian clothing brand; Multicolr Search Lab, a free online image search utility; Birrificio Irpino, an Italian brewery; Million Trees, an initiative to plant one million trees in London over the next ten years; and nGen Works, an American web development company.   Moods of [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>In this week&#8217;s collection, I have designs from Moods of Norway, a Norwegian clothing brand; Multicolr Search Lab, a free online image search utility; Birrificio Irpino, an Italian brewery; Million Trees, an initiative to plant one million trees in London over the next ten years; and nGen Works, an American web development company.<span id="more-1326"></span></p>
<p style="text-align: left;"> </p>
<h3><a title="Moods of Norway - Happy clothes for happy people!" href="http://www.moodsofnorway.com/" target="_blank">Moods of Norway &#8211; Happy clothes for happy people!</a></h3>
<p style="text-align: center;"><a href="http://www.moodsofnorway.com/" target="_blank"><img class="aligncenter size-full wp-image-1346" style="border: 0pt none;" title="Moods of Norway - Happy clothes for happy people!" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/moodsofnorway.com_.jpg" alt="Screenshot of Moods of Norway website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/moodsofnorway.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/moodsofnorway.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Moods of Norway is a Norwegian clothing concept that combines products with a touch of Norwegian Heritage with International trends.</p>
<p style="text-align: left;"> </p>
<h3><a title="Multicolr Search Lab" href="http://labs.ideeinc.com/multicolr" target="_blank">Multicolr Search Lab</a></h3>
<p style="text-align: center;"><a href="http://labs.ideeinc.com/multicolr" target="_blank"><img class="aligncenter size-full wp-image-1347" style="border: 0pt none;" title="Multicolr Search Lab" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/multicolr.jpg" alt="Screenshot of Multicolr Search Lab website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/multicolr-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/multicolr.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Do you need an image with red and green color tones for a desktop wallpaper or a design project? Then use Multicolr Search Lab, a free search utility, that allows you to search through 10 million of the most &#8220;interesting&#8221; Creative Commons images on Flickr, based on the colors that you select. You can use upto 5 colors on each search. The only drawback is that you need to choose the color from a color picker, i.e. you can&#8217;t insert the hexadecimal code or RGB values grabbed from image editors.</p>
<p style="text-align: left;"> </p>
<h3><a title="Birrificio Irpino" href="http://www.birrificioirpino.it/" target="_blank">Birrificio Irpino</a></h3>
<p style="text-align: center;"><a href="http://www.birrificioirpino.it/" target="_blank"><img class="aligncenter size-full wp-image-1348" style="border: 0pt none;" title="Birrificio Irpino" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/birrificioirpino.it_.jpg" alt="Screenshot of Birrificio Irpino website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/birrificioirpino.it_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/birrificioirpino.it_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Birrificio Irpino is an italian brewery and their amazing HTML5 website deserves to be in this sites of the week edition.</p>
<p style="text-align: left;"> </p>
<h3><a title="One Million Trees" href="http://www.milliontrees.ca/" target="_blank">One Million Trees</a></h3>
<p style="text-align: center;"><a href="http://www.milliontrees.ca/" target="_blank"><img class="aligncenter size-full wp-image-1350" style="border: 0pt none;" title="One Million Trees" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/milliontrees.ca_.jpg" alt="Screenshot of One Million Trees" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/milliontrees.ca_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/milliontrees.ca_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>London&#8217;s Million Tree Challenge calls on Londoners to plant one million trees over the next ten years.</p>
<p style="text-align: left;"> </p>
<h3><a title="nGen Works" href="http://www.ngenworks.com/" target="_blank">nGen Works</a></h3>
<p style="text-align: center;"><a href="http://www.ngenworks.com/" target="_blank"><img class="aligncenter size-full wp-image-1351" style="border: 0pt none;" title="nGen Works" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/ngenworks.com_.jpg" alt="Screenshot of nGen Works" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/ngenworks.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/ngenworks.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>nGen Works is a digital creative firm that provides web design, web development and internet marketing consulting services to clients in the U.S. and abroad.</p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-6558"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-6558','','','0'); </script> or <a href="http://www.twitter.com/#%21/tonyjesusdotcom" target="_blank">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-21/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Prevent SQL Injection Attacks</title>
		<link>http://www.tonyjesus.com/2011/how-to-prevent-sql-injection-attacks</link>
		<comments>http://www.tonyjesus.com/2011/how-to-prevent-sql-injection-attacks#comments</comments>
		<pubDate>Sun, 11 Sep 2011 22:00:41 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=1298</guid>
		<description><![CDATA[SQL injection is a technique that exploits a security vulnerability from the database layer of an application. This technique consists in inserting malicious code into strings that are later passed to the database management system for parsing and execution. The main goal of this attack is to expose hidden data, to override valuable one, or [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1299" title="SQL Injection" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/sql_injection_img.jpg" alt="SQL Injection image" width="200" height="150" />SQL injection is a technique that exploits a security vulnerability from the database layer of an application. This technique consists in inserting malicious code into strings that are later passed to the database management system for parsing and execution. The main goal of this attack is to expose hidden data, to override valuable one, or even to execute dangerous system level commands on the database host. It happens from using poorly designed query language handlers. In this article I’ll show how you can enhance your code in order to prevent such attacks .<span id="more-1298"></span></p>
<h2>How can a SQL Injection attack be executed?</h2>
<p>Let&#8217;s start with an example to help you to understand how SQL Injection works. Let&#8217;s take a look to the standard login window below:</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-1304" title="User login" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/login1.jpg" alt="" width="325" height="228" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/login1-300x210.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/login1.jpg 325w" sizes="(max-width: 325px) 100vw, 325px" />Assuming that the system has a <strong>Users</strong> table, then the SQL code used to authenticate the user will look like follows:</p>
<pre class="brush: sql; title: ; notranslate">

SELECT *

FROM Users

WHERE username = 'cookiemonster' AND password = 'thepassword'

</pre>
<p>So, the username and password values are passed to the authentication program that will replace this data in the SQL section and then verify if a user matches this username/password combination. Now imagine that, instead of inserting the username and password, the user inserts the following code:</p>
<p style="text-align: center;"><img class="size-full wp-image-1305 aligncenter" title="User Login" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/login2.jpg" alt="User Login with SQL injection" width="326" height="227" /></p>
<p>Also as in the previous situation, the username and password values are passed to the authentication program and the result will be as follows:</p>
<pre class="brush: sql; title: ; notranslate">

SELECT *

FROM Users

WHERE username = '' OR 1=1; /*' AND password = '*/--'

</pre>
<p>Kaboom! All those who understand SQL code know that the <strong>WHERE</strong> clause will return <em><strong>true</strong></em> because the username is empty, the condition 1=1 is true and the remaining code will be ignored because it is inside a comment block. Result: the attacker is successfully authenticated in our system and has access to all the features without providing a valid user! Even worse than this would be if the user inserts something like:</p>
<p><img class="aligncenter size-full wp-image-1313" title="User Login" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/login3.jpg" alt="User login screenshot" width="327" height="227" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/login3-300x208.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/login3.jpg 327w" sizes="(max-width: 327px) 100vw, 327px" /></p>
<p>This will be executed as:</p>
<pre class="brush: sql; title: ; notranslate">

SELECT *

FROM Users

WHERE username=''; DROP TABLE Users; /*' AND password = '*/--'

</pre>
<p>Kaboom! Kaboom! In this case, instead of being authenticated, the attacker had deleted the entire <strong>Users</strong> table from our system! Now, do you understand the risks of SQL injection?</p>
<h2>How to prevent this type of attacks?</h2>
<p>There are some tips that you can follow in order to prevent SQL injection:</p>
<ul>
<li>Never connect to the database as a superuser. Use always customized users with very limited privileges.</li>
<li>Check if the user input has the expected data type. If you are expecting a number, make sure that the user has inserted a number.</li>
<li><strong>Quote each non numeric user supplied value that is passed to the database</strong>. The problem of the examples above was that the inserted quotes interrupted the flow of the program. For example, in PHP you can use <a title="mysql_real_escape_string" href="http://www.php.net/manual/en/function.mysql-real-escape-string.php" target="_blank">mysql_real_escape_string()</a> or <a title="addslashes" href="http://www.php.net/manual/en/function.addslashes.php" target="_blank">addslashes()</a> in order to escape special characters.</li>
</ul>
<p>I hope this was helpful to you and if you have any questions feel free to post some comments below!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/how-to-prevent-sql-injection-attacks/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #20</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-20</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-20#respond</comments>
		<pubDate>Fri, 09 Sep 2011 22:29:50 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=1245</guid>
		<description><![CDATA[This week my collection of websites contains portfolios from Alex Buga, Loïc “Kiluka” Dupasquier and Tim Potter. It also contains a website that sells vector resources, very useful for designers; and Team Viget, a web design company.   Alex Buga&#8217;s Livingroom Alex Buga is a designer from Bucharest, Romania. In his &#8220;livingroom&#8221; we can find [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This week my collection of websites contains portfolios from Alex Buga, Loïc “Kiluka” Dupasquier and Tim Potter. It also contains a website that sells vector resources, very useful for designers; and Team Viget, a web design company.<span id="more-1245"></span></p>
<p style="text-align: left;"> </p>
<h3><a title="Alex Buga's Livingroom" href="http://www.alexbuga.com/" target="_blank">Alex Buga&#8217;s Livingroom</a></h3>
<p style="text-align: center;"><a href="http://www.alexbuga.com/" target="_blank"><img class="aligncenter size-full wp-image-1329" style="border: 0pt none;" title="Alex Buga's Livingroom" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/alexbuga.com_.jpg" alt="Screenshot of Alex Buga's Livingroom" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/alexbuga.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/alexbuga.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Alex Buga is a designer from Bucharest, Romania. In his &#8220;livingroom&#8221; we can find things like his guitar, his digital camera and his Maschine device.</p>
<p style="text-align: left;"> </p>
<h3><a title="Kiluka" href="http://www.kiluka.ch/" target="_blank">Kiluka</a></h3>
<p style="text-align: center;"><a href="http://www.kiluka.ch/" target="_blank"><img class="aligncenter size-full wp-image-1330" style="border: 0pt none;" title="Kiluka" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/kiluka.ch_.jpg" alt="Screenshot of Kiluka" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/kiluka.ch_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/kiluka.ch_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Loïc “Kiluka” Dupasquier is a 20 years-old Swiss designer specialized in web. The stunning quality of his works has been recently reward by a prestigious FWA.</p>
<p style="text-align: left;"> </p>
<h3><a title="Team Viget" href="http://teamviget.com/" target="_blank">Team Viget</a></h3>
<p style="text-align: center;"><a href="http://teamviget.com/" target="_blank"><img class="aligncenter size-full wp-image-1331" style="border: 0pt none;" title="Team Viget" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/teamviget.com_.jpg" alt="Screenshot of Team Viget" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/teamviget.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/teamviget.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Team Viget is a team of nearly 50 passionate, talented, dedicated folks who love working together and with our clients to plan, design, build, and market web sites and digital products we&#8217;re all proud of.</p>
<p style="text-align: left;"> </p>
<h3><a title="Portfolio of Tim Potter" href="http://tejpotter.com/" target="_blank">Portfolio of Tim Potter</a></h3>
<p style="text-align: center;"><a href="http://tejpotter.com/" target="_blank"><img class="aligncenter size-full wp-image-1332" style="border: 0pt none;" title="Portfolio of Tim Potter" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/tejpotter.com_.jpg" alt="Screenshot of the Portfolio of Tim Potter" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/tejpotter.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/tejpotter.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Tim Potter is a developer from Belfast UK who specialises in clean, standards compliant websites with a focus on simplicity, usability &amp; accessibility. His website uses soft colors and a very nice design.</p>
<p style="text-align: left;"> </p>
<h3><a title="Portfolio of Tim Potter" href="http://vectormill.com/" target="_blank">Vector Mill</a></h3>
<p style="text-align: center;"><a href="http://vectormill.com/" target="_blank"><img class="aligncenter size-full wp-image-1333" style="border: 0pt none;" title="Vector Mill" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/vectormill.com_.jpg" alt="Screenshot of Vector Mill" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/vectormill.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/vectormill.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Vector mill is a website that provides vector resources. These elements are perfect for all intermediate and expert Illustrator users to create logos, illustrations and web designs.</p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-3023"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-3023','','','0'); </script> or <a href="http://www.twitter.com/#!/tonyjesusdotcom" target="_blank">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-20/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OS Lion: How To Ungroup Conversations in Mail 5</title>
		<link>http://www.tonyjesus.com/2011/mac-os-lion-how-to-ungroup-conversations-in-mail-5</link>
		<comments>http://www.tonyjesus.com/2011/mac-os-lion-how-to-ungroup-conversations-in-mail-5#comments</comments>
		<pubDate>Wed, 07 Sep 2011 07:58:47 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=1284</guid>
		<description><![CDATA[Mail (aka Mail.app or Apple Mail) is the e-mail program included with Mac OS X operating system. The version 5 was introduced with Mac OS X v10.7 Lion. This version features, among other things, a redesigned iPad-like fullscreen User Interface and a more powerful search engine. It also groups messages from the same conversation and [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1017" style="border: 0pt none;" title="Mail" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/features_mail_icon.png" alt="Mail icon" width="64" height="64" />Mail (aka Mail.app or Apple Mail) is the e-mail program included with Mac OS X operating system. The version 5 was introduced with Mac OS X v10.7 Lion. This version features, among other things, a redesigned iPad-like fullscreen User Interface and a more powerful search engine. It also groups messages from the same conversation and displays them in a streamlined feed, like in Mail on iOS 4. However, this feature can sometimes be confusing, especially when we were already accustomed to the old interface. In this post I&#8217;ll show you how to turn off this option.<span id="more-1284"></span></p>
<p>Below is a screenshot of the grouping message feature.</p>
<p style="text-align: center;"><a href="http://www.tonyjesus.com/wp-content/uploads/2011/09/grouped-conversations-large.jpg" rel="shadowbox"><img class="size-medium wp-image-1287 aligncenter" title="Grouped Mail Conversations" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/grouped-conversations-large-300x126.jpg" alt="Grouped Mail Conversations" width="300" height="126" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/grouped-conversations-large-300x126.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/grouped-conversations-large-1024x430.jpg 1024w, http://www.tonyjesus.com/wp-content/uploads/2011/09/grouped-conversations-large.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></a><span style="font-size: x-small;">(Click to see a larger image)</span></p>
<p>In order to disable this feature, just go to &#8220;View&#8221; on the top and uncheck the &#8220;Organize by Conversation&#8221; option.</p>
<p><img class="aligncenter size-full wp-image-1291" title="how to ungroup conversations in mail" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/how-to-ungroup-conversations-in-mail.png" alt="screenshot showing how to ungroup conversations in mail" width="400" height="294" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/how-to-ungroup-conversations-in-mail-300x220.png 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/how-to-ungroup-conversations-in-mail.png 400w" sizes="(max-width: 400px) 100vw, 400px" /></p>
<p>Very easy, right? What do you think about this feature? Do you think that it is confusing? Please share your thoughts in the comments section.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/mac-os-lion-how-to-ungroup-conversations-in-mail-5/feed</wfw:commentRss>
		<slash:comments>39</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #19</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-19</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-19#respond</comments>
		<pubDate>Fri, 02 Sep 2011 20:57:35 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=1236</guid>
		<description><![CDATA[This week my list contains the amazing App Galaxy by Google where you can learn some techniques to promote your mobile website/application, the hiring page from Campaign Monitor inspired in the Nike Better World website (already posted here in the edition #5), Alertful and much, much more!   The Guide to the App Galaxy by [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This week my list contains the amazing App Galaxy by Google where you can learn some techniques to promote your mobile website/application, the hiring page from Campaign Monitor inspired in the Nike Better World website (<a title="Sites of the Week #5" href="http://www.tonyjesus.com/2011/sites-of-the-week-5">already posted here in the edition #5</a>), Alertful and much, much more! <span id="more-1236"></span></p>
<p style="text-align: left;"> </p>
<h3><a title="The Guide to the App Galaxy by Google" href="http://www.guidetotheappgalaxy.com/" target="_blank">The Guide to the App Galaxy by Google</a></h3>
<p style="text-align: center;"><a href="http://www.guidetotheappgalaxy.com/" target="_blank"><img class="aligncenter size-full wp-image-1239" style="border: 0pt none;" title="The Guide to the App Galaxy by Google" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/guidetotheappgalaxy.com_.jpg" alt="Screenshot of The Guide to the App Galaxy by Google" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/guidetotheappgalaxy.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/guidetotheappgalaxy.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>&#8220;Don&#8217;t just build a mobile app. Build a business&#8221;. This is the slogan from this website launched by Google which is designed to help mobile applications developers to navigate the complexities of launching an application and building a business on mobile. By travelling through the App Galaxy you will learn how to get your app discovered through promotion, earn enough money to quit your day job, measure your success, and evaluate your current flight path to ensure you&#8217;re headed in the right direction.</p>
<p style="text-align: left;"> </p>
<h3><a title="Campaign Monitor" href="http://www.campaignmonitor.com/hiring/" target="_blank">Campaign Monitor</a></h3>
<p style="text-align: center;"><a href="http://www.campaignmonitor.com/hiring/" target="_blank"><img class="aligncenter size-full wp-image-1240" style="border: 0pt none;" title="Campaign Monitor" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/campaignmonitor.com-hiring.jpg" alt="Screenshot of Campaign Monitor" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/campaignmonitor.com-hiring-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/campaignmonitor.com-hiring.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Campaign Monitor is an email marketing software package aimed specifically for designers. I&#8217;ve choosen their hiring page because of the awesome way that it is designed and the amazing effect used to navigate through the sections of the page.</p>
<p style="text-align: left;"> </p>
<h3><a title="Alertful" href="http://www.alertful.com/" target="_blank">Alertful</a></h3>
<p style="text-align: center;"><a href="http://www.alertful.com/" target="_blank"><img class="aligncenter size-full wp-image-1241" style="border: 0pt none;" title="Alertful" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/alertful.com_.jpg" alt="Screenshot Alertful" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/alertful.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/alertful.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Alertful reminds you of important events by email. There’s no registration and the service is completely free. When you load the page, the very first thing that you see is the illustration of the man in the tie. He is both looking at and gesturing to the left side of the page where you can find a collection of sticky notes that help you understand the service even further by showing you some suggestions for the types of reminders that you can send with Alertful.</p>
<p style="text-align: left;"> </p>
<h3><a title="Buro Maisengasse" href="http://www.maisengasse.at/" target="_blank">Buro Maisengasse</a></h3>
<p style="text-align: center;"><a href="http://www.maisengasse.at/" target="_blank"><img class="aligncenter size-full wp-image-1242" style="border: 0pt none;" title="Buro Maisengasse" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/maisengasse.at_.jpg" alt="Screenshot of Buro Maisengasse" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/maisengasse.at_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/maisengasse.at_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>This is the website of a Austrian-based web design company. It features a clean layout with a nice color scheme. It also includes arrows at both sides of the page you slide you through the images. Click on the socket at the right and you will see a very nice animation.</p>
<p style="text-align: left;"> </p>
<h3><a title="Creative Dreams - Online Portfolio of Naveen Kanhangad" href="http://creativedreams.me/" target="_blank">Creative Dreams &#8211; Online Portfolio of Naveen Kanhangad</a></h3>
<p style="text-align: center;"><a href="http://creativedreams.me/" target="_blank"><img class="aligncenter size-full wp-image-1243" style="border: 0pt none;" title="Creative Dreams - Online Portfolio of Naveen Kanhangad" src="http://www.tonyjesus.com/wp-content/uploads/2011/09/creativedreams.me_.jpg" alt="Screenshot of Creative Dreams - Online Portfolio of Naveen Kanhangad" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/09/creativedreams.me_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/09/creativedreams.me_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>This is the website portfolio of Naveen Kanhangad, an Indian web designer.</p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-2145"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-2145','','','0'); </script> or <a href="http://www.twitter.com/#!/tonyjesusdotcom" target="_blank">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-19/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Progress Bar Using Mootools</title>
		<link>http://www.tonyjesus.com/2011/progress-bar-using-mootools</link>
		<comments>http://www.tonyjesus.com/2011/progress-bar-using-mootools#comments</comments>
		<pubDate>Sun, 28 Aug 2011 23:17:27 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Mootools]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mootools]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=1038</guid>
		<description><![CDATA[One of the most important things, from a usability point of view, is to know what percentage of a task is complete. I&#8217;ve developed a customizable MooTools progress bar class that &#8220;moves&#8221; to the desired value. In this post, I describe all the methods provided by this class. View Demo Download* *MooTools required and not [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1268" title="tjprogressbar" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/tjprogressbar.png" alt="Screenshot of the tjProgressBar" width="221" height="60" />One of the most important things, from a usability point of view, is to know what percentage of a task is complete. I&#8217;ve developed a customizable <a href="http://www.amazon.com/gp/product/1847194583/ref=as_li_tf_tl?ie=UTF8&amp;tag=tondejessofde-20&amp;linkCode=as2&amp;camp=217145&amp;creative=399369&amp;creativeASIN=1847194583">MooTools</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=tondejessofde-20&amp;l=as2&amp;o=1&amp;a=1847194583&amp;camp=217145&amp;creative=399369" alt="" width="1" height="1" border="0" /><br />
progress bar class that &#8220;moves&#8221; to the desired value. In this post, I describe all the methods provided by this class.<span id="more-1038"></span></p>
<p><a class="buttons" title="View Demo" href="http://www.tonyjesus.com/tj-demos/tjprogressbar/">View Demo</a> <a class="buttons" title="Download" href="http://www.tonyjesus.com/tj-demos/tjprogressbar/tjprogressbar.zip">Download*</a></p>
<p><span style="font-size: xx-small;">*MooTools required and not included in the download<br />
</span></p>
<h2>Methods</h2>
<h3>Constructor</h3>
<p>Initializes the progress bar object.</p>
<h4>Syntax:</h4>
<pre class="brush: jscript; title: ; notranslate">

var progressBar = new TJProgressBar(element[, options]);

</pre>
<h4>Arguments:</h4>
<p>1.- element &#8211; (mixed) An Element or the string id of an Element where the progress bar will be inserted.</p>
<p>2.- options &#8211; (object, optional) The options described below:</p>
<p>createOnLoad &#8211; (boolean)  If set to true, the progress bar will be created automatically when the page loads.</p>
<p>isPersistent &#8211; (boolean) If set to true, the progress bar status will be stored in a cookie.</p>
<p>direction &#8211; (string) Direction of the progress bar. Can be &#8220;asc&#8221; or &#8220;desc&#8221;.</p>
<p>totalTime &#8211; (number, boolean) Time interval, in seconds, between the initial and final states. If false, no time will be used.</p>
<p>step &#8211; (number, boolean) The width in pixels that will be increased/decreased from the width of the progress bar. If false, this value will be calculated automatically.</p>
<p>timeBetweenCalls &#8211; (number) Time interval, in seconds, between each update of the progress bar. If no value is supplied, then 1 second will be used.</p>
<p>animation &#8211; (object, boolean) Object with the value of the duration of the animation, when increasing/decreasing the progress bar. If set to false, no animation will be used.</p>
<p>length &#8211; (number) Length of the background.</p>
<p>classNames &#8211; (object) Object with the CSS class names for the background and the progress bar itself.</p>
<h3>start()</h3>
<p>Starts the progress bar.</p>
<h4>Syntax:</h4>
<pre class="brush: jscript; title: ; notranslate">

progressBar.start();

</pre>
<h3>createProgressBar()</h3>
<p>Creates all required HTML elements.</p>
<h4>Syntax:</h4>
<pre class="brush: jscript; title: ; notranslate">

progressBar.createProgressBar();

</pre>
<h3>stepTo()</h3>
<p>Steps to the passed value.</p>
<h4>Syntax:</h4>
<pre class="brush: jscript; title: ; notranslate">

progressBar.stepTo(value);

</pre>
<h4>Arguments:</h4>
<p>1.- value &#8211; (number) Value to step to.</p>
<h3>play()</h3>
<p>Starts playing the progress bar from the current point.</p>
<h4>Syntax:</h4>
<pre class="brush: jscript; title: ; notranslate">

progressBar.play([fireEvent]);

</pre>
<h4>Arguments:</h4>
<p>1.- fireEvent &#8211; (boolean, optional) If set to false, then the onPlay event won&#8217;t be fired.</p>
<h3>pause()</h3>
<p>Pauses the progress bar in the current point.</p>
<h4>Syntax:</h4>
<pre class="brush: jscript; title: ; notranslate">

progressBar.pause([fireEvent]);

</pre>
<h4>Arguments:</h4>
<p>1.- fireEvent &#8211; (boolean, optional) If set to false, then the onPause event won&#8217;t be fired.</p>
<h3>stop()</h3>
<p>Stops the progress bar and resets its value.</p>
<h4>Syntax:</h4>
<pre class="brush: jscript; title: ; notranslate">

progressBar.stop([fireEvent]);

</pre>
<h4>Arguments:</h4>
<p>1.- fireEvent &#8211; (boolean, optional) If set to false, then the onStop event won&#8217;t be fired.</p>
<h3>reset()</h3>
<p>Resets the progress bar.</p>
<h4>Syntax:</h4>
<pre class="brush: jscript; title: ; notranslate">

progressBar.reset([fireEvent]);

</pre>
<h4>Arguments:</h4>
<p>1.- fireEvent &#8211; (boolean, optional) If set to false, then the onReset event won&#8217;t be fired.</p>
<h3>restart()</h3>
<p>Restarts the progress bar.</p>
<h4>Syntax:</h4>
<pre class="brush: jscript; title: ; notranslate">

progressBar.restart([fireEvent]);

</pre>
<h4>Arguments:</h4>
<p>1.- fireEvent &#8211; (boolean, optional) If set to false, then the onRestart event won&#8217;t be fired.</p>
<h3>getCurrentValue()</h3>
<p>Returns the current value of the progress bar.</p>
<h4>Syntax:</h4>
<pre class="brush: jscript; title: ; notranslate">

progressBar.getCurrentValue();

</pre>
<h4>Returns:</h4>
<p>value &#8211; (object) Object with the current value of the progress bar. This object contains both values: current and percentage.</p>
<h2>Events</h2>
<h3>create</h3>
<p>(function) Function to execute when the progress bar is initialized.</p>
<h4>Signature:</h4>
<pre class="brush: jscript; title: ; notranslate">

onCreate()

</pre>
<h3>ready</h3>
<p>(function) Function to execute when the progress bar is ready (i. e. created and added to the DOM).</p>
<h4>Signature:</h4>
<pre class="brush: jscript; title: ; notranslate">

onReady()

</pre>
<h3>step</h3>
<p>(function) Function to execute when the progress bar steps to a given value.</p>
<h4>Signature:</h4>
<pre class="brush: jscript; title: ; notranslate">

onStep(currentValue)

</pre>
<h3>pause</h3>
<p>(function) Function to execute when the progress bar is paused.</p>
<h4>Signature:</h4>
<pre class="brush: jscript; title: ; notranslate">

onPause()

</pre>
<h3>play</h3>
<p>(function) Function to execute when the progress bar starts playing.</p>
<h4>Signature:</h4>
<pre class="brush: jscript; title: ; notranslate">

onPlay()

</pre>
<h3>stop</h3>
<p>(function) Function to execute when the progress bar is stopped.</p>
<h4>Signature:</h4>
<pre class="brush: jscript; title: ; notranslate">

onStop()

</pre>
<h3>reset</h3>
<p>(function) Function to execute when the progress bar is reset.</p>
<h4>Signature:</h4>
<pre class="brush: jscript; title: ; notranslate">

onReset()

</pre>
<h3>restart</h3>
<p>(function) Function to execute when the progress bar is restarted.</p>
<h4>Signature:</h4>
<pre class="brush: jscript; title: ; notranslate">

onRestart()

</pre>
<h3>finished</h3>
<p>(function) Function to execute when the progress bar finished its execution.</p>
<h4>Signature:</h4>
<pre class="brush: jscript; title: ; notranslate">

onFinished()

</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/progress-bar-using-mootools/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #18</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-18</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-18#respond</comments>
		<pubDate>Fri, 26 Aug 2011 06:00:50 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=1141</guid>
		<description><![CDATA[This week my collection of websites contains amazing designs from: Design One, Dirt Brokers USA, the personal portfolio of Keenan Wells, Next Tuesday and Prince Street International Films.   Design One Design One is a creative design agency from Birmingham, England. They specialise in the Design of Creative Marketing and Communications.   Dirt Brokers USA [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This week my collection of websites contains amazing designs from: Design One, Dirt Brokers USA, the personal portfolio of Keenan Wells, Next Tuesday and Prince Street International Films.<span id="more-1141"></span></p>
<p style="text-align: left;"> </p>
<h3><a title="Design One" href="http://www.designone.co.uk/" target="_blank">Design One</a></h3>
<p style="text-align: center;"><a href="http://www.designone.co.uk/" target="_blank"><img class="aligncenter size-full wp-image-1142" style="border: 0pt none;" title="Design One" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/designone.co_.uk_.jpg" alt="Screenshot of Design One" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/08/designone.co_.uk_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/08/designone.co_.uk_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Design One is a creative design agency from Birmingham, England. They specialise in the Design of Creative Marketing and Communications.</p>
<p style="text-align: left;"> </p>
<h3><a title="Dirt Brokers USA" href="http://www.dirtbrokersusa.com/" target="_blank">Dirt Brokers USA</a></h3>
<p style="text-align: center;"><a href="http://www.dirtbrokersusa.com/" target="_blank"><img class="aligncenter size-full wp-image-1143" style="border: 0pt none;" title="Dirt Brokers USA" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/dirtbrokersusa.com_.jpg" alt="Screenshot of Dirt Brokers USA" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/08/dirtbrokersusa.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/08/dirtbrokersusa.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Dirt Brokers is a website for all your fill dirt-related projects. It allows you to find fill dirt close to your site, to find a site close to your fill dirt or find a Contractor to move your fill dirt.</p>
<p style="text-align: left;"> </p>
<h3><a title="Keenan Wells" href="http://keenanwells.com/" target="_blank">Keenan Wells</a></h3>
<p style="text-align: center;"><a href="http://keenanwells.com/" target="_blank"><img class="aligncenter size-full wp-image-1144" style="border: 0pt none;" title="Keenan Wells" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/keenanwells.com_.jpg" alt="Screenshot of Keenan Wells" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/08/keenanwells.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/08/keenanwells.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Keenan Wells is a designer and illustrator based from Chicago, IL.</p>
<p style="text-align: left;"> </p>
<h3><a title="Next Tuesday" href="http://www.nexttuesday.de/" target="_blank">Next Tuesday</a></h3>
<p style="text-align: center;"><a href="http://www.nexttuesday.de/" target="_blank"><img class="aligncenter size-full wp-image-1145" style="border: 0pt none;" title="Next Tuesday" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/nexttuesday.de_.jpg" alt="Screenshot of Next Tuesday" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/08/nexttuesday.de_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/08/nexttuesday.de_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Next Tuesday is a development company based on Frankfurt, Germany.</p>
<p style="text-align: left;"> </p>
<h3><a title="Prince Street International Films" href="http://www.princestreetfilms.com/" target="_blank">Prince Street International Films</a></h3>
<p style="text-align: center;"><a href="http://www.princestreetfilms.com/" target="_blank"><img class="aligncenter size-full wp-image-1146" style="border: 0pt none;" title="Prince Street International Films" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/princestreetfilms.com_.jpg" alt="Screenshot of Prince Street International Films" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/08/princestreetfilms.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/08/princestreetfilms.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Prince Street International Films is an independent production company using film to connect America with the rest of the world.</p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-8114"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-8114','','','0'); </script> or <a href="http://www.twitter.com/#!/tonyjesusdotcom" target="_blank">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-18/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>15 Websites All Web Developers And Designers Should Know</title>
		<link>http://www.tonyjesus.com/2011/15-websites-all-web-developers-designers-should-know</link>
		<comments>http://www.tonyjesus.com/2011/15-websites-all-web-developers-designers-should-know#comments</comments>
		<pubDate>Wed, 24 Aug 2011 22:45:46 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web tools]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=1150</guid>
		<description><![CDATA[Web designers and developers have the difficult task of creating web applications. It is not enough to design the pages and create and implement a layout. There are other aspects to consider, such as performance. What about having some awesome tools to make your web developer life easier? I have compiled a must-read list for [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Web designers and developers have the difficult task of creating web applications. It is not enough to design the pages and create and implement a layout. There are other aspects to consider, such as performance. What about having some awesome tools to make your web developer life easier? I have compiled a must-read list for you.</p>
<p><span id="more-1150"></span></p>
<p style="text-align: left;"> </p>
<h3><a href="http://kuler.adobe.com/" target="_blank"><img class="alignleft size-full wp-image-1152" title="kuler" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/kuler.adobe_.com_.jpg" alt="Screenshot of kuler" width="270" height="149" /></a><a title="kuler" href="http://kuler.adobe.com/" target="_blank">kuler</a></h3>
<p>Adobe® Kuler™ is a web-hosted application that allows you to generate color themes that can inspire any project. With Kuler you can explore, create and share color themes.</p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<h3 style="text-align: left;"><a title="Stripe Generator" href="http://www.stripegenerator.com/" target="_blank">Stripe Generator</a><a href="http://www.stripegenerator.com/" target="_blank"><img class="alignright size-full wp-image-1157" title="Stripe Generator" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/stripegenerator.com_.jpg" alt="Screenshot of Stripe Generator" width="270" height="149" /></a></h3>
<p style="text-align: left;">Stripe Generator is a tool that lets you tweak a bunch of settings to produce the stripes that you need for your own Web 2.0 application.</p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<h3><a href="http://www.bgpatterns.com/" target="_blank"><img class="alignleft size-full wp-image-1174" title="BgPatterns" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/bgpatterns.com_.jpg" alt="Screenshot of BgPatterns" width="270" height="149" /></a><a title="BgPatterns" href="http://www.bgpatterns.com/" target="_blank">BgPatterns</a></h3>
<p>BgPatterns is a tiny web application for making background patterns. It offers a collection of repeatable patterns for website backgrounds. Switch patterns, change pattern opacity, customize color, choose canvas, rotate and scale patterns, customize pattern location and more.</p>
<p style="text-align: left;"> </p>
<h3 style="text-align: left;"><a title="Ajaxload" href="http://ajaxload.info/" target="_blank">Ajaxload</a><a href="http://ajaxload.info/" target="_blank"><img class="alignright size-full wp-image-1176" title="Ajaxload" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/ajaxload.info_.jpg" alt="Screenshot of Ajaxload" width="270" height="149" /></a></h3>
<p style="text-align: left;">AjaxLoad is a website that allows you to customize the colors of your rotating loading image. This generator only has one rotating image for now, but you can assign any background and foreground HTML colors to it and render it right there on the page. Then you can save your creation as an animated GIF file to be used on your site.</p>
<p style="text-align: left;"> </p>
<h3><a href="http://www.csscompressor.com/" target="_blank"><img class="alignleft size-full wp-image-1178" title="CSS Compressor" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/csscompressor.com_.jpg" alt="Screenshot of CSS Compressor" width="270" height="149" /></a><a title="CSS Compressor" href="http://www.csscompressor.com/" target="_blank">CSS Compressor</a></h3>
<p>CSS Compressor is an utility that allows you to compress your CSS to increase loading speed and save on bandwidth as well.</p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<h3 style="text-align: left;"><a title="Javascript Compressor" href="http://javascriptcompressor.com/" target="_blank">Javascript Compressor</a><a href="http://javascriptcompressor.com/" target="_blank"><img class="size-full wp-image-1179 alignright" title="Javascript Compressor" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/javascriptcompressor.com_.jpg" alt="Screenshot of Javascript Compressor" width="270" height="149" /></a></h3>
<p style="text-align: left;">Javascript Compressor is a free online javascript compression tool. It also allows you to easily obfuscate your javascript code.</p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<h3><a href="http://www.smushit.com/ysmush.it" target="_blank"><img class="alignleft size-full wp-image-1181" title="Yahoo! Smush.it" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/smushit.com-ysmush.it_.jpg" alt="Screenshot of Yahoo! Smush.it" width="270" height="150" /></a><a title="Yahoo! Smush.it" href="http://www.smushit.com/ysmush.it" target="_blank">Yahoo! Smush.it</a></h3>
<p>Smush.it uses optimization techniques specific to image format to remove unnecessary bytes from image files. It is a &#8220;lossless&#8221; tool, which means it optimizes the images without changing their look or visual quality.</p>
<p style="text-align: left;"> </p>
<h3 style="text-align: left;"><a title="CSS Sprite Generator" href="http://spritegen.website-performance.org/" target="_blank">CSS Sprite Generator</a><a href="http://spritegen.website-performance.org/" target="_blank"><img class="size-full wp-image-1182 alignright" title="CSS Sprite Generator" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/spritegen.website-performance.org_.jpg" alt="Screenshot of CSS Sprite Generator" width="270" height="149" /></a></h3>
<p style="text-align: left;">CSS sprites are a way to reduce the number of HTTP requests made for image resources referenced by your site. By using this technique, the performance of your website will increase. CSS Sprite Generator is a tool for generating image sprites and CSS for your web site.</p>
<p style="text-align: left;"> </p>
<h3><a href="http://scriptsrc.net/" target="_blank"><img class="alignleft size-full wp-image-1184" title="ScriptSrc.net" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/scriptsrc.net_.jpg" alt="Screenshot of ScriptSrc.net" width="270" height="149" /></a><a title="ScriptSrc.net" href="http://scriptsrc.net/" target="_blank">ScriptSrc.net</a></h3>
<p>Tired of hunting down the script tag for the latest version of your Javascript Library of choice? By using this tool you will get the latest version of the script tag for the Javascript library of your choice.</p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<h3 style="text-align: left;"><a title="favicon.ico Generator" href="http://www.favicon.cc/" target="_blank">favicon.ico Generator</a><a href="http://www.favicon.cc/" target="_blank"><img class="alignright size-full wp-image-1185" title="favicon.ico Generator" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/favicon.cc.jpg" alt="Screenshot of favicon.ico Generator" width="270" height="149" /></a></h3>
<p style="text-align: left;">favicon.cc is a tool to create favicon.ico icons, that are displayed in the address bar of the web browsers.</p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<h3><a href="http://lipsum.com/" target="_blank"><img class="alignleft size-full wp-image-1186" title="Lipsum Generator" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/lipsum.com_.jpg" alt="Screenshot of Lipsum Generator" width="270" height="149" /></a><a title="Lipsum Generator" href="http://lipsum.com/" target="_blank">Lipsum Generator</a></h3>
<p>Lorem Ipsum is the name given to the dummy text used to demonstrate the graphics elements of a document or visual presentation, such as font, typography, and layout. To generate text, select a unit (paragraphs, words, bytes or lists) and type a length.</p>
<p style="text-align: left;"> </p>
<h3 style="text-align: left;"><a title="test everything!" href="http://tester.jonasjohn.de/" target="_blank">test everything!</a><a href="http://tester.jonasjohn.de/" target="_blank"><img class="size-full wp-image-1187 alignright" title="test everything!" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/tester.jonasjohn.de_.jpg" alt="Screenshot of test everything!" width="270" height="149" /></a></h3>
<p style="text-align: left;">Test Everything incorporates over 100 useful website checkers and validators, throughout 8 different categories, all in one place! The categories vary from HTML and CSS validators to SEO, Network, Image and Text tools.</p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<h3><a href="http://browsershots.org/" target="_blank"><img class="alignleft size-full wp-image-1189" title="Browsershots" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/browsershots.org_.jpg" alt="Screenshot of Browsershots" width="270" height="149" /></a><a title="Browsershots" href="http://browsershots.org/" target="_blank">Browsershots</a></h3>
<p>With Browsershots you can view screenshots of your website as it displays in different browsers. It lets you choose your screen size, color depth, JavaScript and Flash settings. You can select different versions of each browser as well as different operating systems.</p>
<p style="text-align: left;"> </p>
<h3 style="text-align: left;"><a title="Pingdom Tools" href="http://tools.pingdom.com/" target="_blank">Pingdom Tools<img class="alignright size-full wp-image-1190" title="Pingdom Tools" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/tools.pingdom.com_.jpg" alt="Screenshot of Pingdom Tools" width="270" height="149" /></a></h3>
<p style="text-align: left;">This tools allows you to test the load time of a web page. Simply enter a URL to test the load time of all elements on that page and click on the &#8220;Test Now&#8221; button.</p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
<h3><a href="http://10minutemail.com/" target="_blank"><img class="alignleft size-full wp-image-1191" title="10 Minute Mail" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/10minutemail.com_.jpg" alt="Screenshot of 10 Minute Mail" width="270" height="149" /></a><a title="10 Minute Mail" href="http://10minutemail.com/" target="_blank">10 Minute Mail</a></h3>
<p>10 Minute Mail is a service that offers free email addresses that last for only 10 minutes. This is perfect for forums and signing up for sites that you think will sell your email address. 10 Minute Mail does not require any registration and does not force you to use a password.</p>
<p style="text-align: left;"> </p>
<p>What do you think about these tools?  Do you know another useful tool for web designers and developers? Please share your thoughts in the comments section.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/15-websites-all-web-developers-designers-should-know/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #17</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-17</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-17#comments</comments>
		<pubDate>Sat, 20 Aug 2011 10:26:35 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=1123</guid>
		<description><![CDATA[For this Sites of the Week I have selected some great sites such as Bristles and Infinity Web. Also I&#8217;m featuring an amazing photography portfolio from Rickard Sund, and much, much more!   Bristles Bristles specialises in general building maintenance, home improvements and property maintenance. Their website features a nice and simple design. I like [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>For this Sites of the Week I have selected some great sites such as Bristles and Infinity Web. Also I&#8217;m featuring an amazing photography portfolio from Rickard Sund, and much, much more!<span id="more-1123"></span></p>
<p style="text-align: left;"> </p>
<h3><a title="Bristles" href="http://bristles.biz/" target="_blank">Bristles</a></h3>
<p style="text-align: center;"><a href="http://bristles.biz/" target="_blank"><img class="aligncenter size-full wp-image-1129" style="border: 0pt none;" title="Bristles" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/bristles.biz_.jpg" alt="Screenshot of Bristles" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/08/bristles.biz_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/08/bristles.biz_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p><a href="http://bristles.biz/" target="_blank">Bristles</a> specialises in general building maintenance, home improvements and property maintenance. Their website features a nice and simple design. I like the small screen at the right that displays images with the provided services.</p>
<p style="text-align: left;"> </p>
<h3><a title="Infinity Web" href="http://www.infinityweb.co.nz/" target="_blank">Infinity Web</a></h3>
<p style="text-align: center;"><a href="http://www.infinityweb.co.nz/" target="_blank"><img class="aligncenter size-full wp-image-1130" style="border: 0pt none;" title="Infinity Web" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/infinityweb.co_.nz_.jpg" alt="Screenshot of Infinity Web" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/08/infinityweb.co_.nz_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/08/infinityweb.co_.nz_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p><a href="http://www.infinityweb.co.nz/" target="_blank">InfinityWeb</a> designs and develops across all digital mediums including websites, iPhone/iPad apps, web based applications, interactive kiosks, and rich internet applications.</p>
<p style="text-align: left;"> </p>
<h3><a title="Jérôme Détraz - Designer multimédia" href="http://www.jdetraz.com/" target="_blank">Jérôme Détraz &#8211; Designer multimédia</a></h3>
<p style="text-align: center;"><a href="http://www.jdetraz.com/" target="_blank"><img class="aligncenter size-full wp-image-1132" style="border: 0pt none;" title="Jérôme Détraz - Designer multimédia" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/jdetraz.com_.jpg" alt="Screenshot of Jérôme Détraz website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/08/jdetraz.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/08/jdetraz.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Jérôme Détraz is a Swiss multimedia designer. His website uses a single-page layout. Check out the way he presents his selected work!</p>
<p style="text-align: left;"> </p>
<h3><a title="Photography by Rickard Sund" href="http://rickardsund.com/" target="_blank">Photography by Rickard Sund</a></h3>
<p style="text-align: center;"><a href="http://rickardsund.com/" target="_blank"><img class="aligncenter size-full wp-image-1133" style="border: 0pt none;" title="Photography by Rickard Sund" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/rickardsund.com_.jpg" alt="Screenshot of Rickard Sund website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/08/rickardsund.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/08/rickardsund.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Portfolio of Swedish photographer Rickard Sund.</p>
<p style="text-align: left;"> </p>
<h3><a title="UPPERDOG" href="http://upperdog.se/" target="_blank">UPPERDOG</a></h3>
<p style="text-align: center;"><a href="http://upperdog.se/" target="_blank"><img class="aligncenter size-full wp-image-1134" style="border: 0pt none;" title="UPPERDOG" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/upperdog.se_.jpg" alt="Screenshot of UPPERDOG" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/08/upperdog.se_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/08/upperdog.se_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Upperdog is a Swedish design agency offering strategy, design, and development. Try to resize your browser window to see the responsive design in action.</p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-6316"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-6316','','','0'); </script> or <a href="http://www.twitter.com/#!/tonyjesusdotcom" target="_blank">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-17/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Enable FTP Server on Mac OS X Lion</title>
		<link>http://www.tonyjesus.com/2011/how-to-enable-ftp-server-on-lion</link>
		<comments>http://www.tonyjesus.com/2011/how-to-enable-ftp-server-on-lion#comments</comments>
		<pubDate>Wed, 17 Aug 2011 00:20:00 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=1089</guid>
		<description><![CDATA[One of the most notable changes (at least for developers) on Mac OS X Lion is the removal of FTP from the available protocols in System Preference&#8217;s File Sharing. Probably this is due to fact that FTP is a protocol that provides little or no security. However, in a development and testing environment, it is [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>One of the most notable changes (at least for developers) on Mac OS X Lion is the removal of FTP from the available protocols in System Preference&#8217;s File Sharing. Probably this is due to fact that FTP is a protocol that provides little or no security. However, in a development and testing environment, it is often convenient to have a local FTP server. In this post I&#8217;ll show you how to enable/disable the FTP Server on Lion by using the Terminal.<span id="more-1089"></span></p>
<p>As you can see in the image below, the FTP option in System Preferences interface is no longer available:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1100" style="border: 0pt none;" title="Lion File Sharing" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/lion.file-sharing.png" alt="Lion File Sharing" width="500" height="423" /></p>
<p>In order to enable/disable the FTP server, just open a Terminal window and type one of the following commands, depending of the case:</p>
<p style="text-align: left;">
<h3>Enable FTP Server</h3>
<pre class="brush: bash; title: ; notranslate">

sudo -s launchctl load -w /System/Library/LaunchDaemons/ftp.plist

</pre>
<h3 style="text-align: left;"></h3>
<h3>Disable FTP Server</h3>
<pre class="brush: bash; title: ; notranslate">

sudo -s launchctl unload -w /System/Library/LaunchDaemons/ftp.plist

</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/how-to-enable-ftp-server-on-lion/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #16</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-16</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-16#respond</comments>
		<pubDate>Fri, 12 Aug 2011 21:48:27 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=673</guid>
		<description><![CDATA[In this week’s collection I have designs from Polecat, iutopi, Photosheep.me, PTARMAK and Ryan Scherf.   Polecat Polecat is a web design company based on Ukraine. Their one-page website uses really nice cartoon-style illustrations to display information about their company. I also like the fact that each section (&#8220;page&#8221;) has its own design.   iutopi [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>In this week’s collection I have designs from Polecat, iutopi, Photosheep.me, PTARMAK and Ryan Scherf.<span id="more-673"></span></p>
<p style="text-align: left;"> </p>
<h3><a title="Polecat: iOS, iPhone, iPad development" href="http://www.ipolecat.com/" target="_blank">Polecat</a></h3>
<p style="text-align: center;"><a href="http://www.ipolecat.com/" target="_blank"><img class="aligncenter size-full wp-image-1109" style="border: 0pt none;" title="Polecat: iOS, iPhone, iPad development" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/ipolecat.com_.jpg" alt="Polecat Screenshot" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/08/ipolecat.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/08/ipolecat.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p><a href="http://www.ipolecat.com/" target="_blank">Polecat</a> is a web design company based on Ukraine. Their one-page website uses really nice cartoon-style illustrations to display information about their company. I also like the fact that each section (&#8220;page&#8221;) has its own design.</p>
<p style="text-align: left;"> </p>
<h3><a title="iutopi - Creative Land / Branding, Graphic &amp; Web Design " href="http://www.iutopi.com/en/" target="_blank">iutopi</a></h3>
<p style="text-align: center;"><a href="http://www.iutopi.com/en/" target="_blank"><img class="aligncenter size-full wp-image-1111" style="border: 0pt none;" title="iutopi - Creative Land / Branding, Graphic &amp; Web Design" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/iutopi.com-en.jpg" alt="iutopi screenshot" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/08/iutopi.com-en-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/08/iutopi.com-en.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>From Lio Messi&#8217;s country (Argentina) arises <a href="http://www.iutopi.com/en/" target="_blank">iutopi</a>, a web design company. I really loved the illustrations in their website. The scrolling effect works so well with the diving theme. I like the sea level indicator and the menu at the right.</p>
<p style="text-align: left;"> </p>
<h3><a title="Photosheep.me - Portfolio" href="http://www.photosheep.me/" target="_blank">Photosheep.me &#8211; Portfolio</a></h3>
<p style="text-align: center;"><a href="http://www.photosheep.me/" target="_blank"><img class="aligncenter size-full wp-image-1113" style="border: 0pt none;" title="Photosheep.me - Portfolio" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/photosheep.me_.jpg" alt="Screenshot of Photosheep.me" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/08/photosheep.me_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/08/photosheep.me_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>This is the portfolio of Lena, a web designer from Serbia.</p>
<p style="text-align: left;"> </p>
<h3><a title="PTARMAK" href="http://ptarmak.com/" target="_blank">PTARMAK</a></h3>
<p style="text-align: center;"><a href="http://ptarmak.com/" target="_blank"><img class="aligncenter size-full wp-image-1114" style="border: 0pt none;" title="PTARMAK" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/ptarmak.com_.jpg" alt="Screenshot of PTARMAK" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/08/ptarmak.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/08/ptarmak.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p><a href="http://ptarmak.com/" target="_blank">Ptarmak</a> is an Austin-based designery. Their website has some great print-room inspired worked presented in some fun ways.</p>
<p style="text-align: left;"> </p>
<h3><a title="Ryan Scherf" href="http://ryanscherf.net/" target="_blank">Ryan Scherf</a></h3>
<p style="text-align: center;"><a href="http://ryanscherf.net/" target="_blank"><img class="aligncenter size-full wp-image-1115" style="border: 0pt none;" title="Ryan Scherf" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/ryanscherf.net_.jpg" alt="Screenshot of Ryan Scherf" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/08/ryanscherf.net_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/08/ryanscherf.net_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p><a href="http://ryanscherf.net/" target="_blank">Ryan Scherf </a>is an independent designer, developer and entrepreneur located in Minneapolis. Its website features a simple layout with awesome graphics.</p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-7515"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-7515','','','0'); </script> or <a href="http://www.twitter.com/#!/tonyjesusdotcom" target="_blank">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-16/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress: How to Fix Conditional Tags Problem</title>
		<link>http://www.tonyjesus.com/2011/wordpress-fix-conditional-tags</link>
		<comments>http://www.tonyjesus.com/2011/wordpress-fix-conditional-tags#respond</comments>
		<pubDate>Mon, 08 Aug 2011 23:14:12 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=1074</guid>
		<description><![CDATA[In WordPress you can use Conditional Tags in your Template files in order to change the way of displaying content and what content is displayed on a particular page. A very common example is if you want to display a snippet of text but only on the main page of your blog, you can use [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>In WordPress you can use <strong>Conditional Tags</strong> in your Template files in order to change the way of displaying content and what content is displayed on a particular page. A very common example is if you want to display a snippet of text but only on the main page of your blog, you can use <strong>is_home()</strong> Conditional Tag. However, sometimes it seems that these tags stop working. In this post I&#8217;ll show you how to fix this problem.<span id="more-1074"></span></p>
<p>In my case, I want to display different content on the sidebar based on what page the reader is. But, for some reason, the content was always the same in all pages, even by using Conditional Tags. After searching about this issue, I found the solution in the <a href="http://codex.wordpress.org/Conditional_Tags" target="_blank">WordPress Codex</a>. There they said that sometimes queries performed in other templates such as sidebar.php may corrupt certain conditional tags. And the solution for this is to put <strong>wp_reset_query()</strong> before the conditional test. For example:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php

wp_reset_query();
if ( is_home( ) ) {
     echo 'You are on the homepage!';
}

?&gt;

</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/wordpress-fix-conditional-tags/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #15</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-15</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-15#respond</comments>
		<pubDate>Fri, 05 Aug 2011 21:47:47 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=671</guid>
		<description><![CDATA[This week, my list contains mainly one-page websites which use an effect called Parallax. Parallax is an apparent displacement or difference in the apparent position of an object viewed along two different lines of sight. In web design, the parallax effect is a relatively new trend. It&#8217;s very common on website&#8217;s portfolios but it started [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This week, my list contains mainly one-page websites which use an effect called Parallax. Parallax is an apparent displacement or difference in the apparent position of an object viewed along two different lines of sight. In web design, the parallax effect is a relatively new trend. It&#8217;s very common on website&#8217;s portfolios but it started being used in other types of websites.<span id="more-671"></span></p>
<p style="text-align: left;"> </p>
<h3><a href="http://www.b5designs.com/" target="_blank">b5 Designs</a></h3>
<p style="text-align: center;"><a href="http://www.b5designs.com/" target="_blank"><img class="aligncenter size-full wp-image-1063" style="border: 0pt none;" title="b5 Designs" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/b5designs.com_.jpg" alt="Screenshot of b5 Desings" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/08/b5designs.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/08/b5designs.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>b5 Designs is a Kansas City based design studio dedicated to providing a personal and professional experience to every client.</p>
<p style="text-align: left;"> </p>
<h3><a href="http://www.christhurman.com/" target="_blank">Chris Thurman</a></h3>
<p style="text-align: center;"><a href="http://www.christhurman.com/" target="_blank"><img class="aligncenter size-full wp-image-1064" style="border: 0pt none;" title="Chris Thurman" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/christhurman.com_.jpg" alt="Screenshot of Chris Thurman website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/08/christhurman.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/08/christhurman.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>This is the personal page of Web Designer Chris Thurman. It consists of a one-page website with a nice and clean layout and a menu that allows you to navigate through the existing anchors.</p>
<p style="text-align: left;"> </p>
<h3><a href="http://www.farmhousefare.co.uk/" target="_blank">Farmhouse Fare</a></h3>
<p style="text-align: center;"><a href="http://www.farmhousefare.co.uk/" target="_blank"><img class="aligncenter size-full wp-image-1066" style="border: 0pt none;" title="Farmhouse Fare" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/farmhousefare.co_.uk_.jpg" alt="Screenshot of Farmhouse Fare" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/08/farmhousefare.co_.uk_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/08/farmhousefare.co_.uk_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a> </p>
<p>Farmhouse Fare features another stunning horizontal scrolling design. The Farmhouse Fare keeps a setting of an old country kitchen displayed within the background of each section. All further information is included in a lightbox with text.</p>
<p style="text-align: left;"> </p>
<h3><a href="http://www.head2heart.us/" target="_blank">Head2Heart</a></h3>
<p style="text-align: center;"><a href="http://www.head2heart.us/" target="_blank"><img class="aligncenter size-full wp-image-1067" style="border: 0pt none;" title="Head2Heart" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/head2heart.us_.jpg" alt="Screenshot of Head2Heart" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/08/head2heart.us_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/08/head2heart.us_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a> </p>
<p>At the bottom of this website are shown a set of lines that seems to trace a path among the sky. As you follow the navigational numbers along the bottom it’s very simple to find information and paths towards what you’re looking for. If you enjoy horizontal scrolling websites, this is certainly one to check out for inspiration.</p>
<p style="text-align: left;"> </p>
<h3><a href="http://unfold.no/" target="_blank">Unfold</a></h3>
<p style="text-align: center;"><a href="http://unfold.no/" target="_blank"><img class="aligncenter size-full wp-image-1068" style="border: 0pt none;" title="Unfold" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/unfold.no_.jpg" alt="Unfold" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/08/unfold.no_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/08/unfold.no_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a> </p>
<p>Unfold is an independent digital agency established in Oslo. Their website is simply amazing! Try to scroll up or down and you will think that the website never ends.</p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-7097"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-7097','','','0'); </script> or <a href="http://www.twitter.com/#!/tonyjesusdotcom" target="_blank">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-15/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook: Restore the old chat on Chrome, Firefox and Opera</title>
		<link>http://www.tonyjesus.com/2011/facebook-extensions-to-restore-chat</link>
		<comments>http://www.tonyjesus.com/2011/facebook-extensions-to-restore-chat#respond</comments>
		<pubDate>Wed, 03 Aug 2011 21:47:11 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=1054</guid>
		<description><![CDATA[Some days ago, I posted an article explaining how to see who is online on the new version of the Facebook chat. Today I&#8217;ve found out a simpler method to do this. Fortunately, a developer created an extension that works in Google Chrome, Firefox and Opera that allows you to disable the newly introduced Chat [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1056" title="Facebook Sidebar Disabler" src="http://www.tonyjesus.com/wp-content/uploads/2011/08/sidebar-disabler.png" alt="Facebook Sidebar Disabler Logo" width="128" height="128" />Some days ago, <a title="Facebook: How to see who is online on the new chat" href="http://www.tonyjesus.com/2011/facebook-how-to-see-who-is-online-on-the-new-chat">I posted an article explaining how to see who is online on the new version of the Facebook chat</a>. Today I&#8217;ve found out a simpler method to do this. Fortunately, a developer created an extension that works in Google Chrome, Firefox and Opera that allows you to disable the newly introduced Chat Sidebar and return to the old good Facebook Chat.</p>
<p style="text-align: left;"> </p>
<p><span id="more-1054"></span></p>
<p>This extension is available on the extensions directory of each browser. Here are the links:</p>
<p><a href="https://chrome.google.com/webstore/detail/bfipfkeoidmndggnnpobeenlamiclald">Facebook Chat Sidebar Disabler for Google Chrome</a></p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/fb-chat-sidebar-disabler/">Facebook Chat Sidebar Disabler for Firefox</a></p>
<p><a href="https://addons.opera.com/addons/extensions/details/facebook-chat-sidebar-disabler/1.7/">Facebook Chat Sidebar Disabler for Opera</a></p>
<p>Enjoy!</p>
<p>Please, share your thoughts in the comments section.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/facebook-extensions-to-restore-chat/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #14</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-14</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-14#respond</comments>
		<pubDate>Fri, 29 Jul 2011 06:00:55 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=668</guid>
		<description><![CDATA[This week, my list contains some HTML5 websites, so remember to use a HTML5 capable browser like Google Chrome or Safari. The list shows some personal portfolios, a bakery website and a website to help you to find a sponsor to develop your app.   Keith Homemade Cakes Keith Homemade Cakes is the website of [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This week, my list contains some HTML5 websites, so remember to use a HTML5 capable browser like <a href="http://www.google.com/chrome" target="_blank">Google Chrome</a> or <a href="http://www.apple.com/safari/" target="_blank">Safari</a>. The list shows some personal portfolios, a bakery website and a website to help you to find a sponsor to develop your app.<span id="more-668"></span></p>
<p style="text-align: left;"> </p>
<h3><a href="http://www.keithcakes.com.au/" target="_blank">Keith Homemade Cakes</a></h3>
<p style="text-align: center;"><a href="http://www.keithcakes.com.au/" target="_blank"><img class="aligncenter size-full wp-image-685" style="border: 0pt none;" title="Keith Homemade Cakes" src="http://www.tonyjesus.com/wp-content/uploads/2011/06/keithcakes.com_.au_.jpg" alt="Screenshot of http://www.keithcakes.com.au/" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/06/keithcakes.com_.au_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/06/keithcakes.com_.au_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Keith Homemade Cakes is the website of a bakery based in Brighton that specialises in making cakes. The website is pretty well designed and uses a nice font type for the titles and menus.</p>
<p style="text-align: left;"> </p>
<h3><a href="http://abovethefoldbook.com/" target="_blank">Above the Fold</a></h3>
<p style="text-align: center;"><a href="http://abovethefoldbook.com/" target="_blank"><img class="aligncenter size-full wp-image-686" style="border: 0pt none;" title="Above the Foldbook" src="http://www.tonyjesus.com/wp-content/uploads/2011/06/abovethefoldbook.com_.jpg" alt="Screenshot of http://abovethefoldbook.com/" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/06/abovethefoldbook.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/06/abovethefoldbook.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Above the Fold is a book about the fundamentals of sound communication design set within the context of the Web. Above the Fold looks at the basics of hierarchical communication with the specific considerations inherent in Web design. The single-page website consists in a fixed top panel that displays the menu and allows you to navigate to the other sections.</p>
<p style="text-align: left;"> </p>
<h3><a href="http://www.bestappideas.com/" target="_blank">Best App Ideas</a></h3>
<p style="text-align: center;"><a href="http://www.bestappideas.com/" target="_blank"><img class="aligncenter size-full wp-image-687" style="border: 0pt none;" title="Best App Ideas" src="http://www.tonyjesus.com/wp-content/uploads/2011/06/bestappideas.com_.jpg" alt="Screenshot of http://www.bestappideas.com/" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/06/bestappideas.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/06/bestappideas.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Do you have an app idea that has the potential to be a huge success, but you don&#8217;t have the money to build it? Best App Ideas can help! They allow people with great ideas to connect with people who have the funds to make an idea a reality.</p>
<p style="text-align: left;"> </p>
<h3><a href="http://www.marcorotoli.com/" target="_blank">Marco Rotoli</a></h3>
<p style="text-align: center;"><a href="http://www.marcorotoli.com/" target="_blank"><img class="aligncenter size-full wp-image-688" style="border: 0pt none;" title="Marco Rotoli" src="http://www.tonyjesus.com/wp-content/uploads/2011/06/marcorotoli.com_.jpg" alt="Screenshot of http://www.marcorotoli.com/" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/06/marcorotoli.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/06/marcorotoli.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>This is the personal portfolio of Marco Rotoli, a visual designer based in London. It&#8217;s another single-page, HTML5 example. It lists all projects horizontally and, inside each project, we can see the project details vertically.</p>
<p style="text-align: left;"> </p>
<h3><a href="http://www.misvstyle.com/" target="_blank">mISVStyle</a></h3>
<p style="text-align: center;"><a href="http://www.misvstyle.com/" target="_blank"><img class="aligncenter size-full wp-image-689" style="border: 0pt none;" title="mISVStyle" src="http://www.tonyjesus.com/wp-content/uploads/2011/06/misvstyle.com_.jpg" alt="Screenshot of http://www.misvstyle.com/" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/06/misvstyle.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/06/misvstyle.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>mISVStyle.com is the personal portfolio of Sergey Pozhilov, a freelance web designer and developer. It&#8217;s also a single-page website that displays all sections in vertical panels.</p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-7043"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-7043','','','0'); </script> or <a href="http://www.twitter.com/#!/tonyjesusdotcom" target="_blank">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-14/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple Unleashed Its Lion</title>
		<link>http://www.tonyjesus.com/2011/apple-unleashed-its-lion</link>
		<comments>http://www.tonyjesus.com/2011/apple-unleashed-its-lion#respond</comments>
		<pubDate>Mon, 25 Jul 2011 00:12:40 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=967</guid>
		<description><![CDATA[Don&#8217;t be scared with this article&#8217;s title or the image on the left. I&#8217;m not talking about the King of the Jungle. &#8220;Lion&#8221; is the name of the eighth and current major release of Apple&#8217;s Mac OS X (version 10.7). It was released on July 20 2011, as announced during Apple&#8217;s third quarter 2011 earnings [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-980" style="border: 0pt none;" title="Lion" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/lion.png" alt="Lion" width="175" height="175" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/07/lion-150x150.png 150w, http://www.tonyjesus.com/wp-content/uploads/2011/07/lion.png 175w" sizes="(max-width: 175px) 100vw, 175px" />Don&#8217;t be scared with this article&#8217;s title or the image on the left. I&#8217;m not talking about the King of the Jungle. &#8220;Lion&#8221; is the name of the eighth and current major release of Apple&#8217;s Mac OS X (version 10.7). It was released on July 20 2011, as announced during Apple&#8217;s third quarter 2011 earnings report. In the space of 24 hours, Mac owners in 123 countries around the world downloaded more than 1 million copies of the operating system. Lion is priced at $29.99 in the US Apple App Store &#8211; meaning that Apple earned close to one million dollars each hour during the first day.<span id="more-967"></span></p>
<p>Apple claims that there are over 250 new or changed features in Lion, including:</p>
<p style="text-align: left;"> </p>
<p><img class="size-full wp-image-989 alignleft" style="border: 0pt none;" title="AirDrop" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/airdrop-mac.png" alt="AirDrop icon" width="60" height="60" /></p>
<p style="text-align: left;"> </p>
<p><strong>AirDrop</strong> is a service that provides the ability to share files with nearby users of the operating system wirelessly — no Wi-Fi network required.</p>
<p style="text-align: left;"> </p>
<p><img class="size-full wp-image-993 alignright" style="border: 0pt none;" title="Auto-correction" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/features_text_autocorrection.jpg" alt="Auto-correction image" width="260" height="81" /></p>
<p style="text-align: left;"> </p>
<p><strong>Auto-correction</strong> now behaves much like on iOS devices, displaying suggested spellings below the word.</p>
<p style="text-align: left;"> </p>
<p><img class="alignleft size-full wp-image-1001" style="border: 0pt none;" title="Autosave" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/features_autosave_icon.png" alt="Autosave icon" width="63" height="65" /></p>
<p><strong>Auto Save</strong> – As in iOS, documents in applications written to use Auto Save will be saved automatically so users don&#8217;t have to worry about manually saving their documents.</p>
<p style="text-align: left;"> </p>
<p><img class="alignright size-full wp-image-1006" style="border: 0pt none;" title="Full-Screen apps" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/features_fullscreenapps_icon.png" alt="Full-Screen apps icon" width="64" height="64" /><strong>Full-screen apps</strong> – Native, system-wide support for full-screen applications. Supporting applications have a new button in the top right of the app window. By clicking this button, the applications will be opened in full-screen mode. You can have multiple full-screen apps open at once — along with multiple standard-size apps.</p>
<p style="text-align: left;"> </p>
<p><img class="alignleft size-full wp-image-1007" style="border: 0pt none;" title="iCal" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/features_ical_icon.png" alt="iCal icon" width="64" height="64" /></p>
<p><strong>iCal</strong> has an updated user interface, an annual view, and supports full-screen view.</p>
<p style="text-align: left;"> </p>
<p><img class="alignright size-full wp-image-1008" style="border: 0pt none;" title="iChat" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/features_ichat6_icon.png" alt="iChat icon" width="64" height="64" /></p>
<p><strong>iChat</strong> now has support for logging into Yahoo! Messenger. Users can audio and video chat with other iChat users using their Yahoo! accounts.</p>
<p style="text-align: left;"> </p>
<p><strong><img class="alignleft size-full wp-image-1015" style="border: 0pt none;" title="Launchpad" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/features_launchpad_icon.png" alt="Launchpad icon" width="64" height="64" />Launchpad</strong> – An application launcher that displays an icon grid of installed applications. Each application is represented by an icon, and Launchpad creates as many pages of application icons as you need.</p>
<p style="text-align: left;"> </p>
<p><strong><img class="alignright size-full wp-image-1016" style="border: 0pt none;" title="Mac App Store" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/features_macappstore_icon.png" alt="Mac App Store icon" width="64" height="64" />Mac App Store</strong> – An application store built in the image of the iOS App Store. It was first released for Mac OS X Snow Leopard and, like in iOS, it lets you browse and download thousands of free and paid apps that you can start using right away on all your Mac computers authorized for personal use.</p>
<p style="text-align: left;"> </p>
<p><strong><img class="alignleft size-full wp-image-1017" style="border: 0pt none;" title="Mail" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/features_mail_icon.png" alt="Mail icon" width="64" height="64" />Mail 5</strong> – Uses an iPad-like user interface, has a fullscreen-optimized view, uses chronological &#8220;Conversations&#8221; to organize messages and supports Exchange 2010.</p>
<p style="text-align: left;"> </p>
<p><strong><img class="alignright size-full wp-image-1019" style="border: 0pt none;" title="Mission Control" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/features_missioncontrol_icon.png" alt="Mission Control icon" width="62" height="64" />Mission Control</strong> brings together Exposé, Dashboard, Spaces, and full-screen apps to give you one place to see and navigate everything running on your Mac.</p>
<p style="text-align: left;"> </p>
<p><strong><img class="alignleft size-full wp-image-1021" style="border: 0pt none;" title="Multi Touch Gestures" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/features_multitouchgestures_icon.png" alt="Multi Touch Gestures icon" width="64" height="64" />Multi-Touch Gestures</strong> transform the way you interact with your Mac, making all you do more intuitive and direct. Similar to iOS, additional gestures performed using a multi-touch input device will allow the user to scroll, swipe to different pages, and enter Mission Control.</p>
<p style="text-align: left;"> </p>
<p><img class="alignright size-full wp-image-1023" style="border: 0pt none;" title="Preview" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/features_preview_icon.png" alt="Preview icon" width="64" height="64" /><strong>Preview</strong> gets several features, including full-screen support and the ability to sign a document just by holding your signature up to an iSight or FaceTime camera, and Preview uses sophisticated image processing to turn it into a pen-perfect signature annotation.</p>
<p style="text-align: left;"> </p>
<p><img class="alignleft size-full wp-image-1024" style="border: 0pt none;" title="Quicktime Player" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/features_quicktimeplayer_icon.png" alt="Quicktime Player icon" width="64" height="64" /><strong>QuickTime</strong> also gains several features like full-screen support, the ability to rotate clips, capture a region of the screen or share your video directly to Vimeo, Flickr, Facebook, iMovie, and Mail.</p>
<p style="text-align: left;"> </p>
<p><strong><img class="alignright size-full wp-image-1025" style="border: 0pt none;" title="Resume" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/features_resume_icon.png" alt="Resume icon" width="64" height="64" /></strong></p>
<p style="text-align: left;"> </p>
<p><strong>Resume</strong> – Applications are launched exactly in the same state as you left them as already seen in iOS.</p>
<p style="text-align: left;"> </p>
<p><strong><img class="alignleft size-full wp-image-1027" style="border: 0pt none;" title="Safari" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/features_safari_icon.png" alt="Safari icon" width="64" height="64" />Safari</strong> – With full-screen mode, tap/pinch to zoom in and out, improved graphics performance, and the ability of auto setup your Gmail and Yahoo! accounts in Mail.</p>
<p style="text-align: left;"> </p>
<p><strong><img class="alignright size-full wp-image-1028" style="border: 0pt none;" title="Screen Sharing" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/features_screenshare_icon.png" alt="Screen Sharing icon" width="64" height="64" />Screen Sharing</strong> now allows remote users to log into a separate user account from the one that is currently logged in. That means that a user can login without interrupting someone else who might be using the computer under a different login.</p>
<p style="text-align: left;"> </p>
<p><strong><img class="alignleft size-full wp-image-1029" style="border: 0pt none;" title="Spotlight" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/features_spotlight_icon.png" alt="Spotlight icon" width="64" height="64" />Spotlight</strong> – Now you can drag items from the Spotlight menu and when you choose Search Web from the Spotlight menu, Safari opens and displays search results using your default search engine.</p>
<p style="text-align: left;"> </p>
<p><strong><img class="alignright size-full wp-image-1030" style="border: 0pt none;" title="Terminal" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/features_unix_icon.png" alt="Terminal" width="64" height="64" /></strong></p>
<p style="text-align: left;"> </p>
<p><strong>Terminal</strong> has extra features, including full screen mode.</p>
<p style="text-align: left;"> </p>
<p><strong><img class="alignleft size-full wp-image-1031" style="border: 0pt none;" title="TextEdit" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/features_textedit_icon.png" alt="TextEdit icon" width="64" height="64" />TextEdit</strong> gains a new formatting bar that provides a convenient access to fonts, colors and other editing options. The new TextEdit also supports Apple&#8217;s new auto saving and versions technologies.</p>
<p style="text-align: left;"> </p>
<p><strong><img class="alignright size-full wp-image-1032" style="border: 0pt none;" title="Versions" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/features_versions_icon.png" alt="Versions icon" width="63" height="64" />Versions</strong> – It works like a conventional version control system allowing you to keep an automatic record of your documents as they evolve. It also allows you to create a manual version of your document, compare various versions of your documents side-by-side, copy between versions, restore previous versions and delete older versions.</p>
<p style="text-align: left;"> </p>
<p style="text-align: center;"><img class="size-full wp-image-982 aligncenter" title="Lion New Features" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/overview_bucket_new_features.png" alt="Lion New Features" width="325" height="162" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/07/overview_bucket_new_features-300x149.png 300w, http://www.tonyjesus.com/wp-content/uploads/2011/07/overview_bucket_new_features.png 325w" sizes="(max-width: 325px) 100vw, 325px" /></p>
<p style="text-align: center;"><span style="font-size: x-small;">Image from <a href="http://www.apple.com">http://www.apple.com</a></span></p>
<p style="text-align: left;"> </p>
<p>So what do you think about the new Mac&#8217;s version? Please, share your thoughts in the comments section.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/apple-unleashed-its-lion/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #13</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-13</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-13#comments</comments>
		<pubDate>Fri, 22 Jul 2011 21:00:33 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=666</guid>
		<description><![CDATA[This week, my collection of websites contains an excellent example of the use of WebGL (I advise you to use Google Chrome to check it out). It also contains some personal/company portfolios. Google Body Google Body is a WebGL application that lets you explore a high resolution, interactive 3D model of the human anatomy, from [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This week, my collection of websites contains an excellent example of the use of WebGL (I advise you to use <a href="http://www.google.com/chrome" target="_blank">Google Chrome</a> to check it out). It also contains some personal/company portfolios.<span id="more-666"></span></p>
<h3><a href="http://bodybrowser.googlelabs.com/" target="_blank">Google Body</a></h3>
<p style="text-align: center;"><a href="http://bodybrowser.googlelabs.com/" target="_blank"><img class="aligncenter size-full wp-image-678" style="border: 0pt none;" title="Google Body" src="http://www.tonyjesus.com/wp-content/uploads/2011/06/bodybrowser.googlelabs.com_.jpg" alt="Screenshot of http://bodybrowser.googlelabs.com/" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/06/bodybrowser.googlelabs.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/06/bodybrowser.googlelabs.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Google Body is a WebGL application that lets you explore a high resolution, interactive 3D model of the human anatomy, from the skin down to the nervous system. WebGL is a software library that allows Javascript to generate interactive 3D graphics within any compatible web browser.</p>
<p style="text-align: left;"> </p>
<h3><a href="http://www.efingo.com/" target="_blank">efingo</a></h3>
<p style="text-align: center;"><a href="http://www.efingo.com/" target="_blank"><img class="aligncenter size-full wp-image-679" style="border: 0pt none;" title="efingo" src="http://www.tonyjesus.com/wp-content/uploads/2011/06/efingo.com_.jpg" alt="Screenshot of http://www.efingo.com/" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/06/efingo.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/06/efingo.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>efingo is a single-page portfolio with a modern design. It features a very easy navigation system (by using the menu, or, of course, scrolling up/down the page).</p>
<p style="text-align: left;"> </p>
<h3><a href="http://www.zeitgeistbot.com/" target="_blank">Zeitgeistbot</a></h3>
<p style="text-align: center;"><a href="http://www.zeitgeistbot.com/" target="_blank"><img class="aligncenter size-full wp-image-680" style="border: 0pt none;" title="Zeitgeistbot" src="http://www.tonyjesus.com/wp-content/uploads/2011/06/zeitgeistbot.com_.jpg" alt="Screenshot of http://www.zeitgeistbot.com/" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/06/zeitgeistbot.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/06/zeitgeistbot.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Zeitgeistbot is a gallery of artistic exploration, experimentation and research into social media art, folksonomy art, interactive motion tracking art, and cell phone art. Its purpose is to explore ways of translating data into interactive art pieces. The website&#8217;s navigation is very original, performing some kind of &#8220;transitions&#8221; each time you click on a menu item.</p>
<p style="text-align: left;"> </p>
<h3><a href="http://www.congresoautismo.es/" target="_blank">II Congreso Internacional de Autismo en Murcia</a></h3>
<p style="text-align: center;"><a href="http://www.congresoautismo.es/" target="_blank"><img class="aligncenter size-full wp-image-681" style="border: 0pt none;" title="II Congreso Internacional de Autismo en Murcia" src="http://www.tonyjesus.com/wp-content/uploads/2011/06/congresoautismo.es_.jpg" alt="Screenshot of http://www.congresoautismo.es/" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/06/congresoautismo.es_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/06/congresoautismo.es_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>This is a flash-based website of the II International Autism Conference at Murcia, Spain. It contains an English link on the homepage that, unfortunately, doesn&#8217;t work. However, in the Spanish version, we can see that it has a very nice way of jumping to each section of the website.</p>
<p style="text-align: left;"> </p>
<h3><a href="http://kiskolabs.com/" target="_blank">Kisko Labs</a></h3>
<p style="text-align: center;"><a href="http://kiskolabs.com/" target="_blank"><img class="aligncenter size-full wp-image-682" style="border: 0pt none;" title="Kisko Labs" src="http://www.tonyjesus.com/wp-content/uploads/2011/06/kiskolabs.com_.jpg" alt="Screenshot of http://kiskolabs.com/" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/06/kiskolabs.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/06/kiskolabs.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Kisko Labs is a Finland-based web design company. They have a great website which is similar to others presented today but with a very important detail: the menu is fixed at the top of the page, allowing you to navigate wherever you want to go without losing the possibility of using the menu again. Nice work!</p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-4245"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-4245','','','0'); </script> or <a href="http://www.twitter.com/#!/tonyjesusdotcom" target="_blank">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-13/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Facebook: How to see who is online on the new chat</title>
		<link>http://www.tonyjesus.com/2011/facebook-how-to-see-who-is-online-on-the-new-chat</link>
		<comments>http://www.tonyjesus.com/2011/facebook-how-to-see-who-is-online-on-the-new-chat#comments</comments>
		<pubDate>Wed, 20 Jul 2011 23:22:14 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=949</guid>
		<description><![CDATA[Recently, Facebook started offering a new service that enables their members to video chat. They launched this service only a few days after Google+ release (Is this a coincidence?). This came with a change on the entire chat system. In this article I&#8217;ll talk about this annoying change and how to overcome it. They decided [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Recently, Facebook started offering a new service that enables their members to video chat. They launched this service only a few days after Google+ release (Is this a coincidence?). This came with a change on the entire chat system. In this article I&#8217;ll talk about this annoying change and how to overcome it.<span id="more-949"></span></p>
<p>They decided to remove the online users list that was displayed when the users clicked on a small button located at the bottom right.</p>
<p style="text-align: center;"><a href="http://www.tonyjesus.com/wp-content/uploads/2011/07/oldchat.jpg" rel="shadowbox"><img class="aligncenter size-medium wp-image-950" title="Previous chat system" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/oldchat-300x157.jpg" alt="Screenshot of Facebook's previous chat system" width="500" height="262" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/07/oldchat-300x157.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/07/oldchat.jpg 1000w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Now instead of displaying the online users only, they are showing a list of friends with whom you interact frequently. This is really annoying because this list also includes offline friends. So if the Facebook friends you usually interact with are all offline, then you will see a list with only offline friends and you need to search for the other ones.</p>
<p style="text-align: center;"><a href="http://www.tonyjesus.com/wp-content/uploads/2011/07/newchat.jpg" rel="shadowbox"><img class="aligncenter size-medium wp-image-955" title="New chat system" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/newchat-300x153.jpg" alt="Screenshot of Facebook's new chat system" width="500" height="256" /></a></p>
<p>Fortunately there is a solution for this problem:</p>
<ul>
<li>Open a new tab or window in the browser were you are logged in into your Facebook account.</li>
</ul>
<ul>
<li>Open this link on that new tab: <a href="http://www.facebook.com/presence/popout.php" target="_blank">http://www.facebook.com/presence/popout.php</a></li>
</ul>
<p>That&#8217;s it! In this window, you will see the complete list of your online <em>Facebookian</em> friends. Please share your thoughts in the comments section.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/facebook-how-to-see-who-is-online-on-the-new-chat/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #12</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-12</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-12#respond</comments>
		<pubDate>Fri, 15 Jul 2011 19:00:33 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=484</guid>
		<description><![CDATA[This week, my collection of websites contains an excellent presentation using HTML5 to show some of the new features of HTML5, CSS3 and Javascript (remember to use a HTML5 capable browser like Google Chrome or Safari). It also contains a great CSS3 patterns gallery, a Javascript library that will tell you if your website is [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This week, my collection of websites contains an excellent presentation using HTML5 to show some of the new features of HTML5, CSS3 and Javascript (remember to use a HTML5 capable browser like <a href="http://www.google.com/chrome" target="_blank">Google Chrome</a> or <a href="http://www.apple.com/safari/" target="_blank">Safari</a>). It also contains a great CSS3 patterns gallery, a Javascript library that will tell you if your website is being loaded in a modern or an older browser, a website with a collection of patterns and finally a website that tells you why you should not use Comic Sans font everywhere .<span id="more-484"></span></p>
<p style="text-align: left;"> </p>
<h3><a href="http://slides.html5rocks.com/#landing-slide" target="_blank">HTML5 Rocks: HTML5 Presentation</a></h3>
<p style="text-align: center;"><a href="http://slides.html5rocks.com/#landing-slide" target="_blank"><img class="aligncenter size-full wp-image-654" style="border: 0pt none;" title="HTML5 Presentation" src="http://www.tonyjesus.com/wp-content/uploads/2011/06/slides.html5rocks.com_.jpg" alt="Screenshot of http://slides.html5rocks.com/#landing-slide" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/06/slides.html5rocks.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/06/slides.html5rocks.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>A great Interactive Presentation written in HTML5 that demonstrates all exciting new stuff in HTML, CSS and Javascript a number of features with examples. You can use this presentation to learn more about HTML5. It was developed by Google.</p>
<p style="text-align: left;"> </p>
<h3><a href="http://leaverou.me/css3patterns/" target="_blank">CSS3 Patterns Gallery</a></h3>
<p style="text-align: center;"><a href="http://leaverou.me/css3patterns/" target="_blank"><img class="aligncenter size-full wp-image-655" style="border: 0pt none;" title="CSS3 Patterns Gallery" src="http://www.tonyjesus.com/wp-content/uploads/2011/06/leaverou.me-css3patterns.jpg" alt="Screenshot of http://leaverou.me/css3patterns/" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/06/leaverou.me-css3patterns-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/06/leaverou.me-css3patterns.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Lea Verou is a skilled web developer who has created this amazing gallery with a lot of CSS3 pattterns. Yes, that&#8217;s right, only CSS3, no images. And she also is generous and gives us all the required CSS code to accomplish each pattern.</p>
<p style="text-align: left;"> </p>
<h3><a href="http://www.modernizr.com/" target="_blank">Modernizr</a></h3>
<p style="text-align: center;"><a href="http://www.modernizr.com/" target="_blank"><img class="aligncenter size-full wp-image-657" style="border: 0pt none;" title="Modernizr" src="http://www.tonyjesus.com/wp-content/uploads/2011/06/modernizr.com_.jpg" alt="Screenshot of http://www.modernizr.com/" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/06/modernizr.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/06/modernizr.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Modernizr is an open-source JavaScript library that allows web designers to take full advantage of everything in HTML5 and CSS3 that is implemented in some browsers. It detects whether the current browser supports CSS3 and HTML5 new features and elements, allowing you to use the browser&#8217;s native implementation. We all hope that, in a few months, libraries like this won&#8217;t be needed, because all browser&#8217;s developers will release new versions allowing their browsers to support all new HTML5 stuff and all users will install these updates and all developers will live happily ever after.</p>
<p style="text-align: left;"> </p>
<h3><a href="http://tileabl.es/" target="_blank">Tileables</a></h3>
<p style="text-align: center;"><a href="http://tileabl.es/" target="_blank"><img class="aligncenter size-full wp-image-658" style="border: 0pt none;" title="Tileables" src="http://www.tonyjesus.com/wp-content/uploads/2011/06/tileabl.es_.jpg" alt="Screenshot of http://tileabl.es/" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/06/tileabl.es_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/06/tileabl.es_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Tileables is a website which creates and shares various sets of beautiful patterns.</p>
<p style="text-align: left;"> </p>
<h3><a href="http://www.comicsanscriminal.com/" target="_blank">Comic Sans Criminal</a></h3>
<p style="text-align: center;"><a href="http://www.comicsanscriminal.com/" target="_blank"><img class="aligncenter size-full wp-image-660" style="border: 0pt none;" title="Comic Sans Criminal" src="http://www.tonyjesus.com/wp-content/uploads/2011/06/comicsanscriminal.com_.jpg" alt="Screenshot http://www.comicsanscriminal.com/" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/06/comicsanscriminal.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/06/comicsanscriminal.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Comic Sans Criminal is great and well designed site aimed to reduce inappropriate use of Comic Sans font. It features a good navigation: you only need to click anywhere on the page and the next &#8220;slide&#8221; will automatically appear in the center of the page.</p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-5776"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-5776','','','0'); </script> or <a href="http://www.twitter.com/#!/tonyjesusdotcom" target="_blank">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-12/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Useful Google Apps aka 5 Reasons Why Google Controls My Life</title>
		<link>http://www.tonyjesus.com/2011/5-useful-google-apps</link>
		<comments>http://www.tonyjesus.com/2011/5-useful-google-apps#respond</comments>
		<pubDate>Fri, 15 Jul 2011 00:45:29 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=772</guid>
		<description><![CDATA[Google is more than a search engine. It&#8217;s true that they are known for having the best and most popular search engine but Google is a big company that hosts and develops a number of Internet-based services and products. In this article I&#8217;ll show you 5 great Google online applications and you&#8217;ll understand why I&#8217;m [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Google is more than a search engine. It&#8217;s true that they are known for having the best and most popular search engine but Google is a big company that hosts and develops a number of Internet-based services and products. In this article I&#8217;ll show you 5 great Google online applications and you&#8217;ll understand why I&#8217;m saying that Google now controls my life.<span id="more-772"></span></p>
<h3><a href="http://www.google.com/bookmarks/" target="_blank">Bookmarks</a></h3>
<p><a href="http://www.google.com/bookmarks/" target="_blank"><img class="alignleft size-full wp-image-783" style="border: 0pt none;" title="Google Bookmarks" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/google-bookmarks.png" alt="Google Bookmarks" width="200" height="196" /></a>A bookmark, also called favorite, is a saved link to a Web page. Most of modern browsers supports the creation of bookmarks. The list of bookmarks is saved internally by your browser, allowing you to quickly get back to a Web page later. The problem is when you use more than one computer (for example one computer at home and another at your company) and you have bookmarks on each of them. Keeping all bookmarks always synchronized is not an easy task. For this problem, Google has the perfect solution: why you should store your bookmarks locally on you browser, if you can store them online?</p>
<p>With Google Bookmarks, you can save your bookmarks and navigate to them in seconds. Unlike browser bookmarks that are stored on a single computer, Google bookmarks are stored online, in your Google Account. This means you can access them from any computer with an Internet connection.</p>
<p style="text-align: left;"> </p>
<h3><a href="http://www.google.com/calendar" target="_blank">Calendar</a></h3>
<p><a href="http://www.google.com/calendar" target="_blank"><img class="alignleft size-full wp-image-890" style="border: 0pt none;" title="Google Calendar" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/google-calendar.png" alt="Google Calendar" width="198" height="194" /></a>Nowadays, people use technology to make their lives easier. One of the most common examples is keeping a digital Agenda of future events. Your mother&#8217;s birthday, your wedding anniversary, an important meeting, etc are always stored in the Agenda. Also, most of these applications allow you to set up a reminder (like an email) a few days before the event.</p>
<p>With Google Calendar, it&#8217;s easy to keep track of life&#8217;s important events all in one place. It allows you to share your schedule in order to let your co-workers, family and friends see your calendar and view schedules that others have shared with you.</p>
<p>By using Google Calendar you will never forget another event again, because it allows you to set up custom reminders. You can choose to be notified by email or get a text message sent to your mobile phone.</p>
<p style="text-align: left;"> </p>
<h3><a href="http://docs.google.com/" target="_blank">Docs</a></h3>
<p><a href="http://docs.google.com/" target="_blank"><img class="alignleft size-full wp-image-898" style="border: 0pt none;" title="Google Docs" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/google-docs.png" alt="Google Docs" width="197" height="194" /></a>Digital documents are now part of our lives. Whether at school or at work, somehow we are forced to deal with text documents, presentations or spreadsheets. Could there be an online program that allows you to create or edit these types of documents and store them online, for free? The answer is: Yes! Its name is Google Docs.</p>
<p>Google docs allows users to create and edit text documents, spreadsheets and presentations online. The documents can be imported through the web interface, or sent via email. It allows you to save your documents to a local computer in a variety of formats including: (ODF, HTML, PDF, RTF, Text, Microsoft Office). It also automatically saves your documents to Google&#8217;s servers to prevent data loss, and a revision history is automatically kept.</p>
<p style="text-align: left;"> </p>
<h3><a href="http://mail.google.com/" target="_blank">Gmail</a></h3>
<p><a href="http://mail.google.com/" target="_blank"><img class="alignleft size-full wp-image-900" style="border: 0pt none;" title="Gmail" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/google-mail.png" alt="Gmail" width="198" height="194" /></a>Gmail is an email service provided by Google. Currently, it provides more than 7 GB of free storage. It allows you to send messages up to 25 MB, including attachments, which is larger than many other mail services support.</p>
<p>It has a effective and powerful spam filtering system. When any user marks an email as spam, this provides information to help the system identify similar future messages for all users. In fact, in more than five years of using Gmail, I&#8217;ve seen fewer spam messages in my inbox, compared to other email providers. Gmail also offers virus filtering by preventing you from sending an executable file as an attachment.</p>
<p>Gmail also allows you to organize your email messages by using <strong>labels</strong>. Labels are similar to folders, but also allows you to add more than one to a single message. By giving colored labels to important emails, you&#8217;ll be able to view your inbox and quickly find your stuff.</p>
<p style="text-align: left;"> </p>
<h3><a href="http://www.google.com/reader" target="_blank">Reader</a></h3>
<p><a href="http://www.google.com/reader" target="_blank"><img class="alignleft size-full wp-image-901" style="border: 0pt none;" title="Google Reader" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/google-reader.png" alt="Google Reader" width="198" height="194" /></a>A web feed (or simply feed) is a data format used for providing users with frequently updated content. This is a very convenient way of staying up to date with the content of a large number of sites. When you subscribe to a feed, you don&#8217;t need to visit a website in order to read the last articles or news. Simply add the feed to a feed aggregator and you will be able to get the last updates.</p>
<p>Reader is a Web application which aggregates syndicated web content such as news headlines and blogs in a single location for easy viewing. It&#8217;s capable of reading Atom and RSS feeds online or offline.</p>
<p>Google Reader also offers &#8220;Play&#8221;. Play is a fast and fun way to browse interesting stuff on the web. It presents a slideshow interface which displays popular items one at a time. It allows you to like, share or star the items that are being displayed. With this information, Google will show you similar items the next time you visit Play.</p>
<p style="text-align: left;"> </p>
<p>So, do you understand now the reason why Google controls my life? All my email messages go to Gmail, I use the Calendar in order to organize important events of my day-to-day, all my bookmarks are stored in Google Bookmarks, my web feeds are stored in Reader, and I have a lot of important documents (specially text documents and spreadsheets) stored in Google Docs. All I had to do was to create a Google account, <strong>for free!</strong></p>
<p style="text-align: left;"> </p>
<h3>Bonus: <a href="http://plus.google.com/" target="_blank">Google+</a></h3>
<p><a href="http://plus.google.com/" target="_blank"><img class="alignleft size-full wp-image-904" style="border: 0pt none;" title="Google+" src="http://www.tonyjesus.com/wp-content/uploads/2011/07/google-plus.png" alt="Google+" width="198" height="194" /></a>Google+ is is a social networking service recently released by Google. Clearly is Google&#8217;s biggest attempt to rival the social network Facebook.</p>
<p> Google+ main features are:</p>
<p>Circles, which enables users to organize contacts into groups. Organization is done through a drag-and-drop interface. This system replaces the typical friends list function used by sites such as Facebook.</p>
<p>Hangouts, that are places used to allows group video chat (with a maximum of 10 people participating in a single Hangout at any point of time).</p>
<p>However, unlike Twitter and Facebook there is not yet an API that enables software developers to interact with Google+ by programming</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/5-useful-google-apps/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #11</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-11</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-11#comments</comments>
		<pubDate>Fri, 08 Jul 2011 00:00:48 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=325</guid>
		<description><![CDATA[This week, my collection of websites contains an amazing animation using HTML5 (remember to use a HTML5 capable browser like Google Chrome or Safari). It also contains an application that tells you whether you should leave the house with short or long sleeves, a great web blog with a very original design, a CSS Zen [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This week, my collection of websites contains an amazing animation using HTML5 (remember to use a HTML5 capable browser like <a href="http://www.google.com/chrome" target="_blank">Google Chrome</a> or <a href="http://www.apple.com/safari/" target="_blank">Safari</a>). It also contains an application that tells you whether you should leave the house with short or long sleeves, a great web blog with a very original design, a CSS Zen Garden (weird? lol ) and an web based application that allows you to easily create forms.<span id="more-325"></span></p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://mrdoob.com/projects/chromeexperiments/ball_pool/" target="_blank">Ball Pool</a></h3>
<p style="text-align: center;"><a href="http://mrdoob.com/projects/chromeexperiments/ball_pool/" target="_blank"><img class="aligncenter size-full wp-image-332" style="border: 0pt none;" title="Ball Pool" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/mrdoob.com-projects-chromeexperiments-ball_pool.jpg" alt="Screenshot of http://mrdoob.com/projects/chromeexperiments/ball_pool/" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/05/mrdoob.com-projects-chromeexperiments-ball_pool-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/05/mrdoob.com-projects-chromeexperiments-ball_pool.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>A great animation created using canvas element. Start by shaking the browser, then click on an empty space to create new balls, drag some others to move them and double click to reset the screen.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.csszengarden.com/" target="_blank">CSS Zen Garden</a></h3>
<p style="text-align: center;"><a href="http://www.csszengarden.com/" target="_blank"><img class="aligncenter size-full wp-image-343" style="border: 0pt none;" title="CSS Zen Garden" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/csszengarden.com_.jpg" alt="Screenshot of CSS Zen Garden website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/05/csszengarden.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/05/csszengarden.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>This website shows what&#8217;s possible with CSS-based design. Graphic designers from around the world submit their style sheets to change the visual presentation of a single HTML file. Aside from reference to an external CSS file, the HTML markup itself  never changes. All visual differences are the result of the CSS (and  supporting imagery).</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://gotsleeves.appspot.com/" target="_blank">Sleeves</a></h3>
<p style="text-align: center;"><a href="http://gotsleeves.appspot.com/" target="_blank"><img class="aligncenter size-full wp-image-345" style="border: 0pt none;" title="Sleeves" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/gotsleeves.appspot.com_.jpg" alt="Screenshot of Sleeves website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/05/gotsleeves.appspot.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/05/gotsleeves.appspot.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Sleeves is a website where you insert your Zip Code (only in USA) and it tells you whether you should leave the house with short or long sleeves. Original, simple and nice looking.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://fresh01.co.za/" target="_blank">Fresh01</a></h3>
<p style="text-align: center;"><a href="http://fresh01.co.za/" target="_blank"><img class="aligncenter size-full wp-image-347" style="border: 0pt none;" title="Fresh01" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/fresh01.co_.za_.jpg" alt="Screenshot of Fresh01 website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/05/fresh01.co_.za_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/05/fresh01.co_.za_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>I simply love their creative navigation. As long as you scroll the page, the blue balloons at each side indicate the type and date of the post.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.jotform.com/" target="_blank">JotForm</a></h3>
<p style="text-align: center;"><a href="http://www.jotform.com/" target="_blank"><img class="aligncenter size-full wp-image-348" style="border: 0pt none;" title="JotForm" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/jotform.com_.jpg" alt="Screenshot of JotForm" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/05/jotform.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/05/jotform.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>JotForm is a free web form builder. When you need to create forms quickly, JotForm is your best friend. You don&#8217;t need to waste time with things like registration. Just create your form and post it on your web site. Literally in minutes. No ads, no logos, very good!</p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-6687"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-6687','','','0'); </script> or <a href="http://www.twitter.com/#!/tonyjesusdotcom" target="_blank">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-11/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #10</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-10</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-10#comments</comments>
		<pubDate>Thu, 30 Jun 2011 23:00:50 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=259</guid>
		<description><![CDATA[For the collection of sites of this week, I have selected some websites that I already knew but consider very useful: midomi.com, tineye.com and carbonmade.com. &#8220;Nerd Communications&#8221; and &#8220;10k apart&#8221; complete the list. &#160; Nerd Communications Imagine being a hybrid of filmmaker, architect and cook. A clone of a writer, psychologist and gardener. Imagine being [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>For the collection of sites of this week, I have selected some websites that I already knew but consider very useful: midomi.com, tineye.com and carbonmade.com. &#8220;Nerd Communications&#8221; and &#8220;10k apart&#8221; complete the list.<span id="more-259"></span></p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.nerdcommunications.com/main.html" target="_blank">Nerd Communications</a></h3>
<p style="text-align: center;"><a href="http://www.nerdcommunications.com/main.html" target="_blank"><img class="aligncenter size-full wp-image-301" style="border: 0pt none;" title="Nerd Communications" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/nerdcommunications.com_.jpg" alt="Screenshot of Nerd Communications website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/05/nerdcommunications.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/05/nerdcommunications.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p><em>Imagine being a hybrid of filmmaker, architect and cook. A clone of a writer, psychologist and gardener. Imagine being born in the 80s, living in 2015 but feeling at home in the 60s. Imagine, all the time, having images, sounds and ideas in your head that are so strange you do not know whom to share them with.</em></p>
<p><em>Imagine you are one of us.</em></p>
<p>The creators of <a href="http://benthebodyguard.com/" target="_blank">Ben the bodyguard</a> (<a title="Sites of the Week #9" href="http://www.tonyjesus.com/2011/sites-of-the-week-9">one of the sites of the last week</a>), Nerd Communications, have one of the best websites that I&#8217;ve seen in my life. Click on the link and yes, Be Curious&#8230; You&#8217;ll love it!.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://10k.aneventapart.com/" target="_blank">10K apart</a></h3>
<p style="text-align: center;"><a href="http://10k.aneventapart.com/" target="_blank"><img class="aligncenter size-full wp-image-304" style="border: 0pt none;" title="10k apart" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/10k.aneventapart.com_.jpg" alt="Screenshot of 10k apart contest website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/05/10k.aneventapart.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/05/10k.aneventapart.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p><em>Could you build a complete web application using less than 10 kilobytes?</em> Well, some developers answered: <em>Oh yeah baby</em>! The submitted 367 web applications prove it. If you <a href="http://10k.aneventapart.com/#thegallery" target="_blank">check the list of applications</a> you will found from casual games to Rich Internet Applications.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://carbonmade.com/" target="_blank">Carbonmade</a></h3>
<p style="text-align: center;"><a href="http://carbonmade.com/" target="_blank"><img class="aligncenter size-full wp-image-306" style="border: 0pt none;" title="Carbonmade" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/carbonmade.com_.jpg" alt="Screenshot of Carbonmade website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/05/carbonmade.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/05/carbonmade.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Carbonmade is a website where you can manage your online portfolio with a set of tools that allow you to change how to display your work.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.midomi.com" target="_blank">Midomi</a></h3>
<p style="text-align: center;"><a href="http://www.midomi.com" target="_blank"><img class="aligncenter size-full wp-image-307" style="border: 0pt none;" title="Midomi" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/midomi.com_.jpg" alt="Screenshot of Midomi" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/05/midomi.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/05/midomi.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Midomi is a website where you can search music by singing or humming. There are about one million contributions to its index based on user contribution in multiple languages.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.tineye.com/" target="_blank">TinEye</a></h3>
<p style="text-align: center;"><a href="http://www.tineye.com/" target="_blank"><img class="aligncenter size-full wp-image-308" style="border: 0pt none;" title="TinEye" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/tineye.com_.jpg" alt="Screenshot of TinEye website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/05/tineye.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/05/tineye.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>TinEye is a reverse image search engine. It finds out where an image came from, how it is being used, if modified versions of the image exist, or if there is a higher resolution version.</p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-3218"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-3218','','','0'); </script> or <a href="http://www.twitter.com/#!/tonyjesusdotcom" target="_blank">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-10/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Password Protection Using .htaccess</title>
		<link>http://www.tonyjesus.com/2011/password-protection-using-htaccess</link>
		<comments>http://www.tonyjesus.com/2011/password-protection-using-htaccess#comments</comments>
		<pubDate>Sun, 26 Jun 2011 12:32:19 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=757</guid>
		<description><![CDATA[There are several ways to protecting files and folders on your website from unauthorized users. For example, you can use PHP (or another server side programming language) to ask for login and password information on each page. Apache Web Server also allows you password protect individual files, folders, or your entire site in an easy [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-760" title="Protected Folder" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/protected_folder.png" alt="Folder with a padlock" width="100" height="100" />There are several ways to protecting files and folders on your website from unauthorized users. For example, you can use PHP (or another server side programming language) to ask for login and password information on each page. Apache Web Server also allows you password protect individual files, folders, or your entire site in an easy and realiable way. In this article, I will show you how to protect your files using .htaccess.<span id="more-757"></span></p>
<h3>When to protect a file/folder?</h3>
<p>There are many situations that will lead you to protect specific parts or sections of your website, for example:</p>
<ul>
<li>You&#8217;re building a new website, but you only want yourself (and maybe your client) to be able to view the work-in-progress.</li>
<li>Your website has some paid content that only subscribers should be able to access.</li>
<li>Your website contains an area that you never want the general public to have access to &#8211; for example, your web stats or private pages.</li>
</ul>
<p>In order to protect a file/folder by using this method, you will need two files: .htaccess and .htpasswd. Now let&#8217;s see how it works.</p>
<h3>.htaccess File</h3>
<pre class="brush: plain; title: ; notranslate">

AuthType Basic

AuthName &quot;The Protected Area&quot;

AuthUserFile /path/to/.htpasswd

Require valid-user

</pre>
<p>The AuthUserFile directive tells the web server where the .htpasswd file, that contains the list of all valid users, is located.</p>
<h3>.htpasswd File</h3>
<pre class="brush: plain; title: ; notranslate">

thebigboss:$apr1$2O.UM/..$Onwuzv311CRytNyAUysYL.

samuelljackson:$apr1$hE/XM/..$99rODul5uFkQgn9vbEosb1

</pre>
<p>The .htpasswd file contains the usernames and passwords of the users, one per line. The passwords are &#8220;encrypted&#8221; using MD5 for security reasons.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/password-protection-using-htaccess/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #9</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-9</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-9#comments</comments>
		<pubDate>Fri, 24 Jun 2011 22:00:23 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=257</guid>
		<description><![CDATA[In the collection of sites of this week, I have some html5 related websites (please, be sure that you are using a html5 capable web browser, like Google Chrome or Safari). All of them are great websites, but my preferred one is Ben the Bodyguard because of its original style, good design and navigation. &#160; [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>In the collection of sites of this week, I have some html5 related websites (please, be sure that you are using a html5 capable web browser, like <a href="http://www.google.com/chrome" target="_blank">Google Chrome</a> or <a href="http://www.apple.com/safari/" target="_blank">Safari</a>). All of them are great websites, but my preferred one is Ben the Bodyguard because of its original style, good design and navigation.<span id="more-257"></span></p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://benthebodyguard.com/" target="_blank">Ben the Bodyguard</a></h3>
<p style="text-align: center;"><a href="http://benthebodyguard.com/" target="_blank"><img class="aligncenter size-full wp-image-290" style="border: 0pt none;" title="Ben the bodyguard" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/benthebodyguard.com_.jpg" alt="Screenshot of Ben the bodyguard's website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/05/benthebodyguard.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/05/benthebodyguard.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Ben the Bodyguard is an application for iPhone® and iPod touch® that will become your personal guardian for all your most sensitive and secret data. Ben is able to protect passwords, contacts, text, reminders, photos and videos. I don&#8217;t know if all these features are true, but the website is simply amazing. It&#8217;s an interactive site styled like a graphic novel. As we scrolling down on the webpage, a mysterious Frenchman named Ben walks along a dark street, musing about security in an unsafe world. &#8220;I am not here to judge. I am here to protect. Photos, videos, whatever&#8221;.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.cs.helsinki.fi/u/ilmarihe/canvas_animation_demo/mozcampeu09.html" target="_blank">HTML5 Canvas Animation</a></h3>
<p style="text-align: center;"><a href="http://www.cs.helsinki.fi/u/ilmarihe/canvas_animation_demo/mozcampeu09.html" target="_blank"><img class="aligncenter size-full wp-image-292" style="border: 0pt none;" title="HTML5 Canvas Animation" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/canvas_animation_demo.jpg" alt="Screenshot of Canvas Animation demo using HTML5" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/05/canvas_animation_demo-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/05/canvas_animation_demo.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>A simple and funny HTML5 cartoon that helps you to understand what HTML5′s canvas element can do.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://9elements.com/io/projects/html5/canvas/" target="_blank">HTML5 Canvas and Audio Experiment</a></h3>
<p style="text-align: center;"><a href="http://9elements.com/io/projects/html5/canvas/" target="_blank"><img class="aligncenter size-full wp-image-293" style="border: 0pt none;" title="HTML5 Canvas and Audio Experiment" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/9elements.com-html5-canvas.jpg" alt="Screenshot of HTML5 Canvas and Audio Experiment" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/05/9elements.com-html5-canvas-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/05/9elements.com-html5-canvas.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>A comfortable and fantastic animation created with HTML5′s canvas and audio tag.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://js-fireworks.appspot.com/" target="_blank">JavaScript Fireworks &#8211; A Chrome Experiment</a></h3>
<p style="text-align: center;"><a href="http://js-fireworks.appspot.com/" target="_blank"><img class="aligncenter size-full wp-image-294" style="border: 0pt none;" title="JavaScript Fireworks – A Chrome Experiment" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/js-fireworks.appspot.com_.jpg" alt="Screenshot of JavaScript Fireworks – A Chrome Experiment" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/05/js-fireworks.appspot.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/05/js-fireworks.appspot.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Enjoy the fireworks moment with your preferred gravity and speed, powered by HTML5 and Javascript.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.experience159.com/" target="_blank">Alfa Romeo 159 &#8211; Vivez l’expérience 159</a></h3>
<p style="text-align: center;"><a href="http://www.experience159.com/" target="_blank"><img class="aligncenter size-full wp-image-295" style="border: 0pt none;" title="Alfa Romeo 159" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/experience159.com_.jpg" alt="Screenshot of Alfa Romeo 159" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/05/experience159.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/05/experience159.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Description? Simply &#8220;Vivez l&#8217;expérience 159&#8221;.</p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-9108"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-9108','','','0'); </script> or <a href="http://www.twitter.com/#!/tonyjesusdotcom" target="_blank">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-9/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>.htaccess tips and tricks</title>
		<link>http://www.tonyjesus.com/2011/htaccess-tips-and-tricks</link>
		<comments>http://www.tonyjesus.com/2011/htaccess-tips-and-tricks#respond</comments>
		<pubDate>Sun, 19 Jun 2011 22:21:26 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=723</guid>
		<description><![CDATA[.htaccess is a file used in Apache Web Server that allows us to make configuration changes on a per-directory basis. It&#8217;s very useful when you need, for example, to redirect your users to a different page or block certain IP addresses to access your website (or a specific folder). This article shows some basic and [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>.htaccess is a file used in Apache Web Server that allows us to make configuration changes on a per-directory basis. It&#8217;s very useful when you need, for example, to redirect your users to a different page or block certain IP addresses to access your website (or a specific folder). This article shows some basic and useful .htaccess directives, to get you started with .htaccess immediately.<span id="more-723"></span></p>
<h3>Allow directory browsing</h3>
<p>If you don&#8217;t include an index file in a directory, most servers are configured to display a &#8220;Forbidden&#8221; error message. However, sometimes you need to list all files and folders contained in the directory. To do this, you only need to add the following line to your .htaccess file:</p>
<pre class="brush: bash; title: ; notranslate">

Options All +Indexes

</pre>
<p style="text-align: left;">&nbsp;</p>
<h3>Prevent directory browsing</h3>
<p>Sometimes, servers allow you to browse a directory if you don&#8217;t include an index file on it. But you can prevent that by adding a single line to your .htaccess file:</p>
<pre class="brush: plain; title: ; notranslate">

Options All -Indexes

</pre>
<p style="text-align: left;">&nbsp;</p>
<h3>Set the default page of each directory</h3>
<p>If for some reason you don’t want to use an index page in each directory, you can change the default page visited when someone reaches that directory by adding the following directive:</p>
<pre class="brush: plain; title: ; notranslate">

DirectoryIndex filename.html

</pre>
<p>(You will have to replace the “filename.html” section with whatever you want to use as the default.)</p>
<p style="text-align: left;">&nbsp;</p>
<h3>Customize error pages</h3>
<p>If you want to create a custom error page that will be displayed to your visitors each time a specific error occurs, you only need to specify the error code and the file to display. Please check the following examples:</p>
<pre class="brush: plain; title: ; notranslate">

#400 Bad Request

ErrorDocument 400 /400.html

#401 Unauthorized

ErrorDocument 401 /401.html

#403 Forbidden

ErrorDocument 403 /403.html

#404 Not Found

ErrorDocument 404 /404.html

</pre>
<p style="text-align: left;">&nbsp;</p>
<h3>Redirect to another page (301 redirect)</h3>
<p>If for some reason you need to change the structure of your website and need to redirect some old URLs to their new locations, you only need to add a line of code like this for each URL:</p>
<pre class="brush: plain; title: ; notranslate">

Redirect 301 /oldstructure/filename.html http://domain.com/newstructure/filename.html

Redirect 301 /oldstructure/filename2.html http://domain.com/newstructure/filename2.html

</pre>
<p style="text-align: left;">&nbsp;</p>
<h3>Redirect non-www to www</h3>
<p>Sometimes you need that your users always access your website using the &#8216;www&#8217; part in the URL. The following lines of code will add &#8216;www&#8217; to any non-www URL:</p>
<pre class="brush: plain; title: ; notranslate">

RewriteEngine on

RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]

RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

</pre>
<p style="text-align: left;">&nbsp;</p>
<h3>Redirect www to non-www</h3>
<p>Same as previous one but instead of adding &#8216;www&#8217;, it will remove the &#8216;www&#8217; part of any URL.</p>
<pre class="brush: plain; title: ; notranslate">

RewriteEngine on

RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]

RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

</pre>
<p style="text-align: left;">&nbsp;</p>
<h3>Change PHP configuration parameters</h3>
<p>If you need to change some PHP configuration parameters and you don&#8217;t have access to the server&#8217;s php.ini file, you can do it by using the htaccess file:</p>
<pre class="brush: plain; title: ; notranslate">
#Format

php_value setting_name setting_value

#Examples

php_value upload_max_filesize 10M
php_value post_max_size 20M
php_value memory_limit 128M

</pre>
<p style="text-align: left;">&nbsp;</p>
<h3>Block visitors by IP</h3>
<p>Is there a person posting spam comments every day on your website? So it&#8217;s simple: block him! Just use the following lines of code:</p>
<pre class="brush: plain; title: ; notranslate">

&lt;Limit GET POST&gt;
order allow,deny
allow from all
deny from 123.456.789.321
deny from 24.112.106.235
&lt;/Limit&gt;

</pre>
<p>Of course, you need to change the IP Addresses in order to suit your needs.</p>
<p style="text-align: left;">&nbsp;</p>
<h3>Allow visitors by IP</h3>
<p>Are you developing a new website that is still in the tests phase and you don&#8217;t need anyone else than you (and/or your team) to access it? This is also simple: add the following lines of code, replacing the IP Addresses by the ones that you want to grant access privileges:</p>
<pre class="brush: plain; title: ; notranslate">

&lt;Limit GET POST&gt;

order deny,allow
deny from all
allow from 123.456.789.321
allow from 24.112.106.235

&lt;/Limit&gt;

</pre>
<p>So, what do you think? Do you know any other useful .htaccess directives that you want to share? Then please use the comments section.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/htaccess-tips-and-tricks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #8</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-8</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-8#respond</comments>
		<pubDate>Fri, 17 Jun 2011 22:00:52 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=254</guid>
		<description><![CDATA[This week, my collection contains the website of a Portuguese company called Twist Multimédia. I like the way they introduce the members of the company and the colors used into their website. The list also includes Dribble, a useful website to show others what are you doing and Mobify, a mobile-related platform. Brooklyn Fare and [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This week, my collection contains the website of a Portuguese company called <em>Twist Multimédia</em>. I like the way they introduce the members of the company and the colors used into their website. The list also includes <em>Dribble</em>, a useful website to show others what are you doing and <em>Mobify</em>, a mobile-related platform. <em>Brooklyn Fare</em> and <em>I vote for art </em>close the list of this week.<span id="more-254"></span></p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.brooklynfare.com/" target="_blank">Brooklyn Fare</a></h3>
<p style="text-align: center;"><a href="http://www.brooklynfare.com/" target="_blank"><img class="aligncenter size-full wp-image-311" style="border: 0pt none;" title="Brooklyn Fare" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/brooklynfare.com_.jpg" alt="Screenshot of Brooklyn Fare website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/05/brooklynfare.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/05/brooklynfare.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Brooklyn Fare proudly serves the Brooklyn community, meeting a diverse range of customers&#8217; culinary needs. Their unusual but creative website looks fantastic with its big font size and appellative images.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://dribbble.com/" target="_blank">Dribbble</a></h3>
<p style="text-align: center;"><a href="http://dribbble.com/" target="_blank"><img class="aligncenter size-full wp-image-312" style="border: 0pt none;" title="Dribble" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/dribbble.com_.jpg" alt="Screenshot of Dribble website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/05/dribbble.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/05/dribbble.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Dribbble is a website where designers, developers and other creative people share small screenshots of the designs and applications they are working on.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://mobify.me/" target="_blank">Mobify</a></h3>
<p style="text-align: center;"><a href="http://mobify.me/" target="_blank"><img class="aligncenter size-full wp-image-315" style="border: 0pt none;" title="Mobify" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/mobify.me_.jpg" alt="Screenshot of Mobify website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/05/mobify.me_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/05/mobify.me_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Mobify makes it easy to optimize websites for mobile devices. Nowadays, mobile websites need to work on as many devices as possible, so no users are left behind.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.ivoteforart.com/" target="_blank">I Vote for Art</a></h3>
<p style="text-align: center;"><a href="http://www.ivoteforart.com/" target="_blank"><img class="aligncenter size-full wp-image-316" style="border: 0pt none;" title="I vote for art" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/ivoteforart.com_.jpg" alt="Screenshot of I vote for art website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/05/ivoteforart.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/05/ivoteforart.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>&#8220;I Vote For Art&#8221; is a place to buy great art at a reasonable price. Take a look around, if you like a piece, make sure you click on the thumb to vote for it&#8230; Or you can even buy it!</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.twistmultimedia.com/" target="_blank">Twist Multimédia</a></h3>
<p style="text-align: center;"><a href="http://www.twistmultimedia.com/" target="_blank"><img class="aligncenter size-full wp-image-317" style="border: 0pt none;" title="Twist Multimedia" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/twistmultimedia.com_.jpg" alt="Screenshot of Twist Multimedia website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/05/twistmultimedia.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/05/twistmultimedia.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Twist Multimédia is a Portuguese web design company that also offers marketing services. They have a really good website with nice illustrations and a modern navigation.</p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-3510"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-3510','','','0'); </script> or <a href="http://www.twitter.com/#!/tonyjesusdotcom" target="_blank">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-8/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choosing a Good and Strong Password</title>
		<link>http://www.tonyjesus.com/2011/choosing-a-good-and-strong-password</link>
		<comments>http://www.tonyjesus.com/2011/choosing-a-good-and-strong-password#respond</comments>
		<pubDate>Sat, 11 Jun 2011 23:12:59 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Philosophical posts]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=650</guid>
		<description><![CDATA[Your password is what proves to the system that you are who you say you are. It&#8217;s like a key that opens the door to your account, computer, etc. and exposes all your data. You can&#8217;t login into your email, twitter, facebook or similar account without using your password. Until we can do retina scans [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-735" title="Password" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/password.jpg" alt="Screenshot of a password field on a website" width="150" height="107" />Your password is what proves to the system that you are who you say you are. It&#8217;s like a key that opens the door to your account, computer, etc. and exposes all your data. You can&#8217;t login into your email, twitter, facebook or similar account without using your password. Until we can do retina scans like in James Bond movies, passwords are the only choice. Anyone who knows your password can pretend to be you. So we need to be very careful with the passwords that we choose. In this post I&#8217;ll show you a way to do this.<span id="more-650"></span></p>
<h3>How NOT to Choose a Password</h3>
<p>Here are some of the types of passwords that will be picked up by crackers:</p>
<ul>
<li>Common words.</li>
<li>Words in any dictionary.</li>
<li>Your user name.</li>
<li>Anyone&#8217;s name (remember that crackers don&#8217;t need to know that your first teacher&#8217;s name is Claire, or that your Dog&#8217;s name is Bobby, but it&#8217;s easy enough to get a list of 100,000 names and try each one).</li>
<li>Stuff like &#8216;123456&#8217; or &#8216;asdf&#8217; or even &#8216;qwerty&#8217;.</li>
</ul>
<h3>How to Choose a Good Password</h3>
<p>Choosing a good password is not an easy task. We need to use a strong password, really difficult to crack but we also need to remember it everytime we need to use it. One simple technique to achieve this is thinking in a phrase that we won&#8217;t forget. For example:</p>
<blockquote><p>The best football club ever is Barcelona FC</p></blockquote>
<p>Now, pick the first 2 letters of each word:</p>
<blockquote><p>Th be fo cl ev is Ba</p></blockquote>
<p>Here we have a good password, with upper-case and lower-case letters. If we want to complicate it a little bit more, we can replace some letters by numbers. For example, replacing all A&#8217;s by 4&#8217;s, E&#8217;s by 3&#8217;s I&#8217;s by 1&#8217;s and O&#8217;s by 0&#8217;s, we get:</p>
<blockquote><p>Th b3 f0 c1 3v 1s B4</p></blockquote>
<p>And here we are: an apparently random generated password but that actually was generated using an easy to remember phrase. I&#8217;d really like to know how long it would take for a cracker to guess this one. You can also complicate it more by replacing, alternately, all spaces by commas (,) and dots (.) or other characters that only you know. The point is to remember the phrase and method (algorithm) used to generate the final password.</p>
<h3>Bonus: PHP function to generate random passwords</h3>
<p>I&#8217;ve written this small function in PHP language to generate random passwords. This function receives two arguments: the length and the strength of the password.</p>
<p>Attention: this function was not written to generate easy to remember passwords. The final result is totally random. Is up to you find a way to remember the generated password.</p>
<pre class="brush: php; title: ; notranslate">

/**
* Function to generate a random password
* @param int $length the length of the password
* @param int $strength the strength of the password (how difficult it will be). Min=0, Max=3
* @return string the generated password
*/
function generatePassword($length=6, $strength=0){
     // The set of characters that will be included on our password
     // By default, only lower-case letters.
     $characterSet = 'abcdefghijklmnopqrstuvwxyz';

     // Test the value of the strength argument
     switch($strength){
          case 3:
               $characterSet .= ',.;[]{}_';
          case 2:
               $characterSet .= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
          case 1:
               $characterSet .= '1234567890';
          default:
               break;
     }

     $maxIndex = strlen($characterSet) - 1;
     $password = '';
     // Get random characters from the $characterSet
     for($i = 1; $i &lt;= $length; $i++){
          $randomIndex = rand(0, $maxIndex);
          $password .= substr($characterSet, $randomIndex, 1);
     }

     return $password;
}

//Use:

// This will generate a weak random password with 6 characters
generatePassword();

// examples of generated passwords:
// ofqkyu
// wvgosw
// eqfxlx

// This will generate a strong random password with 8 characters

generatePassword(8,3);
// examples of generated passwords:
// [AWy7GL{
// 8NOFfe_s
// QifMRu3g
</pre>
<p style="text-align: left;">
<p>So, what do you think? Is this method to generate passwords good enough or do you know other one better? What about the function? Share your thoughs in the comments section.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/choosing-a-good-and-strong-password/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #7</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-7</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-7#respond</comments>
		<pubDate>Fri, 10 Jun 2011 22:00:24 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=251</guid>
		<description><![CDATA[This week, my collection contains a very useful website that tells you how long it takes a page to load in several locations worldwide; a very original Wall where you can post your stuff; the homepage of a greek development company called Justdot; the website of an application called &#8220;Versions&#8221; that allows you to work [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This week, my collection contains a very useful website that tells you how long it takes a page to load in several locations worldwide; a very original Wall where you can post your stuff; the homepage of a greek development company called Justdot; the website of an application called &#8220;Versions&#8221; that allows you to work easily with Subversion on a Mac and the homepage of Gary Nock.<span id="more-251"></span></p>
<h3><a href="http://www.wallswaps.com/" target="_blank">WallSwaps</a></h3>
<p style="text-align: center;"><a href="http://www.wallswaps.com/" target="_blank"><img class="aligncenter size-full wp-image-360" style="border: 0pt none;" title="WallSwaps" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/wallswaps.com_.jpg" alt="Screenshot of WallSwaps website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/wallswaps.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/wallswaps.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>The idea of this website is quite simple: just send them some stuff, any stuff, and they will send you one of their badges and then put your stuff on their wall. It&#8217;s not only a great idea for Erskine Design (the creators of this website) to promote their company but it is also a great way to promote what you do too. It consists in a one-page website, bigger than your browser window, but without any scrollbars. Instead, they use JavaScript to provide two cool ways to navigate around the wall: one using Ctrl key + mouse, the other by clicking on the menu buttons at the bottom of the page.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://loads.in/" target="_blank">Loads In</a></h3>
<p style="text-align: center;"><a href="http://loads.in/" target="_blank"><img class="aligncenter size-full wp-image-362" style="border: 0pt none;" title="Loads.in" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/loads.in_.jpg" alt="Screenshot of Loads.in website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/loads.in_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/loads.in_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>It&#8217;s a really nice website which tells you how fast a webpage loads in a real web browser from some locations worldwide. Insert the website address that you want to test, pick a country, a browser and just go and check the results.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.justdot.gr/" target="_blank">Justdot</a></h3>
<p style="text-align: center;"><a href="http://www.justdot.gr/" target="_blank"><img class="aligncenter size-full wp-image-364" style="border: 0pt none;" title="Justdot" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/justdot.gr_.jpg" alt="Screenshot of Justdot website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/justdot.gr_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/justdot.gr_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>A really nice looking website which uses as a background, a kind of handwritten sketch resulting in a very interesting design.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.versionsapp.com/" target="_blank">Versions</a></h3>
<p style="text-align: center;"><a href="http://www.versionsapp.com/" target="_blank"><img class="aligncenter size-full wp-image-366" style="border: 0pt none;" title="Versions" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/versionsapp.com_.jpg" alt="Screenshot of Versions App website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/versionsapp.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/versionsapp.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Versions offers the best way to work with Subversion on the Mac. Subversion is a software versioning and a revision control system. Its website contains a set of beautiful icons combined with a very nice design.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.garynock.com/" target="_blank">Gary Nock</a></h3>
<p style="text-align: center;"><a href="http://www.garynock.com/" target="_blank"><img class="aligncenter size-full wp-image-368" style="border: 0pt none;" title="Gary Nock" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/garynock.com_.jpg" alt="Screenshot of Gary Nock homepage" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/garynock.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/garynock.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Gary Nock is an acoustic singer-songwriter from Walsall in the West Midlands. His homepage combines a nice typeface with a set of great colors and background images of this artist.</p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-3692"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-3692','','','0'); </script> or <a href="http://www.twitter.com/#!/tonyjesusdotcom" target="_blank">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-7/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Firefox add-ons for developers</title>
		<link>http://www.tonyjesus.com/2011/best-firefox-add-ons-for-developers</link>
		<comments>http://www.tonyjesus.com/2011/best-firefox-add-ons-for-developers#respond</comments>
		<pubDate>Sun, 05 Jun 2011 15:15:36 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=612</guid>
		<description><![CDATA[Mozilla Firefox is probably the most popular browser among web designers and developers. One of the factors that make this browser so valued is the huge library of add-ons/extensions that improve your browsing experience. However, installing a lot of unnecessary extensions will slow down the browser&#8217;s performance. In this article, I&#8217;ll show you the list [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Mozilla Firefox is probably the most popular browser among web designers and developers. One of the factors that make this browser so valued is the huge library of add-ons/extensions that improve your browsing experience.<span id="more-612"></span></p>
<p>However, installing a lot of unnecessary extensions will slow down the browser&#8217;s performance. In this article, I&#8217;ll show you the list of extensions that I&#8217;m using and, in my opinion, are enough and useful for a web developer.</p>
<h3><a href="https://addons.mozilla.org/en-us/firefox/addon/adblock-plus/" target="_blank"><img class="alignleft size-full wp-image-616" style="border: 0pt none;" title="Adblock Plus icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/icon-adblock-plus.png" alt="Adblock Plus icon" width="48" height="48" /></a><a href="https://addons.mozilla.org/en-us/firefox/addon/adblock-plus/" target="_blank">Adblock Plus</a></h3>
<p>Allows you to prevent download and display of certain elements,  mainly advertisements.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="https://addons.mozilla.org/en-us/firefox/addon/colorzilla/" target="_blank"><img class="alignleft size-full wp-image-622" style="border: 0pt none;" title="ColorZilla icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/icon-colorzilla.png" alt="ColorZilla icon" width="48" height="48" /></a><a href="https://addons.mozilla.org/en-us/firefox/addon/colorzilla/" target="_blank">ColorZilla</a></h3>
<p>ColorZilla allows the picking of a color from any point in the browser, quickly adjusting this color and pasting it into another program.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="https://addons.mozilla.org/en-US/firefox/addon/download-statusbar/" target="_blank"><img class="alignleft size-full wp-image-628" style="border: 0pt none;" title="Download Statusbar icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/icon-download-statusbar.png" alt="Download Statusbar icon" width="32" height="32" /></a><a href="https://addons.mozilla.org/en-US/firefox/addon/download-statusbar/" target="_blank">Download Statusbar</a></h3>
<p>It&#8217;s an extension that allows you to view and manage downloads from a tidy statusbar &#8211; without the download window getting in the way of your web browsing.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="https://addons.mozilla.org/en-US/firefox/addon/firebug/" target="_blank"><img class="alignleft size-full wp-image-630" style="border: 0pt none;" title="Firebug icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/icon-firebug.png" alt="Firebug icon" width="32" height="32" /></a><a href="https://addons.mozilla.org/en-US/firefox/addon/firebug/" target="_blank">Firebug</a></h3>
<p>Allows you to inspect, edit and monitor CSS, HTML, JavaScript and Net requests in any web page.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="https://addons.mozilla.org/en-us/firefox/addon/measureit/" target="_blank"><img class="alignleft size-full wp-image-633" style="border: 0pt none;" title="MeasureIt icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/icon-measureit.png" alt="MeasureIt icon" width="32" height="32" /></a><a href="https://addons.mozilla.org/en-us/firefox/addon/measureit/" target="_blank">MeasureIt</a></h3>
<p>Allows you to check the width, height, and alignment of any webpage or its elements by simply drawing a ruler.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="https://addons.mozilla.org/en-us/firefox/addon/rainbow-color-tools/" target="_blank"><img class="alignleft size-full wp-image-635" style="border: 0pt none;" title="Rainbow icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/icon-rainbow.png" alt="Rainbow icon" width="32" height="32" /></a><a href="https://addons.mozilla.org/en-us/firefox/addon/rainbow-color-tools/" target="_blank">Rainbow</a></h3>
<p>It&#8217;s a tool that works like a color picker and eyedropper, and allows you to save and try out colors with drag and drop.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="https://addons.mozilla.org/en-us/firefox/addon/screengrab/" target="_blank"><img class="alignleft size-full wp-image-637" style="border: 0pt none;" title="Screengrab icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/icon-screengrab.png" alt="Screengrab icon" width="32" height="30" /></a><a href="https://addons.mozilla.org/en-us/firefox/addon/screengrab/" target="_blank">Screengrab</a></h3>
<p>It allows you to capture what you can see in the browser&#8217;s window, the entire page, just a selection or a particular frame and save it as an image &#8211; either to a file, or to the clipboard.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="https://addons.mozilla.org/en-us/firefox/addon/shorten-url/" target="_blank"><img class="alignleft size-full wp-image-639" style="border: 0pt none;" title="Shorten URL icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/icon-shortenURL.png" alt="Shorten URL icon" width="32" height="32" /></a><a href="https://addons.mozilla.org/en-us/firefox/addon/shorten-url/" target="_blank">Shorten URL</a></h3>
<p>This extension shortens the current site, image or link URL using bit.ly, goo.gl, or other URL shortening services (currently supports more than 100!), and then display the result in location bar.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="https://addons.mozilla.org/en-US/firefox/addon/tab-mix-plus/" target="_blank"><img class="alignleft size-full wp-image-642" style="border: 0pt none;" title="Tab Mix Plus" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/icon-tab-mix-plus.png" alt="Tab Mix Plus" width="32" height="32" /></a><a href="https://addons.mozilla.org/en-US/firefox/addon/tab-mix-plus/" target="_blank">Tab Mix Plus</a></h3>
<p>This add-on includes such features as duplicating tabs, controlling tab focus, tab clicking options, undo closed tabs and windows. It also includes a full-featured session manager.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="https://addons.mozilla.org/en-US/firefox/addon/web-developer/" target="_blank"><img class="alignleft size-full wp-image-643" style="border: 0pt none;" title="Web Developer icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/05/icon-web-developer.png" alt="Web Developer icon" width="32" height="32" /></a><a href="https://addons.mozilla.org/en-US/firefox/addon/web-developer/" target="_blank">Web Developer extension</a></h3>
<p>The Web Developer extension adds a toolbar with various options for working with web pages. It has an option to inspect CSS styles of page elements and some miscellaneous functions as clean cache, history.</p>
<p>Do you think that I&#8217;ve missed other important extensions? Do you use other useful extensions everyday? Please share in the comment section.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/best-firefox-add-ons-for-developers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #6</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-6</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-6#respond</comments>
		<pubDate>Fri, 03 Jun 2011 22:00:53 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=247</guid>
		<description><![CDATA[For the list of this week, I chose an online free video editor called JayCut, an application for iPhone and iPod touch that allows you to write your diary, a web designer&#8217;s portfolio, a mail client called Postbox and finally a nice website with some facts about web browsers and the web. Enjoy! JayCut The [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>For the list of this week, I chose an online free video editor called JayCut, an application for iPhone and iPod touch that allows you to write your diary, a web designer&#8217;s portfolio, a mail client called Postbox and finally a nice website with some facts about web browsers and the web. Enjoy!<span id="more-247"></span></p>
<h3><a href="http://jaycut.com/" target="_blank">JayCut</a></h3>
<p style="text-align: center;"><a href="http://jaycut.com/" target="_blank"><img class="aligncenter size-full wp-image-371" style="border: 0pt none;" title="JayCut" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/jaycut.com_.jpg" alt="Screenshot of JayCut website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/jaycut.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/jaycut.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>The name of this website is a combination of DJ and the act of cutting video. It allows you to edit videos online using an interface very similar to the current most sophisticated video editors. You can upload, edit import and export video content, all for free!</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://momentoapp.com/" target="_blank">Momento</a></h3>
<p style="text-align: center;"><a href="http://momentoapp.com/" target="_blank"><img class="aligncenter size-full wp-image-373" style="border: 0pt none;" title="Momento" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/momentoapp.com_.jpg" alt="Screenshot of MomentoApp Website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/momentoapp.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/momentoapp.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Momento is an application for iPhone and iPod touch. With Momento in your pocket you can write your diary ‘on the go’, capturing moments whenever you find the time. A beautiful interface coupled with powerful tagging, makes it quick and easy to write about your day and browse moments from your past. Its website contains a wooden background (that <a href="http://www.tonyjesus.com">reminds me about something</a>&#8230;), a very nice typography and a good color combination.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.csslayout.com/" target="_blank">CSSLayout</a></h3>
<p style="text-align: center;"><a href="http://www.csslayout.com/" target="_blank"><img class="aligncenter size-full wp-image-375" style="border: 0pt none;" title="CSSLayout" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/csslayout.com_.jpg" alt="Screenshot of CSSLayout website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/csslayout.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/csslayout.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>This is the online portfolio of Winnie, a web-designer from Edmonton, Canada. The predominant color is a strong blue that fixes very well into the background image.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.postbox-inc.com/" target="_blank">Postbox 2</a></h3>
<p style="text-align: center;"><a href="http://www.postbox-inc.com/" target="_blank"><img class="aligncenter size-full wp-image-377" style="border: 0pt none;" title="Postbox" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/postbox-inc.com_.jpg" alt="Screenshot of Postbox website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/postbox-inc.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/postbox-inc.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Postbox 2 is first class email software that puts you in the driver’s seat. Stay on task, find information quickly and act, not react. This website has one of the best designs I&#8217;ve seen and I have to admit that I loved the postbox image in the main page.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.20thingsilearned.com/" target="_blank">20 Things I Learned About Browsers and the Web</a></h3>
<p style="text-align: center;"><a href="http://www.20thingsilearned.com/" target="_blank"><img class="aligncenter size-full wp-image-378" style="border: 0pt none;" title="20 Things I Learned" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/20thingsilearned.com_.jpg" alt="Screenshot of 20thingsilearned.com" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/20thingsilearned.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/20thingsilearned.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>How does the World Wide Web work? What is a browser? And what happens if a truck runs over your laptop? Google answers these and other questions with 20 Things I Learned, a Web application that resembles a children&#8217;s book. The entire project is written in HTML5. Elegant animations and graceful transitions between pages give the application a booklike feel.</p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-3137"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-3137','','','0'); </script> or <a href="http://www.twitter.com/#!/tonyjesusdotcom" target="_blank">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-6/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Comparison Operators: Equal vs Identical</title>
		<link>http://www.tonyjesus.com/2011/php-comparison-operators-equal-vs-identical</link>
		<comments>http://www.tonyjesus.com/2011/php-comparison-operators-equal-vs-identical#respond</comments>
		<pubDate>Sun, 29 May 2011 22:00:32 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=600</guid>
		<description><![CDATA[One of the most common mistakes of PHP developers (especially at the beginning) is the tendency to confuse the equal operator (==) with the identical operator (===). Frequently, they decide to use only the equal operator and think that it will work in all cases, until the truth is revealed: it doesn&#8217;t.An easy way to [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-732" title="PHP logo" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/php-logo.jpg" alt="PHP logo" width="100" height="100" />One of the most common mistakes of PHP developers (especially at the beginning) is the tendency to confuse the <strong>equal operator</strong> (==) with the <strong>identical operator</strong> (===). Frequently, they decide to use only the equal operator and think that it will work in all cases, until the truth is revealed: it doesn&#8217;t.<span id="more-600"></span>An easy way to understand the difference is by checking the following example:</p>
<pre class="brush: php; title: ; notranslate">
// Case 1:
if(&quot;3&quot; == 3){
     echo &quot;They are equal&quot;;
}
else{
     echo &quot;They are different&quot;;
}

// It will output: They are equal

// Case 2:
if(&quot;3&quot; === 3){
     echo &quot;They are equal&quot;;
}
else{
     echo &quot;They are different&quot;;
}

// It will output: They are different

</pre>
<p>By using the <strong>equal operator</strong> we are checking if the values of the two operands are equal or not. So, in the first case, we are checking if the value of &#8220;3&#8221; is equal to the value of 3. Bear in mind that PHP tries to convert both operands to same value (&#8220;3&#8221; is a string with the value 3, and 3 is an integer with value 3, so, both operands have same value and <strong>are equal</strong>).</p>
<p>On the other hand, the <strong>identical operator</strong> checks the values as well as the type of operands. So, in the second case, we are checking if the value AND type (string) of &#8220;3&#8221; is equal to the value AND type (integer) of 3. So, they <strong>are not identical</strong>.</p>
<p>Do you know any situation where it is more convenient to use the identical instead of the equal operator? Share it in the comments section.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/php-comparison-operators-equal-vs-identical/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #5</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-5</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-5#comments</comments>
		<pubDate>Fri, 27 May 2011 22:00:27 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=245</guid>
		<description><![CDATA[In the collection of sites of this week, I&#8217;ve included some html5 related websites (please, be sure that you are using a html5 capable web browser, like Google Chrome or Safari). I really liked the MailChimp website because it is a great example of good design an usability as well as Goplan website. I also [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>In the collection of sites of this week, I&#8217;ve included some html5 related websites (please, be sure that you are using a html5 capable web browser, like <a href="http://www.google.com/chrome/" target="_blank">Google Chrome</a> or <a href="http://www.apple.com/safari/" target="_blank">Safari</a>). I really liked the MailChimp website because it is a great example of good design an usability as well as Goplan website. I also loved the Nike Better World website because of its navigation (using animations). Grip Limited and Simó close the list of this week.<span id="more-245"></span></p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://mailchimp.com/" target="_blank">MailChimp</a></h3>
<p style="text-align: center;"><a href="http://mailchimp.com/" target="_blank"><img class="aligncenter size-full wp-image-397" style="border: 0pt none;" title="MailChimp" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/mailchimp.com_.jpg" alt="Screenshot of MailChimp website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/mailchimp.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/mailchimp.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>MailChimp is a powerful, easy-to-use email marketing service. It helps you design email newsletters, share them on social networks, integrate with services you already use, and track your results. It also has an excellent and beautiful website with a large monkey image and a great color scheme that allows you to never get lost on it. A great example of how good design and usability can live together.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://goplanapp.com/" target="_blank">Goplan</a></h3>
<p style="text-align: center;"><a href="http://goplanapp.com/" target="_blank"><img class="aligncenter size-full wp-image-398" style="border: 0pt none;" title="goplan" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/goplanapp.com_.jpg" alt="Screenshot of goplan app website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/goplanapp.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/goplanapp.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Goplan lets you keep track of your projects and collaborate with your colleagues securely through an intuitive user interface. Its website is also a good example of usability. When you arrive at the home page, you can understand imediately the most important features of the software, as well as you have a kind of sitemap at the end of the page, allowing you navigate to any part of the website.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.nikebetterworld.com/" target="_blank">Nike Better World</a></h3>
<p style="text-align: center;"><a href="http://www.nikebetterworld.com/" target="_blank"><img class="aligncenter size-full wp-image-399" style="border: 0pt none;" title="Nike Better World" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/nikebetterworld.com_.jpg" alt="Screenshot of Nike Better World website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/nikebetterworld.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/nikebetterworld.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>The Nike Better World website uses HTML5, CSS 3 and JavaScript to create a unique scrolling storyboard-style experience. The site has an original interface and fancy animations.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.griplimited.com/" target="_blank">Grip Limited</a></h3>
<p style="text-align: center;"><a href="http://www.griplimited.com/" target="_blank"><img class="aligncenter size-full wp-image-400" style="border: 0pt none;" title="Grip Limited" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/griplimited.com_.jpg" alt="Screenshot of Grip Limited website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/griplimited.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/griplimited.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Grip Limited is an agency based in Toronto. They have a fun website where you can lose yourself in hours of searching and reading about the company. The content is presented in a series of collapsible columns, which users scroll through horizontally and vertically. Users are also able to drag and drop the website horizontally. The text is displayed in a carnival poster style using modern typefaces. Bold use black and orange is used throughout the site.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.simo.com.es/" target="_blank">Simó</a></h3>
<p style="text-align: center;"><a href="http://www.simo.com.es/" target="_blank"><img class="aligncenter size-full wp-image-401" style="border: 0pt none;" title="Simó" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/simo.com_.es_.jpg" alt="Screenshot of Simó website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/simo.com_.es_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/simo.com_.es_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>This is the portfolio of Alberto Simo, a designer that works on this area since 1997. A good example of how you can implement great animations without using Flash.</p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-7847"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-7847','','','0'); </script> or <a href="http://www.twitter.com/#!/tonyjesusdotcom">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-5/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP Shorthand: Using Ternary Operators (?:) instead of If-Else Statements</title>
		<link>http://www.tonyjesus.com/2011/php-ternary-operators</link>
		<comments>http://www.tonyjesus.com/2011/php-ternary-operators#comments</comments>
		<pubDate>Sun, 22 May 2011 22:34:13 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=589</guid>
		<description><![CDATA[All programmers need to agree with me when I say: One of the most used and most important parts of our code are the if-else statements. No matter what the programming language, we can&#8217;t avoid the comparisons. We need to check if a variable is set or if it stores a specific value. if-else statements [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-728" title="ternary_operator" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/ternary_operator.png" alt="" width="116" height="105" />All programmers need to agree with me when I say: One of the most used and most important parts of our code are the <strong>if-else statements</strong>. No matter what the programming language, we can&#8217;t avoid the comparisons. We need to check if a variable is set or if it stores a specific value. if-else statements are useful, easy to read and understand. However, they can be too long.<span id="more-589"></span></p>
<p>PHP gives us the possibility to reduce our lines of code by using <strong>ternary operators</strong>. Ternary operators are shortcut comparison operators that replace if-else statements in a PHP script.  In order to use ternary operators, the only thing that you need to do is to respect the structure: (condition) ? (value if true) : (value if false).</p>
<p>For example, you can write the following if-else statement:</p>
<pre class="brush: php; title: ; notranslate">

if($food == &quot;spaghetti&quot;){
     $message = &quot;Oh yeah!&quot;;
}
else{
     $message = &quot;Oh no!&quot;;
}

</pre>
<p>Of this way by using ternary operators:</p>
<pre class="brush: php; title: ; notranslate">

$message = ($food == &quot;spaghetti&quot;) ? &quot;Oh yeah!&quot; : &quot;Oh no!&quot;;

</pre>
<p>That&#8217;s it! One single line.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/php-ternary-operators/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #4</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-4</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-4#respond</comments>
		<pubDate>Fri, 20 May 2011 22:00:15 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=234</guid>
		<description><![CDATA[This week, my collection contains a great website that shows panoramic pictures from some cities around the world. It has some high resolution pictures too. My list also includes a website that can help you test the technical skills of the candidates for your company; the website of Realmac Software, a company who develops applications [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This week, my collection contains a great website that shows panoramic pictures from some cities around the world. It has some high resolution pictures too. My list also includes a website that can help you test the technical skills of the candidates for your company; the website of Realmac Software, a company who develops applications for Mac; Amazee Labs, a web design company and finally, Barley&#8217;s Greenville website.<span id="more-234"></span></p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.360cities.net/" target="_blank">360 Cities</a></h3>
<p style="text-align: center;"><a href="http://www.360cities.net/" target="_blank"><img class="aligncenter size-full wp-image-410" style="border: 0pt none;" title="360 Cities" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/360cities.net_.jpg" alt="Screenshot of 360 Cities website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/360cities.net_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/360cities.net_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>360 Cities collects, commissions, hosts, and organizes the world’s best immersive panoramic photography on the web. It contains a large network of virtual tours and spherical virtual reality photography. More than 50 cities from all over the world with thousands of high-resolution interactive panoramas. Try the <a href="http://www.360cities.net/london-photo-en.html" target="_blank">London 80 GigaPixels panorama</a>. Simply amazing!</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.realmacsoftware.com/" target="_blank">Realmac Software</a></h3>
<p style="text-align: center;"><a href="http://www.realmacsoftware.com/" target="_blank"><img class="aligncenter size-full wp-image-411" style="border: 0pt none;" title="Realmac Software" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/realmacsoftware.com_.jpg" alt="Screenshot of Realmac Software" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/realmacsoftware.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/realmacsoftware.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Realmac Software is a small independent company that develops easy to use applications for Mac. They have a clean and nice looking website that highlights their main applications.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.amazeelabs.com/" target="_blank">Amazee Labs</a></h3>
<p style="text-align: center;"><a href="http://www.amazeelabs.com/" target="_blank"><img class="aligncenter size-full wp-image-412" style="border: 0pt none;" title="Amazee Labs" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/amazeelabs.com_.jpg" alt="Screenshot of Amazee Labs website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/amazeelabs.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/amazeelabs.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Amazee Labs is a Swiss company that specializes in developing and running community platforms. Their website uses a handwritten style mixed with a Courier font and a simple but perfect background image.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.barleysgville.com/" target="_blank">Barley&#8217;s Greenville</a></h3>
<p style="text-align: center;"><a href="http://www.barleysgville.com/" target="_blank"><img class="aligncenter size-full wp-image-413" style="border: 0pt none;" title="Barley's Greenville" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/barleysgville.com_.jpg" alt="Screenshot of Barley's Greenville website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/barleysgville.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/barleysgville.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Barley’s Is A Restaurant Located in Greenville. They use two big images to highlight their Beer Selection and Food Menu. I also liked their smooth mouse over effects.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://skilltesting.com/" target="_blank">SkillTesting</a></h3>
<p style="text-align: center;"><a href="http://skilltesting.com/" target="_blank"><img class="aligncenter size-full wp-image-414" style="border: 0pt none;" title="SkillTesting" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/skilltesting.com_.jpg" alt="Screenshot of SkillTesting website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/skilltesting.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/skilltesting.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>SkillTesting is a web application that allows you to create custom tests tailored to your specific technical needs. You can have your candidates write code right in their browser without downloading any browser plugins. It&#8217;s a good an original idea that closes the list of sites of this week.</p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-8116"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-8116','','','0'); </script> or <a href="http://www.twitter.com/#!/tonyjesusdotcom" target="_blank">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-4/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to check any website status using PHP</title>
		<link>http://www.tonyjesus.com/2011/how-to-check-website-status-using-php</link>
		<comments>http://www.tonyjesus.com/2011/how-to-check-website-status-using-php#comments</comments>
		<pubDate>Sat, 14 May 2011 23:26:50 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=554</guid>
		<description><![CDATA[Sometimes we need a tool able to monitor the activity and status of a specific website. For example, in this blog, I have the Sites of the Week series that displays the best websites that I&#8217;ve found in the week. I don&#8217;t want my readers to click on one of those links and get an [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img class="size-thumbnail wp-image-725 alignleft" title="status" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/status-150x150.jpg" alt="" width="150" height="150" />Sometimes we need a tool able to monitor the activity and status of a specific website. For example, in this blog, I have the <a title="Sites of the Week" href="http://www.tonyjesus.com/category/sites-week-category">Sites of the Week</a> series that displays the best websites that I&#8217;ve found in the week. I don&#8217;t want my readers to click on one of those links and get an error page. What would they think about me? So, I need a service or tool to check all my sites of the week status and then notify me when any of them are down.<span id="more-554"></span></p>
<p>There are lots of services over the web where you can pay to have a website monitored and be notified when it&#8217;s down. However, they are making good money for a service that you can easily offer to yourself with minimum effort. I&#8217;m going to show you an easy to use function that will allow you to check if a website is down. This function is written in PHP and uses cURL library to get the website&#8217;s status.</p>
<pre class="brush: php; title: ; notranslate">
/**
  * Function to check a website status
  * @param string url the url of the website to test
  * @return boolean true if the site is up, false otherwise
*/

function checkStatus($url){
     $agent = &quot;Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; pt-pt) AppleWebKit/533.20.25 (KHTML, like Gecko) Version/5.0.4 Safari/533.20.27&quot;;

     // initializes curl session
     $ch=curl_init();

     // sets the URL to fetch
     curl_setopt ($ch, CURLOPT_URL,$url );

     // sets the content of the User-Agent header
     curl_setopt($ch, CURLOPT_USERAGENT, $agent);

     // return the transfer as a string
     curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);

     // disable output verbose information
     curl_setopt ($ch,CURLOPT_VERBOSE,false);

     // max number of seconds to allow cURL function to execute
     curl_setopt($ch, CURLOPT_TIMEOUT, 5);

     curl_exec($ch);

     // get HTTP response code
     $httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);

     curl_close($ch);

     if($httpcode&gt;=200 &amp;&amp; $httpcode&lt;300)
          return true;
     else
          return false;
}
</pre>
<h3>Example of use</h3>
<pre class="brush: php; title: ; notranslate">

if(checkStatus(&quot;http://www.tonyjesus.com&quot;))
     echo &quot;Website is up&quot;;
else
     echo &quot;Website is down&quot;;

</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/how-to-check-website-status-using-php/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #3</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-3</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-3#respond</comments>
		<pubDate>Fri, 13 May 2011 22:00:39 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=232</guid>
		<description><![CDATA[For the list of this week I chose the website of two companies: one which develops applications for iPhone and IPad and the other that builds really amazing WordPress themes. I&#8217;ve also selected Wing Cheng&#8217;s portfolio; ColorSnapper, a Mac application that &#8220;replaces&#8221; the DigitalColor Meter and, finally, a website with a great animation that explains [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>For the list of this week I chose the website of two companies: one which develops applications for iPhone and IPad and the other that builds really amazing WordPress themes. I&#8217;ve also selected Wing Cheng&#8217;s portfolio; ColorSnapper, a Mac application that &#8220;replaces&#8221; the DigitalColor Meter and, finally, a website with a great animation that explains what is a life insurance.<span id="more-232"></span></p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.wingcheng.com/" target="_blank">Wing Cheng</a></h3>
<p style="text-align: center;"><a href="http://www.wingcheng.com/" target="_blank"><img class="aligncenter size-full wp-image-451" style="border: 0pt none;" title="Wing Cheng" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/wingcheng.com_.jpg" alt="Screenshot of Wing Cheng website portfolio" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/wingcheng.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/wingcheng.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>This is the personal homepage of Wing Cheng, a webdesigner from The Netherlands. It looks like a real book and must be read like one as users need to go through all pages to reach the end. The one-page design combined with the abundance of white space works perfectly here. The website also features some great illustration work. Instead of putting previews of design work, like most portfolios do, the designer chose to create simple drawings which can then be seen in their actual colored form once clicked on.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://themify.me/" target="_blank">Themify</a></h3>
<p style="text-align: center;"><a href="http://themify.me/" target="_blank"><img class="aligncenter size-full wp-image-452" style="border: 0pt none;" title="Themify" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/themify.me_.jpg" alt="Screenshot of Themify website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/themify.me_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/themify.me_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Themify is a team of WordPress experts who build awesome WordPress Themes. Their themes are packed with a feature-rich framework and a number of useful custom widgets. They provide a framework that helps you setup a beautiful and functional website in minutes. No coding or technical skills are required.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.metlife.com/individual/financial-tools/simplified/index.html" target="_blank">Simplified from Metlife</a></h3>
<p style="text-align: center;"><a href="http://www.metlife.com/individual/financial-tools/simplified/index.html" target="_blank"><img class="aligncenter size-full wp-image-454" style="border: 0pt none;" title="Simplified from Metlife" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/metlife.com_.jpg" alt="Screenshot of Metlife website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/metlife.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/metlife.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>A useful website with good animation, explaining how a life insurance works.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.colorsnapper.com/" target="_blank">ColorSnapper</a></h3>
<p style="text-align: center;"><a href="http://www.colorsnapper.com/" target="_blank"><img class="aligncenter size-full wp-image-455" style="border: 0pt none;" title="ColorSnapper" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/colorsnapper.com_.jpg" alt="Screenshot of ColorSnapper website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/colorsnapper.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/colorsnapper.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>ColorSnapper is a tool for designers who are looking for a better method of color picking on the Mac. This little application, unlike Apple’s pre-bundled DigitalColor Meter, is located in the menubar for quick access. With ColorSnapper, you can quickly pick colors and retrieve them within any application you are working in.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.tapmates.com/" target="_blank">tapmates</a></h3>
<p style="text-align: center;"><a href="http://www.tapmates.com/" target="_blank"><img class="aligncenter size-full wp-image-456" style="border: 0pt none;" title="tapmates" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/tapmates.com_.jpg" alt="Screenshot of tapmates website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/tapmates.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/tapmates.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>Tapmates is a software company founded in 2009 based in Prague. They design apps for Mac, iPhone, and iPad with a heavy focus on design.</p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-7330"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-7330','','','0'); </script> or <a href="http://www.twitter.com/#!/tonyjesusdotcom" target="_blank">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20 Free and Useful Mac Apps</title>
		<link>http://www.tonyjesus.com/2011/20-free-useful-mac-apps</link>
		<comments>http://www.tonyjesus.com/2011/20-free-useful-mac-apps#respond</comments>
		<pubDate>Sun, 08 May 2011 19:00:52 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=488</guid>
		<description><![CDATA[If you’ve just bought a new Mac and don&#8217;t know what to install, this article is for you. If you are looking for alternatives to some applications you&#8217;re using in your Mac, the following list may help you too. I&#8217;ve been a Mac user for 6 years. During this time, I&#8217;ve installed and uninstalled a [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>If you’ve just bought a new Mac and don&#8217;t know what to install, this article is for you. If you are looking for alternatives to some applications you&#8217;re using in your Mac, the following list may help you too.</p>
<p>I&#8217;ve been a Mac user for 6 years. During this time, I&#8217;ve installed and uninstalled a lot of applications in order to test its features and value. Some applications were only installed and I&#8217;ve never used them again. Others (a very small group) are used by me every single day. I’ve compiled a clean list of 20 useful free Mac applications that you can download and start using today. These apps include some categories and can be used by anybody although the entire list is dedicated to developers.</p>
<p><span id="more-488"></span></p>
<h3><a href="http://adium.im/" target="_blank"><img class="alignleft size-full wp-image-490" style="border: 0pt none;" title="Adium Logo" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/adium.png" alt="Adium's Logo" width="128" height="128" /></a><a href="http://adium.im/" target="_blank">Adium</a></h3>
<p>Adium is a free and open source instant messaging application for Mac OS X, written using Cocoa API. It allows you to connect to any number of messaging accounts on any combination of supported messaging services like AIM, MSN, Yahoo and more.</p>
<p style="text-align: left;">&nbsp;</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.freemacsoft.net/AppCleaner/" target="_blank">AppCleaner</a><a href="http://www.freemacsoft.net/AppCleaner/" target="_blank"><img class="alignright size-full wp-image-495" style="border: 0pt none;" title="AppCleaner icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/appcleaner.png" alt="AppCleaner icon" width="128" height="128" /></a></h3>
<p>AppCleaner is a small application which allows you to uninstall apps. Simply drag and drop an application onto the AppCleaner window. It will search for all related files and you can delete them by clicking the delete button.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://metaquark.de/appfresh/" target="_blank"><img class="alignleft size-full wp-image-498" style="border: 0pt none;" title="Appfresh icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/appfresh.png" alt="Appfresh icon" width="128" height="128" /></a><a href="http://metaquark.de/appfresh/" target="_blank">AppFresh</a></h3>
<p>AppFresh is an application that helps you to keep all applications, widgets, preference panes and application plugins installed on your Mac up to date. All from one place, easy to use and fully integrated into Mac OS X.</p>
<p style="text-align: left;">&nbsp;</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://cyberduck.ch/" target="_blank">Cyberduck</a><a href="http://cyberduck.ch/" target="_blank"><img class="alignright size-full wp-image-501" style="border: 0pt none;" title="Cyberduck icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/cyberduck.icon_.png" alt="Cyberduck icon" width="128" height="128" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/cyberduck.icon_-150x150.png 150w, http://www.tonyjesus.com/wp-content/uploads/2011/04/cyberduck.icon_.png 192w" sizes="(max-width: 128px) 100vw, 128px" /></a></h3>
<p>Cyberduck is an open source FTP, SFTP, WebDAV, Cloud Files and Amazon S3 browser for Mac. It features an easy to use interface, allows for the efficient browsing of large folder structures as well as quickly previewing files with Quick Look.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.dropbox.com/" target="_blank"><img class="alignleft size-full wp-image-504" style="border: 0pt none;" title="Dropbox icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/dropbox_logo.png" alt="Dropbox icon" width="128" height="128" /></a><a href="http://www.dropbox.com/" target="_blank">Dropbox</a></h3>
<p>Dropbox is an appplication that syncs your files online and across your computers. Put your files into your Dropbox on one computer, and they’ll be instantly available on any of your other computers that you’ve installed Dropbox on (Windows, Mac, and Linux too!).</p>
<p style="text-align: left;">&nbsp;</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://toolbar.google.com/gmail-helper/notifier_mac.html" target="_blank">Google Notifier</a><a href="http://toolbar.google.com/gmail-helper/notifier_mac.html" target="_blank"><img class="alignright size-full wp-image-508" style="border: 0pt none;" title="Google Notifier icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/googlenotifier.png" alt="Google Notifier icon" width="128" height="128" /></a></h3>
<p>Google Notifier is an application that shows you alerts in your menu bar, so you can see when you have new Gmail messages or upcoming Google Calendar events without having to open a web browser.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://growl.info/about.php" target="_blank"><img class="alignleft size-full wp-image-512" style="border: 0pt none;" title="Growl icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/growl.png" alt="Growl icon" width="128" height="128" /></a><a href="http://growl.info/about.php" target="_blank">Growl</a></h3>
<p>Growl is a notification system for Mac. It allows applications that support Growl to send you notifications. It offers you complete control over which notifications are shown and how they are displayed because you can easily turn notifications (specific ones or all of them) off.</p>
<p style="text-align: left;">&nbsp;</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.islayer.com/apps/istatpro/" target="_blank">iStat Pro</a><a href="http://www.islayer.com/apps/istatpro/" target="_blank"><img class="alignright size-full wp-image-514" style="border: 0pt none;" title="iStat Pro icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/istatpro.png" alt="iStat Pro icon" width="128" height="128" /></a></h3>
<p>iStat Pro is a highly configurable widget that lets you monitor every aspect of your Mac, including CPU, memory, disks, network, battery, temperatures, fans, load &amp; uptime and processes.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.alessandrococco.com/p/jcodecollector_22.html" target="_blank"><img class="alignleft size-full wp-image-516" style="border: 0pt none;" title="jCodeCollector icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/jcc.png" alt="jCodeCollector icon" width="128" height="128" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/jcc-150x150.png 150w, http://www.tonyjesus.com/wp-content/uploads/2011/04/jcc.png 200w" sizes="(max-width: 128px) 100vw, 128px" /></a><a href="http://www.alessandrococco.com/p/jcodecollector_22.html" target="_blank">jCodeCollector</a></h3>
<p>jCodeCollector is a multiplatform application that helps you to manage your code snippets. It&#8217;s written in Java and it&#8217;s available for Mac OS X, Windows XP/Vista/7 and Linux. It allows you to store, tag, comment your snippets and find quickly the code you need.</p>
<p style="text-align: left;">&nbsp;</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.mamp.info/en/mamp/index.html" target="_blank">MAMP</a><a href="http://www.mamp.info/en/mamp/index.html" target="_blank"><img class="alignright size-full wp-image-519" style="border: 0pt none;" title="MAMP icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/mamp_icon.png" alt="MAMP icon" width="128" height="128" /></a></h3>
<p>MAMP stands for: Macintosh, Apache, Mysql and PHP. With just a few mouse-clicks, you can install Apache, PHP and MySQL for Mac OS X. MAMP installs a local server environment in a matter of seconds on your Mac OS X computer, be it PowerBook or iMac.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.titanium.free.fr/download.php" target="_blank"><img class="alignleft size-full wp-image-521" style="border: 0pt none;" title="OnyX icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/onyx.png" alt="OnyX icon" width="128" height="128" /></a><a href="http://www.titanium.free.fr/download.php" target="_blank">OnyX</a></h3>
<p>OnyX is a utility which allows you to verify the Startup Disk and the structure of its System files, to run misc tasks of system maintenance, to configure some hidden parameters of the Finder, Dock, QuickTime, Safari, iTunes, Spotlight and many Apple’s applications, to delete caches, to remove a certain number of files and folders and more.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.openoffice.org/" target="_blank">OpenOffice</a><a href="http://www.openoffice.org/" target="_blank"><img class="alignright size-full wp-image-526" style="border: 0pt none;" title="OpenOffice icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/openoffice_icon.png" alt="OpenOffice icon" width="128" height="128" /></a></h3>
<p>OpenOffice is the leading open-source office software suite for word processing, spreadsheets, presentations, graphics, databases and more. It is available in many languages and works on all common computers. It can be downloaded and used completely free of charge for any purpose.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.perian.org/" target="_blank"><img class="alignleft size-full wp-image-530" style="border: 0pt none;" title="Perian icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/perian.png" alt="Perian icon" width="128" height="128" /></a><a href="http://www.perian.org/" target="_blank">Perian</a></h3>
<p>Perian is a free, open source QuickTime component that adds native support for many popular video formats.</p>
<p style="text-align: left;">&nbsp;</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://qsapp.com/" target="_blank">Quicksilver</a><a href="http://qsapp.com/" target="_blank"><img class="alignright size-full wp-image-532" style="border: 0pt none;" title="Quicksilver icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/quicksilver_icon.png" alt="Quicksilver icon" width="128" height="128" /></a></h3>
<p>Quicksilver is a light, fast and free Mac OS X application that gives you the power to control your Mac with keystrokes alone. Want to start the Mail application? Just type “mail” and hit return. Too much typing? Just type “m” and select Mail from the list of results.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.microsoft.com/mac/remote-desktop-client" target="_blank"><img class="alignleft size-full wp-image-534" style="border: 0pt none;" title="Remote Desktop Connection icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/RDC.png" alt="Remote Desktop Connection icon" width="128" height="128" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/04/RDC-150x150.png 150w, http://www.tonyjesus.com/wp-content/uploads/2011/04/RDC-300x300.png 300w, http://www.tonyjesus.com/wp-content/uploads/2011/04/RDC.png 512w" sizes="(max-width: 128px) 100vw, 128px" /></a><a href="http://www.microsoft.com/mac/remote-desktop-client" target="_blank">Remote Desktop Connection</a></h3>
<p>Remote Desktop Connection is an application that allows you to quickly yet securely connect your Macintosh computer to a Windows-based computer and work with its files, applications, devices and networks.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.peterborgapps.com/smultron/" target="_blank">Smultron</a><a href="http://www.peterborgapps.com/smultron/" target="_blank"><img class="alignright size-full wp-image-536" style="border: 0pt none;" title="Smultron icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/Smultron.png" alt="Smultron icon" width="128" height="128" /></a></h3>
<p>Smultron is a text editor designed to be easy and intuitive for both beginners and advanced users. Some of its features are line numbers, syntax colouring for many different languages, functions list, support for text encodings, snippets, HTML preview, split window, multi-document find and replace with regular expressions, possibility to show invisible characters, tabs and more.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.unrarx.com/" target="_blank"><img class="alignleft size-full wp-image-538" style="border: 0pt none;" title="unrarx icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/unrarx-icon.png" alt="unrarx icon" width="128" height="128" /></a><a href="http://www.unrarx.com/" target="_blank">UnrarX</a></h3>
<p>UnRarX is a Mac OS X Cocoa application that allows you to expand rar archives and restore corrupted or missing archives using par2.</p>
<p style="text-align: left;">&nbsp;</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.utorrent.com/" target="_blank">uTorrent</a><a href="http://www.utorrent.com/" target="_blank"><img class="alignright size-full wp-image-540" style="border: 0pt none;" title="uTorrent icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/utorrent-icon.png" alt="uTorrent icon" width="128" height="128" /></a></h3>
<p>uTorrent is a BitTorrent client designed to use minimal computer resources while offering functionality comparable to other larger BitTorrent clients. To be honest, I don&#8217;t know what this program does. I think it was already installed on my Mac when I bought it. It&#8217;s the first time that I hear about BitTorrent  <img src="https://s.w.org/images/core/emoji/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /> .</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.videolan.org/" target="_blank"><img class="alignleft size-full wp-image-542" style="border: 0pt none;" title="VLC icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/vlc.png" alt="VLC icon" width="128" height="128" /></a><a href="http://www.videolan.org/" target="_blank">VLC</a></h3>
<p>VLC is a free and open source cross-platform multimedia player and framework that plays most multimedia files as well as DVD, Audio CD, VCD, and various streaming protocols.</p>
<p style="text-align: left;">&nbsp;</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.yellowmug.com/yemuzip/" target="_blank">YemuZip</a><a href="http://www.yellowmug.com/yemuzip/" target="_blank"><img class="alignright size-full wp-image-543" style="border: 0pt none;" title="YemuZip icon" src="http://www.tonyjesus.com/wp-content/uploads/2011/04/yemuzip-icon.png" alt="YemuZip icon" width="128" height="128" /></a></h3>
<p style="text-align: left;">YemuZip is an easy-to-use application for making zip files. Just drag, drop, give a name to your zip file and you&#8217;re done. Mac&#8217;s built-in compress function makes zip files that contain Mac specific information that, when extracted on a PC, looks like garbage. YemuZip lets you choose between a PC-friendly format and a Mac format that preserve all the Mac-specific metadata.</p>
<p style="text-align: left;">&nbsp;</p>
<h3>Help me find more!</h3>
<p>These are some free applications that I use everyday and I consider very useful. There are a lot of websites that list +100 free applications for Mac, but most of them are rarely used or even used only once: when installed for testing. I&#8217;ve tried to create a &#8220;clean&#8221; list useful for everyone (especially developers). However, if you know any free application that can be used everyday, be sure to leave its link so we can all check it out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/20-free-useful-mac-apps/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #2</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-2</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-2#respond</comments>
		<pubDate>Fri, 06 May 2011 22:00:47 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=227</guid>
		<description><![CDATA[This week my collection of websites contains Hughes, a communication agency; Mediocore, the personal portfolio of David Arazim; Kaleidoscope, a file comparison application for Mac; Vegas Uncork&#8217;d, the website of a food and wine festival and &#8220;We Choose the Moon&#8221;, an interactive re-creation of the first mission to the moon. &#160; Hughes &#160; Mediocore &#160; [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This week my collection of websites contains Hughes, a communication agency; Mediocore, the personal portfolio of David Arazim; Kaleidoscope, a file comparison application for Mac; Vegas Uncork&#8217;d, the website of a food and wine festival and &#8220;We Choose the Moon&#8221;, an interactive re-creation of the first mission to the moon.<span id="more-227"></span></p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://wearehughes.com/index.html" target="_blank">Hughes</a></h3>
<p style="text-align: center;"><a href="http://wearehughes.com/index.html" target="_blank"><img class="aligncenter size-full wp-image-468" style="border: 0pt none;" title="Hughes" src="http://www.tonyjesus.com/wp-content/uploads/2011/03/wearehughes.com_.jpg" alt="Screenshot of Hughes website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/03/wearehughes.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/03/wearehughes.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.mediocore.cz/" target="_blank">Mediocore</a></h3>
<p style="text-align: center;"><a href="http://www.mediocore.cz/" target="_blank"><img class="aligncenter size-full wp-image-469" style="border: 0pt none;" title="Mediocore" src="http://www.tonyjesus.com/wp-content/uploads/2011/03/mediocore.cz_.jpg" alt="Screenshot of Mediocore website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/03/mediocore.cz_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/03/mediocore.cz_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.kaleidoscopeapp.com/" target="_blank">Kaleidoscope</a></h3>
<p style="text-align: center;"><a href="http://www.kaleidoscopeapp.com/" target="_blank"><img class="aligncenter size-full wp-image-471" style="border: 0pt none;" title="Kaleidoscope" src="http://www.tonyjesus.com/wp-content/uploads/2011/03/kaleidoscopeapp.com_.jpg" alt="Screenshot of Kaleidoscope app website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/03/kaleidoscopeapp.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/03/kaleidoscopeapp.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.vegasuncorked.com/" target="_blank">Vegas Uncork&#8217;d</a></h3>
<p style="text-align: center;"><a href="http://www.vegasuncorked.com/" target="_blank"><img class="aligncenter size-full wp-image-472" style="border: 0pt none;" title="Vegas Uncorked" src="http://www.tonyjesus.com/wp-content/uploads/2011/03/vegasuncorked.com_.jpg" alt="Screenshot of Vegas Uncorked website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/03/vegasuncorked.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/03/vegasuncorked.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.wechoosethemoon.org/" target="_blank">We Choose The Moon</a></h3>
<p style="text-align: center;"><a href="http://www.wechoosethemoon.org/" target="_blank"><img class="aligncenter size-full wp-image-473" style="border: 0pt none;" title="We Choose The Moon" src="http://www.tonyjesus.com/wp-content/uploads/2011/03/wechoosethemoon.org_.jpg" alt="Screenshot fo We Choose The Moon website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/03/wechoosethemoon.org_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/03/wechoosethemoon.org_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-9466"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-9466','','','0'); </script> or <a href="http://twitter.com/#!/tonyjesusdotcom" target="_blank">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some useful CSS snippets all developers should know</title>
		<link>http://www.tonyjesus.com/2011/useful-css-snippets-for-developers</link>
		<comments>http://www.tonyjesus.com/2011/useful-css-snippets-for-developers#comments</comments>
		<pubDate>Sun, 01 May 2011 19:57:11 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=132</guid>
		<description><![CDATA[There is no doubt that CSS is one of the most useful resources that all developers have when creating a website. In fact, along with HTML, it is one of the most important languages ​​for creating web pages. While HTML provides the structure for the page, CSS allows for the styling of the HTML code. [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-138" title="Example of CSS code" src="http://www.tonyjesus.com/wp-content/uploads/2011/03/css-300x182.png" alt="Image with CSS code" width="116" height="70" />There is no doubt that CSS is one of the most useful resources that all developers have when creating a website. In fact, along with HTML, it is one of the most  important languages ​​for creating web pages. While HTML provides the  structure for the page, CSS allows for the styling of the HTML code.</p>
<p>In this post, I will show you some useful CSS snippets that you can use when developing a website.<br />
<span id="more-132"></span></p>
<h3>1. Style links depending on file format</h3>
<p>This can be used to show small icons next to the links telling the user if the linked file is a .pdf, an image, a .doc and much more.</p>
<pre class="brush: css; title: ; notranslate">

/* pdf files */
a[href$=&quot;.pdf&quot;]{
     background: url(pdf.gif) no-repeat center left;
     padding-left: 20px;
}

/* doc files */
a[href$=&quot;.doc&quot;]{
     background: url(doc.gif) no-repeat center left;
     padding-left: 20px;
}

</pre>
<p style="text-align: left;">&nbsp;</p>
<h3>2. Style links depending of their type</h3>
<p>This snippet is very similar to the previous one. However, instead of showing the file type, it allows to display the link type (external, email, etc).</p>
<pre class="brush: css; title: ; notranslate">

/* external links */
a[href^=&quot;http://&quot;]{
     background: url(external.png) no-repeat center left;
     padding-left: 20px;
}

/* mail links */
a[href^=&quot;mailto:&quot;]{
     background: url(mail.png) no-repeat center left;
     padding-left: 20px;
}

</pre>
<p style="text-align: left;">&nbsp;</p>
<h3>3. Cross-browser opacity</h3>
<p>Not all browsers support the CSS3 opacity property. However we can make opacity work across browsers by using specific code for each one of them.</p>
<pre class="brush: css; title: ; notranslate">

.opacity {
     -moz-opacity:.80;
     filter:alpha(opacity=80);
     opacity:.80
}

</pre>
<p style="text-align: left;">&nbsp;</p>
<h3>4. Center a website</h3>
<p>A very common design tendency is keeping the website centered horizontally in the browser. This can be achieved by using the following lines of code.</p>
<pre class="brush: css; title: ; notranslate">

.maincontainer{
     margin: 0 auto;
     width: 960px;
}

</pre>
<p style="text-align: left;">&nbsp;</p>
<h3>5. CSS sprite button</h3>
<p>Currently, during the creation of a website, we have to consider all aspects to improve its usability. One aspect is getting a way to indicate to the user that he has the mouse pointer over a button. We can do this by using a sprite, ie, changing the background position of an image. So, instead of having multiple images, we can have only one (this means that we will need less requests to the server) and simply change its background position using the following code.</p>
<pre class="brush: css; title: ; notranslate">

a.button{
     background: url(sprite.png) no-repeat;
     display: block;
     height: 20px;
     width: 150px;
}

/* when mouse is over the button */
a.button:hover {
     background-position: 0 -20px;
}

</pre>
<p style="text-align: left;">&nbsp;</p>
<h3>6. Preloading images with CSS</h3>
<p>On a lot of websites, when we place the mouse pointer over a button, the image background changes. However, on most of these websites, we will notice a small delay when this happens. This is because the browser needs to request the new background from the server. This delay can be eliminated by preloading the required images when the page is loaded.</p>
<pre class="brush: css; title: ; notranslate">
#imagepreloader {
     background-image: url(path/to/image1.png);
     background-image: url(path/to/image2.png);
     background-image: url(path/to/image3.png);
     background-image: url(path/to/image4.png);
     background-image: url();
     display: inline;
     height: 0px;
     width: 0px;
}

</pre>
<p style="text-align: left;">&nbsp;</p>
<h3>7. text-transform property</h3>
<p>By using this property, you can make sure that certain blocks of text will be displayed, either on uppercase, lowercase or only the first letter of each word in uppercase, regardless of the manner in which the text was inserted into the website.</p>
<pre class="brush: css; title: ; notranslate">

/* Transforms the first character of each word to uppercase  */
p.cap{
     text-transform: capitalize;
}

/* Transforms all characters to uppercase  */
p.upper{
     text-transform: uppercase;
}

/* Transforms all characters to lowercase  */
p.lower{
     text-transform: lowercase;
}

</pre>
<p style="text-align: left;">&nbsp;</p>
<h3>8. Flip images</h3>
<p>Flipping an image instead of loading a new one can be useful in some situations. For example, if you need to place an arrow in different directions in the same page, you can just this trick.</p>
<pre class="brush: css; title: ; notranslate">

img.flip {
     -moz-transform: scaleX(-1);
     -o-transform: scaleX(-1);
     -webkit-transform: scaleX(-1);
     transform: scaleX(-1);
     filter: FlipH;
     -ms-filter: &quot;FlipH&quot;;
}

</pre>
<p style="text-align: left;">&nbsp;</p>
<h3>9. CSS Drop caps</h3>
<p>Drop caps can easily be done by using the CSS pseudo-element <strong>:first-letter</strong>. This should work in all modern browsers.</p>
<pre class="brush: css; title: ; notranslate">

p:first-letter {
     background: #ddd;
     display: block;
     float: left;
     font-family: Helvetica;
     font-size: 1.4em;
     margin: 5px 5px 0 0;
}

</pre>
<p style="text-align: left;">&nbsp;</p>
<h3>10. Target IE7 (and below) and IE6 (specifically)</h3>
<p>We all know about this problem. I can&#8217;t understand the reason, but we always need to add some fixes and hacks to target the Evil IE6 and its son IE7. The most used technique is to create a different CSS file with specific instructions and add conditional comments on html page. By using the following lines, you will be able to target these two &#8220;special browsers&#8221;.</p>
<pre class="brush: css; title: ; notranslate">

.div {
     background: red; /* modern browsers */
     *background: green; /* IE 7 and below */
     _background: blue; /* IE6 exclusively */
}

</pre>
<p>Do you know other useful techniques? You are invited to share them with me and the world in the comments section.</p>
<p style="text-align: left;">&nbsp;</p>
<h3>Bonus: How to target mobile devices?</h3>
<p>By HTML:</p>
<pre class="brush: xml; title: ; notranslate">

&lt;link rel=&quot;stylesheet&quot; href=&quot;handheld.css&quot; media=&quot;handheld&quot;/&gt;

</pre>
<p>By CSS via @media</p>
<pre class="brush: css; title: ; notranslate">

@media screen { /* rules for computer screens */ }
@media handheld { /* rules for handheld devices */ }

</pre>
<p>or using @import</p>
<pre class="brush: css; title: ; notranslate">

@import &quot;screen.css&quot; screen;
@import &quot;handheld.css&quot; handheld;

</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/useful-css-snippets-for-developers/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sites of the Week #1</title>
		<link>http://www.tonyjesus.com/2011/sites-of-the-week-1</link>
		<comments>http://www.tonyjesus.com/2011/sites-of-the-week-1#respond</comments>
		<pubDate>Fri, 29 Apr 2011 22:00:27 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Sites of the Week]]></category>
		<category><![CDATA[sites of the week]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=188</guid>
		<description><![CDATA[I&#8217;m proud to introduce a new series of articles which feature my weekly selection of websites. This list will include websites with stunning designs, cool animations and effects as well as useful applications. In this week&#8217;s collection, we will see Jan Ploch&#8217;s online portfolio, Wanderfly, Cuban Council and others. &#160; Jan Ploch&#8217;s Online Portfolio This [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m proud to introduce a new series of articles which feature my weekly selection of websites. This list will include websites with stunning designs, cool animations and effects as well as useful applications. In this week&#8217;s collection, we will see Jan Ploch&#8217;s online portfolio, Wanderfly, Cuban Council and others.<span id="more-188"></span></p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.janploch.de/" target="_blank">Jan Ploch&#8217;s Online Portfolio</a></h3>
<p style="text-align: center;"><a href="http://www.janploch.de" target="_blank"><img class="aligncenter size-full wp-image-281" style="border: 0pt none;" title="Jan Ploch’s Online Portfolio" src="http://www.tonyjesus.com/wp-content/uploads/2011/03/janploch.de_.jpg" alt="Screenshot of Jan Ploch’s Online Portfolio" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/03/janploch.de_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/03/janploch.de_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>This is the <a href="http://www.janploch.de/" target="_blank">Online Porfolio of Jan Ploch</a>, a German web-designer. Features a very interesting and original &#8220;filling bottle&#8221; effect and uses a nice vertical navigation.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.wanderfly.com/" target="_blank">Wanderfly</a></h3>
<p style="text-align: center;"><a href="http://www.wanderfly.com/" target="_blank"><img class="aligncenter size-full wp-image-282" style="border: 0pt none;" title="wanderfly" src="http://www.tonyjesus.com/wp-content/uploads/2011/03/wanderfly.com_.jpg" alt="Screenshot of wanderfly website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/03/wanderfly.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/03/wanderfly.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p><a href="http://www.wanderfly.com/" target="_blank">Wanderfly</a> is a highly customizable recomendation engine that simply answers this basic question: “Where can I go?”. The suggestions are displayed based on budget and interests such as &#8220;beach&#8221;, &#8220;snow&#8221;, &#8220;singles&#8221;, &#8220;romance&#8221;, and &#8220;art&#8221;.  It suggests more than 1200 destinations worldwide and matches them with  flights, hotels and thousands of activities with the help of partners  like Expedia, Foursquare, Nile Guide, Yelp and Lonely Planet.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.cubancouncil.com/" target="_blank">Cuban Council</a></h3>
<p style="text-align: center;"><a href="http://www.cubancouncil.com/" target="_blank"><img class="aligncenter size-full wp-image-283" style="border: 0pt none;" title="Cuban Council" src="http://www.tonyjesus.com/wp-content/uploads/2011/03/cubancouncil.com_.jpg" alt="Screenshot of Cuban Council website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/03/cubancouncil.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/03/cubancouncil.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p><a href="http://www.cubancouncil.com/" target="_blank">Cuban Council</a> is a development and branding service company with locations in San Francisco and New York. These guys created the well known Facebook logo!</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.peasoupandersens.com/" target="_blank">Pea Soup Andersen&#8217;s Inn</a></h3>
<p style="text-align: center;"><a href="http://www.peasoupandersens.com/" target="_blank"><img class="aligncenter size-full wp-image-284" style="border: 0pt none;" title="Pea Soup Andersen’s Inn" src="http://www.tonyjesus.com/wp-content/uploads/2011/03/peasoupandersens.com_.jpg" alt="Screenshot of Pea Soup Andersen’s Inn" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/03/peasoupandersens.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/03/peasoupandersens.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>This is a really nice looking website about a <a href="http://www.peasoupandersens.com/" target="_blank">hotel in California</a>. It has a good design, nice pictures and it&#8217;s very user friendly.</p>
<p style="text-align: left;">&nbsp;</p>
<h3><a href="http://www.atebits.com/" target="_blank">Atebits</a></h3>
<p style="text-align: center;"><a href="http://www.atebits.com/" target="_blank"><img class="aligncenter size-full wp-image-285" style="border: 0pt none;" title="Atebits" src="http://www.tonyjesus.com/wp-content/uploads/2011/03/atebits.com_.jpg" alt="Screenshot of Atebits website" width="500" height="400" srcset="http://www.tonyjesus.com/wp-content/uploads/2011/03/atebits.com_-300x240.jpg 300w, http://www.tonyjesus.com/wp-content/uploads/2011/03/atebits.com_.jpg 500w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p>This is the homepage of some Apple-related applications. Its beautiful icons  and sophisticated design allows <a href="http://www.atebits.com/" target="_blank">Atebits</a> to be in this week’s list of websites.</p>
<p><span style="font-size: x-small;">Did you find a really amazing website showing a new concept, an original design or a brand new feature? Are you the owner of a website that offers new solutions? Send me the URL via <span id="emoba-1707"><span class="emoba-pop">email<span >&nbsp;&nbsp;(<span class="emoba-em">blog<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/at-glyph.gif" alt="at"  class="emoba-glyph" />tonyjesus<img src="http://www.tonyjesus.com/wp-content/plugins/emoba-email-obfuscator-advanced/dot-glyph.gif" alt="dot" class="emoba-glyph" />com</span>)&nbsp;&nbsp;</span></span></span><script type="text/javascript">emobascript('%62%6C%6F%67%40%74%6F%6E%79%6A%65%73%75%73%2E%63%6F%6D','email','emoba-1707','','','0'); </script> or <a href="http://twitter.com/#!/tonyjesusdotcom">Twitter</a> and tell me why you think it should be posted here.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/sites-of-the-week-1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using google to find free .pdf, .mp3, .avi and other files</title>
		<link>http://www.tonyjesus.com/2011/using-google-to-find-pdf-mp3-avi-files</link>
		<comments>http://www.tonyjesus.com/2011/using-google-to-find-pdf-mp3-avi-files#comments</comments>
		<pubDate>Sun, 24 Apr 2011 21:55:41 +0000</pubDate>
		<dc:creator><![CDATA[Tony de Jesus]]></dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.tonyjesus.com/?p=95</guid>
		<description><![CDATA[While surfing the web, you&#8217;ve probably found some websites that allow directory listing, i.e. that display a set of files contained in a specific folder of the server. In most cases, these files are not only .html files. I&#8217;ve already found many websites displaying images, .pdf files, .mp3 files and even video files. Here, you [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-117" title="google-mp3" src="http://www.tonyjesus.com/wp-content/uploads/2011/03/google-mp3.png" alt="Google logo with itunes logo instead of o letters" width="216" height="76" />While surfing the web, you&#8217;ve probably found some websites that allow directory listing, i.e. that display a set of files contained in a specific folder of the server.<br />
In most cases, these files are not only .html files. I&#8217;ve already found many websites displaying images, .pdf files, .mp3 files and even video files. Here, you can find a way to use Google to get only these type of websites in your results.<br />
<span id="more-95"></span> Now imagine that you are searching for eBooks (in pdf format of course). To retrieve only these types of websites in your search results simply go to Google and type:<strong><br />
</strong></p>
<pre class="brush: plain; title: ; notranslate">
intitle:index.of +?last modified? +?parent directory? +pdf -htm -html -php -asp
</pre>
<p>If you are looking for a specific book, just add the name after the file format:</p>
<pre class="brush: plain; title: ; notranslate">
intitle:index.of +?last modified? +?parent directory? +pdf "lord of the rings" -htm -html -php -asp
</pre>
<p>To find music, you can type:</p>
<pre class="brush: plain; title: ; notranslate">
intitle:index.of +?last modified? +?parent directory? +(mp3|wma|ogg) -htm -html -php -asp
</pre>
<p>To narrow the search for a specific artist:</p>
<pre class="brush: plain; title: ; notranslate">
intitle:index.of +?last modified? +?parent directory? +(mp3|wma|ogg) metallica -htm -html -php -asp
</pre>
<p><strong>I hope this post doesn&#8217;t become a tool for piracy. That is not my intention. I just want to share a way to use Google and its advanced search features in order to perform a more specific search.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tonyjesus.com/2011/using-google-to-find-pdf-mp3-avi-files/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
