<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Garry Lachman</title>
	<link>http://garry-lachman.com</link>
	<description>ActionScript 3 / Flex / Php &#38; mySQL / jQuery Blog</description>
	<lastBuildDate>Wed, 01 Feb 2012 10:06:52 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	

	<item>
		<title>Create Classes and Object in JavaScript &amp; jQuery</title>
		<description><![CDATA[There is few ways to create javascript object and use its as class. In this artical i will you my favorite way to implement javascript classes. I will combaine jQuery in this example. First of  &#8230; <a href="http://garry-lachman.com/2012/02/01/create-classes-and-object-in-javascript-jquery/" class="more-link">Read More <span class="excerpt-arrow">&#8594;</span></a>]]></description>
		<link>http://garry-lachman.com/2012/02/01/create-classes-and-object-in-javascript-jquery/</link>
			</item>
	<item>
		<title>PHP: Get local ip adresses using ifconfig (linux only)</title>
		<description><![CDATA[Hi, I wrote little code to get local machine ip address: 1234567891011121314151617&#160; &#160; &#160; &#160; function get_machine_ips&#40;&#41; &#160; &#160; &#160;&#123; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; $ips = array&#40;&#41;; &#160; &#160; &#160; &#160;  &#8230; <a href="http://garry-lachman.com/2012/01/02/php-get-local-ip-adresses-using-ifconfig-linux-only/" class="more-link">Read More <span class="excerpt-arrow">&#8594;</span></a>]]></description>
		<link>http://garry-lachman.com/2012/01/02/php-get-local-ip-adresses-using-ifconfig-linux-only/</link>
			</item>
	<item>
		<title>Requirements Specification for: Advance One Time URL script</title>
		<description><![CDATA[Hi, I`m planning to build new One Time URL script, after i found that the old version is bit problematic, i start to planning Advance One Time URL script. Requirements Specification: using mySql as db.  &#8230; <a href="http://garry-lachman.com/2011/12/21/requirements-specification-for-advance-one-time-url-script/" class="more-link">Read More <span class="excerpt-arrow">&#8594;</span></a>]]></description>
		<link>http://garry-lachman.com/2011/12/21/requirements-specification-for-advance-one-time-url-script/</link>
			</item>
	<item>
		<title>7 best jQuery charts engines</title>
		<description><![CDATA[A chart is a graphical representation of data, in which &#8220;the data is represented by symbols, such as bars in a bar chart, lines in a line chart, or slices in a pie chart&#8221;.[1] A  &#8230; <a href="http://garry-lachman.com/2011/11/08/7-best-jquery-charts-engines/" class="more-link">Read More <span class="excerpt-arrow">&#8594;</span></a>]]></description>
		<link>http://garry-lachman.com/2011/11/08/7-best-jquery-charts-engines/</link>
			</item>
	<item>
		<title>PHP+REGEX &#8211; URL validation &amp; split to elements</title>
		<description><![CDATA[Hi, After searching the web i found a very good script to split the url to elements and validate it. The result is: 123456789101112131415161718192021222324252627282930array&#40;14&#41; &#123; &#160; &#91;&#34;scheme&#34;&#93;=&#62; &#160; string&#40;4&#41; &#34;http&#34; &#160; &#91;&#34;authority&#34;&#93;=&#62; &#160; string&#40;17&#41; &#34;garry-lachman.com&#34;  &#8230; <a href="http://garry-lachman.com/2011/10/27/phpregex-url-validation-split-to-elements/" class="more-link">Read More <span class="excerpt-arrow">&#8594;</span></a>]]></description>
		<link>http://garry-lachman.com/2011/10/27/phpregex-url-validation-split-to-elements/</link>
			</item>
	<item>
		<title>Vim &#8211; Developers Best Friend &#8211; VIM Basics!!!</title>
		<description><![CDATA[Hi, Most of the web developers found them self working in SSH mode without any IDE, i`m working in this mode over 2 years and found VIM my best friend. Its not a standard editor,  &#8230; <a href="http://garry-lachman.com/2011/10/17/vim-developers-best-friend-vim-basics/" class="more-link">Read More <span class="excerpt-arrow">&#8594;</span></a>]]></description>
		<link>http://garry-lachman.com/2011/10/17/vim-developers-best-friend-vim-basics/</link>
			</item>
	<item>
		<title>6 PHP Template Engines</title>
		<description><![CDATA[I think i don`t need to explain what is &#8220;Template Engine&#8221;, if this is the first time you hear about it look at this link (Wikipedia) Here is a list of some PHP Template Engines:  &#8230; <a href="http://garry-lachman.com/2011/09/19/6-php-template-engines/" class="more-link">Read More <span class="excerpt-arrow">&#8594;</span></a>]]></description>
		<link>http://garry-lachman.com/2011/09/19/6-php-template-engines/</link>
			</item>
	<item>
		<title>read POST variables with Javascript using PHP</title>
		<description><![CDATA[Hi, Today i will show very easy way to read POST variables from Javascript using PHP. 123&#60;script type=&#34;text/javascript&#34;&#62;// &#60;![CDATA[ var post_json = ; // ]]&#62;&#60;/script&#62; We encode all POST vars with php to javascript JSON.  &#8230; <a href="http://garry-lachman.com/2011/09/14/read-post-variables-with-javascript-using-php/" class="more-link">Read More <span class="excerpt-arrow">&#8594;</span></a>]]></description>
		<link>http://garry-lachman.com/2011/09/14/read-post-variables-with-javascript-using-php/</link>
			</item>
	<item>
		<title>Custom Events in jQuery &#8211; bind &amp; trigger</title>
		<description><![CDATA[Sometimes custom events can make the life more easy. If you want to communicate between classes and other object on the page you can simply trigger a custom event with data. First of all we  &#8230; <a href="http://garry-lachman.com/2011/09/08/custom-events-in-jquery-bind-trigger/" class="more-link">Read More <span class="excerpt-arrow">&#8594;</span></a>]]></description>
		<link>http://garry-lachman.com/2011/09/08/custom-events-in-jquery-bind-trigger/</link>
			</item>
	<item>
		<title>Factory Method Pattern in JavaScript</title>
		<description><![CDATA[From Wikipedia: &#8220;The factory method pattern is an object-oriented design pattern to implement the concept of factories. Like other creational patterns, it deals with the problem of creating objects (products) without specifying the exact class  &#8230; <a href="http://garry-lachman.com/2011/06/09/factory-method-pattern-in-javascript/" class="more-link">Read More <span class="excerpt-arrow">&#8594;</span></a>]]></description>
		<link>http://garry-lachman.com/2011/06/09/factory-method-pattern-in-javascript/</link>
			</item>
</channel>
</rss>

