<?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>The Filipino Programmer &#187; Tutorials</title>
	<atom:link href="http://www.cybervaldez.com/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cybervaldez.com</link>
	<description></description>
	<lastBuildDate>Wed, 26 Oct 2011 08:05:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>[Super Tip!] How to loop or iterate over an object&#8217;s key/value pair.</title>
		<link>http://www.cybervaldez.com/super-tip-how-to-loop-or-iterate-over-an-objects-keyvalue-pair/2011/</link>
		<comments>http://www.cybervaldez.com/super-tip-how-to-loop-or-iterate-over-an-objects-keyvalue-pair/2011/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 13:57:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Super Tip!]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1313</guid>
		<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>
			<content:encoded><![CDATA[<p><strong>Problem</strong>: Help! Is it possible to loop or iterate through each object&#8217;s key/value pair like an array? 
<strong>Answer</strong>: A very useful trick for iterating over objects is the use of (<em><strong>for x in object</strong></em>), with this you can completely use objects as array!</p>

<blockquote><p>myObject = { <br />
    &#8220;this&#8221; : &#8220;value1&#8243;, <br />
    &#8220;is&#8221; : &#8220;value2&#8243;, <br />
    &#8220;awesome&#8221; : &#8220;value3&#8243; <br />
} <br />
</p>
<p>
for (x in myObject)<br />
    alert(&#8216;key : &#8216; + x + &#8216; / value : &#8216; + myObject[x]); <br />
</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/super-tip-how-to-loop-or-iterate-over-an-objects-keyvalue-pair/2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Remove those nasty question marks with a diamond symbols that appears in your website</title>
		<link>http://www.cybervaldez.com/how-to-remove-those-nasty-question-mark-with-a-diamond-symbols-from-appearing-in-your-website/2009/</link>
		<comments>http://www.cybervaldez.com/how-to-remove-those-nasty-question-mark-with-a-diamond-symbols-from-appearing-in-your-website/2009/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 22:33:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Super Tip!]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[characters]]></category>
		<category><![CDATA[diamon]]></category>
		<category><![CDATA[diamonds]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[encoded]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[incorrect]]></category>
		<category><![CDATA[mark]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[output]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[question]]></category>
		<category><![CDATA[render]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[special]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[symbol]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[troubleshoot]]></category>
		<category><![CDATA[utf-8]]></category>
		<category><![CDATA[webpage]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[word]]></category>
		<category><![CDATA[wrong]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1069</guid>
		<description><![CDATA[Help! I've pasted some text from Microsoft Word and saved it to my SQL database! Now whenever I output my text there's a bunch of diamonds with a question mark symbols now appearing!]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong> Help! I&#8217;ve pasted some text from Microsoft Word and saved it to my SQL database! Now whenever I print my text there&#8217;s a bunch of diamonds with a question mark symbols appearing!</p>

<p><strong>Solution:</strong> You are trying to display characters that are outside your page&#8217;s character set, you have to tell your browser that you need to display characters from the iso-8859-1 set so it will know how to render them correctly.</p>

<p>Simply put the following inside your website&#8217;s &lt;head&gt;&lt;/head&gt;</p>

<blockquote>&lt;META http-equiv=&quot;Content-type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;</blockquote>

<p>and in PHP(or any other similar language), simply put this at the top of your page(for other languages, look for an identical function):</p>

<blockquote>&lt;? header(&quot;Content-type: text/html; charset=iso-8859-1&quot;); ?&gt;</blockquote>

<p>and voila! Your characters should now be displayed correctly.</p>

<p><a href="http://www.stumbleupon.com/submit?url=http://www.cybervaldez.com/how-to-remove-those-nasty-question-mark-with-a-diamond-symbols-from-appearing-in-your-website/2009/%26title%3DThe%2BArticle%2BTitle"> <img border=0 src="http://cdn.stumble-upon.com/images/120x20_thumb_black.gif" alt=""></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/how-to-remove-those-nasty-question-mark-with-a-diamond-symbols-from-appearing-in-your-website/2009/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>So I have decided to Blog</title>
		<link>http://www.cybervaldez.com/so-i-have-decided-to-blog/2009/</link>
		<comments>http://www.cybervaldez.com/so-i-have-decided-to-blog/2009/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 00:59:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Articles]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=3</guid>
		<description><![CDATA[With the pool of blogs out there, you might find yourself wondering: <strong>Why should I even bother blogging?</strong>, This article an introductory guide to my website. You will find my <del>top</del> <del>ten</del> reasons why I started this blog, is blogging right for you?(why you should, or shouldn't blog) and a <del>short</del> tutorial on creating your first blog.]]></description>
			<content:encoded><![CDATA[<p><strong>This page is under construction</strong></p>

<blockquote><strong>Blog</strong>: to read, write, or edit an on-line journal</blockquote>

<p>With the pool of blogs out there, you might find yourself wondering &#8211; &#8220;<strong>Why should I even bother blogging?</strong>&#8220;.</p>

<p>First, let me introduce yours truly,  I am <strong>Cyber Valdez</strong> &#8211; a programmer, and a technology enthusiast but more importantly &#8211; <em>another human being</em>. I make a lot of mistakes and by a lot I mean&#8230; <em>a lot</em>. My reason for blogging is simply because <strong>I have a story to tell</strong>. Of course <a href="http://murcha.wordpress.com/2008/03/14/20-reasons-why-students-should-blog/">there</a> <a href="http://gotchange.blogspot.com/2005/02/why-blog.html" target="_blank">is</a> <a href="http://sashadichter.wordpress.com/2009/03/04/44-reasons-i-blog/" target="_blank">a</a> <a href="http://www.millionreasonstoblog.com/" target="_blank">lot</a> <a href="http://www.wordpresstutorials.com/whyblog.shtml" target="_blank">of</a> <a href="http://www.seomoz.org/blog/why-you-should-blog" target="_blank">reasons</a> to blog(or in some cases, <a href="http://codebetter.com/blogs/jeremy.miller/archive/2008/01/25/should-i-blog.aspx" target="_blank">why</a> <a href="http://www.schoollibraryjournal.com/article/CA6430167.html" target="_blank">you</a> <a href="http://slyvisions.com/files/your-blog-sucks-and-i-got-20-reasons-to-back-it-up.php" target="_blank">shouldn&#8217;t</a> <a href="http://www.davidfoster.tv/10-reasons-not-to-blog/" target="_blank">even</a> <a href="http://www.internetmonk.com/archive/ten-reasons-i-dont-read-your-blog" target="_blank">bother</a> blogging at all) but mine is as simple as that.</p>

<p>This blog is all about that, <em>mistakes mistakes mistakes</em> and sometimes even <em>triumphs</em>.</p>

<p><strong>So have you decided to start blogging as well? Or maybe you already have a blog?</strong> Care to share what made you go into that decision?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/so-i-have-decided-to-blog/2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

