<?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>OverLoad It &#187; Web Development</title>
	<atom:link href="http://www.overloadit.com/category/web-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.overloadit.com</link>
	<description>Overloading a blog</description>
	<lastBuildDate>Thu, 31 May 2012 12:15:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Open Source Statistics</title>
		<link>http://www.overloadit.com/2009/12/24/open-source-statistics/</link>
		<comments>http://www.overloadit.com/2009/12/24/open-source-statistics/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 00:24:56 +0000</pubDate>
		<dc:creator>hitech</dc:creator>
				<category><![CDATA[Statistics]]></category>

		<guid isPermaLink="false">http://www.tjlug.org/?p=320</guid>
		<description><![CDATA[I have been using google analytics for some time now (Urchin), but the truth is, although it is very very nice, i lack control. What amuses me is how good an open source alternative piwik (piwik.org) is. And all of &#8230; <a href="http://www.overloadit.com/2009/12/24/open-source-statistics/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have been using google analytics for some time now (Urchin), but the truth is, although it is very very nice, i lack control.</p>
<p>What amuses me is how good an open source alternative piwik (<a href="http://piwik.org">piwik.org</a>) is.</p>
<p>And all of the stuff PIWIK offers, they still consider it new and incomplete, that is strange, it does everything i ever asked for from google&#8217;s own analytics.</p>
<p>Anyway, once i use it for a while, i am thinking of making the hosted service available to the public, on the condition that it can be modified to become a distributed system that is scalable <img src='http://www.overloadit.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.overloadit.com/2009/12/24/open-source-statistics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multi Disk MySQL</title>
		<link>http://www.overloadit.com/2009/12/04/multi-disk-mysql/</link>
		<comments>http://www.overloadit.com/2009/12/04/multi-disk-mysql/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 21:43:28 +0000</pubDate>
		<dc:creator>hitech</dc:creator>
				<category><![CDATA[LAMP]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.tjlug.org/?p=297</guid>
		<description><![CDATA[For performance reasons, separating DBs to Multiple hard disks can be beneficial In Linux, when you want to include a directory for a database, you add a symbolic link ( Using the ln -s targetdir command), in Windows, there are &#8230; <a href="http://www.overloadit.com/2009/12/04/multi-disk-mysql/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For performance reasons, separating DBs to Multiple hard disks can be beneficial</p>
<p>In Linux, when you want to include a directory for a database, you add a symbolic link ( Using the ln -s targetdir command), in Windows, there are no symbolic links, and Windows Shortcuts ( Via right click create shortcut ) don&#8217;t work</p>
<p>The truth is, MySQL enables Symbolic Links in Windows by default, but you have to do it the MySQL way</p>
<p>MySQL is a file based database engine, you should be able to see a folder for every database run by your database engine, Now to move one of those DBs to a different directory or hard drive, you just copy it to the new destination and create a file <code><em><code>db_name</code></em>.sym then, within that plain text file, you can add </code><code>D:datadb_name where </code><code>D:datadb_name is the folder containing the MySQL files.</code></p>
<p>You should be good to go if you have moved the directory of the database to d:data, but if you copied it, the copy in the original MySQL data directory will be used</p>
<p>You are done, Now you should experience the extra performance of combining disks, the closest it gets without RAID and a reformat, surely this is assuming the DBs are used evenly</p>
<p>But there are other reasons why you may want to do this, one of which is, when you want to compile all user data in a directory, So DBs that person creates using your server management software puts all that person&#8217;s software in one place so that when he or she requests a backup, you know what to send him/her</p>
<p>Enjoy</p>
]]></content:encoded>
			<wfw:commentRss>http://www.overloadit.com/2009/12/04/multi-disk-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Godaddy Wild West Domains API Script</title>
		<link>http://www.overloadit.com/2009/05/24/godaddy-wild-west-domains-api-script/</link>
		<comments>http://www.overloadit.com/2009/05/24/godaddy-wild-west-domains-api-script/#comments</comments>
		<pubDate>Sun, 24 May 2009 06:37:12 +0000</pubDate>
		<dc:creator>hitech</dc:creator>
				<category><![CDATA[Domain Names]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.tjlug.org/?p=195</guid>
		<description><![CDATA[So, for some reason i had to write a functional script that talks (PHP Via SOAP) to Wild West Domains API for domain registration and other services (For fully branded website), And i was wondering if there is enough interest &#8230; <a href="http://www.overloadit.com/2009/05/24/godaddy-wild-west-domains-api-script/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So, for some reason i had to write a functional script that talks (PHP Via SOAP) to Wild West Domains API for domain registration and other services (For fully branded website), And i was wondering if there is enough interest so that i improve it and sell it.</p>
<p>Things that come to my mind</p>
<p>1- This could hurt <a title="Domain Reseller Direct" href="http://www.domainresellerdirect.com/">Domain Reseller Direct</a>, where people get a Turnkey Domain reseller account in addition to PHP tools to customize there websites (we add free scripts for them, and they can install them on there website or we install the scripts for them) i am not sure it is legal to tell you the details ! (I never thought i would ever have to say that), but that&#8217;s the system, what can (or should i say Can&#8217;t) i say.</p>
<p>2- If i was to charge for the script, i think it would end up being sold for $500 a copy, that won&#8217;t make me much money, but when i put effort into scripts, i like to maximize there use, either to make money or to give away, but again it is a loosing deal and i know it in advance.</p>
<p>3- To allow people to use the script, i have to create extra modules for paypal, 2CO, and other credit card gateways, this is an easy but tedious task, Do i have the time for this ?</p>
<p>4- I know many people want such a script, but Wild West Domains / GoDaddy API is not a complete API, it does require some pages to run off there servers, and basically that puts us back to the solution we are offering at Domain Reseller Direct, but at a much higher cost.</p>
<p>I really want to hear your thoughts on this, and if you are going to comment, please tell me if you would be interested in such a script so i can have that data to process with my &#8220;Handy capped business logic&#8221;</p>
<p>Awaiting your response</p>
]]></content:encoded>
			<wfw:commentRss>http://www.overloadit.com/2009/05/24/godaddy-wild-west-domains-api-script/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The future of the web</title>
		<link>http://www.overloadit.com/2009/03/22/the-future-of-the-web/</link>
		<comments>http://www.overloadit.com/2009/03/22/the-future-of-the-web/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 01:21:24 +0000</pubDate>
		<dc:creator>hitech</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.tjlug.org/?p=170</guid>
		<description><![CDATA[What&#8217;s all this stuff about personal computing moving online, people saying, keep your old computer, the internet is moving online and all you need is a browser. First, for the coming 10 years, i don&#8217;t think the world can take &#8230; <a href="http://www.overloadit.com/2009/03/22/the-future-of-the-web/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>What&#8217;s all this stuff about personal computing moving online, people saying, keep your old computer, the internet is moving online and all you need is a browser.</p>
<p>First, for the coming 10 years, i don&#8217;t think the world  can take an explosion in internet traffic, YouTube and similar video websites are killing speed on most ISPs, Peer To Peer much lesser harm but still burdening the wires, and oh, not to forget Binary Executable downloads and net installs of operating systems that happen with every virtual machine, Seriously, fiber optics will not save you if you want a complete install of Debian on every virtual machine you run.</p>
<p>To make things more interesting, People will not stop buying top notch computers, they love owning the greatest computers and will continue to do so, there graphics card is more important than there fridge, and astonishingly, they love to see it work, Don&#8217;t you just hate it when your computer goes to sleep for having nothing to do ?</p>
<p>People want there files on there hard drives, that will never change, they may want a copy at google or some other cloud empire, but they want the official latest copy on a hard drive in there computer.</p>
<p>This may not include everyone, but it is true for the most people i know, I am predicting against everyone else and i have a firm belief the common predictions of the future of personal computing  are not realistic.</p>
<p>So, now i am the great psychologist, not really, but i have probed for long enough, and this is what i got</p>
<p>My Video requires a good processor to play, Online video is not how i like to see my favorite cartoons (And i doubt PIXAR would put it online), i want to see detail, i want to see what PIXAR wanted me to see and so do they.</p>
<p>So, if you are worried or hoping that the internet will become the PC, rest assured, this will not happen soon.</p>
<p>What about google docs and other stuff, they will exist, and probably expand, but they will never replace much of why you would buy a good PC that has multiple cores that can run your beloved Compize or AERO, people buy vista for that stuff, so they will keep buying good computers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.overloadit.com/2009/03/22/the-future-of-the-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Giving away Sub Domains in Web2</title>
		<link>http://www.overloadit.com/2009/03/02/giving-away-sub-domains-in-web2/</link>
		<comments>http://www.overloadit.com/2009/03/02/giving-away-sub-domains-in-web2/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 03:05:34 +0000</pubDate>
		<dc:creator>hitech</dc:creator>
				<category><![CDATA[Domain Names]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.tjlug.org/?p=144</guid>
		<description><![CDATA[Today, a friend asked me how to setup his server so that he can give away Sub Domain names under his domain to people who want to use his PHP application, he was asking all sort of stuff like how &#8230; <a href="http://www.overloadit.com/2009/03/02/giving-away-sub-domains-in-web2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today, a friend asked me how to setup his server so that he can give away Sub Domain names under his domain to people who want to use his PHP application, he was asking all sort of stuff like how does he rewrite apache config files and all this stuff, i can see how he is imagining the system but this is not the smart way to do it really.</p>
<p>All you need is a dedicated IP address, a hosting account that is accessible by its IP address, and you are good, why take the long route.</p>
<p>It is the simpler more flexible way, and it is the only sensible way i think, So i made a little tutorial to show him how here, now all i need to do is call him up and tell him to visit my blog for the answer <img src='http://www.overloadit.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Let me pick a fancy name for this</p>
<p><a title="Wildcard domain DNS" href="http://www.easywebdns.com/domains/wildcard.php">Dynamic Sub Domain Allocation</a>, what u waiting for, click it</p>
]]></content:encoded>
			<wfw:commentRss>http://www.overloadit.com/2009/03/02/giving-away-sub-domains-in-web2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

