<?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>Jai&#039;s Blog</title>
	<atom:link href="http://jairusbondoc.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://jairusbondoc.com/blog</link>
	<description>Probably the Best PHP Developer you&#039;ll ever meet. LOL :D</description>
	<lastBuildDate>Wed, 22 Sep 2010 18:13:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Smugmug</title>
		<link>http://jairusbondoc.com/blog/2010/04/27/smugmug/</link>
		<comments>http://jairusbondoc.com/blog/2010/04/27/smugmug/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 08:10:26 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=366</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox" href="http://jairusbondoc.com/blog/wp-content/uploads/2010/03/nerd-girl-8.jpg"><img class="alignnone size-thumbnail wp-image-305" title="nerd-girl-8" src="http://jairusbondoc.com/blog/wp-content/uploads/2010/03/nerd-girl-8-150x150.jpg" alt="" width="150" height="150" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/04/27/smugmug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Word Limit Function</title>
		<link>http://jairusbondoc.com/blog/2010/04/08/word-limit-function/</link>
		<comments>http://jairusbondoc.com/blog/2010/04/08/word-limit-function/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 04:22:07 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[word]]></category>
		<category><![CDATA[word limit function]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=354</guid>
		<description><![CDATA[Function that returns that the string with certain number of words.
Good for limiting word display on texts
function word_limit&#40;$str, $limit&#41;
&#123;
&#160; &#160; $str .= &#34;&#34;;
&#160; &#160; $str = trim&#40;$str&#41;;
&#160; &#160; $l = strlen&#40;$str&#41;;
&#160; &#160; $s = &#34;&#34;;
&#160; &#160; for&#40;$i=0; $i&#60;$l; $i++&#41;
&#160; &#160; &#123;
&#160; &#160; &#160; &#160; $s .= $str&#91;$i&#93;;
&#160; &#160; &#160; &#160; if&#40;$limit&#62;0&#38;&#38;&#40;preg_match&#40;&#34;/\s/&#34;, $str&#91;$i&#93;&#41;&#41;&#41;
&#160; &#160; &#160; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>Function that returns that the string with certain number of words.<br />
Good for limiting word display on texts</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">function</span> word_limit<span style="color: #009900;">&#40;</span><span style="color: #000088;">$str</span><span style="color: #339933;">,</span> <span style="color: #000088;">$limit</span><span style="color: #009900;">&#41;</span><br />
<span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$str</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$str</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/trim"><span style="color: #990000;">trim</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$str</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$l</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/strlen"><span style="color: #990000;">strlen</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$str</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$s</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$i</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span><span style="color: #339933;">&lt;</span><span style="color: #000088;">$l</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$s</span> <span style="color: #339933;">.=</span> <span style="color: #000088;">$str</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$limit</span><span style="color: #339933;">&gt;</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">&amp;&amp;</span><span style="color: #009900;">&#40;</span><a href="http://www.php.net/preg_match"><span style="color: #990000;">preg_match</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;/\s/&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$str</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#123;</span> &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><a href="http://www.php.net/preg_match"><span style="color: #990000;">preg_match</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;/\s/&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$str</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$limit</span><span style="color: #339933;">--;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #000088;">$limit</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #000088;">$s</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;...&quot;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">break</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #000088;">$s</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span></div></div>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/04/08/word-limit-function/feed/</wfw:commentRss>
		<slash:comments>113</slash:comments>
		</item>
		<item>
		<title>List Generator V 1.0</title>
		<link>http://jairusbondoc.com/blog/2010/03/29/list-generator-v-1-0/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/29/list-generator-v-1-0/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 04:11:10 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=328</guid>
		<description><![CDATA[Compatible for dbQuery Result set
function listGenerator&#40;$data, $columnheadings=&#34;&#34;, $tools, $pages=&#34;1&#34;, $withstyle=true&#41;&#123;
&#160; &#160; if&#40;$withstyle&#41;&#123;
&#160; &#160; &#160; &#160; $tableid = &#34;table_&#34;.base64_encode&#40;microtime&#40;&#41;&#41;;
&#160; &#160; &#160; &#160; $instyle = &#34;
&#160; &#160; &#160; &#160; &#60;style&#62;
&#160; &#160; &#160; &#160; #&#34;.$tableid.&#34; .datatable{
&#160; &#160; &#160; &#160; &#160; &#160; padding:0px;
&#160; &#160; &#160; &#160; &#160; &#160; border-collapse: collapse;
&#160; &#160; &#160; &#160; &#160; &#160; font-family:Verdana, Arial, Helvetica, sans-serif;
&#160; [...]]]></description>
			<content:encoded><![CDATA[<p>Compatible for dbQuery Result set</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">function</span> listGenerator<span style="color: #009900;">&#40;</span><span style="color: #000088;">$data</span><span style="color: #339933;">,</span> <span style="color: #000088;">$columnheadings</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$tools</span><span style="color: #339933;">,</span> <span style="color: #000088;">$pages</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;1&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$withstyle</span><span style="color: #339933;">=</span><span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$withstyle</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$tableid</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;table_&quot;</span><span style="color: #339933;">.</span><a href="http://www.php.net/base64_encode"><span style="color: #990000;">base64_encode</span></a><span style="color: #009900;">&#40;</span><a href="http://www.php.net/microtime"><span style="color: #990000;">microtime</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$instyle</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;style&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; #&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$tableid</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot; .datatable{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; padding:0px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; border-collapse: collapse;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; font-family:Verdana, Arial, Helvetica, sans-serif;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; #&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$tableid</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot; .headcell{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; background:black;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; border: 1px solid black;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; color: white;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; padding:5px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; #&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$tableid</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot; .headtool{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; padding:5px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; #&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$tableid</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot; .datacell{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; border: 1px solid black;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; padding:5px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; #&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$tableid</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot; .datatool{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; padding:5px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/style&gt;&quot;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$t</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/count"><span style="color: #990000;">count</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$data</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$t</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$toreplace</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$data</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$key</span><span style="color: #339933;">=&gt;</span><span style="color: #000088;">$value</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$toreplace</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;{&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$key</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;}&quot;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$withstyle</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$r</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&lt;div id='&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$tableid</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;'&gt;&quot;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$r</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&lt;table class='datatable' cellpadding=0 cellspacing=0&gt;&quot;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">//columns headings</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$columns</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$columnheadings</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #000088;">$columns</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$columns</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$data</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$columns</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/array_keys"><span style="color: #990000;">array_keys</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$columns</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$u</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/count"><span style="color: #990000;">count</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$columns</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$r</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&lt;tr&gt;&quot;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$u</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/count"><span style="color: #990000;">count</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$columns</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$i</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span><span style="color: #339933;">&lt;</span><span style="color: #000088;">$u</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$r</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&lt;td class='headcell'&gt;&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$columns</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;&lt;/td&gt;&quot;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$tools</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$r</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&lt;td class='headtool'&gt;&amp;nbsp;&lt;/td&gt;&quot;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$r</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&lt;/tr&gt;&quot;</span><span style="color: #339933;">;</span>&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">//rows</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$i</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span><span style="color: #339933;">&lt;</span><span style="color: #000088;">$t</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$r</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&lt;tr&gt;&quot;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$j</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> <span style="color: #000088;">$j</span><span style="color: #339933;">&lt;</span><span style="color: #000088;">$u</span><span style="color: #339933;">;</span> <span style="color: #000088;">$j</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$value</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$data</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$columns</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$j</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><a href="http://www.php.net/trim"><span style="color: #990000;">trim</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$value</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$r</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&lt;td class='datacell'&gt;&amp;nbsp;&lt;/td&gt;&quot;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">else</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$r</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&lt;td class='datacell'&gt;&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$data</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$columns</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$j</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;&lt;/td&gt;&quot;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$tools</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$replacement</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/array_values"><span style="color: #990000;">array_values</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$data</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$toolsnew</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/str_replace"><span style="color: #990000;">str_replace</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$toreplace</span><span style="color: #339933;">,</span> <span style="color: #000088;">$replacement</span><span style="color: #339933;">,</span> <span style="color: #000088;">$tools</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$r</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&lt;td class='datatool'&gt;<span style="color: #006699; font-weight: bold;">$toolsnew</span>&lt;/td&gt;&quot;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$r</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&lt;/tr&gt;&quot;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$r</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&lt;/table&gt;&quot;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$withstyle</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$r</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&lt;/div&gt;&quot;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span> &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #000088;">$instyle</span><span style="color: #339933;">.</span><span style="color: #000088;">$r</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span></div></div>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/29/list-generator-v-1-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 5 (updated)</title>
		<link>http://jairusbondoc.com/blog/2010/03/27/day-5-updated/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/27/day-5-updated/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 04:22:59 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Teaching Stint]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=323</guid>
		<description><![CDATA[day 5.zip
]]></description>
			<content:encoded><![CDATA[<blockquote><p><a href="http://jairusbondoc.com/blog/wp-content/uploads/2010/03/day-5.zip">day 5.zip</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/27/day-5-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some new things to study on&#8230;.</title>
		<link>http://jairusbondoc.com/blog/2010/03/26/some-new-things-to-study-on/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/26/some-new-things-to-study-on/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 04:15:44 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=304</guid>
		<description><![CDATA[



try
{
$(function() {
	$('.imglightbox').nmg_popup_ajax();
	
});
}
catch(e){
}


OK time to get a bit nerdy!

I am yet to figure our couple of things&#8230; I&#8217;m just parking the links here.  
http://code.google.com/status/appengine
http://quercus.caucho.com/
Enjoy  
http://jairusbondoc.appspot.com/
]]></description>
			<content:encoded><![CDATA[<h1 style="text-align: center;">
<script type='text/javascript' src='/blog/wp-content/plugins/ajax_lightbox/js/jquery-1.4.2.min.js'></script>
<script type='text/javascript' src='/blog/wp-content/plugins/ajax_lightbox/js/nmg_popup_ajax.js'></script>
<script>
try
{
$(function() {
	$('.imglightbox').nmg_popup_ajax();
	
});
}
catch(e){
}
</script>
<br />
OK time to get a bit nerdy!</h1>
<p style="text-align: center;"><a class="imglightbox" rel="image" href="http://jairusbondoc.com/blog/wp-content/uploads/2010/03/nerd-girl-8.jpg"><img class="size-full wp-image-305 aligncenter" title="nerd-girl-8" src="http://jairusbondoc.com/blog/wp-content/uploads/2010/03/nerd-girl-8.jpg" alt="" width="187" height="269" /></a></p>
<p style="text-align: center;">I am yet to figure our couple of things&#8230; I&#8217;m just parking the links here. <img src='http://jairusbondoc.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p style="text-align: center;"><a href="http://code.google.com/status/appengine">http://code.google.com/status/appengine</a><br />
<a href="http://quercus.caucho.com/">http://quercus.caucho.com/</a></p>
<p style="text-align: center;">Enjoy <img src='http://jairusbondoc.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p style="text-align: center;"><a href="http://jairusbondoc.appspot.com/">http://jairusbondoc.appspot.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/26/some-new-things-to-study-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protected: Sample Projects</title>
		<link>http://jairusbondoc.com/blog/2010/03/26/sample-projects/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/26/sample-projects/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 03:47:32 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=300</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://jairusbondoc.com/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-300">Password:<br />
<input name="post_password" id="pwbox-300" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/26/sample-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protected: Project Hunter</title>
		<link>http://jairusbondoc.com/blog/2010/03/25/project_hunter/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/25/project_hunter/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 14:47:50 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/2010/03/25/bidhunter/</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://jairusbondoc.com/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-291">Password:<br />
<input name="post_password" id="pwbox-291" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/25/project_hunter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protected: POS</title>
		<link>http://jairusbondoc.com/blog/2010/03/25/pos/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/25/pos/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 12:19:16 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=285</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://jairusbondoc.com/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-285">Password:<br />
<input name="post_password" id="pwbox-285" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/25/pos/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Protected: Mancards</title>
		<link>http://jairusbondoc.com/blog/2010/03/25/mancards/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/25/mancards/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 12:02:02 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=262</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://jairusbondoc.com/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-262">Password:<br />
<input name="post_password" id="pwbox-262" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/25/mancards/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Protected: CAM</title>
		<link>http://jairusbondoc.com/blog/2010/03/25/cam/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/25/cam/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 12:00:33 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=279</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://jairusbondoc.com/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-279">Password:<br />
<input name="post_password" id="pwbox-279" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/25/cam/feed/</wfw:commentRss>
		<slash:comments>59</slash:comments>
		</item>
		<item>
		<title>Protected: Distressed</title>
		<link>http://jairusbondoc.com/blog/2010/03/25/distressed/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/25/distressed/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 11:40:13 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=274</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://jairusbondoc.com/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-274">Password:<br />
<input name="post_password" id="pwbox-274" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/25/distressed/feed/</wfw:commentRss>
		<slash:comments>105</slash:comments>
		</item>
		<item>
		<title>.htaccess to update Upload Size</title>
		<link>http://jairusbondoc.com/blog/2010/03/25/htaccess-to-update-upload-size/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/25/htaccess-to-update-upload-size/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 10:13:53 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=260</guid>
		<description><![CDATA[php_value upload_max_filesize 20M
php_value post_max_size 20M
php_value max_execution_time 200
php_value max_input_time 200
]]></description>
			<content:encoded><![CDATA[<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">php_value upload_max_filesize 20M<br />
php_value post_max_size 20M<br />
php_value max_execution_time <span style="color: #cc66cc;">200</span><br />
php_value max_input_time <span style="color: #cc66cc;">200</span></div></div>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/25/htaccess-to-update-upload-size/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>E-mail Checker</title>
		<link>http://jairusbondoc.com/blog/2010/03/25/e-mail-checker/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/25/e-mail-checker/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 09:36:59 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=255</guid>
		<description><![CDATA[This function checks for valid email;
function checkEmail&#40;$email&#41; &#123;
&#160; &#160; if&#40;preg_match&#40;&#34;/^([a-zA-Z0-9])+([a-zA-Z0-9\._-])*@([a-zA-Z0-9_-])+([a-zA-Z0-9\._-]+)+$/&#34; , $email&#41;&#41;
&#160; &#160; &#123;
&#160; &#160; &#160; &#160; list&#40;$username,$domain&#41;=split&#40;'@',$email&#41;;
&#160; &#160; &#160; &#160; if&#40;!getmxrr &#40;$domain,$mxhosts&#41;&#41; &#123;
&#160; &#160; &#160; &#160; &#160; &#160; return false;
&#160; &#160; &#160; &#160; &#125;
&#160; &#160; &#160; &#160; return true;
&#160; &#160; &#125;
&#160; &#160; return false;
&#125;
]]></description>
			<content:encoded><![CDATA[<p>This function checks for valid email;</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">function</span> checkEmail<span style="color: #009900;">&#40;</span><span style="color: #000088;">$email</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><a href="http://www.php.net/preg_match"><span style="color: #990000;">preg_match</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;/^([a-zA-Z0-9])+([a-zA-Z0-9\._-])*@([a-zA-Z0-9_-])+([a-zA-Z0-9\._-]+)+$/&quot;</span> <span style="color: #339933;">,</span> <span style="color: #000088;">$email</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/list"><span style="color: #990000;">list</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$username</span><span style="color: #339933;">,</span><span style="color: #000088;">$domain</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">=</span><a href="http://www.php.net/split"><span style="color: #990000;">split</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'@'</span><span style="color: #339933;">,</span><span style="color: #000088;">$email</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><a href="http://www.php.net/getmxrr"><span style="color: #990000;">getmxrr</span></a> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$domain</span><span style="color: #339933;">,</span><span style="color: #000088;">$mxhosts</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span></div></div>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/25/e-mail-checker/feed/</wfw:commentRss>
		<slash:comments>92</slash:comments>
		</item>
		<item>
		<title>Protected: Asterisk Netherlands</title>
		<link>http://jairusbondoc.com/blog/2010/03/25/netherlands/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/25/netherlands/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 09:18:06 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=245</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://jairusbondoc.com/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-245">Password:<br />
<input name="post_password" id="pwbox-245" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/25/netherlands/feed/</wfw:commentRss>
		<slash:comments>66</slash:comments>
		</item>
		<item>
		<title>Protected: Pointwest</title>
		<link>http://jairusbondoc.com/blog/2010/03/25/pointwest/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/25/pointwest/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 09:12:43 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=239</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://jairusbondoc.com/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-239">Password:<br />
<input name="post_password" id="pwbox-239" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/25/pointwest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Link / Email Address parser</title>
		<link>http://jairusbondoc.com/blog/2010/03/25/link-parser/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/25/link-parser/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 06:19:53 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[A href Parser]]></category>
		<category><![CDATA[a-tag parser]]></category>
		<category><![CDATA[Link Parser]]></category>
		<category><![CDATA[Regular expression]]></category>
		<category><![CDATA[tag parser]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=205</guid>
		<description><![CDATA[This is a simple link/email address parser I made. It also considers html entity encoded email addresses;
Basically the given is a website url passed through GET.
The programs reads through the website&#8230;
Then the output is an array of links and emails that is in that website.
linkparser.zip
&#60;?php
$url = $_GET&#91;'url'&#93;;
if&#40;trim&#40;$url&#41;==&#34;&#34;&#41;
&#123;
&#160; &#160; exit&#40;&#41;;
&#125;
$parsetemp = parse_url&#40;$url&#41;;
$absoluteurl = $parsetemp&#91;'scheme'&#93;.&#34;://&#34;.$parsetemp&#91;'host'&#93;;

$handle = fopen&#40;$url, &#34;rb&#34;&#41;;
$contents [...]]]></description>
			<content:encoded><![CDATA[<p>This is a simple link/email address parser I made. It also considers html entity encoded email addresses;</p>
<p>Basically the given is a website url passed through GET.<br />
The programs reads through the website&#8230;<br />
Then the output is an array of links and emails that is in that website.</p>
<blockquote><p><a href="http://jairusbondoc.com/blog/wp-content/uploads/2010/03/linkparser.zip">linkparser.zip</a></p></blockquote>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;?php</span><br />
<span style="color: #000088;">$url</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'url'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><a href="http://www.php.net/trim"><span style="color: #990000;">trim</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$url</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">==</span><span style="color: #0000ff;">&quot;&quot;</span><span style="color: #009900;">&#41;</span><br />
<span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <a href="http://www.php.net/exit"><span style="color: #990000;">exit</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #000088;">$parsetemp</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/parse_url"><span style="color: #990000;">parse_url</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$url</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$absoluteurl</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$parsetemp</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'scheme'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;://&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$parsetemp</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'host'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000088;">$handle</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/fopen"><span style="color: #990000;">fopen</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$url</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;rb&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$contents</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><a href="http://www.php.net/feof"><span style="color: #990000;">feof</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$handle</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><br />
<span style="color: #009900;">&#123;</span><br />
&nbsp; <span style="color: #000088;">$contents</span> <span style="color: #339933;">.=</span> <a href="http://www.php.net/fread"><span style="color: #990000;">fread</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$handle</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">8192</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><br />
<a href="http://www.php.net/fclose"><span style="color: #990000;">fclose</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$handle</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$contents</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;&lt;br&gt;&quot;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000088;">$pattern</span> <span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/&lt;a[^&gt;]*(href\s*=\s*<span style="color: #000099; font-weight: bold;">\&quot;</span>(.*)<span style="color: #000099; font-weight: bold;">\&quot;</span>)+[^&gt;]*&gt;(.*)&lt;\/a&gt;/iUs&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$matches</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<a href="http://www.php.net/preg_match_all"><span style="color: #990000;">preg_match_all</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$pattern</span><span style="color: #339933;">,</span> <span style="color: #000088;">$contents</span><span style="color: #339933;">,</span> <span style="color: #000088;">$matches</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$links</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$matches</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000088;">$emails</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$t</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/count"><span style="color: #990000;">count</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$links</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$i</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span><span style="color: #339933;">&lt;</span><span style="color: #000088;">$t</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><br />
<span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$links</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/trim"><span style="color: #990000;">trim</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$links</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$links</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">==</span><span style="color: #0000ff;">&quot;&quot;</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/unset"><span style="color: #990000;">unset</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$links</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><a href="http://www.php.net/strpos"><span style="color: #990000;">strpos</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$links</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;mailto&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">===</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$emailtemparr</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/explode"><span style="color: #990000;">explode</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;:&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$links</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$emailtemp</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/html_entity_decode"><span style="color: #990000;">html_entity_decode</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$emailtemparr</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$j</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">2</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">while</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$emailarr</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$j</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$emails</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;:&quot;</span><span style="color: #339933;">.</span><a href="http://www.php.net/html_entity_decode"><span style="color: #990000;">html_entity_decode</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$emailarr</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$j</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$j</span><span style="color: #339933;">++;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$emails</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$emailtemp</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/unset"><span style="color: #990000;">unset</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$links</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><a href="http://www.php.net/strpos"><span style="color: #990000;">strpos</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$links</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;://&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">!==</span><span style="color: #cc66cc;">3</span><span style="color: #339933;">&amp;&amp;</span>strpos<span style="color: #009900;">&#40;</span><span style="color: #000088;">$links</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;://&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">!==</span><span style="color: #cc66cc;">4</span><span style="color: #339933;">&amp;&amp;</span>strpos<span style="color: #009900;">&#40;</span><span style="color: #000088;">$links</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;://&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">!==</span><span style="color: #cc66cc;">5</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$links</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$absoluteurl</span><span style="color: #339933;">.</span><span style="color: #000088;">$links</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #000088;">$links</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/array_values"><span style="color: #990000;">array_values</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$links</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;pre&gt;&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;emails:&lt;br&gt;&quot;</span><span style="color: #339933;">;</span><br />
<a href="http://www.php.net/print_r"><span style="color: #990000;">print_r</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$emails</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;links:&lt;br&gt;&quot;</span><span style="color: #339933;">;</span><br />
<a href="http://www.php.net/print_r"><span style="color: #990000;">print_r</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$links</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<a href="http://www.php.net/print_r"><span style="color: #990000;">print_r</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$matches</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;/pre&gt;&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #000000; font-weight: bold;">?&gt;</span></div></div>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/25/link-parser/feed/</wfw:commentRss>
		<slash:comments>64</slash:comments>
		</item>
		<item>
		<title>Email Blaster Wrapper Function</title>
		<link>http://jairusbondoc.com/blog/2010/03/25/emailer-wrapper-function/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/25/emailer-wrapper-function/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 05:55:58 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[email blast]]></category>
		<category><![CDATA[emailblast]]></category>
		<category><![CDATA[emailer]]></category>
		<category><![CDATA[PHP Mailer]]></category>
		<category><![CDATA[SMTP]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=189</guid>
		<description><![CDATA[Basically this is an emailer wrapper function. I used this function to send multiple emails to an array of recipient.
DONT FORGET: It uses the SMTP of phpmailer class so you have to configure the emailer/config.php with SMTP credentials
See attached for example.
mailer.zip
Usage (as seen in sample.php in the attached zip file):
include_once&#40;dirname&#40;__FILE__&#41;.&#34;/emailer/email.php&#34;&#41;
$from = &#34;jairus@nmgresources.ph&#34;;
$fromname = &#34;Jairus Bondoc&#34;;
$bouncereturn [...]]]></description>
			<content:encoded><![CDATA[<p>Basically this is an emailer wrapper function. I used this function to send multiple emails to an array of recipient.</p>
<p>DONT FORGET: It uses the SMTP of phpmailer class so you have to configure the emailer/config.php with SMTP credentials</p>
<p>See attached for example.</p>
<blockquote><p><a href="http://jairusbondoc.com/blog/wp-content/uploads/2010/03/mailer.zip">mailer.zip</a></p></blockquote>
<p>Usage (as seen in sample.php in the attached zip file):</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #b1b100;">include_once</span><span style="color: #009900;">&#40;</span><a href="http://www.php.net/dirname"><span style="color: #990000;">dirname</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900; font-weight: bold;">__FILE__</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;/emailer/email.php&quot;</span><span style="color: #009900;">&#41;</span><br />
<span style="color: #000088;">$from</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;jairus@nmgresources.ph&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$fromname</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Jairus Bondoc&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$bouncereturn</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;jairus@nmgresources.ph&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//where the email will forward in cases of bounced email</span><br />
<span style="color: #000088;">$subject</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Testing Email Blast&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$message</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&lt;strong&gt;Hello World&lt;/strong&gt;&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$emails</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'email'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;fuzylogic28@yahoo.com&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$emails</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'name'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Jairus Bondoc&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$emails</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'email'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;jairus@nmgresources.ph&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$emails</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'name'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Jairus Bondoc&quot;</span><span style="color: #339933;">;</span><br />
emailBlast<span style="color: #009900;">&#40;</span><span style="color: #000088;">$from</span><span style="color: #339933;">,</span> <span style="color: #000088;">$fromname</span><span style="color: #339933;">,</span> <span style="color: #000088;">$subject</span><span style="color: #339933;">,</span> <span style="color: #000088;">$message</span><span style="color: #339933;">,</span> <span style="color: #000088;">$emails</span><span style="color: #339933;">,</span> <span style="color: #000088;">$bouncereturn</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> &nbsp;<span style="color: #666666; font-style: italic;">//last parameter for running debug</span><br />
<span style="color: #000000; font-weight: bold;">?&gt;</span></div></div>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/25/emailer-wrapper-function/feed/</wfw:commentRss>
		<slash:comments>60</slash:comments>
		</item>
		<item>
		<title>An Earthquake just hitted Makati CBD</title>
		<link>http://jairusbondoc.com/blog/2010/03/25/an-earthquake-just-hitted-makati-cbd/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/25/an-earthquake-just-hitted-makati-cbd/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 05:39:10 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=186</guid>
		<description><![CDATA[Wow! We just had an earthquake in our office right this moment that I&#8217;m posting this blog. I feel so dizzy! Damn! We are in the penthouse of a 22 storey building. The earthquake was really felt!
It is reported that it has 6.0 magnitude with 40 miles depth
]]></description>
			<content:encoded><![CDATA[<p>Wow! We just had an earthquake in our office right this moment that I&#8217;m posting this blog. I feel so dizzy! Damn! We are in the penthouse of a 22 storey building. The earthquake was really felt!</p>
<p>It is reported that it has 6.0 magnitude with 40 miles depth</p>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/25/an-earthquake-just-hitted-makati-cbd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database.php</title>
		<link>http://jairusbondoc.com/blog/2010/03/25/database-php/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/25/database-php/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 05:08:09 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[database.php]]></category>
		<category><![CDATA[dbquery]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=176</guid>
		<description><![CDATA[This is probably the most used php file that I ever had since my career started and till now it still proved to be useful. This is to minimize the code for doing MySQL queries simply using the dbQuery() function. This file had so many variations and modifications but I&#8217;d like to put in my [...]]]></description>
			<content:encoded><![CDATA[<p>This is probably the most used php file that I ever had since my career started and till now it still proved to be useful. This is to minimize the code for doing MySQL queries simply using the dbQuery() function. This file had so many variations and modifications but I&#8217;d like to put in my Version 1.0  here. The function inside (dbQuery()) is basically 5 years old to this date.</p>
<blockquote><p><a href="http://jairusbondoc.com/blog/wp-content/uploads/2010/03/database.zip">database.zip</a></p></blockquote>
<p>Code inside database.php</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;?php</span><br />
<span style="color: #000088;">$DATABASE_HOST</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;localhost&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$DATABASE_USER</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;root&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$DATABASE_PASSWORD</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$DATABASE</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #000000; font-weight: bold;">function</span> dbQuery<span style="color: #009900;">&#40;</span><span style="color: #000088;">$query</span><span style="color: #009900;">&#41;</span><br />
<span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$DATABASE_HOST</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$DATABASE_USER</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$DATABASE_PASSWORD</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$DATABASE</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$returnArr</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/* Connecting, selecting database */</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$link</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/mysql_connect"><span style="color: #990000;">mysql_connect</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$DATABASE_HOST</span><span style="color: #339933;">,</span> <span style="color: #000088;">$DATABASE_USER</span><span style="color: #339933;">,</span> <span style="color: #000088;">$DATABASE_PASSWORD</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; or <a href="http://www.php.net/die"><span style="color: #990000;">die</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Could not connect : &quot;</span> <span style="color: #339933;">.</span> <a href="http://www.php.net/mysql_error"><span style="color: #990000;">mysql_error</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <a href="http://www.php.net/mysql_select_db"><span style="color: #990000;">mysql_select_db</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$DATABASE</span><span style="color: #009900;">&#41;</span> or <a href="http://www.php.net/die"><span style="color: #990000;">die</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Could not select database&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/* Performing SQL query */</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/mysql_query"><span style="color: #990000;">mysql_query</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$query</span><span style="color: #009900;">&#41;</span> or <a href="http://www.php.net/die"><span style="color: #990000;">die</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Query failed : &quot;</span> <span style="color: #339933;">.</span> <a href="http://www.php.net/mysql_error"><span style="color: #990000;">mysql_error</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&lt;br&gt;Query: &lt;b&gt;<span style="color: #006699; font-weight: bold;">$query</span>&lt;/b&gt;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">//if query is select</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">@</span><a href="http://www.php.net/mysql_num_rows"><span style="color: #990000;">mysql_num_rows</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$result</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$row</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/mysql_fetch_assoc"><span style="color: #990000;">mysql_fetch_assoc</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$result</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/array_push"><span style="color: #990000;">array_push</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$returnArr</span><span style="color: #339933;">,</span> <span style="color: #000088;">$row</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span> &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">//if query is insert</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">@</span><a href="http://www.php.net/mysql_insert_id"><span style="color: #990000;">mysql_insert_id</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$returnArr</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;mysql_insert_id&quot;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #339933;">@</span><a href="http://www.php.net/mysql_insert_id"><span style="color: #990000;">mysql_insert_id</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">//other queries</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">else</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/* Closing connection */</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/mysql_close"><span style="color: #990000;">mysql_close</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$link</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #000088;">$returnArr</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
<br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/* Free resultset */</span><br />
&nbsp; &nbsp; <span style="color: #339933;">@</span><a href="http://www.php.net/mysql_free_result"><span style="color: #990000;">mysql_free_result</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$result</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/* Closing connection */</span><br />
&nbsp; &nbsp; <a href="http://www.php.net/mysql_close"><span style="color: #990000;">mysql_close</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$link</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">//return array</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #000088;">$returnArr</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">?&gt;</span></div></div>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/25/database-php/feed/</wfw:commentRss>
		<slash:comments>62</slash:comments>
		</item>
		<item>
		<title>Protected: Onebodi</title>
		<link>http://jairusbondoc.com/blog/2010/03/25/onebodi/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/25/onebodi/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 04:52:53 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=171</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://jairusbondoc.com/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-171">Password:<br />
<input name="post_password" id="pwbox-171" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/25/onebodi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website Grader for SEO</title>
		<link>http://jairusbondoc.com/blog/2010/03/25/website-grader-for-seo/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/25/website-grader-for-seo/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 04:19:44 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Musings]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Websitegrader]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=161</guid>
		<description><![CDATA[Well, Well&#8230; Let&#8217;s talk about grades.   Been surfing about some web marketing lately and saw this cool website &#8220;grader&#8221; Websitegrader.com owned by HubSpot.  My one page site got a funny low grade of 63% hahaha!
Websitegrader.com basically parses the site and make derivations of how well your site is, although I think some of their algorithms are a [...]]]></description>
			<content:encoded><![CDATA[<p>Well, Well&#8230; Let&#8217;s talk about grades. <img src='http://jairusbondoc.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Been surfing about some web marketing lately and saw this cool website &#8220;grader&#8221; <a href="http://websitegrader.com/">Websitegrader.com</a> owned by <a href="http://hubspot.com">HubSpot</a>.  My one page site got a funny low grade of 63% hahaha!</p>
<p><a href="http://Websitegrader.com">Websitegrader.com</a> basically parses the site and make derivations of how well your site is, although I think some of their algorithms are a bit too superficial (well, as SEO is superficial and basically just for ahem&#8230; &#8216;overpaid-noob-programmer-wannabes&#8217;  lol) It is still presents some interesting features that may help any web marketer to improve their site. </p>
<p>In my opinion <a href="http://websitegrader.com/">Websitegrader.com</a> is a cool and useful tool, well as <a href="http://HubSpot.com">HubSpot</a> humbly says it in a kenya-trupt way;</p>
<blockquote><p><em>IMMA let you finish, but HubSpot has the best marketing software EVAR!&#8221; </em></p></blockquote>
<p>LOL</p>
<p>Here is my badge for <a href="http://jairusbondoc.com">jairusbondoc.com</a> ;</p>
<p style="text-align: center;"> <img class="aligncenter" src="http://badge.websitegrader.com/site/jairusbondoc.com" alt="The Website Grade for jairusbondoc.com!" /></p>
<p>and my here my gaming community site <a href="http://www.dotaph.com">www.dotaph.com</a> badge ;</p>
<p style="text-align: center;"><a href="http://websitegrader.com/site/dotaph.com"><br />
<img class="aligncenter" src="http://badge.websitegrader.com/site/dotaph.com" alt="The Website Grade for dotaph.com!" /><br />
</a></p>
<p style="text-align: center;">Kewl huh??? <img src='http://jairusbondoc.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/25/website-grader-for-seo/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Protected: Chatroulette</title>
		<link>http://jairusbondoc.com/blog/2010/03/24/chatroulette/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/24/chatroulette/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 12:50:08 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=158</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://jairusbondoc.com/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-158">Password:<br />
<input name="post_password" id="pwbox-158" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/24/chatroulette/feed/</wfw:commentRss>
		<slash:comments>54</slash:comments>
		</item>
		<item>
		<title>GE G3WP Waterproof Shockproof Camera</title>
		<link>http://jairusbondoc.com/blog/2010/03/24/ge-g3wp-waterproof-shockproof-camera/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/24/ge-g3wp-waterproof-shockproof-camera/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 07:54:14 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=143</guid>
		<description><![CDATA[Preparations for summer didn&#8217;t come cheap to me as I needed to buy a camera (not actually for me but for my girlfriend as a present). I never really wanted those bulky &#8220;pro&#8221; looking dslr (like my other nerdy trying-hard-to-be-artistic college batchmates LOL) as if my profession is not nerdy enough for me to add [...]]]></description>
			<content:encoded><![CDATA[<p>Preparations for summer didn&#8217;t come cheap to me as I needed to buy a camera (not actually for me but for my girlfriend as a present). I never really wanted those bulky &#8220;pro&#8221; looking dslr (like my other nerdy trying-hard-to-be-artistic college batchmates LOL) as if my profession is not nerdy enough for me to add a big nerdy camera around my neck.</p>
<p>But in cases that you needed a camera and you are as sloppy and careless as me on gadgets, I recommend this GE&#8217;s G3WP waterproof / shockproof camera. It is quite affordable and has some decent features and best of all it wont just easily break.</p>
<p>I remember when I instantly broke my old olympus camera at Sentosa beach (right after the day I bought it ) when grains of sand went into its moving lens. Totally sucks!</p>
<p>Here is some except from the review I read about the GE G3WP</p>
<blockquote><p><em>The GE G3WP is a waterproof digital camera that can be used to a maximum  depth of 10 feet. It features 12.2 Megapixels and an 4x optical zoom,  all of which should add to the freedom of the active outdoor  photographer, in order to capture his or her favorite moment.</em></p></blockquote>
<p style="text-align: center;"><a class="imglightbox" rel="image" href="http://jairusbondoc.com/blog/wp-content/uploads/2010/03/ge-g3wp.jpg"><img class="size-full wp-image-144 aligncenter" title="ge-g3wp" src="http://jairusbondoc.com/blog/wp-content/uploads/2010/03/ge-g3wp.jpg" alt="" width="480" height="326" /><br />
</a></p>
<p style="text-align: center;">It has a quite fair price tag of PHP9995 or approximately USD220.</p>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/24/ge-g3wp-waterproof-shockproof-camera/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boracay</title>
		<link>http://jairusbondoc.com/blog/2010/03/23/boracay/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/23/boracay/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 08:14:03 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=98</guid>
		<description><![CDATA[



try
{
$(function() {
	$('.imglightbox').nmg_popup_ajax();
	
});
}
catch(e){
}


This is just sample post for the new plugin I made.   I love the view&#8230; The blue sea.  
See plugin here

]]></description>
			<content:encoded><![CDATA[<p>
<script type='text/javascript' src='/blog/wp-content/plugins/ajax_lightbox/js/jquery-1.4.2.min.js'></script>
<script type='text/javascript' src='/blog/wp-content/plugins/ajax_lightbox/js/nmg_popup_ajax.js'></script>
<script>
try
{
$(function() {
	$('.imglightbox').nmg_popup_ajax();
	
});
}
catch(e){
}
</script>
</p>
<p style="text-align: center;">This is just sample post for the new plugin I made. <img src='http://jairusbondoc.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I love the view&#8230; The blue sea. <img src='http://jairusbondoc.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p style="text-align: center;">See plugin <a href="http://jairusbondoc.com/blog/2010/03/23/ajax-lightbox/">here</a></p>
<p style="text-align: center;"><a class="imglightbox" rel="image" href="http://jairusbondoc.com/blog/wp-content/uploads/2010/03/boracay.jpg"><img class="alignnone size-full wp-image-90" title="boracay" src="http://jairusbondoc.com/blog/wp-content/uploads/2010/03/boracay.jpg" alt="" width="373" height="498" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/23/boracay/feed/</wfw:commentRss>
		<slash:comments>64</slash:comments>
		</item>
		<item>
		<title>Ajax Lightbox Plugin</title>
		<link>http://jairusbondoc.com/blog/2010/03/23/ajax-lightbox/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/23/ajax-lightbox/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 07:31:07 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Lightbox]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=77</guid>
		<description><![CDATA[Yet another plugin I made, I made this because I had trouble looking for a popup with lightbox effect that has ajax capability.  
Download plugin here ajax_lightbox




try
{
$(function() {
	$('.ajlight').nmg_popup_ajax();
	
ajlpop = new nmg_popup();

});
}
catch(e){
}


plugin code: [[ajax_lightbox:ajlight:ajlpop]]
sample code below:
Boracay href test (image)
&#60;a class=&#34;ajlight&#34; rel=&#34;image&#34; href=&#34;/blog/wp-content/uploads/2010/03/boracay.jpg&#34;&#62;Boracay href test (image)&#60;/a&#62;
Boracay href test (page)
&#60;a class=&#34;ajlight&#34; href=&#34;/blog/2010/03/23/boracay/&#34;&#62;Boracay href test (page)&#60;/a&#62;

&#60;input onclick=&#34;ajlpop.show('/blog/2010/03/23/boracay/', 'get', [...]]]></description>
			<content:encoded><![CDATA[<p>Yet another plugin I made, I made this because I had trouble looking for a popup with lightbox effect that has ajax capability. <img src='http://jairusbondoc.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Download plugin here <a href="http://jairusbondoc.com/blog/wp-content/uploads/2010/03/ajax_lightbox.zip">ajax_lightbox</a></p>
<p>
<script type='text/javascript' src='/blog/wp-content/plugins/ajax_lightbox/js/jquery-1.4.2.min.js'></script>
<script type='text/javascript' src='/blog/wp-content/plugins/ajax_lightbox/js/nmg_popup_ajax.js'></script>
<script>
try
{
$(function() {
	$('.ajlight').nmg_popup_ajax();
	
ajlpop = new nmg_popup();

});
}
catch(e){
}
</script>
</p>
<div class="codecolorer-container html4strict default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">plugin code: [[ajax_lightbox:ajlight:ajlpop]]</div></div>
<p>sample code below:</p>
<p><a class="ajlight" rel="image" href="/blog/wp-content/uploads/2010/03/boracay.jpg">Boracay href test (image)</a></p>
<div class="codecolorer-container html4strict default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;ajlight&quot;</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;image&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;/blog/wp-content/uploads/2010/03/boracay.jpg&quot;</span>&gt;</span>Boracay href test (image)<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a>&gt;</span></div></div>
<p><a class="ajlight" href="/blog/2010/03/23/boracay/">Boracay href test (page)</a></p>
<div class="codecolorer-container html4strict default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;ajlight&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;/blog/2010/03/23/boracay/&quot;</span>&gt;</span>Boracay href test (page)<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a>&gt;</span></div></div>
<input onclick="ajlpop.show('/blog/2010/03/23/boracay/', 'get', '')" type="button" value="GET Test" />
<div class="codecolorer-container html4strict default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/input.html"><span style="color: #000000; font-weight: bold;">input</span></a> <span style="color: #000066;">onclick</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;ajlpop.show('/blog/2010/03/23/boracay/', 'get', '')&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;button&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;GET Test&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span></div></div>
<input onclick="ajlpop.show('/blog/2010/03/23/boracay/', 'post', '')" type="button" value="POST Test" />
<div class="codecolorer-container html4strict default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/input.html"><span style="color: #000000; font-weight: bold;">input</span></a> <span style="color: #000066;">onclick</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;ajlpop.show('/blog/2010/03/23/boracay/', 'post', '')&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;button&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;POST Test&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span></div></div>
<input onclick="ajlpop.show(' Hello World ')" type="button" value="Hello World" />
<div class="codecolorer-container html4strict default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/input.html"><span style="color: #000000; font-weight: bold;">input</span></a> <span style="color: #000066;">onclick</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;ajlpop.show(' Hello World ')&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;button&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Hello World&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span></div></div>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/23/ajax-lightbox/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>Simple Wordpress Plugin Template</title>
		<link>http://jairusbondoc.com/blog/2010/03/23/simple-wordpress-plugin/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/23/simple-wordpress-plugin/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 06:49:54 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=66</guid>
		<description><![CDATA[Here is my template for making Wordpress plugins. This sample plugin simply md5 enrypts a given argument and shows IP of site visitor
Here is how I used it in this post;
[[sampleplugin:jairus]]
Download plugin here sampleplugin.zip
Result is seen below:


MD5 Value of 'jairus' is eb38db69b8822e4973bc141f017eeba7

Your IP is: 38.107.179.212



Code of sampleplugin.php
&#60;?php
/*
Plugin Name: sampleplugin
Plugin URI: http://jairusbondoc.com/blog/2010/03/23/simple-wordpress-plugin/
Description: This sample plugin md5 [...]]]></description>
			<content:encoded><![CDATA[<p>Here is my template for making Wordpress plugins. This sample plugin simply md5 enrypts a given argument and shows IP of site visitor</p>
<p>Here is how I used it in this post;</p>
<div class="codecolorer-container html4strict default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">[[sampleplugin:jairus]]</div></div>
<p>Download plugin here <a href="http://jairusbondoc.com/blog/wp-content/uploads/2010/03/sampleplugin.zip">sampleplugin.zip</a></p>
<p>Result is seen below:</p>
<blockquote><p>
<pre>
MD5 Value of 'jairus' is eb38db69b8822e4973bc141f017eeba7

Your IP is: 38.107.179.212
</pre>

</p></blockquote>
<p>Code of sampleplugin.php</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;?php</span><br />
<span style="color: #666666; font-style: italic;">/*<br />
Plugin Name: sampleplugin<br />
Plugin URI: http://jairusbondoc.com/blog/2010/03/23/simple-wordpress-plugin/<br />
Description: This sample plugin md5 encrypts a given argument<br />
Version: 1.0<br />
Author: Jairus Bondoc<br />
License: GPL<br />
*/</span><br />
<br />
add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'the_content'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'sampleplugin'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">function</span> sampleplugin<span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
<span style="color: #666666; font-style: italic;">/*<br />
//some useful things<br />
global $current_user;<br />
$pluginbaseurl = dirname($_SERVER['SCRIPT_NAME']).&quot;/wp-content/plugins/sampleplugin/&quot;;<br />
print_r(get_func_args(),1);<br />
get_currentuserinfo();<br />
$nick = &quot;&quot;;<br />
ob_start();<br />
the_author_nickname();<br />
$nick = ob_get_contents();<br />
ob_end_clean();<br />
$nick = $current_user-&gt;user_login;<br />
if(!$nick){<br />
&nbsp; &nbsp; $nick = &quot; &quot;;<br />
}<br />
*/</span><br />
<span style="color: #000088;">$matches</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<a href="http://www.php.net/preg_match_all"><span style="color: #990000;">preg_match_all</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;/\[\[sampleplugin:([^]]*)\]\]/iUs&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$content</span><span style="color: #339933;">,</span> <span style="color: #000088;">$matches</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$toreplace</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$matches</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$extraargs</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$matches</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$res</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&lt;pre&gt;<br />
MD5 Value of '<span style="color: #006699; font-weight: bold;">$extraargs</span>' is &quot;</span><span style="color: #339933;">.</span><a href="http://www.php.net/md5"><span style="color: #990000;">md5</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$extraargs</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;<br />
&lt;br /&gt;<br />
Your IP is: &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REMOTE_ADDR'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;<br />
&lt;/pre&gt;<br />
&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$content</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/str_replace"><span style="color: #990000;">str_replace</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$toreplace</span><span style="color: #339933;">,</span> <span style="color: #000088;">$res</span><span style="color: #339933;">,</span> <span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">return</span> <span style="color: #000088;">$content</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #000000; font-weight: bold;">?&gt;</span></div></div>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/23/simple-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Protected: NMG Papers</title>
		<link>http://jairusbondoc.com/blog/2010/03/23/nmg-papers/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/23/nmg-papers/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 06:04:53 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=60</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://jairusbondoc.com/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-60">Password:<br />
<input name="post_password" id="pwbox-60" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/23/nmg-papers/feed/</wfw:commentRss>
		<slash:comments>60</slash:comments>
		</item>
		<item>
		<title>Protected: Kennedy</title>
		<link>http://jairusbondoc.com/blog/2010/03/23/kennedy/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/23/kennedy/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 03:32:37 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=57</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://jairusbondoc.com/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-57">Password:<br />
<input name="post_password" id="pwbox-57" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/23/kennedy/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Protected: Drupal Access</title>
		<link>http://jairusbondoc.com/blog/2010/03/22/drupal-access/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/22/drupal-access/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 13:44:58 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=54</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://jairusbondoc.com/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-54">Password:<br />
<input name="post_password" id="pwbox-54" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/22/drupal-access/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DNS</title>
		<link>http://jairusbondoc.com/blog/2010/03/22/dns/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/22/dns/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 13:30:36 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=50</guid>
		<description><![CDATA[Cannot play ROM (Runes of Magic) because internet at home cannot access e-games.com.ph totally sucks. So, I&#8217;m just saving our office dns here.  
89.104.219.61
]]></description>
			<content:encoded><![CDATA[<p>Cannot play ROM (Runes of Magic) because internet at home cannot access e-games.com.ph totally sucks. So, I&#8217;m just saving our office dns here. <img src='http://jairusbondoc.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>89.104.219.61</p>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/22/dns/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Day 4-5</title>
		<link>http://jairusbondoc.com/blog/2010/03/20/day-4-5-teaching-stint-notes/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/20/day-4-5-teaching-stint-notes/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 04:16:38 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Teaching Stint]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=36</guid>
		<description><![CDATA[Well looks like I&#8217;m loving Wordpress and I&#8217;m kinda getting the hang of it (I may have several use for this). Here&#8217;s my first attempt of being more organized with my life! LOL! Uploaded is my day 4-5 &#8220;pseudo/impromptu&#8221; notes during my PHP teaching class.
day 4-5.zip
]]></description>
			<content:encoded><![CDATA[<p>Well looks like I&#8217;m loving Wordpress and I&#8217;m kinda getting the hang of it (I may have several use for this). Here&#8217;s my first attempt of being more organized with my life! LOL! Uploaded is my day 4-5 &#8220;pseudo/impromptu&#8221; notes during my PHP teaching class.</p>
<blockquote><p><a href="http://jairusbondoc.com/blog/wp-content/uploads/2010/03/day-4-5.zip">day 4-5.zip</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/20/day-4-5-teaching-stint-notes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Textarea expander just like Facebook</title>
		<link>http://jairusbondoc.com/blog/2010/03/20/textarea-expander-just-like-facebook/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/20/textarea-expander-just-like-facebook/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 03:40:22 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=30</guid>
		<description><![CDATA[I&#8217;ve been wanting to make this one before then while teaching jQuery I stumbled upon this example. Very cool indeed.
http://interface.eyecon.ro/demos/expander.html
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been wanting to make this one before then while teaching jQuery I stumbled upon this example. Very cool indeed.</p>
<p><a href="http://interface.eyecon.ro/demos/expander.html">http://interface.eyecon.ro/demos/expander.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/20/textarea-expander-just-like-facebook/feed/</wfw:commentRss>
		<slash:comments>94</slash:comments>
		</item>
		<item>
		<title>Protected: Third Post</title>
		<link>http://jairusbondoc.com/blog/2010/03/19/third-post/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/19/third-post/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 15:49:00 +0000</pubDate>
		<dc:creator>paulo</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/2010/03/19/third-post/</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://jairusbondoc.com/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-25">Password:<br />
<input name="post_password" id="pwbox-25" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/19/third-post/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Protected: Yet Another Test</title>
		<link>http://jairusbondoc.com/blog/2010/03/19/paulo-test/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/19/paulo-test/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 12:50:43 +0000</pubDate>
		<dc:creator>paulo</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=15</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://jairusbondoc.com/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-15">Password:<br />
<input name="post_password" id="pwbox-15" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/19/paulo-test/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Protected: &#8220;ZoomModified&#8221; Zoomify WP Plugin Demo</title>
		<link>http://jairusbondoc.com/blog/2010/03/19/zoommodified-zoomify-wp-plugin-demo/</link>
		<comments>http://jairusbondoc.com/blog/2010/03/19/zoommodified-zoomify-wp-plugin-demo/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 11:39:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://jairusbondoc.com/blog/?p=1</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://jairusbondoc.com/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-1">Password:<br />
<input name="post_password" id="pwbox-1" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://jairusbondoc.com/blog/2010/03/19/zoommodified-zoomify-wp-plugin-demo/feed/</wfw:commentRss>
		<slash:comments>66</slash:comments>
		</item>
	</channel>
</rss>

