<?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>Camilo Lozano III</title>
	<atom:link href="http://blog.camilord.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.camilord.com</link>
	<description>class OS { var Linux = Servers; var Mac = Graphics; var Windows = Solitair; }</description>
	<lastBuildDate>Tue, 14 Feb 2012 21:53:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Protected: My Standard Firewall in CentOS Web Server (iptables)</title>
		<link>http://blog.camilord.com/2012/01/28/my-standard-firewall-in-centos-web-server-iptables/</link>
		<comments>http://blog.camilord.com/2012/01/28/my-standard-firewall-in-centos-web-server-iptables/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 23:05:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Info.Tech]]></category>
		<category><![CDATA[Linux System Administration]]></category>

		<guid isPermaLink="false">http://blog.camilord.com/?p=629</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://blog.camilord.com/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-629">Password:<br />
<input name="post_password" id="pwbox-629" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://blog.camilord.com/2012/01/28/my-standard-firewall-in-centos-web-server-iptables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual C# Upload File/Image via PHP with Squid-Cache in the Network</title>
		<link>http://blog.camilord.com/2012/01/27/visual-c-upload-file-image-via-php-with-squid-cache-in-the-network/</link>
		<comments>http://blog.camilord.com/2012/01/27/visual-c-upload-file-image-via-php-with-squid-cache-in-the-network/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 01:10:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Info.Tech]]></category>
		<category><![CDATA[Linux System Administration]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Visual C#]]></category>
		<category><![CDATA[100-continue problem]]></category>
		<category><![CDATA[417 Expectation failed]]></category>
		<category><![CDATA[remote server error]]></category>
		<category><![CDATA[squid-cache error]]></category>
		<category><![CDATA[visual c-sharp]]></category>
		<category><![CDATA[webclient]]></category>

		<guid isPermaLink="false">http://blog.camilord.com/?p=616</guid>
		<description><![CDATA[Today, I&#8217;ve been developing an oDesk-like activity monitoring application but for local network for my company, Innermax Support, and I came across with a problem of an errors: An exception occurred during a WebClient request. The remote server returned an error: (417) Expectation failed. And during my search in Google &#8212; from forums, MSDN and [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I&#8217;ve been developing an oDesk-like activity monitoring application but for local network for my company, <a title="Innermax Support" href="http://www.innermaxsupport.com/" target="_blank">Innermax Support</a>, and I came across with a problem of an errors:</p>
<ul>
<li>An exception occurred during a WebClient request.</li>
<li>The remote server returned an error: (417) Expectation failed.</li>
</ul>
<p>And during my search in Google &#8212; from forums, MSDN and other developers&#8217; resources &#8212; they face same problem. The common issue was the 100-Continue problem passing to a network with squid-cache. So there&#8217;s a websites that I combined their codes and luckily it works. Just forgot the URLs, I can&#8217;t credit thank-you&#8217;s to them.. hehehe!</p>
<p>The setup is like this&#8230; there&#8217;s a firewall which has squid-cache in the local network and my server where I will upload my file/image is at the other network with public IP address. I will directly upload the file/image to my server using the assigned public IP address via PHP script.</p>
<p>Here&#8217;s my code to solve the problems;</p>
<pre class="brush:csharp">public void uploadFile()
{
    try
    {
        // decleration of webclient
        ServicePointManager.Expect100Continue = false;
        System.Net.WebClient webby = new System.Net.WebClient();

        //initiate credentials
        webby.UseDefaultCredentials = false;
        webby.Credentials = new NetworkCredential("anonymous", "");

        //add headers
        webby.Headers.Add(HttpRequestHeader.UserAgent, "Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 2.0.50727.832)");
        webby.Headers.Add("Content-Type", "binary/octet-stream");

        //initiate upload file
        Byte[] result = webby.UploadFile("http://120.0.0.1/upload.php", "POST", @filename);

        string s = System.Text.Encoding.UTF8.GetString(result, 0, result.Length);
        MessageBox.Show(s);
        webby.Dispose();
    }
    catch (Exception)
    {
        // do nothing...
        MessageBox.Show("Upload failed!");
    }
}</pre>
<p>So far, it works fine with me and satisfied of my solution. Hope this will help your problem too&#8230; <img src='http://blog.camilord.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.camilord.com/2012/01/27/visual-c-upload-file-image-via-php-with-squid-cache-in-the-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DUMP/JUNK/TRASH SOPA/PROTECT-IP</title>
		<link>http://blog.camilord.com/2012/01/19/dump-sopa-protect-ip/</link>
		<comments>http://blog.camilord.com/2012/01/19/dump-sopa-protect-ip/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 03:12:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Madness]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[protect-IP]]></category>
		<category><![CDATA[sopa]]></category>

		<guid isPermaLink="false">http://blog.camilord.com/?p=609</guid>
		<description><![CDATA[PROTECT IP / SOPA Breaks The Internet from Fight for the Future on Vimeo. Tell Congress not to censor the internet NOW! &#8211; fightforthefuture.org/pipa PROTECT-IP is a bill that has been introduced in the Senate and the House and is moving quickly through Congress. It gives the government and corporations the ability to censor the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://vimeo.com/31100268">PROTECT IP / SOPA Breaks The Internet</a> from <a href="http://vimeo.com/fightforthefuture">Fight for the Future</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>Tell Congress not to censor the internet NOW! &#8211; <a rel="nofollow" href="http://www.fightforthefuture.org/pipa" target="_blank">fightforthefuture.org/pipa</a></p>
<p>PROTECT-IP is a bill that has been introduced in the Senate and the  House and is moving quickly through Congress. It gives the government  and corporations the ability to censor the net, in the name of  protecting &#8220;creativity&#8221;. The law would let the government or  corporations censor entire sites&#8211; they just have to convince a judge  that the site is &#8220;dedicated to copyright infringement.&#8221;</p>
<p>The government has already wrongly shut down sites without any recourse  to the site owner. Under this bill, sharing a video with anything  copyrighted in it, or what sites like Youtube and Twitter do, would be  considered illegal behavior according to this bill.</p>
<p>According to the Congressional Budget Office, this bill would cost us  $47 million tax dollars a year — that&#8217;s for a fix that won&#8217;t work,  disrupts the internet, stifles innovation, shuts out diverse voices, and  censors the internet. This bill is bad for creativity and does not  protect your rights.</p>
<p><a href="http://vimeo.com/32149733">Biden on Internet Freedom = Anti-SOPA</a> from <a href="http://vimeo.com/fightforthefuture">Fight for the Future</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><strong><a rel="nofollow" href="http://americancensorship.org/" target="_blank">americancensorship.org</a></strong></p>
<p>Joe Biden filled in for Hillary Clinton at the London Conference on  Cyberspace (LCC) on November 1st, giving a speech on the importance of  freedom in cyberspace and talking up the importance of freedom on the  internet and not regulating the internet. Meanwhile, the Obama  Administration stands with congress in full support of H.R 3261, the  Stop Online Piracy Act, which would give copyright holders the ability  to censor websites on the net. We need to stand up now and let Congress  know that they shouldn&#8217;t mess with the Internet!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.camilord.com/2012/01/19/dump-sopa-protect-ip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[REPOST] 7 Ways To Fail When Outsourcing To The Philippines by John Jonas</title>
		<link>http://blog.camilord.com/2012/01/13/repost-7-ways-to-fail-when-outsourcing-to-the-philippines-by-john-jonas/</link>
		<comments>http://blog.camilord.com/2012/01/13/repost-7-ways-to-fail-when-outsourcing-to-the-philippines-by-john-jonas/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 15:57:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Info.Tech]]></category>
		<category><![CDATA[Madness]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://blog.camilord.com/?p=604</guid>
		<description><![CDATA[My co-worker sent me a link and found it very true of most of the employers in Online Jobs. They maltreated Filipinoes as their virtual assistant, they want to do everything and finish it in a day or hour or a second. And I found it as stupidity tasks coz we are not Superman! I [...]]]></description>
			<content:encoded><![CDATA[<p>My co-worker sent me a link and found it very true of most of the employers in Online Jobs. They maltreated Filipinoes as their virtual assistant, they want to do everything and finish it in a day or hour or a second. And I found it as stupidity tasks coz we are not Superman! I would like to re-post this good article by John Jonas.</p>
<hr />
<p>When it comes to outsourcing your business (or yourself!) to the Philippines, there’s definitely a learning curve.<br />
Here are 7 ways you can guarantee failure for yourself :<br />
(<strong>Hint:</strong> Don’t do these things!)</p>
<h2>1. Try To Hire Someone To Do Everything</h2>
<p>Here’s an actual email I got this week<br />
<a href="http://blog.camilord.com/wp-content/uploads/2012/01/super-human-filipino.png"><img class="size-full wp-image-605 alignnone" title="super-human-filipino" src="http://blog.camilord.com/wp-content/uploads/2012/01/super-human-filipino.png" alt="" width="510" height="356" /></a><br />
So wait…you want a programmer, graphic designer, webmaster, who is  fluent in english and likes to write, who can write sales copy,  autoresponders, forum posts, ebooks, and reports.<br />
Oh yeah, sure, let me help you find that person!<br />
Oh wait, that person doesn’t exist.<br />
Hire someone to do a specific task! Then train them to be able to do everything.</p>
<h2>2. Hire A Project Manager</h2>
<p>Filipinos don’t know how to run your business for you.<br />
Don’t try to hire a project manager first along with 6 others, and  expect that “project manager” to manage those other 6 and get things  done. They don’t know how.<br />
YES! They’re very capable of being project managers, but very rarely  will you find someone who has been involved in enough internet business  that you can just turn a project over to them and have them manage other  people for you.<br />
Eventually…yes! After you’ve trained them and they’ve seen how the business is supposed to work.</p>
<h2>3. Hire Someone And Ignore Them</h2>
<p>You have to train the person you hire. They don’t know how to run  your super-niche internet marketing business. Don’t expect to hire  someone and just let them go do everything themselves. Expect to spend  some time working with them.</p>
<h2>4. Ask Someone To Do Work Before You Offer Them A Job</h2>
<p>This is my favorite.<br />
I get an email that says</p>
<blockquote><p>Can you please tell me why I can’t successfully hire someone, they all keep disappearing.<br />
Here’s the email I send them:<br />
I want you to start by doing a trial task.<br />
Write 20 articles, submit them to article directories, do a bunch of  directory submissions for me, build me a website and write all the  content for it.<br />
Then, I’ll evaluate your work and see if it’s going to work out.</p></blockquote>
<p>hahahahaha.<br />
Yeah right!<br />
They’re not going to do work until AFTER they know they have a full-time job working for you.<br />
Don’t give them a test task. Give them a job. Tell them the first month is a probationary period.</p>
<h2>5. Expect Immediate Results</h2>
<p>This is a long-term proposal here. I’ve been doing it for 4 years. You’re not going to see the same results in 4 days.<br />
Don’t expect it.</p>
<h2>6. Search and Search and Search For The Right Person, Then Email Them</h2>
<blockquote><p>Hey John,<br />
I searched for 3 days and I found the perfect candidate. They can do  everything you said wasn’t possible back up in #1 on this blog post. Why  won’t they respond to me?</p></blockquote>
<p>Why?<br />
Because they already have a job and they’re loyal to their current employer.<br />
Instead of trying to find the perfect person up front, try contacting 20  potential fits, see who responds, then sort through them.</p>
<h2>7. Set The Wrong Expectations</h2>
<p>When you hire them, don’t tell them you expect them to be totally  self-directed and to work without supervision and to be able to figure  everything out on their own.<br />
If you do, you’ll never hear from them again.<br />
Try telling them</p>
<blockquote><p>I expect you to try to figure things out, but I  understand that I’m going to give you tasks that you won’t know how to  do, and sometimes there won’t be any way to figure it out. In these  cases, please know that I’m here to answer your questions. I’m here to  help you. Please don’t hesitate to ask me when you get stuck.</p></blockquote>
<p>Otherwise, when they don’t know how to do something they get embarrassed and will never talk to you again.<br />
If you set the right expectation with them about asking for help, they’ll ask, you’ll help, and all will be happy and good.</p>
<p>These aren’t hard things to avoid…you just have to know about them to avoid them.<br />
There’s more good stuff like this as a member of <a href="http://www.replacemyself.com/">ReplaceMyself.com</a>.</p>
<hr />
<p>Author:<a title="John Jonas" href="http://www.jonasblog.com" target="_blank"> John Jonas</a></p>
<p>Article Reference:<a href="http://www.jonasblog.com/7-ways-to-fail-when-outsourcing-to-the-philippines" target="_blank"> http://www.jonasblog.com/7-ways-to-fail-when-outsourcing-to-the-philippines</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.camilord.com/2012/01/13/repost-7-ways-to-fail-when-outsourcing-to-the-philippines-by-john-jonas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outsourcing in the Philippines: InnerMax Support</title>
		<link>http://blog.camilord.com/2011/12/22/outsourcing-in-the-philippines-innermax-support/</link>
		<comments>http://blog.camilord.com/2011/12/22/outsourcing-in-the-philippines-innermax-support/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 17:20:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Info.Tech]]></category>
		<category><![CDATA[Learn New Things]]></category>
		<category><![CDATA[Linux System Administration]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[data entry]]></category>
		<category><![CDATA[inbound phone support]]></category>
		<category><![CDATA[offshore projects]]></category>
		<category><![CDATA[outbound phone support]]></category>
		<category><![CDATA[outsourcing projects]]></category>
		<category><![CDATA[phone support]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://blog.camilord.com/?p=599</guid>
		<description><![CDATA[I&#8217;ve crossed  a good outsourcing firm in the Philippines, Innermax Support specializes in Web Development, Web Designing, SEO Services, Data Entry, Social Media Marketing, Inbound Phone Support, Outbound Phone Support. They are comparatively new to the industry, but with their management along with all their agent&#8217;s combined knowledge, skills, and significantly valuable experiences; they surely [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.innermaxsupport.com"><img class="alignright" title="InnerMax Support" src="http://www.innermaxsupport.com/2008-2011/images/ims_logo.png" alt="InnerMax Support" width="0" height="0" /></a><img class="alignright" title="Innermax Support" src="http://www.innermaxsupport.com/2008-2011/images/ims_logo.png" alt="" width="275" height="69" />I&#8217;ve crossed  a good outsourcing firm in the Philippines, <a href="http://innermaxsupport.com/about-us"><strong>Innermax Support</strong></a> specializes in  							<a href="http://innermaxsupport.com/web-design-development"><strong>Web Development</strong></a>,  							<a href="http://innermaxsupport.com/web-design-development"><strong>Web Designing</strong></a>,  							<a href="http://innermaxsupport.com/seo-services"><strong>SEO Services</strong></a>,  							<a href="http://innermaxsupport.com/data-entry"><strong>Data Entry</strong></a>,  							<a href="http://innermaxsupport.com/social-media-marketing"><strong>Social Media Marketing</strong></a>,  							<a href="http://innermaxsupport.com/inbound-phone-support"><strong>Inbound Phone Support</strong></a>,  							<a href="http://innermaxsupport.com/outbound-phone-support"><strong>Outbound Phone Support</strong></a>.</p>
<p>They are comparatively new to the industry, but with their management along 							with all their agent&#8217;s combined knowledge, skills, and significantly  							valuable experiences; they surely can consistently turn every single task,  							great or small, highly distinguished more than any clients could wish for.</p>
<ul>
<li>Innermax Support provides high quality services</li>
<li>Takes your business outsourcing to a new level with more leads and sales</li>
<li>Endows with the best services way beyond your desired results and expectations</li>
<li>Has assigned the best agents that fit every campaign you asked to be dealt with.</li>
<li>Gladly welcomes high level of engagement with the corporate stakeholders at your company.</li>
</ul>
<div>
<h3>Expect Quality Services</h3>
<ul>
<li>Exceptional results and return on assets</li>
<li>They never fail to keep our eyes peeled towards particular outcomes  								and circumstances of your campaign and in most instances; they most likely 								 notice any sorts of any diversities and take action before such gets  								out of hand.</li>
<li>They are firmly committed to quality service and accommodation.</li>
<li>They are very knowledgeable by every inch and corners from tiniest to most immense aspects about e- marketing.</li>
<li>They never would hesitate to establish bountiful relationship and develop harmonious companionship with their valuable clients.</li>
<li>They live by the virtue of courteous and respectful demeanor to each of their clients.</li>
<li>They never would leave their clients oblivious about any current status of the relayed tasks.</li>
<li>And above all. They walk what they talk.</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.camilord.com/2011/12/22/outsourcing-in-the-philippines-innermax-support/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>HowTo? .htaccess SEO-friendly URL</title>
		<link>http://blog.camilord.com/2011/10/13/howto-htaccess-seo-friendly-url/</link>
		<comments>http://blog.camilord.com/2011/10/13/howto-htaccess-seo-friendly-url/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 06:17:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Info.Tech]]></category>
		<category><![CDATA[Linux System Administration]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[friendly URL]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://blog.camilord.com/?p=590</guid>
		<description><![CDATA[Today, its my 3rd time I created a SEO-friendly URL for a website&#8230; and its been a year since my last setup and forgot the procedure.. So I&#8217;m writing it down to my blog to remind me what I did&#8230; this time, I used different method coz I&#8217;m getting lazy using regex. hehehehe&#8230; I used [...]]]></description>
			<content:encoded><![CDATA[<p>Today, its my 3rd time I created a SEO-friendly URL for a website&#8230; and its been a year since my last setup and forgot the procedure.. So I&#8217;m writing it down to my blog to remind me what I did&#8230; this time, I used different method coz I&#8217;m getting lazy using regex. hehehehe&#8230;</p>
<p>I used .htaccess generator at <a href="http://www.myseotool.com/free-seo-tools/htaccess-url-rewrite-generator.php">www.myseotool.com</a> and upload to the server.. I tested it out.. and it seems it won&#8217;t work&#8230;</p>
<p>I search for the solution and I found the solution of <a href="http://eddieringle.com/how-to-htaccess-not-working-maybe-apache-is-ignoring-it/">Eddie Ringle</a> about his experience too. So I edited my httpd.conf , since I&#8217;m also the system/server administrator, I have full access on the server, and change from;</p>
<pre class="brush:shell">&lt;Directory /&gt;
    Options FollowSymLinks
    AllowOverride None
&lt;/Directory&gt;</pre>
<p>to</p>
<pre class="brush:shell">&lt;Directory /&gt;
  Options FollowSymLinks
  AllowOverride All
&lt;/Directory&gt;</pre>
<p>then save httpd.conf new changes. Then restart httpd or apache. then I tested it out..</p>
<p>wallah! it works!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.camilord.com/2011/10/13/howto-htaccess-seo-friendly-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Party in the CIA</title>
		<link>http://blog.camilord.com/2011/09/24/party-in-the-cia/</link>
		<comments>http://blog.camilord.com/2011/09/24/party-in-the-cia/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 08:09:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Funstuff]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://blog.camilord.com/?p=588</guid>
		<description><![CDATA[Watching and listening the lyrics makes me laugh&#8230; Just want to share..]]></description>
			<content:encoded><![CDATA[<p>
Watching and listening the lyrics makes me laugh&#8230;
</p>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/C-CG5w4YwOI" frameborder="0" allowfullscreen></iframe></p>
<p>Just want to share.. <img src='http://blog.camilord.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.camilord.com/2011/09/24/party-in-the-cia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Developer&#8217;s MySQL Auto-backup for Windows</title>
		<link>http://blog.camilord.com/2011/09/18/developers-mysql-auto-backup-for-windows/</link>
		<comments>http://blog.camilord.com/2011/09/18/developers-mysql-auto-backup-for-windows/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 12:49:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Info.Tech]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Visual C#]]></category>

		<guid isPermaLink="false">http://blog.camilord.com/?p=580</guid>
		<description><![CDATA[2 days ago, my 7 years old computer motherboard, Intel Desktop Board DP965LT Classic series, died and as I replace with Intel Desktop DG31PR, I experienced with disturbing incident in MySQL databases. It got corrupted, some of the tables of .MYI and .MYD of the databases are missing. I tried to recover using REPAIR TABLE [...]]]></description>
			<content:encoded><![CDATA[<p>2 days ago, my 7 years old computer motherboard, Intel Desktop Board DP965LT Classic series, died and as I replace with Intel Desktop DG31PR, I experienced with disturbing incident in MySQL databases. It got corrupted, some of the tables of .MYI and .MYD of the databases are missing. I tried to recover using REPAIR TABLE command in MySQL, got not luck. I tried using Stellar Phoenix Database Recovery for MySQL don&#8217;t work well at all. So it means that I cannot recover my lost databases.</p>
<p style="text-align: center;"><a href="http://blog.camilord.com/wp-content/uploads/2011/09/dev_mysql_autobackup.jpg"><img class="aligncenter size-full wp-image-583" title="developers-mysql-auto-backup-for-windows" src="http://blog.camilord.com/wp-content/uploads/2011/09/dev_mysql_autobackup.jpg" alt="" width="457" height="399" /></a></p>
<p>So I developed a software which protect my databases, this is to auto-backup all my MySQL databases to other drive or user-defined backup location. This application is for Windows XP, I haven&#8217;t tested it in Windows 7 and other Windows OS yet. <img src='http://blog.camilord.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I called this software as &#8220;<strong>Developer&#8217;s MySQL Auto-backup</strong>&#8220;.</p>
<p>The software is freeware or just totally FREE. You can use it but of course no warranty. <img src='http://blog.camilord.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<ul>
<li>Download <a class="downloadlink" href="http://blog.camilord.com/wp-content/plugins/download-monitor/download.php?id=25" title="Version1.0.0.56 downloaded 53 times" >Developer's MySQL Auto-backup (53)</a></li>
<li>Download at <a title="SEOfart.com" href="http://www.seofart.com">SEOfart.com</a> -&gt; <a title="dmab_v1.0.0.56.exe" href="http://www.seofart.com/downloads/dmab_v1.0.0.56.exe">dmab_v1.0.0.56.exe</a></li>
</ul>
<p>Enjoy my software&#8230; <img src='http://blog.camilord.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.camilord.com/2011/09/18/developers-mysql-auto-backup-for-windows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gambas 2.x in Ubuntu</title>
		<link>http://blog.camilord.com/2011/08/12/gambas-2-in-ubuntu/</link>
		<comments>http://blog.camilord.com/2011/08/12/gambas-2-in-ubuntu/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 16:49:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Gambas]]></category>
		<category><![CDATA[Info.Tech]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://blog.camilord.com/?p=572</guid>
		<description><![CDATA[Its been a while that I&#8217;m not using Linux especially Ubuntu. While reading in CDO Information Technology Group in facebook, one person ask about an opensource similar to visual basic and somebody answer that use GAMBAS. So I searched and found GAMBAS and its samples. I&#8217;m getting curious more. So install VMware 7.1 and downloaded [...]]]></description>
			<content:encoded><![CDATA[<p>Its been a while that I&#8217;m not using Linux especially Ubuntu. While reading in CDO Information Technology Group in facebook, one person ask about an opensource similar to visual basic and somebody answer that use GAMBAS. So I searched and found GAMBAS and its samples. I&#8217;m getting curious more. So install VMware 7.1 and downloaded Ubuntu 11.04. Also installed right away the GAMBAS after the OS installation.</p>
<p style="text-align: center;">&nbsp;</p>
<div class="mceTemp mceIEcenter" style="text-align: left;">
<dl id="attachment_573" class="wp-caption aligncenter" style="width: 586px;">
<dt class="wp-caption-dt"><a href="http://blog.camilord.com/wp-content/uploads/2011/08/woah.png"><img class="size-full wp-image-573  " title="Installing GAMBAS 2.x" src="http://blog.camilord.com/wp-content/uploads/2011/08/woah.png" alt="Installing GAMBAS 2.x" width="576" height="324" /></a></dt>
<dd class="wp-caption-dd">Installing GAMBAS 2.x in Ubuntu</dd>
</dl>
</div>
<p style="text-align: left;">So after installation, as a first app &#8212; the &#8220;Hello World!&#8221;. so I start creating a new project and test typing lil&#8217; codes. Coding results below;</p>
<p style="text-align: center;">&nbsp;</p>
<div id="attachment_574" class="wp-caption aligncenter" style="width: 586px"><a href="http://blog.camilord.com/wp-content/uploads/2011/08/gambas_first_app.png"><img class="size-full wp-image-574  " title="GAMBAS First App" src="http://blog.camilord.com/wp-content/uploads/2011/08/gambas_first_app.png" alt="GAMBAS First App" width="576" height="324" /></a><p class="wp-caption-text">GAMBAS First App</p></div>
<p style="text-align: left;">Conclusion: GAMBAS is just like MS Visual Basic with some little differences in coding. Hope GAMBAS will be fully developed and become mature, with this Linux Desktop Application Developer will raise (and I want to be one of the developers! hahahaha&#8230;).</p>
<p style="text-align: left;">Comments: I like GAMBAS.. so cute! hahahahaha&#8230; want to explore more about this software.</p>
<p style="text-align: left;">For more information about GAMBAS, please visit http://gambas.sourceforge.net/en/main.html</p>
<p style="text-align: left;">&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.camilord.com/2011/08/12/gambas-2-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO Fart &#124; XML-RPC Ping Tool</title>
		<link>http://blog.camilord.com/2011/08/04/seo-fart-xml-rpc-ping-tool/</link>
		<comments>http://blog.camilord.com/2011/08/04/seo-fart-xml-rpc-ping-tool/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 06:31:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Info.Tech]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Visual C#]]></category>

		<guid isPermaLink="false">http://blog.camilord.com/?p=568</guid>
		<description><![CDATA[As my latest creation which boost me up to create this desktop application are my SEO staff which they have been searching for a good ping tool for their SEO. So instead of buying a software, I created my own and let them use it for their SEO campaign. I call it XML-RPC Ping Tool [...]]]></description>
			<content:encoded><![CDATA[<p>As my latest creation which boost me up to create this desktop application are my SEO staff which they have been searching for a good ping tool for their SEO. So instead of buying a software, I created my own and let them use it for their SEO campaign. I call it XML-RPC Ping Tool and under a brand name of SEO Fart because most of us always fart in the office. Hahahhahaha!</p>
<blockquote><p><a title="XML-RPC Ping Tool" href="http://www.seofart.com/"><strong>XML-RPC Ping Tool</strong></a> &#8211; A made-easy tool that poke Search Engines via ping service websites that  your blog or website has been updated. Capable of mass URL pinging and  scheduled URL pinging to make your SEO tasks easy and fast.</p></blockquote>
<p>However, in the office the application is for free but to other people, its for sale. Sweat and effort must be paid of course. <img src='http://blog.camilord.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.camilord.com/2011/08/04/seo-fart-xml-rpc-ping-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

