<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>The Filipino Programmer</title>
	<link>http://www.cybervaldez.com</link>
	<description></description>
	<lastBuildDate>Wed, 26 Oct 2011 08:05:25 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.2.1" -->

	<item>
		<title>The Philippines is becoming a hub of global communication and technology, including increased use of YouTube Philippines</title>
		<description><![CDATA[The Philippines is becoming a hub of global communication and technology, including increased use of YouTube Philippines Countless numbers of people all over the world use the internet on a daily basis. The numbers are especially impressive in the Philippines, with up to 30 million Filipinos accessing the web regularly, to shop, study, search for [...]]]></description>
		<link>http://www.cybervaldez.com/the-philippines-is-becoming-a-hub-of-global-communication-and-technology-including-increased-use-of-youtube-philippines/2011/</link>
			</item>
	<item>
		<title>[Tip] How to pass an array as an argument to a function.</title>
		<description><![CDATA[Problem: Help! Iis it possible to pass the values of an array as an argument in my function? Anwer: Conveniently, Yes! You can indeed use set an array as the argument of a function. var mapArgs = [0,20,50,10]; draw.apply(this, mapArgs); function draw(x1,x2,y1,y2) { // do something&#8230; alert(x1 + &#8216; &#8216; + x2 + &#8216; &#8216; [...]]]></description>
		<link>http://www.cybervaldez.com/tip-how-to-pass-an-array-as-an-argument-to-a-function/2011/</link>
			</item>
	<item>
		<title>[Super Tip!] How to loop or iterate over an object&#8217;s key/value pair.</title>
		<description><![CDATA[Problem: Help! Is it possible to loop or iterate through each object&#8217;s key/value pair like an array? Answer: A very useful trick for iterating over objects is the use of (for x in object), with this you can completely use objects as array! myObject = { &#8220;this&#8221; : &#8220;value1&#8243;, &#8220;is&#8221; : &#8220;value2&#8243;, &#8220;awesome&#8221; : &#8220;value3&#8243; [...]]]></description>
		<link>http://www.cybervaldez.com/super-tip-how-to-loop-or-iterate-over-an-objects-keyvalue-pair/2011/</link>
			</item>
	<item>
		<title>[Solution] How to use this in setInterval and setTimeout problems inside objects</title>
		<description><![CDATA[Problem: One of the problems we find when using setInterval and setTimeout functions in javascript is how the special variable this is switched to the window object on the instance the function executes inside the interval. Answer: Store the current object in a variable (for this example, the variable is called self) and use that [...]]]></description>
		<link>http://www.cybervaldez.com/solution-how-to-use-this-in-setinterval-and-settimeout-problems-inside-objects/2011/</link>
			</item>
	<item>
		<title>How to login as root or how to fix the permission problems when running su commands in WHM</title>
		<description><![CDATA[You can&#8217;t use the root user when SSH&#8217;ing to WHM but what you can do is issue a SU command once you&#8217;ve logged in with another user which isn&#8217;t root. On some occassions, you may encounter a no permission error when doing this. Problem: Help! I can&#8217;t seem to login as root in whm so [...]]]></description>
		<link>http://www.cybervaldez.com/how-to-login-as-root-or-how-to-fix-the-permission-problems-when-running-su-commands-in-whm/2011/</link>
			</item>
	<item>
		<title>How to find, look or search for a specific file in linux</title>
		<description><![CDATA[A common problem for those aren&#8217;t aware of using linux are locating certain files(this is when troubleshooting, or simply doing steps from a guide) Problem: I&#8217;m looking for a file in linux! How do I find this? Answer: You can easily find a file by using the find command: find / -name &#8220;httpd.conf&#8221; -print Note: [...]]]></description>
		<link>http://www.cybervaldez.com/how-to-find-look-or-search-for-a-specific-file-in-linux/2011/</link>
			</item>
	<item>
		<title>Solution for Headers Already Sent problem in php scripts and frameworks</title>
		<description><![CDATA[Headers already sent issue? Here&#8217;s how to fix one of the most common problems in frameworks and websites: Problem: Help! i&#8217;m getting the errors and/or warnings &#8211; &#8220;Headers already sent!&#8220; Answer #1: Check the php files which are usually found in your headers(the ones which are loaded first, typically config.php) and look for extra spaces [...]]]></description>
		<link>http://www.cybervaldez.com/solution-for-headers-already-sent-problem-in-php-scripts-and-frameworks/2011/</link>
			</item>
	<item>
		<title>mySQL Super-tip! How to comma-delimit or comma-separate your query results!</title>
		<description><![CDATA[_Problem_: Help! I&#8217;d like to make it so my query results to be a comma delimited format! _Answer_: No problemo! Simply use mySQL&#8217;s group_concat function and you&#8217;ll get your results in comma delimited values! SELECT GROUP_CONCAT(id) FROM users WHERE authenticated=1 ORDER BY NULL LIMIT 1 Note: (Optional) ORDER BY NULL is used to prevent unnecessary [...]]]></description>
		<link>http://www.cybervaldez.com/mysql-super-tip-how-to-comma-delimit-or-comma-separate-your-query-results/2010/</link>
			</item>
	<item>
		<title>mySQL Super-tip! Use LIMIT and OFFSET to paginate your SELECT statements!</title>
		<description><![CDATA[Awesome, it seems that mySQL now supports the OFFSET clause. This is very useful for paginating your SQL statements. The following will return the first 10 entries of your select statement: &#8220;SELECT field FROM table LIMIT 10&#8243; This, on the otherhand, will OFFSET your result by 10, selecting your entries #10-20: &#8220;SELECT field FROM table [...]]]></description>
		<link>http://www.cybervaldez.com/mysql-super-tip-use-limit-and-offset-to-paginate-your-select-statements/2010/</link>
			</item>
	<item>
		<title>mySQL: Simplify your multiple WHERE queries with WHERE in</title>
		<description><![CDATA[_Problem #1_: How do I simplify my mySql where queries? _Problem #2_: How can I search through an array in my where statement? Answer: An awesome trick when it comes to querying multiple where clauses is to use the WHERE &#60;&#8230;&#62; IN command. $id = &#8217;1,4,3,6,8,2&#8242;; &#8220;SELECT * FROM &#60;&#8230;&#62; WHERE id IN ($id)&#8221; Oh [...]]]></description>
		<link>http://www.cybervaldez.com/mysql-simplify-your-multiple-where-queries-with-where-in/2010/</link>
			</item>
</channel>
</rss>

