<?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>Waikhom.com &#187; Computers/Internet</title>
	<atom:link href="http://www.waikhom.com/cat/computers-internet/feed" rel="self" type="application/rss+xml" />
	<link>http://www.waikhom.com</link>
	<description>Gadgets, Plugins, PC tools and utilities</description>
	<lastBuildDate>Sat, 14 Jan 2012 07:17:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to read the attribute of an xml node in unix?</title>
		<link>http://www.waikhom.com/how-to-read-the-attribute-of-an-xml-node-in-unix</link>
		<comments>http://www.waikhom.com/how-to-read-the-attribute-of-an-xml-node-in-unix#comments</comments>
		<pubDate>Tue, 10 Jan 2012 17:51:16 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/?p=1224</guid>
		<description><![CDATA[In unix/linux, you can accomplish so many things which would normally require programming languages in other operating systems. The unix shell is such a powerful tool that almost every bit of automation is possible in unix. So, when it comes to automation, unix is my #1 choice. Today, I&#8217;ll share with you how to read [...]]]></description>
			<content:encoded><![CDATA[<p>In unix/linux, you can accomplish so many things which would normally require programming languages in other operating systems. The unix shell is such a powerful tool that almost every bit of automation is possible in unix. So, when it comes to automation, unix is my #1 choice. Today, I&#8217;ll share with you how to read xml attributes in unix.</p>
<h3>PROBLEM</h3>
<p>Although, there isn&#8217;t an in built library in unix for reading an xml attribute, there are several ways to read an xml attribute in unix. Some of them are complicated and some of them are too easy. Today, I&#8217;ll discuss one of the easiest ways to read the attribute of an xml node in unix.</p>
<h2>COMMON APPROACHES</h3>
<p>Before I come to the easiest one, I&#8217;ll point out some of the other ways to read/parse an xml but without much explanation. Here are some of the suggestions made by fellow unix users :-</p>
<ol>
<li>Using xsltproc: xsltproc is a unix tool for transforming xml into html/ other xml format by using xslt (stylesheet). This method needs the knowledge of xslt and might be a bit tricky and cumbersome. However, this method will have more accurate and less error prone results because of the use of an xml oriented tool</li>
<li>Using awk / sed: awk or sed can be used in a somewhat tricky manner to read the xml attributes. This one is also sometimes tricky and a beginner might wanna avoid</li>
</ol>
<h3>THE SOLUTION &#8211; MY APPROACH</h3>
<p>The way i read the attributes of an xml node in unix is quite easy and can be used effectively for many attributes but with one drawback. This method cannot be used to read attribute values if there are multiple attributes with the same name. Otherwise this method is very easy and very efficient.</p>
<p>Let&#8217;s consider an xml from which we want to read the attribute values.<br />
e.g. item.xml</p>
<pre>
&lt;root&gt;
&lt;item name="foo" value="bar"&gt;&lt;/item&gt;
&lt;/root&gt;
</pre>
<p>In the above example, we can read the attribute values of &#8220;name&#8221; and &#8220;value&#8221; by using the following unix command.</p>
<pre>eval $(tr '[< >]' '\n' < item.xml | egrep 'name|value')</pre>
<h3>EXPLANATION</h3>
<p>In order to understand the above command, let's break it down into small pieces.<br />
First, let's consider the command <code>"tr '[< >]' '\n'"</code>. This command is basically splitting the xml into lines. It replaces &gt;&lt; and spaces with new lines. In other words, the above xml will become:</p>
<pre>
root
item
name="foo"
value="bar"
/item
/root
</pre>
<p>Now, the piped command <code>egrep 'name|value'</code> does nothing but filter out all lines except the ones containing the name and value attributes. This way, the xml is now reduced to </p>
<pre>
name="foo"
value="bar"</pre>
<p>Then we evaluate this string as unix commands by using the eval command so that their values are assigned to their respective variable names. And we can easily access the values of these attributes by using their variable names in the shell as $name and $value respectively.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/how-to-read-the-attribute-of-an-xml-node-in-unix/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to automate file upload in Internet Explorer using Selenium?</title>
		<link>http://www.waikhom.com/how-to-automate-file-upload-in-internet-explorer-using-selenium</link>
		<comments>http://www.waikhom.com/how-to-automate-file-upload-in-internet-explorer-using-selenium#comments</comments>
		<pubDate>Sun, 08 Jan 2012 11:36:38 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Development]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/?p=1215</guid>
		<description><![CDATA[Selenium is the most popular framework for web browser automation. We use selenium for automating our UI test cases. Selenium works perfectly fine in most web browsers with the exception of the obviously most problematic “Internet Explorer”. Although most of the features of selenium work fine with internet explorer, there are a few hiccups particularly [...]]]></description>
			<content:encoded><![CDATA[<p>Selenium is the most popular framework for web browser automation. We use selenium for automating our UI test cases. Selenium works perfectly fine in most web browsers with the exception of the obviously most problematic “Internet Explorer”. Although most of the features of selenium work fine with internet explorer, there are a few hiccups particularly associated with Internet Explorer e.g. capturing Screenshot, file upload, etc. Here I’ll be talking about automating the file upload feature in Internet Explorer using Selenium.</p>
<p>In Firefox, you can automate file upload by simple using the “selenium.type” method over the file selector.</p>
<pre>Selenium.type("/input[@name=image_file]");</pre>
<p>However, the type method doesn’t work in Internet explorer because of security restrictions. Internet Explorer doesn’t allow you to change the value of file inputs through JavaScript. So, I did a little research on how I can automate the process in Internet Explorer. There seems to be a few solutions to this problem but none of them really solved mine because all of the solutions are for those who are not using selenium RC or are not using RC server in a remote machine. In my case, selenium RC is located in a remote machine and all my java classes in a separate controller machine. This makes it difficult to invoke autoit scripts as it is mentioned in most of the available solutions. Some of the methods I tried are:</p>
<ol>
<li><a href="http://www.google.com/search?q=selenium.attachFile" target="_blank">Using selenium.attachFIle</a>: Selenium has an api for automating file uploads and is provided as the attachFile method. However, this method is supported in Firefox only and doesn&#8217;t work with Internet Explorer.</li>
<li><a href="http://stackoverflow.com/questions/1707884/selenium-rc-how-to-upload-file-using-attachfile" target="_blank">Using native keys to type in the characters:</a> Selenium RC has apis for generating native keyboard events. This method can be used to automate keyboard events in the OS level and outside the web browser. I also tried this in Internet Explorer, but once I click the browse button and the file selector popups, selenium gets blocked and the keys could not be typed without manual intervention</li>
<li><a href="http://www.testingexcellence.com/how-to-upload-files-using-selenium-and-autoit/" target="_blank">Using AutoIT with Selenium</a>: One most popular method of automating the file upload is to use an autoit script in conjuction with selenium. However this also had it&#8217;s own problem. I couldn&#8217;t invoke the autoit script from my test script as I was running selenium RC in a remote machine. I found another interesting post about this method here &#8211; http://automationtricks.blogspot.com/2010/09/how-to-upload-file-in-selenium.html</li>
</ol>
<h3>THE FIX</h3>
<p>After a series of trials, I could finally automate the file upload scenario in Internet explorer. The fix was to upgrade my selenium from 1.x to 2.x (or webdriver). Unlike selenium 1.x, webdriver is not javascript driven and is not as restricted as javascript driven selenium 1.x. However, upgrading from 1.x to webdriver was a mess because all my test cases were then not working as expected in firefox. So, i did a little hack here to make sure web driver is used only in case of Internet explorer. Given below are the changes I made.</p>
<p>Before:</p>
<pre>DefaultSelenium selenium = new DefaultSelenium("localhost",4444,"*iexplore","http://www.example.com");
selenium.start();</pre>
<p>After:</p>
<pre>WebDriver driver = new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"),DesiredCapabilities.internetExplorer());
DefaultSelenium selenium = new WebDriverBackedSelenium(driver,"http://www.example.com"));</pre>
<p>With this code change, we are now using web driver backed selenium, and because of this, the selenium.type method can be used without any security restrictions. As a result, my file upload automation was run successfully. Well, thanks to those guys working on web driver.</p>
<p>In fact, many of the limitations of selenium 1.x have been addressed by web driver and there&#8217;s a properly documented section on migrating selenium 1.x to webdriver. If you are facing any issues with selenium 1.x, you might try upgrading to web driver. More details on the upgrade process are available here &#8211; <a href="http://seleniumhq.org/docs/appendix_migrating_from_rc_to_webdriver.html" target="_blank">migrating from selenium 1.x to web driver</a>. Well, if you find anything interesting, feel free to share it here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/how-to-automate-file-upload-in-internet-explorer-using-selenium/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to prevent/disable javascript error popups in internet explorer while running Selenium tests?</title>
		<link>http://www.waikhom.com/how-to-preventdisable-javascript-error-popups-in-internet-explorer-while-running-selenium-tests</link>
		<comments>http://www.waikhom.com/how-to-preventdisable-javascript-error-popups-in-internet-explorer-while-running-selenium-tests#comments</comments>
		<pubDate>Fri, 06 Jan 2012 18:23:50 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/?p=1204</guid>
		<description><![CDATA[Today, I was trying to run some selenium tests on Internet Explorer 8 and got another “This is why I hate Internet explorer” problem. All the selenium tests work fine in Firefox but as soon as I started running them in Internet Explorer, lots of javascript error popups started coming up. The popups were blocking [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I was trying to run some selenium tests on Internet Explorer 8 and got another “This is why I hate Internet explorer” problem. All the selenium tests work fine in Firefox but as soon as I started running them in Internet Explorer, lots of javascript error popups started coming up. The popups were blocking the selenium tests and there was no way I could prevent those popups. In fact, this trivial problem blocked me for a day and was driving me crazy. And when I got through it at last, I thought what the fuck? I won’t let this stupid thing waste someone else’s time again. That’s why I’m writing this post so that you don’t get stuck like me again.<br />
<a href="http://www.waikhom.com/wp-content/uploads/2012/01/IE8ScriptDebuggingError.png"><img class="alignright size-full wp-image-1205" title="IE8ScriptDebuggingError" src="http://www.waikhom.com/wp-content/uploads/2012/01/IE8ScriptDebuggingError.png" alt="" width="442" height="292" /></a><br />
Well, it started with me migrating my selenium tests to webdriver. I had to migrate to webdriver (selenium 2.x) from selenium 1.x because file upload doesn’t seem to work properly (again in Internet explorer) with selenium 1. That leads me to another post – <a href="http://www.waikhom.com/how-to-automate-file-upload-in-internet-explorer-using-selenium">How to automate file upload in Internet explorer using selenium?</a> But that’s another day. For now, let’s focus on preventing those javascript error popups.</p>
<h3>How to prevent/disable javascript error popups in internet explorer?</h3>
<p>It seems there are lots of information out there in Google on how to prevent / disable javascript error popups but none of them really worked for me. Some of them are simple settings change in IE but for some reason, all those instructions didn’t help me in any way. But finally, I got this worked when I reset the IE Settings. So, here we go all the steps I followed in order to disable those freaky javascript popups.</p>
<ol>
<li><a href="http://www.waikhom.com/wp-content/uploads/2012/01/IEDisableScriptErrors.png"><img class="alignright size-full wp-image-1206" title="IEDisableScriptErrors" src="http://www.waikhom.com/wp-content/uploads/2012/01/IEDisableScriptErrors.png" alt="" width="423" height="570" /></a>Disable script debugging – I tried disabling the script debugging option with no use. Well, if you want to, you can disable script debugging by opening Internet Explorer -&gt; Tools-&gt;Internet Options -&gt; Advanced and checking the “disable script debugging” option there.</li>
<li>Disable JavaScript error notification (both manually &amp; using Microsoft fixit) – I tried this too but in vain. You can disable the error notifications by going to Tools-&gt;Internet Options -&gt; Advanced and unchecking the “Display a notification about every script error” option. Or if your don’t want to do it manually, you can use the Microsoft fixit wizard available at <a href="http://support.microsoft.com/kb/822521">http://support.microsoft.com/kb/822521</a> or follow the manual steps there</li>
<li>Reset IE Settings – This was the last resort and it did solve the problem. The downside is that all IE settings are lost and you might not want it. But as I said, if the above steps didn’t work and you are ready to lose your IE settings, you can reset the IE settings to disable/prevent those crazy javascript errors. Well, you can find more info on the resetting procedure at <a href="http://support.microsoft.com/kb/923737/ln">http://support.microsoft.com/kb/923737/ln</a>.</li>
</ol>
<p>Well, with these steps, I was able to get rid of those annoying popups. If you are facing this issue, try these out and let me know the results.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/how-to-preventdisable-javascript-error-popups-in-internet-explorer-while-running-selenium-tests/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Macbook Pro Unibody</title>
		<link>http://www.waikhom.com/macbook-pro-unibody</link>
		<comments>http://www.waikhom.com/macbook-pro-unibody#comments</comments>
		<pubDate>Wed, 26 Oct 2011 19:17:00 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Electronics/Gadgets]]></category>
		<category><![CDATA[PC Hardware]]></category>
		<category><![CDATA[Video Posts]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/?p=1157</guid>
		<description><![CDATA[One of the unique features of the macbook pro is the unibody. The enclosure of the macbook pro is made from a single block of aluminium and is called the unibody. This makes the body light, strong and smooth. One thing that I like the most about apple products is their finishing. And in this [...]]]></description>
			<content:encoded><![CDATA[<p>One of the unique features of the macbook pro is the unibody. The enclosure of the macbook pro is made from a single block of aluminium and is called the unibody. This makes the body light, strong and smooth.</p>
<p>One thing that I like the most about apple products is their finishing. And in this case also, the macbook pro displays a symbol of delicate and super smooth finishing touch. Although I haven&#8217;t got one of these macbooks, I&#8217;m really in the mood to get one. And I&#8217;m sure I&#8217;ll buy one soon enough. Also, below is a video on the unibody and is worth watching.<br />
<p><a href="http://www.waikhom.com/macbook-pro-unibody"><em>Click here to view the embedded video.</em></a></p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/macbook-pro-unibody/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.youtube.com/watch?v=BgAsM64NW34" length="" type="" />
		</item>
		<item>
		<title>Kontera and slow wordpress</title>
		<link>http://www.waikhom.com/kontera-and-slow-wordpress</link>
		<comments>http://www.waikhom.com/kontera-and-slow-wordpress#comments</comments>
		<pubDate>Mon, 24 Oct 2011 07:38:42 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Web Development]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/?p=1147</guid>
		<description><![CDATA[For quite some time, my blog has been slow and I finally got the time to sort this out. Using Firebug, I analyzed the page response times of all requests made while opening my homepage. And surprisingly, the kontera ad code that I added seems to be taking a lot of time. So, I just [...]]]></description>
			<content:encoded><![CDATA[<p>For quite some time, my blog has been slow and I finally got the time to sort this out. Using <a href="http://getfirebug.com/" title="Get Firebug" target="_blank">Firebug</a>, I analyzed the page response times of all requests made while opening my homepage. And surprisingly, the kontera ad code that I added seems to be taking a lot of time. So, I just removed the ad code and tried refreshing my page and then &#8230;oorah.. My blog is loading faster than ever before. </p>
<p>But then, what about the bucks I get from kontera? I went to their site and just checked my last quarter earnings and it was pathetic. Who&#8217;s gonna sacrifice the speed of their blog for a few bucks a quarter. Maybe i&#8217;ll try something like infolinks but not kontera. Not anymore. Well, if you have kontera and your blog is taking too much time, removing the kontera ad code is the first thing I&#8217;ll suggest you to do. And after that, you can start looking for &#8220;i like taking time to load&#8221; plugins in firebug.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/kontera-and-slow-wordpress/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hideipproxy.com – A classic php based SSL Proxy</title>
		<link>http://www.waikhom.com/hideipproxy-com-a-classic-php-based-ssl-proxy</link>
		<comments>http://www.waikhom.com/hideipproxy-com-a-classic-php-based-ssl-proxy#comments</comments>
		<pubDate>Thu, 20 May 2010 17:58:23 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[General]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/hideipproxy-com-a-classic-php-based-ssl-proxy</guid>
		<description><![CDATA[Out of the thousands of web based proxies available for free, only a few are reliable and good. If you click at the proxies listed at proxy.org, you will find a useful proxy in around 20 proxies. And that single proxy that you found will most probably be overloaded and too slow for browsing your [...]]]></description>
			<content:encoded><![CDATA[<p>Out of the thousands of web based proxies available for free, only a few are reliable and good. If you click at the proxies listed at proxy.org, you will find a useful <a href="http://www.proxywiky.com">proxy</a> in around 20 proxies. And that single proxy that you found will most probably be overloaded and too slow for browsing your favorite sites like myspace, facebook, etc. This is because, most of the web proxies are hosted on cheap <a href="http://www.waikhom.com/proxy-hosting-services">proxy hosting</a> companies where proxies are overloaded. A single server will have some 50-100s of proxies which when overloaded will not only mess up their servers but waste your time. In fact, these proxies are so overloaded that when you try to browse a 50K sized website, it takes minutes. If it was me, I would get frustrated and never visit that proxy site again.<br />
<a href="http://hideipproxy.com"><img src="http://www.myipproxylist.com/blog/wp-content/uploads/2010/04/hideip_screenshot-272x300.jpg" alt="Hide Ip" title="Hide Ip" width="272" height="300" class="alignright size-medium wp-image-68" /></a><br />
But there are few proxies which are good and reliable. Some of them are daveproxy.uk, ninjacloak.com, etc. Imagine, these proxies have been running for more than 2 years. These are not like the &#8220;create a proxy today and discard it next week&#8221; type of web proxies. These are considered premium proxies and users are loyal. I would always remember the names of such proxies as if I had to think of a good proxy. Besides, these are <a href="http://freeproxyinc.com">free proxies</a>, not like proxify and all. You&#8217;ll surely love it once you get your hands on it.</p>
<p>However, these are old proxy sites and must be already blocked by almost 99% of network filters. So, you need a new one but as reliable and good as these. Well, the new one is hideipproxy.com. <a href="http://hideipproxy.com">Hide Ip</a> is only a few weeks old and is still a new proxy which leaves it unaware to many of the network filters. It is fast and not overloaded. It runs on a 1GB dedicated Intel dual core server and has lots of bandwidth to accommodate its users. It supports SSL or secure browsing. And not like those quick proxies which get expired tomorrow, this proxy was created with the same intention as those of the premium proxies mentioned above. So, start using it, tell your friends and share it with everyone as you enjoy the surfing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/hideipproxy-com-a-classic-php-based-ssl-proxy/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bypass Proxy – Fresh SSL US proxy</title>
		<link>http://www.waikhom.com/bypass-proxy-fresh-ssl-us-proxy</link>
		<comments>http://www.waikhom.com/bypass-proxy-fresh-ssl-us-proxy#comments</comments>
		<pubDate>Sun, 16 May 2010 10:53:46 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[General]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/?p=1052</guid>
		<description><![CDATA[If you are looking for a new proxy site which has a speed fast enough so that you don&#8217;t have to wait for opening the front page of myspace, if you are looking for a secure proxy which supports SSL/HTTPS mode and support cookies to login into the target website like facebook; if you are [...]]]></description>
			<content:encoded><![CDATA[<p>If you are looking for a new proxy site which has a speed fast enough so that you don&#8217;t have to wait for opening the front page of myspace, if you are looking for a secure proxy which supports SSL/HTTPS mode and support cookies to login into the target website like facebook; if you are looking for something new which hasn&#8217;t yet been blocked, and if you are tired of pop-up ads in every page that you open through a web proxy, <a title="Bypass Proxy - bypass websites" href="http://bypassy.com">bypass</a> is the perfect web based proxy for you.</p>
<p>Bypassy.com is a new web based proxy which is based on the proxy script glype. It runs on a dedicated server with pentium 4 CPU and 1GB RAM. It has a high network connectivity of 10 Mbits/sec and has large amount of hard disk space to store your proxy session information and cached data. Bypass proxy is a reliable web proxy which will be active for years. You don&#8217;t have to find another proxy for months and enjoy the unrestricted browsing for free. You can browse the web with full anonymity and keeping your privacy protected.</p>
<p>Security is one of the main features of bypassy.com which makes it one of the best web proxies. With bypassy.com, you don&#8217;t have to worry about malicious programs like malwares, viruses, trojans etc. into your PC. You can freely browse the web as it filters all suspicious codes and forward only the safe content.</p>
<p>What&#8217;s more, everything&#8217;s free and still it is one of the fastest and most reliable web proxies on the internet. You can not only use it for browsing but also share it with your friends. Happy browsing..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/bypass-proxy-fresh-ssl-us-proxy/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to earn money with Squidoo!</title>
		<link>http://www.waikhom.com/how-to-earn-money-with-squidoo</link>
		<comments>http://www.waikhom.com/how-to-earn-money-with-squidoo#comments</comments>
		<pubDate>Thu, 11 Mar 2010 20:14:45 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Web Development]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/?p=1030</guid>
		<description><![CDATA[Squidoo is a content publishing platform and community that makes it easy for you to create &#8220;lenses&#8221; online. Lenses are web-pages created by people like us. Earlier Squidoo lenses used to be consisted of only text contents and users used to create static pages for promoting their sites. But now, Squidoo has evolved into a [...]]]></description>
			<content:encoded><![CDATA[<p>Squidoo is a content publishing platform and community that makes it easy for you to create &#8220;lenses&#8221; online. Lenses are web-pages created by people like us. Earlier Squidoo lenses used to be consisted of only text contents and users used to create static pages for promoting their sites. But now, Squidoo has evolved into a new generation platform which has integrated system for users to earn money directly from Squidoo. Squidoo has many features and modules from which users can earn money like amazon, ebay, textlinkads, etc. Today, we&#8217;ll have a look at how you can earn money from your squidoo lenses without even having your own website or ebay account.</p>
<p>I just created a squidoo lens on <a href="http://www.myipproxylist.com">proxy sites</a> just to promote my sites. But I found out that squidoo has lots and lots of stuffs from which you can earn constantly. If you go to the <a href="http://www.squidoo.com/proxy_sites">proxy sites</a> lens on squidoo, you will find out a section which consists of amazon products for sale. When some reader clicks on this sale and buy it, Squidoo earns the commission from amazon and shares its earnings with you. Similarly, there are other  modules like Ebay, donations, etc. which can let you earn commissions when users buy through your lens.</p>
<p>So, how do you earn from squidoo? All you have to do is to have a Paypal account. Create a Squidoo lens on some topic and add the modules amazon, ebay and donations. Now, you can start promoting your squidoo lens by sharing it with your fiends on digg, stumbleupon, twitter, etc. The more visitors you have, the more earnings you will have. So, try it out and start earning online. Well, its all for free, so you don&#8217;t have to worry at all.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/how-to-earn-money-with-squidoo/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How a proxy unblock sites!</title>
		<link>http://www.waikhom.com/how-a-proxy-unblock-sites</link>
		<comments>http://www.waikhom.com/how-a-proxy-unblock-sites#comments</comments>
		<pubDate>Tue, 09 Mar 2010 19:31:30 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/?p=1024</guid>
		<description><![CDATA[Many people are using proxy sites for unblocking sites like myspace, facebook, orkut, etc. A free proxy can be used for unblocking your favorite sites. How a proxy can unblock such sites is still a mystery to many of the people who use proxies. There are two ways in which a proxy site unblock your [...]]]></description>
			<content:encoded><![CDATA[<p>Many people are using <a href="http://www.myipproxylist.com">proxy sites</a> for unblocking sites like myspace, facebook, orkut, etc. A <a href="http://freeproxyinc.com">free proxy</a> can be used for unblocking your favorite sites. How a proxy can <a href="http://unblocker.me">unblock</a> such sites is still a mystery to many of the people who use proxies. There are two ways in which a proxy site unblock your favorite sites from your network filter. They are:</p>
<p>1. <strong>Proxy IP address</strong>: A <a href="http://proxyserverinc.com">proxy server</a> hides the ip address of the web server from the network of the end user. To the user&#8217;s network, the end user seems to be browsing the proxy site and not the website which is browsed through the proxy. So, if you are browsing facebook through a proxy, your network filter can&#8217;t detect that you are browsing facebook.<br />
2. <strong>Url Proxy</strong>: A proxy site proxies the name of the domain that the user is browsing. Many of the website blockers block sites based on the domain of the website or the url of the site. When you are browsing through a proxy, the url is that of the proxy and not that of the website you are browsing.<br />
So, when you browse through a proxy, the proxies <a href="http://hideipproxy.com">hide ip</a> address of the destination server and hides the url thereby rendering the network filters undetectable.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/how-a-proxy-unblock-sites/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Proxy – Free Web Proxies</title>
		<link>http://www.waikhom.com/free-proxy-free-web-proxies</link>
		<comments>http://www.waikhom.com/free-proxy-free-web-proxies#comments</comments>
		<pubDate>Tue, 16 Feb 2010 07:43:06 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[free proxy]]></category>
		<category><![CDATA[free web proxies]]></category>
		<category><![CDATA[proxy server]]></category>
		<guid isPermaLink="false">http://waikhom.com/?p=1019</guid>
		<description><![CDATA[Hi everyone, it&#8217;s been a long time since my last post. I&#8217;ve been very busy for the last few months. Well, I&#8217;ve been working on a project which required lots of hard work. Anyway, I&#8217;m back on track and will be posting some useful articles in the next few days. For now, I have to [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone, it&#8217;s been a long time since my last post. I&#8217;ve been very busy for the last few months. Well, I&#8217;ve been working on a project which required lots of hard work. Anyway, I&#8217;m back on track and will be posting some useful articles in the next few days. For now, I have to share my new websites which are based on proxies. I just launched two new proxy lists few days ago. They are <a title="Free Proxy - Free web proxies" href="http://freeproxyinc.com">Free Proxy</a> and <a title="Proxy Server - Web Proxy Servers" href="http://proxyserverinc.com">Proxy Server</a>. The great news is I&#8217;ve promoted them without investing a single penny and now, I&#8217;m receiving traffic as if I&#8217;ve optimized them for months. Now, I&#8217;m receiving considerable traffic in both of these proxies.</p>
<p>The question is how did I promote these new sites without any investment. The answer is my strong base of 20000 proxy users. I&#8217;ve been collecting emails of users who are interested in proxy sites for the last two years. Now that I have such information, I can easily send email blasts to these users and start getting traffic right away. I used phplist for sending the mails which is a free script in php. PHPlist is a very good free mailing list manager. It can also track clicks, bounces, views etc.</p>
<p>Finally, the juice about today is, if you want to start a business or have a business, keep collecting the information (emails specially) of those interested in the same field. This will make it easy to start your business and expand it quickly without much investments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/free-proxy-free-web-proxies/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

