<?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>maSnun&#039;s logs &#187; free-services</title>
	<atom:link href="http://masnun.com/blog/tag/free-services/feed/" rel="self" type="application/rss+xml" />
	<link>http://masnun.com/blog</link>
	<description>Personal Blog of maSnun</description>
	<lastBuildDate>Sat, 24 Jul 2010 04:33:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Using web.py with Google App Engine</title>
		<link>http://masnun.com/blog/2009/08/01/using-web-py-with-google-app-engine/</link>
		<comments>http://masnun.com/blog/2009/08/01/using-web-py-with-google-app-engine/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 03:15:12 +0000</pubDate>
		<dc:creator>masnun</dc:creator>
				<category><![CDATA[Blog Post]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[free-services]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://masnun.com/?p=382</guid>
		<description><![CDATA[I love coding in Python and have been exploring the excellent web.py framework lately. From what I&#8217;ve seen, web.py is a very simple yet powerful python based web framework. It&#8217;d take me a lot of time to learn django (if &#8230; <a href="http://masnun.com/blog/2009/08/01/using-web-py-with-google-app-engine/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I love coding in Python and have been exploring the excellent web.py framework lately. From what I&#8217;ve seen, web.py is a very simple yet powerful python based web framework. It&#8217;d take me a lot of time to learn django (if I ever manage to make up my mind into it) and it already took around a couple of hours to understand the Google App Engine&#8217;s default webapp framework.</p>
<p>web.py includes a built in web server to develop an application locally. But I am a Google fan and was thinking of deploying web.py on Google App Engine. I believed GAE and web.py together can help me put up a web app in minutes. And so did they&#8230; <img src='http://masnun.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>The first question came to my mind was &#8220;How am I going to install web.py on my GAE account ?&#8221;. Well, it was pretty easy in the end. Just extract the web.py package and put the &#8220;web&#8221; directory inside your application directory. That is the &#8220;web&#8221; directory would be in the same directory where the app.yaml file resides. Now, in app.yaml file, map all URLs to a single python file. In my case, it was &#8220;main.py&#8221;.</p>
<p>Now develop the application in the normal web.py way. &#8220;It&#8217;s easy as pie!&#8221; &#8212; I thought. But it was not that easy in fact. I had to make a couple of changes.</p>
<p>The app I wrote didn&#8217;t do what I expected it to. Rather it raised an &#8220;import error&#8221; <img src='http://masnun.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Later, I found out that I have to use &#8220;web.application.cgirun()&#8221; method instead of the normal &#8220;run()&#8221; method.</p>
<p>Then I reloaded the app. But this time I got an &#8220;internal server error&#8221;. After visiting the web.py cookbook, I found out that, to use web.py templates on GAE, I have to compile all templates using the &#8220;web/template.py &#8211;compile templates&#8221; command. I did so. All my templates were compiled into python source code. Cool !</p>
<p>Now my app was running smooth and working fine ! So, at last I made it&#8230; Yahoo ! I am loving python, web.py and Google App Engine together <img src='http://masnun.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>PS: I am using web.py 0.3 where I have the cgirun() method. In older versions of web.py, you have to be tricky. In that case, please consult this thread:</p>
<p><a href="http://bit.ly/EoVyM" target="_blank">http://bit.ly/EoVyM</a></p>
<p><strong>Here&#8217;s the source code (Without the template):</strong></p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">#!/usr/bin/env python</span>
&nbsp;
<span style="color: #ff7700;font-weight:bold;">import</span> web
urls = <span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;/(.*)&quot;</span>,<span style="color: #483d8b;">&quot;site&quot;</span><span style="color: black;">&#41;</span>
&nbsp;
<span style="color: #ff7700;font-weight:bold;">class</span> <span style="color: #dc143c;">site</span>:
	<span style="color: #ff7700;font-weight:bold;">def</span> GET<span style="color: black;">&#40;</span><span style="color: #008000;">self</span>,path<span style="color: black;">&#41;</span>:
		render = web.<span style="color: black;">template</span>.<span style="color: black;">render</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'templates'</span><span style="color: black;">&#41;</span>
		<span style="color: #ff7700;font-weight:bold;">return</span> render.<span style="color: black;">masnun</span><span style="color: black;">&#40;</span>path<span style="color: black;">&#41;</span>
&nbsp;
app = web.<span style="color: black;">application</span><span style="color: black;">&#40;</span>urls,<span style="color: #008000;">globals</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span><span style="color: black;">&#41;</span>
&nbsp;
<span style="color: #ff7700;font-weight:bold;">def</span> main<span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>:
	app.<span style="color: black;">cgirun</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
&nbsp;
<span style="color: #ff7700;font-weight:bold;">if</span> __name__ == <span style="color: #483d8b;">'__main__'</span>:
  main<span style="color: black;">&#40;</span><span style="color: black;">&#41;</span></pre></div></div>

<p><strong>Here&#8217;s the &#8220;templates/masnun.htm&#8221;:</strong></p>
<pre>$def with (name)
&lt;html&gt;&lt;head&gt;&lt;title&gt;web.py demo&lt;/title&gt;&lt;/head&gt;&lt;body&gt;
You requested: &lt;b&gt; $name&lt;/b&gt;&lt;/body&gt;&lt;/html&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://masnun.com/blog/2009/08/01/using-web-py-with-google-app-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>u.nu, the shortest urls: the API</title>
		<link>http://masnun.com/blog/2009/05/10/unu-the-shortest-urls-the-api/</link>
		<comments>http://masnun.com/blog/2009/05/10/unu-the-shortest-urls-the-api/#comments</comments>
		<pubDate>Sun, 10 May 2009 15:35:25 +0000</pubDate>
		<dc:creator>masnun</dc:creator>
				<category><![CDATA[Blog Post]]></category>
		<category><![CDATA[free-services]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://masnun.com/2009/05/10/unu-the-shortest-urls-the-api/</guid>
		<description><![CDATA[Here&#8217;s a simple code snippet copied from the home page of u.nu. &#60;?php $original_url = &#8216;http://www.google.com/&#8217;; $request = &#8216;http://u.nu/unu-api-simple?url=&#8217; . urlencode($original_url); $response = file_get_contents($request); if (substr($request, 0, 4) == &#8216;http&#8217;) { echo &#8220;Shortened URL = $response&#8221;; } else { list &#8230; <a href="http://masnun.com/blog/2009/05/10/unu-the-shortest-urls-the-api/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a simple code snippet copied from the home page of u.nu.</p>
<blockquote><p>&lt;?php<br />
$original_url = &#8216;http://www.google.com/&#8217;;<br />
$request = &#8216;http://u.nu/unu-api-simple?url=&#8217; . urlencode($original_url);<br />
$response = file_get_contents($request);<br />
if (substr($request, 0, 4) == &#8216;http&#8217;)<br />
{<br />
   echo &#8220;Shortened URL = $response&#8221;;<br />
}<br />
else<br />
{<br />
   list ($error_code, $error_message) = explode(&#8216;|&#8217;, $response);<br />
   echo &#8220;Error = $error_message ($error_code)&#8221;;<br />
}<br />
?&gt;</p></blockquote>
<p><b>PS:</b> u.nu is a great url shortener service since it generates very short and easy-to-remember urls.</p>
]]></content:encoded>
			<wfw:commentRss>http://masnun.com/blog/2009/05/10/unu-the-shortest-urls-the-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The RIA Experience</title>
		<link>http://masnun.com/blog/2009/03/14/the-ria-experience/</link>
		<comments>http://masnun.com/blog/2009/03/14/the-ria-experience/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 12:24:32 +0000</pubDate>
		<dc:creator>masnun</dc:creator>
				<category><![CDATA[Blog Post]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[free-services]]></category>

		<guid isPermaLink="false">http://masnun.com/2009/03/14/the-ria-experience/</guid>
		<description><![CDATA[I have already written about the new AOL Mail RIA. Now that I have upgraded my PC, I am now actively enjoying this super cool webmail. Many people might raise their eyebrows when I call it &#8220;super cool&#8221; given that &#8230; <a href="http://masnun.com/blog/2009/03/14/the-ria-experience/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have already written about the new AOL Mail RIA. Now that I have upgraded my PC, I am now actively enjoying this super cool webmail. Many people might raise their eyebrows when I call it &#8220;super cool&#8221; given that RIA has nothing except looks alone. Yes, it&#8217;s definitely true that RIA has only looks at the moment. But I am actively in touch with the product manager of AOL Mail RIA project discussing the present and future state of the webmail service. It&#8217;s quite clear from the intension of this guy that they want to surpass Gmail when it comes to free service.  I do believe that they can do that. The RIA service is still in Beta and new features are expected to come in this week.
</p>
<p><strong>So what the fuss is about this RIA thing?<br />
</strong></p>
<ul>
<li>RIA = Rich Internet Application.
</li>
<li>RIA uses Microsoft&#8217;s Silver Light technology to deliver highly interactive web content.
</li>
<li>You need to load the RIA application only once for every machine.  You will be able to log in lightning fast afterwards. This is a big win over other web mail services.
</li>
<li>The Interface is eye candy. Currently there are three themes.
</li>
<li>The search engine implements a &#8220;client side&#8221; search to perform really fast searches of the email headers.
</li>
<li>It works fine on my 5kbps internet connection.
</li>
<li>They have promised to consider conversation, labels and many other improvements over time.
</li>
</ul>
<p><strong>Things you won&#8217;t like:<br />
</strong></p>
<ul>
<li>The search engine only searches the headers of the email in the current folder. No searching in the message body. AOL has assured me that introducing the full email search is being given high priority on their current roadmap.
</li>
<li>You will miss conversation view if you&#8217;re a regular Gmail user. AOL says they are looking forward to adding it too.
</li>
<li>No labels. Promised to have a look into this.
</li>
<li>Incomplete settings ? No offense, they are still in beta.
</li>
<li>New tab won&#8217;t open in Firefox 2 ? Known bug to the AOL RIA team. They&#8217;re trying to implement a workaround.
</li>
</ul>
<p><strong>I made the Switch, YOU?<br />
</strong></p>
<p>I finally made the switch, by now it&#8217;s partial. I am going to keep both my Gmail and AOL Mail side by side. I can&#8217;t forward and transfer my emails from Gmail until I get conversation view in AOL mail. Otherwise, my inbox will be a mess. But I am using AOL as my primary contact address. My friend <a href="http://i-am-lv.blogspot.com">Alvee</a> has switched too. There are a good number of reasons to make a switch from Gmail to AOL. Here&#8217;s some of them:
</p>
<ul>
<li>Gmail&#8217;s storage is not unlimited. You can&#8217;t freely share files every now and then. Though now I am using only 2% of my Gmail storage, the number of inbound email messages has increased. I think it&#8217;s time I should go for an unlimited storage. I was ready to pay for unlimited storage. But even if you pay, Gmail doesn&#8217;t offer you unlimited storage. AOL gives you free on the other side.
</li>
<li>Ever visited <a href="http://gmail-is-too-creepy.com">http://gmail-is-too-creepy.com</a> ? I hardly care about what is written on that page yet, why should you have to bear confusion in mind if you can avoid it?
</li>
<li>AOL&#8217;s POP3 and IMAP config is very simple. At least 2 times simpler than Gmail.
</li>
<li>The RIA interface is thousands time better than Gmail v2. Loads faster too.
</li>
</ul>
<p>
 </p>
<p>Even after all these, I would say that AOL RIA still has a long way to go before they can be as popular as Gmail. But it doesn&#8217;t hurt to try a new service. Why don&#8217;t you join and have a go?
</p>
<p><strong>AOL Mail RIA: <a href="http://ria.aol.com"/></strong>http://ria.aol.com <span style="font-family:Wingdings">J</span>
	</p>
]]></content:encoded>
			<wfw:commentRss>http://masnun.com/blog/2009/03/14/the-ria-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The New AOL Experience</title>
		<link>http://masnun.com/blog/2009/03/04/the-new-aol-experience/</link>
		<comments>http://masnun.com/blog/2009/03/04/the-new-aol-experience/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 07:20:39 +0000</pubDate>
		<dc:creator>masnun</dc:creator>
				<category><![CDATA[Blog Post]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[free-services]]></category>

		<guid isPermaLink="false">http://masnun.com/2009/03/04/the-new-aol-experience/</guid>
		<description><![CDATA[Before you start reading, I would like you to re-read the title and realise that I did mean to put a bit of emphasis on the word &#8220;new&#8221;. Yeah, I am going to narrate the experience I recently gained just &#8230; <a href="http://masnun.com/blog/2009/03/04/the-new-aol-experience/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Before you start reading, I would like you to re-read the title and realise that I did mean to put a bit of emphasis on the word &#8220;new&#8221;. Yeah, I am going to narrate the experience I recently gained just after my previous post on the &#8220;all new aol mail&#8221; was published.</p>
<p>I am not quite sure if my blog has yet been indexed by the giant search engines, still, here I am, got a mail from one of the product managers of the AOL Mail team who somehow found my previous post here. He wrote to me regarding my thoughts about the all new AOL Email. Eventually I told him that I had lost masnun@aol.com and this kind man promised to look into the fact. Guess what, he made another AOL staff find out the real reason behind the termination of my account. That&#8217;s not all, he also made that staff reserve &#8220;masnun@aol.in&#8221; for me. I was more than happy to get such a pleasant surprise gift from a stranger with whom I haven&#8217;t had a live chat yet, just a few emails those we exchanged remain the only links between us. I made the decision immediately then. I am going to keep an AOL account side by side with Gmail. People who are barking mad out there complaining about AOL Customer Care should try a bit to understand the significant difference between the &#8220;old aol&#8221; and the &#8220;new aol&#8221;.</p>
<p>This kind guy is a product manager of the Rich Internet Application (RIA) project of AOL that I haven&#8217;t yet tested but am dying to test given that the cool screen shots I saw was really eye-candy. RIA requires Microsoft&#8217;s SilverLight technology. I need to install the plugin. Unfortunately, I don&#8217;t yet have Win XP SP2. With my SP2-less XP, I can not test the product that many people believe, is going to be the future of email messaging. I am still to wait about a week to upgrade my PC before upgrading it&#8217;s softwares. But till then, I am using the standard version of AOL Mail.</p>
<p><b>Features I like:</b><br />
·········# The interface is nice.<br />
·········# The sidebar with plugins.<br />
·········# Integrated AIM.<br />
·········# Send your AIM presence in outgoing email messages.<br />
·········# Check Yahoo! Mail and Gmail from AOL Mail (Gmail plugin doesn&#8217;t work ATM, but I was told that they will work on it)<br />
·········# UNLIMITED STORAGE.<br />
·········# Free POP3 and IMAP support.<br />
·········# Reading Pane.<br />
·········# Themes.<br />
·········# Linking Screen Names provide you the opportunity to switch between accounts on the fly.<br />
·········# Nice Mobile Version.</p>
<p><b>Things I dislike:</b><br />
·········# Banner ads rotate over time even if you don&#8217;t move.<br />
·········# The rotating ads often cause problems to GUI.<br />
·········# Ads in Email footer.<br />
·········# Takes a bit speedy connection for the standard version. AOL needs to be faster.</p>
<p><b>Few Tips For Slow Connection Users:</b><br />
·········# Uncheck the option to automatically sign in to AIM.<br />
·········# Activate Reading pane. It&#8217;ll help you read messages without facing GUI problems because of the rotating ads.</p>
<p>These two actions helped me improve the performance of AOL Mail Standard for me.</p>
<p><u><b>LINKS:</b></u></p>
<blockquote>
<ul>
<li><a href="http://ria.aol.com" target="_blank">Try AOL Mail RIA</a></li>
<li><a href="http://ria.mail.aol.com" target="_blank">About AOL Mail RIA</a></li>
<li><a href="http://mail.aol.com" target="_blank">AOL Mail</a></li>
</ul>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://masnun.com/blog/2009/03/04/the-new-aol-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gmail&#039;s Storage Secret</title>
		<link>http://masnun.com/blog/2009/02/28/gmails-storage-secret/</link>
		<comments>http://masnun.com/blog/2009/02/28/gmails-storage-secret/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 12:25:09 +0000</pubDate>
		<dc:creator>masnun</dc:creator>
				<category><![CDATA[Blog Post]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[free-services]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://masnun.com/2009/02/28/gmails-storage-secret/</guid>
		<description><![CDATA[How much storage does Google provide for every Gmail account? I know you can just visit the Gmail front page and quote the digits straightway. But have you ever wodered how that counter on gmail.com work? If you&#8217;re a web &#8230; <a href="http://masnun.com/blog/2009/02/28/gmails-storage-secret/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>How much storage does Google provide for every Gmail account? I know you can just visit the Gmail front page and quote the digits straightway. But have you ever wodered how that counter on gmail.com work? If you&#8217;re a web designer or a developer, the answer will automatically come to your mouth. It&#8217;s  javascript, updating the counter depending on your system&#8217;s time.</p>
<p>Gmail adds 4 bytes, that is 4e-3 kb and 4e-6 mb per second. The JavaScript just checks your system&#8217;s time and performs a calculation to determine the current quota for a gmail mailbox.</p>
<p>Here&#8217;s a test: While the counter is being displayed on your browser, change your PC&#8217;s time. Return to the counter and you&#8217;ll see what I have told you so far.</p>
<p>So, what does that mean? That means nothing but still it&#8217;s a critical reason for choosing Gmail over other webmails. Storage is the only thing that pushes Gmail behind AOL, Yahoo!  and others who provide unlimited storage for free. Google does not provide unlimited, but storage increases every second. It&#8217;s almost like having an unlimited storage.</p>
<blockquote><p>Gmail adds 4bytes per second to your mailbox. 1kb (1024bytes) every 256 seconds (4.26 minutes).  1 MB every 71 hours. </p></blockquote>
<p>Do you recieve more than 1MB emails every 3 days constantly ? Then you should buy additional storage if you want to continue using Gmail or choose another webmail service that provides better storage.</p>
<p>But, I believe most of us won&#8217;t cross that limit. And unless you have an alternative to quit Gmail, don&#8217;t leave it. They have free pop and imap, labels, integrated chat without flash, integrated video and voice chat, unlimited filters, cool mobile access and all those you might need to meet your emailing needs. Specially, I love Gmail because they don&#8217;t send ads at the bottom of my outgoing email messages and conversations save me a lot of time everyday. The only issue might be storage if you are a power user. In that case buy a google storage plan or create a AOL / Yahoo! account for storage. Forward your heavy messages to that account while saving the light messages inside Gmail.</p>
<p>PS. My friend says &#8220;Google knows their business. They want to make money by forcing people to upgrade storage after they have got used to the innovative service and felt relaxed about the storage believing that&#8217;d increase whenever they need.&#8221;. I don&#8217;t disagree. google knows their business, perhaps better than others. But that doesn&#8217;t hurt neither me, nor the millions of other Gmail fans. Still, it would be better if Gmail could get us rid of the storage &#8220;tension&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://masnun.com/blog/2009/02/28/gmails-storage-secret/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dot TK Free Domains</title>
		<link>http://masnun.com/blog/2009/02/15/dot-tk-free-domains/</link>
		<comments>http://masnun.com/blog/2009/02/15/dot-tk-free-domains/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 16:39:37 +0000</pubDate>
		<dc:creator>masnun</dc:creator>
				<category><![CDATA[Blog Post]]></category>
		<category><![CDATA[free-services]]></category>

		<guid isPermaLink="false">http://masnun.com/2009/02/15/dot-tk-free-domains/</guid>
		<description><![CDATA[Here&#8217;s a cool service, though quite old and popular. I am posting it for the people who still don&#8217;t know about it. Dot TK is the country domain of the Tokelau. A series of islands in the pacific. They provide &#8230; <a href="http://masnun.com/blog/2009/02/15/dot-tk-free-domains/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a cool service, though quite old and popular. I am posting it for the people who still don&#8217;t know about it.</p>
<p>Dot TK is the country domain of the Tokelau. A series of islands in the pacific. They provide their country domain for free. When you  <a title="DOT TK" href="http://freedomains.masnun.tk" target="_blank">Sign Up</a> , you get a free top level .tk domain (yourname.tk). Free accounts get url forwarding and mail forwarding along with some other features. Paid accounts get full DNS support and other premium services.</p>
<p>Even if you don&#8217;t upgrade, it&#8217;s worth having a short url like: <a title="masnun.tk" href="http://masnun.tk" target="_blank">masnun.tk</a> which is even one character short from the paid .com domains. And don&#8217;t forget the free email forwarding.</p>
<p>I used this service in the past for a long time before I registered masnun.com. If I didn&#8217;t get masnun.com available, I would have considered upgrading .tk rather than buying other top level domains.</p>
<p>For your comfort: <a title="DOT TK" href="http://freedomains.masnun.tk" target="_blank">Sign Up</a> now <img src='http://masnun.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://masnun.com/blog/2009/02/15/dot-tk-free-domains/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>XTGem</title>
		<link>http://masnun.com/blog/2007/03/15/xtgem/</link>
		<comments>http://masnun.com/blog/2007/03/15/xtgem/#comments</comments>
		<pubDate>Thu, 15 Mar 2007 12:07:00 +0000</pubDate>
		<dc:creator>masnun</dc:creator>
				<category><![CDATA[Blog Post]]></category>
		<category><![CDATA[free-services]]></category>

		<guid isPermaLink="false">http://masnun.com/2007/03/15/xtgem/</guid>
		<description><![CDATA[XTGem is a new kind of wap host which in my opinion is the best waphosting service. It&#39;s environment resembles to the user interface ofwapamp but the functional side is identical to wen.ru. It is developedby one of the developers &#8230; <a href="http://masnun.com/blog/2007/03/15/xtgem/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>XTGem is a new kind of wap host which in my opinion is the best wap<br />hosting service. It&#39;s environment resembles to the user interface of<br />wapamp but the functional side is identical to wen.ru. It is developed<br />by one of the developers of wapamp. It&#39;s unique feature is it&#39;s XT<br />Functions. It lets you easily embed complicated wap functionality like<br />browser info viewer or counter on your page without any scripting. Its<br />file system is also great with 100 MB free storage! Visit<br /><a href="http://xtgem.com">http://xtgem.com</a> for more info&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://masnun.com/blog/2007/03/15/xtgem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DeshMail ::: Free Email Service</title>
		<link>http://masnun.com/blog/2007/02/20/deshmail-free-email-service/</link>
		<comments>http://masnun.com/blog/2007/02/20/deshmail-free-email-service/#comments</comments>
		<pubDate>Tue, 20 Feb 2007 14:21:00 +0000</pubDate>
		<dc:creator>masnun</dc:creator>
				<category><![CDATA[Blog Post]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[free-services]]></category>

		<guid isPermaLink="false">http://masnun.com/2007/02/20/deshmail-free-email-service/</guid>
		<description><![CDATA[Deshmail.com is a Bangladeshi free email service which is the 1stBangla email service. It has pop port too. Just set the pop port to&#34;mail.deshmail.com&#34;. The home page address is www.deshmail.com andmind that if you don&#39;t add that &#34;www&#34;, you won&#39;t &#8230; <a href="http://masnun.com/blog/2007/02/20/deshmail-free-email-service/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Deshmail.com is a Bangladeshi free email service which is the 1st<br />Bangla email service. It has pop port too. Just set the pop port to<br />&quot;mail.deshmail.com&quot;. The home page address is <a href="http://www.deshmail.com">www.deshmail.com</a> and<br />mind that if you don&#39;t add that &quot;www&quot;, you won&#39;t be able to visit the<br />main page. They have problem with their domain&#39;s cName records. By the<br />way check this service out and remember that it is brought to you by<br />BangladeshInfo.com.The service was launched a few years ago but the UI<br />hasn&#39;t changed a bit!</p>
]]></content:encoded>
			<wfw:commentRss>http://masnun.com/blog/2007/02/20/deshmail-free-email-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>POP Accounts</title>
		<link>http://masnun.com/blog/2007/02/20/pop-accounts/</link>
		<comments>http://masnun.com/blog/2007/02/20/pop-accounts/#comments</comments>
		<pubDate>Tue, 20 Feb 2007 14:11:00 +0000</pubDate>
		<dc:creator>masnun</dc:creator>
				<category><![CDATA[Blog Post]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[free-services]]></category>

		<guid isPermaLink="false">http://masnun.com/2007/02/20/pop-accounts/</guid>
		<description><![CDATA[POP stands for Post Office Protocol. With a POP supported emailaccount you can download your emails and read them offline.You canalso compose emails offline and send them on the fly.You can evendownload emails on cell phones that has email application &#8230; <a href="http://masnun.com/blog/2007/02/20/pop-accounts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>POP stands for Post Office Protocol. With a POP supported email<br />account you can download your emails and read them offline.You can<br />also compose emails offline and send them on the fly.You can even<br />download emails on cell phones that has email application installed.<br />It can be an easy way to transfer files from your mobile phone as mms<br />is often a bit costly.There are many FREE pop service providers.<br />Hotpop.com,BlueBottle.com,Gmail.com,Acasa.ro and Yahoo! (UK,IN,SG and<br />a few more intl version) are popular!</p>
]]></content:encoded>
			<wfw:commentRss>http://masnun.com/blog/2007/02/20/pop-accounts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Import Other Emails To Gmail</title>
		<link>http://masnun.com/blog/2007/02/20/import-other-emails-to-gmail/</link>
		<comments>http://masnun.com/blog/2007/02/20/import-other-emails-to-gmail/#comments</comments>
		<pubDate>Tue, 20 Feb 2007 13:55:00 +0000</pubDate>
		<dc:creator>masnun</dc:creator>
				<category><![CDATA[Blog Post]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[free-services]]></category>

		<guid isPermaLink="false">http://masnun.com/2007/02/20/import-other-emails-to-gmail/</guid>
		<description><![CDATA[Gmail has finally given it&#39;s users a chance to import emails fromother pop3 email accounts. It also lets you send email from thoseaccounts too. Gmail automatically checks the pop3 accounts andretrieves fails. You can add up to 5 POP3 accounts. &#8230; <a href="http://masnun.com/blog/2007/02/20/import-other-emails-to-gmail/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Gmail has finally given it&#39;s users a chance to import emails from<br />other pop3 email accounts. It also lets you send email from those<br />accounts too. Gmail automatically checks the pop3 accounts and<br />retrieves fails. You can add up to 5 POP3 accounts. It&#39;s an useful<br />service for them who used to use pop email and now use gmail. I&#39;ve<br />added my DeshMail pop accounts to my gmail. You can specify labels for<br />specific pop accounts. The key point is you have to pay for this<br />service in Yahoo! and many others but its free!</p>
]]></content:encoded>
			<wfw:commentRss>http://masnun.com/blog/2007/02/20/import-other-emails-to-gmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
