<?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>dreamluverz collection &#187; developer&#8217;s Guide</title>
	<atom:link href="http://dreamluverz.com/category/developers-tools/feed" rel="self" type="application/rss+xml" />
	<link>http://dreamluverz.com</link>
	<description>Never stop dreaming, until you&#039;re ready to wake up and make it happen</description>
	<lastBuildDate>Wed, 18 Jan 2012 14:10:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>date() error in php 5.3</title>
		<link>http://dreamluverz.com/developers-tools/php/date-error-in-php-5-3</link>
		<comments>http://dreamluverz.com/developers-tools/php/date-error-in-php-5-3#comments</comments>
		<pubDate>Wed, 18 Jan 2012 14:08:48 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[php 5.3]]></category>
		<category><![CDATA[php 5.3 error]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=911</guid>
		<description><![CDATA[After reinstalling my local machine and updating the php version to 5.3 I&#8217;m getting this error: Warning: date() [function.date]: It is not safe to rely on the system&#8217;s timezone settings. You are *required* to use the date.timezone setting or the &#8230; <a href="http://dreamluverz.com/developers-tools/php/date-error-in-php-5-3">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/php/date-error-in-php-5-3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>htdocs folders in vista not showing</title>
		<link>http://dreamluverz.com/developers-tools/apache/htdocs-folders-in-vista-not-showing</link>
		<comments>http://dreamluverz.com/developers-tools/apache/htdocs-folders-in-vista-not-showing#comments</comments>
		<pubDate>Sun, 08 Jan 2012 15:04:02 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[apache error]]></category>
		<category><![CDATA[htaccess error]]></category>
		<category><![CDATA[htdocs folder not showing after installation]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=903</guid>
		<description><![CDATA[After reinstalling apache, php in vista I got trouble displaying my htdocs folders on browser. Some were there and some were not. I double checked my apache settings if I missed something but so far I did not. I compared &#8230; <a href="http://dreamluverz.com/developers-tools/apache/htdocs-folders-in-vista-not-showing">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/apache/htdocs-folders-in-vista-not-showing/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mysql string replace</title>
		<link>http://dreamluverz.com/developers-tools/mysql-string-replace</link>
		<comments>http://dreamluverz.com/developers-tools/mysql-string-replace#comments</comments>
		<pubDate>Fri, 25 Mar 2011 00:10:42 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[developer's Guide]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql functions]]></category>
		<category><![CDATA[mysql replace]]></category>
		<category><![CDATA[mysql string]]></category>
		<category><![CDATA[mysql string replace]]></category>
		<category><![CDATA[replace]]></category>
		<category><![CDATA[string]]></category>
		<category><![CDATA[string replace]]></category>
		<category><![CDATA[string replace on mysql]]></category>
		<category><![CDATA[string_replace]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=840</guid>
		<description><![CDATA[You can check the mysql function string_replace here http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_replace Ex: mysql&#62; SELECT REPLACE(&#8216;www.mysql.com&#8216;, &#8216;w&#8217;, &#8216;Wo&#8217;); output:  &#8216;WoWoWo.mysql.com&#8217; Or you can also do it on UPDATE statements like this UPDATE table SET table_field=REPLACE(table_field, search_string, replace_value_here) &#160;]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/mysql-string-replace/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TAR command</title>
		<link>http://dreamluverz.com/developers-tools/server/tar-command</link>
		<comments>http://dreamluverz.com/developers-tools/server/tar-command#comments</comments>
		<pubDate>Wed, 10 Mar 2010 20:06:18 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[extracting file using tar]]></category>
		<category><![CDATA[linux commands]]></category>
		<category><![CDATA[ssh commands]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=808</guid>
		<description><![CDATA[create: tar -cvf mystuff.tar mystuff/ tar -czvf mystuff.tgz mystuff/ extracting: tar -xvf mystuff.tar tar -xzvf mystuff.tgz testing/viewing: tar -tvf mystuff.tar tar -tzvf mystuff.tgz Note that .tgz is the same thing as .tar.gz Tar &#8220;tars up&#8221; a bunch of files into &#8230; <a href="http://dreamluverz.com/developers-tools/server/tar-command">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/server/tar-command/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>regex cheat sheet</title>
		<link>http://dreamluverz.com/developers-tools/regex/regex-cheat-sheet</link>
		<comments>http://dreamluverz.com/developers-tools/regex/regex-cheat-sheet#comments</comments>
		<pubDate>Tue, 09 Mar 2010 01:44:13 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[regex]]></category>
		<category><![CDATA[cheat sheet regex]]></category>
		<category><![CDATA[regex cheat sheet]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=801</guid>
		<description><![CDATA[Special Sequences \w - Any “word” character (a-z 0-9 _) \W - Any non “word” character \s - Whitespace (space, tab CRLF) \S - Any non whitepsace character \d - Digits (0-9) \D - Any non digit character . - (Period) – Any character except newline Meta &#8230; <a href="http://dreamluverz.com/developers-tools/regex/regex-cheat-sheet">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/regex/regex-cheat-sheet/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>regex: match all including new line</title>
		<link>http://dreamluverz.com/developers-tools/regex-match-all-including-new-line</link>
		<comments>http://dreamluverz.com/developers-tools/regex-match-all-including-new-line#comments</comments>
		<pubDate>Mon, 08 Mar 2010 18:19:40 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[developer's Guide]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[match all]]></category>
		<category><![CDATA[match all and new line]]></category>
		<category><![CDATA[match new line]]></category>
		<category><![CDATA[new line]]></category>
		<category><![CDATA[preg_match]]></category>
		<category><![CDATA[regular expression]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=796</guid>
		<description><![CDATA[I was looking for a way to match all characters plus new line and using &#8220;.&#8221; is not solely the answer because: The dot matches a single character, without caring what that character is. The only exception are newline characters. &#8230; <a href="http://dreamluverz.com/developers-tools/regex-match-all-including-new-line">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/regex-match-all-including-new-line/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>localhost not working in vista after installing nod32 v3</title>
		<link>http://dreamluverz.com/developers-tools/localhost-not-working-in-vista-after-installing-nod32-v3</link>
		<comments>http://dreamluverz.com/developers-tools/localhost-not-working-in-vista-after-installing-nod32-v3#comments</comments>
		<pubDate>Thu, 09 Jul 2009 09:59:17 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[developer's Guide]]></category>
		<category><![CDATA[localhost]]></category>
		<category><![CDATA[localhost not working]]></category>
		<category><![CDATA[localhost not working with nod32]]></category>
		<category><![CDATA[nod32]]></category>
		<category><![CDATA[nod32 and localhost]]></category>
		<category><![CDATA[windows vista]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=714</guid>
		<description><![CDATA[This error is making me so crazy&#8230; my localhost works fine until I installed nod32 v3 in windows vista business. But it works fine with windows xp&#8230; I&#8217;ve been searching the web for solutions but seems like none of it &#8230; <a href="http://dreamluverz.com/developers-tools/localhost-not-working-in-vista-after-installing-nod32-v3">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/localhost-not-working-in-vista-after-installing-nod32-v3/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>what is SOAP</title>
		<link>http://dreamluverz.com/developers-tools/what-is-soap</link>
		<comments>http://dreamluverz.com/developers-tools/what-is-soap#comments</comments>
		<pubDate>Mon, 15 Jun 2009 08:43:42 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[developer's Guide]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[computer terms]]></category>
		<category><![CDATA[SOAP]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=705</guid>
		<description><![CDATA[How is SOAP Used? There are many possible applications for SOAP, here are just a couple: Business to Business integration &#8211; SOAP allows businesses to develop their applications, and then make those applications available to other companies Distributed applications &#8211; &#8230; <a href="http://dreamluverz.com/developers-tools/what-is-soap">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/what-is-soap/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>using xml for live search</title>
		<link>http://dreamluverz.com/developers-tools/xml/using-xml-for-live-search</link>
		<comments>http://dreamluverz.com/developers-tools/xml/using-xml-for-live-search#comments</comments>
		<pubDate>Tue, 02 Jun 2009 17:30:25 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[xml]]></category>
		<category><![CDATA[xml for live search]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=694</guid>
		<description><![CDATA[For the XML interface, there is an interface specific parameter XmlType, which can control the flavor of XML interface. If ElementBased enumeration is specified, each field will be rendered as a separated tag. If AttributeBased enumeration is specified, all simple &#8230; <a href="http://dreamluverz.com/developers-tools/xml/using-xml-for-live-search">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/xml/using-xml-for-live-search/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>what is captcha</title>
		<link>http://dreamluverz.com/developers-tools/what-is-captcha</link>
		<comments>http://dreamluverz.com/developers-tools/what-is-captcha#comments</comments>
		<pubDate>Mon, 01 Jun 2009 19:07:52 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[developer's Guide]]></category>
		<category><![CDATA[captcha]]></category>
		<category><![CDATA[validation]]></category>
		<category><![CDATA[validator]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=685</guid>
		<description><![CDATA[CAPTCHA is actually an acronym for &#8220;Completely Automated Public Turing test to tell Computers and Humans Apart&#8221;. As the name implies, it is a computer-generated test which aims to separate a bot (automated program) from a live, breathing human being &#8230; <a href="http://dreamluverz.com/developers-tools/what-is-captcha">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/what-is-captcha/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

