<?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>zsygab.com</title>
	<atom:link href="http://www.zsygab.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zsygab.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Tue, 10 Jan 2012 13:37:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Refresher and coffee machine a&#8217;la&#8217;Romania</title>
		<link>http://www.zsygab.com/refresher-and-coffee-machine-alaromania/</link>
		<comments>http://www.zsygab.com/refresher-and-coffee-machine-alaromania/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 21:04:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Day-By-Day]]></category>
		<category><![CDATA[coffee]]></category>
		<category><![CDATA[machine]]></category>
		<category><![CDATA[refresher]]></category>
		<category><![CDATA[Romania]]></category>
		<category><![CDATA[waiting room]]></category>

		<guid isPermaLink="false">http://www.zsygab.com/?p=462</guid>
		<description><![CDATA[This afternoon I took my car to a car wash. There is one place I really like, because they have a nice waiting room, where you can escape from the cold outside weather. When I opened the door, the first thing I noticed was two nice machines, one for coffee and the other for refresher&#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>This afternoon I took my car to a car wash. There is one place I really like, because they have a nice waiting room, where you can escape from the cold outside weather. When I opened the door, the first thing I noticed was two nice machines, one for coffee and the other for refresher&#8230; I saw them from their side, so when I got in from of them&#8230; Well, this is what I saw:</p>
<p><a href="http://www.zsygab.com/wp-content/uploads/2011/11/45.jpg"><img class="aligncenter size-medium wp-image-463" title="refresher and coffee machine" src="http://www.zsygab.com/wp-content/uploads/2011/11/45.jpg" alt="" width="520" height="390" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.zsygab.com/refresher-and-coffee-machine-alaromania/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Angry birds</title>
		<link>http://www.zsygab.com/angry-birds/</link>
		<comments>http://www.zsygab.com/angry-birds/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 13:18:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Day-By-Day]]></category>
		<category><![CDATA[angry birds]]></category>
		<category><![CDATA[city centre]]></category>
		<category><![CDATA[park]]></category>
		<category><![CDATA[pigeons]]></category>
		<category><![CDATA[targu mures]]></category>

		<guid isPermaLink="false">http://www.zsygab.com/?p=455</guid>
		<description><![CDATA[Took this picture in Targu Mures on a cloudy Sunday afternoon in November&#8230; Tthese pigeons are more like &#8220;hungry birds&#8221; than &#8220;angry birds&#8221;&#8230;]]></description>
			<content:encoded><![CDATA[<p>Took this picture in Targu Mures on a cloudy Sunday afternoon in November&#8230; Tthese pigeons are more like &#8220;hungry birds&#8221; than &#8220;angry birds&#8221;&#8230;</p>
<p><a href="http://www.zsygab.com/wp-content/uploads/2011/11/DSC00870.jpg"><img class="aligncenter size-medium wp-image-456" title="angry birds real life" src="http://www.zsygab.com/wp-content/uploads/2011/11/DSC00870.jpg" alt="" width="520" height="390" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.zsygab.com/angry-birds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to block keyboard keys in forms with javascript</title>
		<link>http://www.zsygab.com/how-to-block-keyboard-keys-in-forms-with-javascript/</link>
		<comments>http://www.zsygab.com/how-to-block-keyboard-keys-in-forms-with-javascript/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 06:51:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming - Computers]]></category>
		<category><![CDATA[enter]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[keypress]]></category>

		<guid isPermaLink="false">http://www.zsygab.com/?p=452</guid>
		<description><![CDATA[A client asked me to block the ENTER key in a form I created for him. After some research, here is the piece of code you have to enter into the page, which will block the event: &#60;script type=&#8221;text/javascript&#8221;&#62; $(document).ready(function() { document.onkeypress = stopRKey; }); function stopRKey(evt) { var evt = (evt) ? evt : [...]]]></description>
			<content:encoded><![CDATA[<p>A client asked me to block the ENTER key in a form I created for him. After some research, here is the piece of code you have to enter into the page, which will block the event:</p>
<blockquote>
<div id="_mcePaste">&lt;script type=&#8221;text/javascript&#8221;&gt;</div>
<div id="_mcePaste">$(document).ready(function() {</div>
<div id="_mcePaste">document.onkeypress = stopRKey;</div>
<div id="_mcePaste">});</div>
<div id="_mcePaste">function stopRKey(evt) {</div>
<div id="_mcePaste">var evt = (evt) ? evt : ((event) ? event : null);</div>
<div id="_mcePaste">var node = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null);</div>
<div id="_mcePaste">if ((evt.keyCode == 13) &amp;&amp; (node.type==&#8221;text&#8221;))  {return false;}</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">&lt;/script&gt;</div>
</blockquote>
<div></div>
<div>The 13 in the code above is the code for the ENTER key, replace that if you want to block an other keypress.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.zsygab.com/how-to-block-keyboard-keys-in-forms-with-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The plan is fulfilled</title>
		<link>http://www.zsygab.com/the-plan-is-fulfilled/</link>
		<comments>http://www.zsygab.com/the-plan-is-fulfilled/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 19:39:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Day-By-Day]]></category>
		<category><![CDATA[car]]></category>
		<category><![CDATA[driving]]></category>
		<category><![CDATA[owner]]></category>
		<category><![CDATA[plan]]></category>
		<category><![CDATA[skoda fabia]]></category>

		<guid isPermaLink="false">http://www.zsygab.com/?p=445</guid>
		<description><![CDATA[I forgot to post a very important info&#8230; THE PLAN GOT FULFILLED! I have a beautiful Skoda Fabia hatchback, 1.4 16v 75HP&#8230; But what is more important: IT IS MINE! Exactly 2 months passed since I bought it, and in this period I can say I got used to it, and&#8230; well, I love it! [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin: 0 10px 10px 0" class="alignleft size-medium wp-image-448" title="Skoda Fabia 1.4 16v 75hp hatchback" src="http://www.zsygab.com/wp-content/uploads/2011/11/312543_274350069254513_100000385663758_896163_1681333438_n-300x225.jpg" alt="Skoda Fabia 1.4 16v 75hp hatchback" width="300" height="225" />I forgot to post a very important info&#8230; THE PLAN GOT FULFILLED!</p>
<p>I have a beautiful Skoda Fabia hatchback, 1.4 16v 75HP&#8230; But what is more important: IT IS MINE! <img src='http://www.zsygab.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Exactly 2 months passed since I bought it, and in this period I can say I got used to it, and&#8230; well, I love it! So I am a proud car owner!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zsygab.com/the-plan-is-fulfilled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to secure your Apache web server</title>
		<link>http://www.zsygab.com/how-to-secure-your-apache-web-server/</link>
		<comments>http://www.zsygab.com/how-to-secure-your-apache-web-server/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 07:00:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming - Computers]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[IP]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[wamp]]></category>

		<guid isPermaLink="false">http://www.zsygab.com/?p=439</guid>
		<description><![CDATA[I have wamp installed on my local PC with static IP. As I use it for development, sometimes I am sending the customers links to applications, to check and feedback them. A problem I experienced is that Google indexed 2 files on my PC. How he did that remains a mistery for me, but for [...]]]></description>
			<content:encoded><![CDATA[<p>I have wamp installed on my local PC with static IP. As I use it for development, sometimes I am sending the customers links to applications, to check and feedback them.</p>
<p>A problem I experienced is that Google indexed 2 files on my PC. How he did that remains a mistery for me, but for sure this is a HUGE security problem, databases and important mails got public. So, how did I solve the problem? I created a .htaccess file like this:</p>
<blockquote>
<div id="_mcePaste">Allow from xx.xxx.xxx.xxx</div>
<div id="_mcePaste">Deny from all</div>
<div id="_mcePaste">AuthUserFile c:\wamp\pwds\.htpasswd</div>
<div id="_mcePaste">AuthName &#8220;Members Only&#8221;</div>
<div id="_mcePaste">AuthType Basic</div>
<div id="_mcePaste">require valid-user</div>
</blockquote>
<div>What the above means:</div>
<div>1. I am now filtering the visitors based on their IP address. Right now only my IP is enabled, the rest will get an Access Forbidden error message.</div>
<div>2. Secondly, for the IPs enabled, there is a username-password combination which needs to be known. They are set in the .htpasswd file, something like:</div>
<blockquote>
<div>username:password</div>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.zsygab.com/how-to-secure-your-apache-web-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The best optical illusion you will ever see</title>
		<link>http://www.zsygab.com/the-best-optical-illusion-you-will-ever-see/</link>
		<comments>http://www.zsygab.com/the-best-optical-illusion-you-will-ever-see/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 06:44:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Day-By-Day]]></category>
		<category><![CDATA[colors]]></category>
		<category><![CDATA[eye]]></category>
		<category><![CDATA[optical illusion]]></category>
		<category><![CDATA[trick]]></category>

		<guid isPermaLink="false">http://www.zsygab.com/?p=435</guid>
		<description><![CDATA[The way the human eye perceives the colors is very complex. Believe or not, but the green and blue spirals from the next image are the same! If you don&#8217;t believe me, open the image with Photoshop and see it yourself. The blue color you see with your eyes is actually&#8230; GREEN! Impossible, right?]]></description>
			<content:encoded><![CDATA[<p>The way the human eye perceives the colors is very complex. Believe or not, but the green and blue spirals from the next image are the same!</p>
<p><a href="http://www.zsygab.com/wp-content/uploads/2011/09/60515902.png"><img class="aligncenter size-full wp-image-436" title="optical illusion" src="http://www.zsygab.com/wp-content/uploads/2011/09/60515902.png" alt="optical illusion" width="472" height="472" /></a></p>
<p>If you don&#8217;t believe me, open the image with Photoshop and see it yourself. The blue color you see with your eyes is actually&#8230; GREEN! Impossible, right?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zsygab.com/the-best-optical-illusion-you-will-ever-see/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RIP IE6 &#8211; How to block Internet Explorer 6 from displaying web pages</title>
		<link>http://www.zsygab.com/rip-ie6-how-to-block-internet-explorer-6-from-displaying-web-pages/</link>
		<comments>http://www.zsygab.com/rip-ie6-how-to-block-internet-explorer-6-from-displaying-web-pages/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 13:52:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming - Computers]]></category>
		<category><![CDATA[block]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[internet explorer 6]]></category>
		<category><![CDATA[web page]]></category>

		<guid isPermaLink="false">http://www.zsygab.com/?p=428</guid>
		<description><![CDATA[As I stated in a previous post, Internet Explorer 6 is the nightmare of every web developer. It&#8217;s slow, it&#8217;s insecure and it&#8217;s stupid. Unfortunately, the fact that it&#8217;s more than 10 years old is not stopping some users from using it. Resolving the compatibility issues that usually arise sometimes is unworthy, so here is [...]]]></description>
			<content:encoded><![CDATA[<p>As I stated in a previous post, Internet Explorer 6 is the nightmare of every web developer. It&#8217;s slow, it&#8217;s insecure and it&#8217;s stupid. Unfortunately, the fact that it&#8217;s more than 10 years old is not stopping some users from using it. Resolving the compatibility issues that usually arise sometimes is unworthy, so here is a little tweak to block the users using IE6 (or lower!):</p>
<p>In the &lt;head&gt; of the html file, include:</p>
<blockquote>
<div id="_mcePaste">&lt;!&#8211;[if lte IE 6]&gt;</div>
<div id="_mcePaste">&lt;script type=&#8221;text/javascript&#8221; src=&#8221;./js/rip_ie6.js&#8221;&gt;&lt;/script&gt;</div>
<div id="_mcePaste">&lt;![endif]&#8211;&gt;</div>
</blockquote>
<div>The content of the Javascript file is quite simple:</div>
<blockquote><p>$(window).load(function() {<br />
$(&#8216;body&#8217;).css(&#8220;background-color&#8221;,&#8221;#414141&#8243;);</p>
<p>var message = &#8216;Sorry, but your browser (Internet Explorer 6) is not suported by this site. Please update to a newer version, or try an alternative browser:&#8217;;</p>
<p>var links = &#8216;&lt;br&gt;&lt;br&gt;&lt;a href=&#8221;www.mozilla.com&#8221; title=&#8221;Mozilla Firefox&#8221;&gt;Mozilla Firefox&lt;/a&gt;&#8217;;<br />
links += &#8216;&lt;br&gt;&lt;br&gt;&lt;a href=&#8221;www.google.com/chrome&#8221; title=&#8221;Google Chrome&#8221;&gt;Google Chrome&lt;/a&gt;&#8217;;</p>
<p>$(&#8216;body&#8217;).html(&#8216;&lt;div style=&#8221;width:600px;height:254px;background:white;margin:200px auto;padding: 20px;&#8221;&gt;&lt;img src=&#8221;js/rip_ie6.png&#8221; alt=&#8221;" style=&#8221;float:left;margin-right:20px;&#8221;&gt;&#8217;+message+links+&#8217;&lt;/div&gt;&#8217;);</p>
<p>});</p></blockquote>
<p>As you can see, I offer the user the possibility to download Firefox or Chrome, trying to minimize the damage suffered.<br />
Of course, your web-page needs to have jQuery installed for the above code.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zsygab.com/rip-ie6-how-to-block-internet-explorer-6-from-displaying-web-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ray Charles &#8211; You&#8217;ll never walk alone</title>
		<link>http://www.zsygab.com/ray-charles-youll-never-walk-alone/</link>
		<comments>http://www.zsygab.com/ray-charles-youll-never-walk-alone/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 09:00:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Liverpool]]></category>
		<category><![CDATA[anthem]]></category>
		<category><![CDATA[liverpool]]></category>
		<category><![CDATA[ray charles]]></category>
		<category><![CDATA[you'll never walk alone]]></category>

		<guid isPermaLink="false">http://www.zsygab.com/?p=430</guid>
		<description><![CDATA[I found this superb version of the Liverpool Anthem &#8211; sung by Ray Charles &#8211; on the RedAndWhiteKop forum, the most well known site for Liverpool supporters. Never heard it before, but it&#8217;s so cool I will share it.]]></description>
			<content:encoded><![CDATA[<p>I found this superb version of the Liverpool Anthem &#8211; sung by Ray Charles &#8211; on the RedAndWhiteKop forum, the most well known site for Liverpool supporters. Never heard it before, but it&#8217;s so cool I will share it.</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="390" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/XW-6jKuHE1M?version=3&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="390" src="http://www.youtube.com/v/XW-6jKuHE1M?version=3&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.zsygab.com/ray-charles-youll-never-walk-alone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.htaccess regular expressions cheat-sheet</title>
		<link>http://www.zsygab.com/htaccess-regular-expressions-cheat-sheet/</link>
		<comments>http://www.zsygab.com/htaccess-regular-expressions-cheat-sheet/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 20:09:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming - Computers]]></category>
		<category><![CDATA[expressions]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[regular]]></category>
		<category><![CDATA[rewrite url]]></category>
		<category><![CDATA[special characters]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://www.zsygab.com/?p=417</guid>
		<description><![CDATA[It&#8217;s always good to have the most used htaccess regular expressions in one place. Here is a little help (cheat-sheet), which contains all the special characters which you can use in your htaccess file to rewrite the urls: . (full stop) &#8211; match any character * (asterix) &#8211; match zero or more of the previous [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s always good to have the most used htaccess regular expressions in one place. Here is a little help (cheat-sheet), which contains all the special characters which you can use in your htaccess file to rewrite the urls:</p>
<blockquote><p><strong>. (full stop)</strong> &#8211; match any character<br />
<strong> * (asterix)</strong> &#8211; match zero or more of the previous symbol<br />
<strong> + (plus)</strong> &#8211; match one or more of the previous symbol<br />
<strong> ? (question)</strong> &#8211; match zero or one of the previous symbol<br />
<strong> \? (backslash-something)</strong> &#8211; match special characters<br />
<strong> ^ (caret)</strong> &#8211; match the start of a string<br />
<strong> $ (dollar) </strong>- match the end of a string<br />
<strong> [set]</strong> &#8211; match any one of the symbols inside the square braces.<br />
<strong> (pattern)</strong> &#8211; grouping, remember what the pattern matched as a special variable</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.zsygab.com/htaccess-regular-expressions-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Client IP with Javascript</title>
		<link>http://www.zsygab.com/get-client-ip-with-javascript/</link>
		<comments>http://www.zsygab.com/get-client-ip-with-javascript/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 13:44:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming - Computers]]></category>
		<category><![CDATA[callback]]></category>
		<category><![CDATA[cookie]]></category>
		<category><![CDATA[IP]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[json]]></category>

		<guid isPermaLink="false">http://www.zsygab.com/?p=365</guid>
		<description><![CDATA[Ever wondered how to get the client&#8217;s IP address from Javascript? I have to set it in a Cookie variable now, so here is what I found, a clean and easy solution: &#60;script type=&#8221;application/javascript&#8221;&#62; function get_my_ip(json){ alert(json.ip); } &#60;/script&#62; &#60;script type=&#8221;application/javascript&#8221; src=&#8221;http://jsonip.appspot.com/?callback=get_my_ip&#8221;&#62;&#60;/script&#62;]]></description>
			<content:encoded><![CDATA[<p>Ever wondered how to get the client&#8217;s IP address from Javascript? I have to set it in a Cookie variable now, so here is what I found, a clean and easy solution:</p>
<blockquote><p>&lt;script type=&#8221;application/javascript&#8221;&gt;</p>
<div id="_mcePaste">function get_my_ip(json){</div>
<div id="_mcePaste">alert(json.ip);</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">&lt;/script&gt;</div>
<div id="_mcePaste">&lt;script type=&#8221;application/javascript&#8221; src=&#8221;http://jsonip.appspot.com/?callback=get_my_ip&#8221;&gt;&lt;/script&gt;</div>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.zsygab.com/get-client-ip-with-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

