<?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>soorajknair.com &#187; Technology</title>
	<atom:link href="http://soorajknair.com/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://soorajknair.com</link>
	<description>Technology,Internet,Tourism,Travel,Automotive,linux</description>
	<lastBuildDate>Mon, 09 Jan 2012 18:01:26 +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>Main Topics of SQL Server</title>
		<link>http://soorajknair.com/main-topics-of-sql-server/</link>
		<comments>http://soorajknair.com/main-topics-of-sql-server/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 16:44:45 +0000</pubDate>
		<dc:creator>sooraj</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Collation]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[Joins]]></category>
		<category><![CDATA[sql Server Interview Questions]]></category>
		<category><![CDATA[Stored procedures]]></category>
		<category><![CDATA[Sub query]]></category>
		<category><![CDATA[trigger]]></category>
		<category><![CDATA[Views]]></category>

		<guid isPermaLink="false">http://soorajknair.com/?p=557</guid>
		<description><![CDATA[Main Topics of SQL Server,and main SQL Server interview preparation modules ]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style" addthis:url='http://soorajknair.com/main-topics-of-sql-server/' addthis:title='Main Topics of SQL Server ' ><a class="addthis_button_google_plusone" g:plusone:size="medium" ></a><a class="addthis_counter addthis_pill_style"></a></div><p><strong>RDBMS</strong></p>
<p>Relational Data Base Management Systems (RDBMS), that maintain data records and indices in tables. In a relational database, relationships between data items are expressed by means of tables.</p>
<p><strong>Normalization</strong></p>
<p>In relational database design, the process of organizing data to minimize redundancy is called normalization.</p>
<p><strong>Different Normalization Forms</strong></p>
<p><strong><em>1NF: Eliminate Repeating Groups</em></strong></p>
<p>Separate table for each set of related attributes and give each table a Primary key</p>
<p><strong><em>2NF: Eliminate Redundant Data</em></strong></p>
<p>If an attribute depends on only part of a multi-valued key, remove it to a separate table.</p>
<p><strong><em>3NF: Eliminate Columns Not Dependent On Key</em></strong></p>
<p>All attributes must be directly dependent on the primary key.</p>
<p><strong><em>BCNF: Boyce-Codd Normal Form</em></strong></p>
<p>If there are non-trivial dependencies between candidate key attributes, separate them out into distinct tables</p>
<p><strong>Stored Procedure</strong></p>
<p>A stored procedure is a named group of SQL statements that have been previously created and stored in the server database. Stored procedures reduce network traffic and improve performance. Stored procedures can be used to help ensure the integrity of the database.</p>
<p>e.g. sp_helpdb, sp_renamedb etc.</p>
<p><strong>Trigger</strong></p>
<p>A trigger is a SQL procedure that initiates an action when an event occurs (INSERT, DELETE or UPDATE). A trigger cannot be called or executed; DBMS automatically fires the trigger as a result of a data modification to the associated table.</p>
<p><strong><em>Nested Trigger</em></strong><strong>:</strong></p>
<p><strong>            </strong>A trigger can also contain INSERT, UPDATE and DELETE logic within itself, so when the trigger is fired because of data modification it can also cause another data modification, thereby firing another trigger.</p>
<p><strong>View</strong></p>
<p>A simple view can be thought of as a subset of a table. It can be used for retrieving data, as well as updating or deleting rows. The results of using a view are not permanently stored in the database. When we update a value in the view it will change the Original table also.</p>
<p><strong>Different Types of Join</strong></p>
<p>Mainly 4 kind of join , Cross Join, Inner Join, Outer Join, Self Join</p>
<p><em><strong>Cross Join</strong></em></p>
<p>A cross join that does not have a WHERE clause produces the Cartesian product of the tables involved in the join. Result set is the number of rows in the first table multiplied by the number of rows in the second table.</p>
<p><em><strong>Inner Join</strong></em></p>
<p>A join that displays only the rows that have a match in both joined tables is known as inner Join.</p>
<p><em><strong>Outer Join</strong></em></p>
<p>A join that includes rows even if they do not have related rows in the joined table is an Outer Join.</p>
<ul>
<li><strong>Left Outer Join:</strong> In Left Outer Join all rows in the first table. Unmatched rows in the right table do not appear.</li>
<li><strong>Right Outer Join:</strong>  In Right Outer Join all rows in the second table. Unmatched rows in the left table are not included.</li>
<li><strong>Full Outer Join:</strong> In Full Outer Join all rows in all joined tables are included, whether they are matched or not.</li>
</ul>
<p><em><strong>Self Join</strong></em></p>
<p>When one table joins to itself</p>
<p><strong>Index</strong></p>
<p>An index is a physical structure containing pointers to the data. Indices are created in an existing table to locate rows more quickly and efficiently. The users cannot see the indexes; they are just used to speed up queries. . Effective indexes are one of the best ways to improve performance in a database application.</p>
<p><strong>Clustered Index</strong></p>
<p>Clustered index is unique for any given table and we have only one clustered index on a table.</p>
<p><strong>Non Clustered Index</strong></p>
<p>Many non Clustered Indexes as we can on database.</p>
<p><strong>Linked Server</strong></p>
<p>With a linked server, you can create very clean, easy to follow, SQL statements that allow remote data to be retrieved, joined and combined with local data.</p>
<p>Eg; sp_addlinkedserver, sp_addlinkedsrvlogin</p>
<p><strong>Cursor</strong></p>
<p>Cursor is a database object used by applications to manipulate data in a set on a row-by-row basis, instead of the typical SQL commands that operate on all the rows in the set at one time.</p>
<p><strong>Collation</strong></p>
<p>Collation refers to a set of rules that determine how data is sorted and compared.</p>
<p><strong>Sub-query</strong></p>
<p>Sub query is a SELECT statement that is nested within another T-SQL statement.</p>
<div id="seo_alrp_related"><h2>consider reading...</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/cursor-in-sql-statements/" rel="bookmark">Cursor in SQL Statements</a></h3><p>The cursor is a virtual path to move the pointer row by row means an area allocated for executing the SQL statements. There are different ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/linked-server-in-sql-server/" rel="bookmark">Linked Server in SQL Server</a></h3><p>A linked server configuration enables SQL Server to execute commands against OLE DB data sources on remote servers. Linked Servers is a concept in SQL ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/management-information-system/" rel="bookmark">Management Information System</a></h3><p>Definition: Management Information Systems (MIS) is the term given to the discipline focused on the integration of computer systems with the aims and objectives on ...</p></div></li></ul></div><div class="addthis_toolbox addthis_default_style " addthis:url='http://soorajknair.com/main-topics-of-sql-server/' addthis:title='Main Topics of SQL Server '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></content:encoded>
			<wfw:commentRss>http://soorajknair.com/main-topics-of-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BO.LT for web sharing</title>
		<link>http://soorajknair.com/bo-lt-for-web-sharing/</link>
		<comments>http://soorajknair.com/bo-lt-for-web-sharing/#comments</comments>
		<pubDate>Sun, 16 Oct 2011 18:31:21 +0000</pubDate>
		<dc:creator>sooraj</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[. Facebook]]></category>
		<category><![CDATA[BO.LT for web sharing]]></category>
		<category><![CDATA[display ads]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[search ads]]></category>
		<category><![CDATA[traffic on Twitter]]></category>

		<guid isPermaLink="false">http://soorajknair.com/?p=547</guid>
		<description><![CDATA[BO.LT is a page sharing service that lets anyone grab virtually any page on the web and tweak it to make it more relevant to their audience. Use it to create readable, personalized URLs for the links you traffic on Twitter, Facebook, email, display ads, search ads, and anywhere else you use pages to get attention and motivate your audience.]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style" addthis:url='http://soorajknair.com/bo-lt-for-web-sharing/' addthis:title='BO.LT for web sharing ' ><a class="addthis_button_google_plusone" g:plusone:size="medium" ></a><a class="addthis_counter addthis_pill_style"></a></div><p><a href="http://soorajknair.com/wp-content/uploads/2011/10/bolt.jpg"><img class="alignleft size-medium wp-image-549" style="margin: 7px;" title="bolt" src="http://soorajknair.com/wp-content/uploads/2011/10/bolt-300x187.jpg" alt="bolt 300x187 BO.LT for web sharing" width="300" height="187" /></a>How can you store your favourite webpages in internet? Most of them are using browsers favorite button or just forward the link to your email or store the details in google docs right? My question is how can you save your webpages and webpage images or slides are stored in internet like a webpage?</p>
<p>Here is the significance of BO.LT, we can save the links webpages etc are in BO.LT site. The speciallity of BO.LT is keep the files and webpage scrooing like nuts and bolts,we can edit or recreat the files as our wish.when you can login to BO.LT you will get the simplicity of BO.LT, you can get a subdomain in BO.LT like soorajknair.bo.lt.</p>
<p>BO.LT is a page sharing service that lets anyone grab virtually any page on the web and tweak it to make it more relevant to their audience. Use it to create readable, personalized URLs for the links you traffic on Twitter, Facebook, email, display ads, search ads, and anywhere else you use pages to get attention and motivate your audience.</p>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/10/bolt1.jpg"><img class="alignright size-medium wp-image-548" title="bolt1" src="http://soorajknair.com/wp-content/uploads/2011/10/bolt1-300x187.jpg" alt="bolt1 300x187 BO.LT for web sharing" width="300" height="187" /></a>You can share, Like, publish  anything can done through BO.LT.in user&#8217;s inteface we will get the thumbnail portion of our shared documents.  BO.LT have realized that web pages are being held back because while they are tightly linked to one another, they are not connected to you. BO.LT to help turn the pages of the web into &#8220;Social Objects&#8221; that can be remixed and shared to be, well, less boring.</p>
<p>Let you &#8220;remix&#8221; pages and share them with the people you want to reach. BO.LT run a very advanced content delivery network that is tuned for incredibly fast serving and incredibly fast editing and sharing. When you put a page on BO.LT, it is a copy. Don&#8217;t worry, the original page on the original site is still safe. Your page, however, is nimble, changeable, and under your control.</p>
<p>BO.LT have designed the tool to be totally open &#8211; you can use it for free, and even anonymously. Obviously, we have held back some of the good stuff for our paying customers, but there is still plenty of runway. We hope you will join us.</p>
<p>You are working hard to gain followers, conversions, and repeaters of your message.  When your target clicks on your link, they expect responsive pages with relevant content. BO.LT gives you control, speed, and feedback so that you can win the battle for attention.</p>
<p><strong><a href="http://BO.LT">http://BO.LT</a></strong></p>
<div id="seo_alrp_related"><h2>consider reading...</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/creating-a-facebook-page/" rel="bookmark">Creating a Facebook page</a></h3><p>Creating a Facebook page is not directly linked in our Facebook profile. A Facebook Page is a public profile that enables you to share your ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/196/" rel="bookmark">Orkut Infected by Bom Sabado Virus</a></h3><p>Google’s social networking website Orkut has been attacked by virus called “Bom Sabado” on Saturday morning, which is a big treat for orkut . “Bom sabado” is a ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/my-gmail-account-and-google-apps-got-hacked/" rel="bookmark">My Gmail Account and Google Apps Got Hacked</a></h3><p>My Gmail and Google Apps accounts were hacked recently but Google restored access in the next three hours. Here are lessons learned and tips that ...</p></div></li></ul></div><div class="addthis_toolbox addthis_default_style " addthis:url='http://soorajknair.com/bo-lt-for-web-sharing/' addthis:title='BO.LT for web sharing '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></content:encoded>
			<wfw:commentRss>http://soorajknair.com/bo-lt-for-web-sharing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile Payment System</title>
		<link>http://soorajknair.com/mobile-payment-system/</link>
		<comments>http://soorajknair.com/mobile-payment-system/#comments</comments>
		<pubDate>Sun, 09 Oct 2011 17:57:02 +0000</pubDate>
		<dc:creator>sooraj</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[debit/credit card payment]]></category>
		<category><![CDATA[e-store]]></category>
		<category><![CDATA[eshop]]></category>
		<category><![CDATA[internet shop]]></category>
		<category><![CDATA[online payment]]></category>
		<category><![CDATA[online purchase]]></category>
		<category><![CDATA[online shop]]></category>
		<category><![CDATA[online store]]></category>
		<category><![CDATA[Square]]></category>
		<category><![CDATA[Venmo]]></category>
		<category><![CDATA[webshop]]></category>
		<category><![CDATA[webstore]]></category>
		<category><![CDATA[ZipPay]]></category>

		<guid isPermaLink="false">http://soorajknair.com/?p=538</guid>
		<description><![CDATA[online purchase,online payment,debit/credit card payment are very common in todays world. Online shopping is the process whereby consumers directly buy goods or services from a seller in real-time, without an intermediary service, over the Internet. It is a form of electronic commerce. ]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style" addthis:url='http://soorajknair.com/mobile-payment-system/' addthis:title='Mobile Payment System ' ><a class="addthis_button_google_plusone" g:plusone:size="medium" ></a><a class="addthis_counter addthis_pill_style"></a></div><p><a href="http://soorajknair.com/wp-content/uploads/2011/10/mobile_payments.jpg"><img class="alignleft size-full wp-image-539" style="margin: 5px;" title="mobile_payments" src="http://soorajknair.com/wp-content/uploads/2011/10/mobile_payments.jpg" alt="mobile payments Mobile Payment System" width="230" height="293" /></a>online purchase,online payment,debit/credit card payment are very common in todays world. Online shopping is the process whereby consumers directly buy goods or services from a seller in real-time, without an intermediary service, over the Internet. It is a form of electronic commerce. An online shop, eshop, e-store, internet shop, webshop, webstore, online store, or virtual store evokes the physical analogy of buying products or in a shopping centre.In these kinds of shopping usage of credit/Debit cards or internet banking system are very common. Why we cant use mobile phones for payment?</p>
<p>Yes <strong>mobile payment systems</strong> are the other method of payment transaction method so many Europian countries are using this method.Mobile payment or known also as Mobile wallet is an alternative payment method. Instead of paying with cash, cheque or credit cards, a consumer can use a mobile phone to pay for a wide range of services and digital or hard goods.</p>
<p>Many Business giants now heavily investing in mobile payment technologies it is evident that the time has now come to capitalize on this opportunity. Mobile Payment Services conference has therefore been specifically designed to empower stakeholders, providing them with a deep insight into the market that will assist in strengthing their mobile payment strategies and ensure they remain competitive.</p>
<p><strong>Paymate</strong> is one of the leading mobile payment companies. PayMate&#8217;s mobile payment solutions link your mobile phone to any financial instrument of your choice, whether it&#8217;s an existing bank account, credit card or a prepaid account, turning your mobile phone into a secure tool you can use anytime, anywhere.</p>
<p>With PayMate, your phone is powered to instantly send and receive money, pay for your shopping, utility bills, flight &amp; more tickets and so much more with unmatched speed and safety. Start paying with your mobile today.</p>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/10/paymate.jpg"><img class="alignright size-full wp-image-540" style="margin: 5px;" title="paymate" src="http://soorajknair.com/wp-content/uploads/2011/10/paymate.jpg" alt="paymate Mobile Payment System" width="227" height="82" /></a>PayMate is a Mumbai based wireless transactions platform provider founded by entrepreneurs Ajay Adiseshann and Probir Roy. PayMate is funded by Venture Capital firms Kleiner Perkins Caufield &amp; Byers, Sherpalo Ventures and Mayfield Fund. Some companies that are a part of their portfolios are Google, AOL, Amazon, Sun Microsystems and SanDisk among others. PayMate has offices in India, USA, Sri Lanka, Nepal and UAE making it the single largest M- Commerce company in the sub continent, offering customized mobile payment solutions in each market with local partners.</p>
<p><a href="http://www.paymate.co.in">http://www.paymate.co.in</a></p>
<p>ZipPay,Square and Venmo are the other mobile payment options</p>
<p><a href="http://zippaymobile.com">http://zippaymobile.com</a></p>
<p><a href="http://squreup.com">http://squreup.com</a></p>
<p><a href="http://venmo.com">http://venmo.com</a></p>
<p>Moving beyond trials, this is designed to provide real life commercial examples of the kind of business models, services and applications that are being launched to encourage consumer adoption of mobile-enabled payment mechanisms.</p>
<div id="seo_alrp_related"><h2>consider reading...</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/google-wallet/" rel="bookmark">Google Wallet</a></h3><p>Google Wallet is an Android app that makes your phone your wallet. It stores virtual versions of your existing plastic cards on your phone. Simply ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/mtnl-3g-jadoo/" rel="bookmark">MTNL 3G Jadoo</a></h3><p>India leaps into 3G Mobile arena with the soft launch of 3G enabled Mobile services by Mahanagar Telephone Nigam Limited (MTNL) for its Delhi Network. ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/videocon-mobile-launched/" rel="bookmark">Videocon Mobile Launched</a></h3><p>Videocon is betting big on the Indian handset market and is aiming for a Pan-India sales network. Having been in the Consumer Electronics business It ...</p></div></li></ul></div><div class="addthis_toolbox addthis_default_style " addthis:url='http://soorajknair.com/mobile-payment-system/' addthis:title='Mobile Payment System '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></content:encoded>
			<wfw:commentRss>http://soorajknair.com/mobile-payment-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Docs Fax Service</title>
		<link>http://soorajknair.com/google-docs-fax-service/</link>
		<comments>http://soorajknair.com/google-docs-fax-service/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 18:08:32 +0000</pubDate>
		<dc:creator>sooraj</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[ginzafax]]></category>
		<category><![CDATA[google docs fax]]></category>
		<category><![CDATA[interfax]]></category>
		<category><![CDATA[internet faxing services]]></category>

		<guid isPermaLink="false">http://soorajknair.com/?p=524</guid>
		<description><![CDATA[While there are some great options out of there for doing internet faxing, they all seem to be missing one thing- Google Docs integration.]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style" addthis:url='http://soorajknair.com/google-docs-fax-service/' addthis:title='Google Docs Fax Service ' ><a class="addthis_button_google_plusone" g:plusone:size="medium" ></a><a class="addthis_counter addthis_pill_style"></a></div><p>What is the significance of Fax in this modern generation? This is a natural question, But most of the business people are still using fax system. Is the importance of fax machine gone When email system comes into the world? While there are some great options out of there for doing internet faxing, they all seem to be missing one thing- Google Docs integration.</p>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/09/interfax.net_.jpg"><img class="alignright size-medium wp-image-525" style="margin: 5px;" title="interfax.net" src="http://soorajknair.com/wp-content/uploads/2011/09/interfax.net_-300x175.jpg" alt="interfax.net  300x175 Google Docs Fax Service " width="300" height="175" /></a>We have to create Google docs to fantastic fax machine using the website <a href="http://www.interfax.net,%20there">www.interfax.net, there</a> is no telephone line needed for this system. The only thing is you must have a credit or debit card. You have to register using Google docs account in Interfax.net website. After registering you can send Google docs or spread sheets to any of the fax numbers, not single, you can send multiple fax numbers in a single click.</p>
<p>Google docs will receive fax messages in the pdf format, and that will stored in your Google account. The Google docs fax service is included at no extra cost for existing Interfax customers. <a href="http://www.ginzafax.com">www.ginzafax.com</a> is the other Google docs fax provider in the internet world. To send a fax, just upload the document to Google docs and retrieve from the websites and send to multiple ax numbers.</p>
<div id="seo_alrp_related"><h2>consider reading...</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/what-is-google-plus/" rel="bookmark">What is Google Plus</a></h3><p>Today, the connections between people increasingly happen online. Yet the subtlety and substance of real-world interactions are lost in the rigidness of our online tools. ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/google-wallet/" rel="bookmark">Google Wallet</a></h3><p>Google Wallet is an Android app that makes your phone your wallet. It stores virtual versions of your existing plastic cards on your phone. Simply ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/creating-an-email-account/" rel="bookmark">Creating an Email Account</a></h3><p>What is an email address? , Email address is one person's representation in internet like your street address.Email address is always unique, Once you create ...</p></div></li></ul></div><div class="addthis_toolbox addthis_default_style " addthis:url='http://soorajknair.com/google-docs-fax-service/' addthis:title='Google Docs Fax Service '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></content:encoded>
			<wfw:commentRss>http://soorajknair.com/google-docs-fax-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lenovo Thinkpad Tablet</title>
		<link>http://soorajknair.com/lenovo-thinkpad-tablet/</link>
		<comments>http://soorajknair.com/lenovo-thinkpad-tablet/#comments</comments>
		<pubDate>Sun, 28 Aug 2011 08:31:21 +0000</pubDate>
		<dc:creator>sooraj</dc:creator>
				<category><![CDATA[New Release]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[android tablet]]></category>
		<category><![CDATA[android think pad]]></category>
		<category><![CDATA[lenove tablet]]></category>
		<category><![CDATA[Lenovo Thinkpad Tablet]]></category>
		<category><![CDATA[thinkpad.thinkpad tablet price]]></category>

		<guid isPermaLink="false">http://soorajknair.com/?p=517</guid>
		<description><![CDATA[Lenovo the the laptop giants are going to launch think pad tablet.Lenovo’s business-orientated tablet, the ThinkPad Tablet, is going to launch in markets soon.It comes in a 16GB model for $499, a 32GB version for $569 and a 64GB option for $669. Basic specs and price-wise, the ThinkPad Tablet is on par with the competition.]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style" addthis:url='http://soorajknair.com/lenovo-thinkpad-tablet/' addthis:title='Lenovo Thinkpad Tablet ' ><a class="addthis_button_google_plusone" g:plusone:size="medium" ></a><a class="addthis_counter addthis_pill_style"></a></div><p><a href="http://soorajknair.com/wp-content/uploads/2011/08/thinkpadtablet.jpg"><img class="alignleft size-medium wp-image-518" title="thinkpadtablet" src="http://soorajknair.com/wp-content/uploads/2011/08/thinkpadtablet-268x300.jpg" alt="thinkpadtablet 268x300 Lenovo Thinkpad Tablet" width="268" height="300" /></a>Lenovo the the laptop giants are going to launch think pad tablet.Lenovo’s business-orientated tablet, the ThinkPad Tablet, is going to launch in markets soon.The 10-inch Android device, which Lenovo officially announced a little more than a month ago, boasts an impressive mix of consumer and business-friendly features that might please both you and your IT department.</p>
<p>Like other Android 3.1 Honeycomb tablets on the market, the ThinkPad Tablet has a 1280 x 800 multitouch display, 1GB of memory, front- and rear-facing cameras and a NVIDIA Tegra 2 dualcore processor. It comes in a 16GB model for $499, a 32GB version for $569 and a 64GB option for $669. Basic specs and price-wise, the ThinkPad Tablet is on par with the competition.</p>
<p>The ThinkPad Tablet gives mobile professionals the most intuitive user experience available on a tablet today.This is the first business friendly tablet, the users of lenovo can expect the same reliable and productive like the think pad.Lenovo Think pad Tablet includes the following things</p>
<ul>
<li>Optical Designer pen</li>
<li>Full Size USP port</li>
<li>Full size SD Card Slot</li>
<li>mini-HDMI for connecting to external displays</li>
<li>keyboard folio case with optical TrackPoint</li>
</ul>
<p>the ThinkPad Tablet works with a digitizing pen that, unlike styluses used on traditional capacitive-screen-only tablets, can work on the screen even when your hand is resting on the touch display. It&#8217;s also pressure-sensitive, which means you can vary the width of your drawing line by decreasing and increasing pressure on the screen, instead of selecting a different pen thickness.</p>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/08/lenovothinkpadtablet.png"><img class="aligncenter size-full wp-image-520" title="lenovothinkpadtablet" src="http://soorajknair.com/wp-content/uploads/2011/08/lenovothinkpadtablet.png" alt="lenovothinkpadtablet Lenovo Thinkpad Tablet" width="568" height="499" /></a></p>
<div id="seo_alrp_related"><h2>consider reading...</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/gigabytes-tablet-pc/" rel="bookmark">Gigabyte&#8217;s tablet PC</a></h3><p>Gigabyte  announced the S1080 tablet PC would be coming in February and that the pricing would be under $300. Right now you can enjoy a ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/nokia-n900/" rel="bookmark">Nokia N900</a></h3><p>N900 or Nokia Rover as some call it, is a first new internet tablet by Nokia that is based on Linux platform Maemo 5. The ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/samsung-bada-mobile-os-launched/" rel="bookmark">Samsung Bada Mobile OS Launched</a></h3><p>Last month Samsung announced that it planned to launch its own mobile phone operating system called ‘Bada’, today Samsung has officially launched their Bada OS. ...</p></div></li></ul></div><div class="addthis_toolbox addthis_default_style " addthis:url='http://soorajknair.com/lenovo-thinkpad-tablet/' addthis:title='Lenovo Thinkpad Tablet '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></content:encoded>
			<wfw:commentRss>http://soorajknair.com/lenovo-thinkpad-tablet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pingdom for web monitoring</title>
		<link>http://soorajknair.com/pingdom-for-web-monitoring/</link>
		<comments>http://soorajknair.com/pingdom-for-web-monitoring/#comments</comments>
		<pubDate>Sat, 30 Jul 2011 08:40:10 +0000</pubDate>
		<dc:creator>sooraj</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[pingdom]]></category>
		<category><![CDATA[pingdom web monitoring]]></category>
		<category><![CDATA[web analysis]]></category>
		<category><![CDATA[web monitoring tool]]></category>
		<category><![CDATA[web site performance]]></category>
		<category><![CDATA[website down time]]></category>

		<guid isPermaLink="false">http://soorajknair.com/?p=504</guid>
		<description><![CDATA[An Uptime and performance monitoring tool for your websites.If you are a business person with online presence,it is very important to know your webservice is 100% up in 24*7 basis.]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style" addthis:url='http://soorajknair.com/pingdom-for-web-monitoring/' addthis:title='Pingdom for web monitoring ' ><a class="addthis_button_google_plusone" g:plusone:size="medium" ></a><a class="addthis_counter addthis_pill_style"></a></div><p>&nbsp;</p>
<p>An Uptime and performance monitoring tool for your websites.If you are a business person with online presence,it is very important to know your webservice is 100% up in 24*7 basis.However all webservers are their own problems,most of the time the user(website owner) unaware of these problems,pingdom creates a simple and easy way to know the downtime and performance of your website.</p>
<p>With Pingdom, any problem with your website will be discovered the minute it happens. The website owner will be immediatly informed when your webservice is down,You will also be able to see detailed statistics of your website performance, giving you a historical record of all incidents.</p>
<p>Lots of information services are available in pingdom,when your webservice is down you will get information through,email,sms,etc with in minutes.This is very less expensive downtime alert service available in web.</p>
<p>You can create your pingdom account for free of cost and and configure your website in pingdom.</p>
<p>Pingdom makes it easy for you to monitor the uptime and response time of your websites and servers on the Internet. Here is a quick tour of some of the features.</p>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/07/pigdom01.jpg"><img class="aligncenter size-medium wp-image-505" title="pigdom01" src="http://soorajknair.com/wp-content/uploads/2011/07/pigdom01-300x225.jpg" alt="pigdom01 300x225 Pingdom for web monitoring" width="300" height="225" /></a></p>
<h4>Configure checks and alerts</h4>
<p>Choose what you want to monitor and how to get alerted</p>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/07/pingdom.png"><img class="aligncenter size-medium wp-image-512" title="pingdom" src="http://soorajknair.com/wp-content/uploads/2011/07/pingdom-254x300.png" alt="pingdom 254x300 Pingdom for web monitoring" width="254" height="300" /></a></p>
<h4>Configure contacts</h4>
<p>Create contacts for those who should receive error alerts</p>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/07/pingdom-1.png"><img class="aligncenter size-medium wp-image-506" title="pingdom 1" src="http://soorajknair.com/wp-content/uploads/2011/07/pingdom-1-300x205.png" alt="pingdom 1 300x205 Pingdom for web monitoring" width="300" height="205" /></a></p>
<h4>Uptime statistics</h4>
<p>View gathered statistics about your uptime</p>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/07/pingdom-2.png"><img class="aligncenter size-medium wp-image-507" title="pingdom 2" src="http://soorajknair.com/wp-content/uploads/2011/07/pingdom-2-267x300.png" alt="pingdom 2 267x300 Pingdom for web monitoring" width="267" height="300" /></a></p>
<h4>Response time statistics</h4>
<p>View gathered statistics about your response time</p>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/07/pingdom3.png"><img class="aligncenter size-medium wp-image-513" title="pingdom3" src="http://soorajknair.com/wp-content/uploads/2011/07/pingdom3-284x300.png" alt="pingdom3 284x300 Pingdom for web monitoring" width="284" height="300" /></a></p>
<h4>Detailed information about performed tests</h4>
<p>View all individual tests performed by Pingdom and their results</p>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/07/pingdom-4.png"><img class="aligncenter size-medium wp-image-508" title="pingdom 4" src="http://soorajknair.com/wp-content/uploads/2011/07/pingdom-4-287x300.png" alt="pingdom 4 287x300 Pingdom for web monitoring" width="287" height="300" /></a></p>
<h4>Public reports</h4>
<p>You can make your uptime statistics available on a public report page</p>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/07/pingdom-6.png"><img class="aligncenter size-medium wp-image-510" title="pingdom 6" src="http://soorajknair.com/wp-content/uploads/2011/07/pingdom-6-300x196.png" alt="pingdom 6 300x196 Pingdom for web monitoring" width="300" height="196" /></a></p>
<h4>Reports via email</h4>
<p>Get daily, weekly or monthly statistics via email</p>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/07/pingdom-7.png"><img class="aligncenter size-medium wp-image-511" title="pingdom 7" src="http://soorajknair.com/wp-content/uploads/2011/07/pingdom-7-300x196.png" alt="pingdom 7 300x196 Pingdom for web monitoring" width="300" height="196" /></a></p>
<p>&nbsp;</p>
<p><a href="http://www.pingdom.com/">http://www.pingdom.com</a></p>
<p>&nbsp;</p>
<div id="seo_alrp_related"><h2>consider reading...</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/my-gmail-account-and-google-apps-got-hacked/" rel="bookmark">My Gmail Account and Google Apps Got Hacked</a></h3><p>My Gmail and Google Apps accounts were hacked recently but Google restored access in the next three hours. Here are lessons learned and tips that ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/google-docs-fax-service/" rel="bookmark">Google Docs Fax Service</a></h3><p>What is the significance of Fax in this modern generation? This is a natural question, But most of the business people are still using fax ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/management-information-system/" rel="bookmark">Management Information System</a></h3><p>Definition: Management Information Systems (MIS) is the term given to the discipline focused on the integration of computer systems with the aims and objectives on ...</p></div></li></ul></div><div class="addthis_toolbox addthis_default_style " addthis:url='http://soorajknair.com/pingdom-for-web-monitoring/' addthis:title='Pingdom for web monitoring '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></content:encoded>
			<wfw:commentRss>http://soorajknair.com/pingdom-for-web-monitoring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to start a blog</title>
		<link>http://soorajknair.com/how-to-start-a-blog/</link>
		<comments>http://soorajknair.com/how-to-start-a-blog/#comments</comments>
		<pubDate>Sun, 17 Jul 2011 12:33:32 +0000</pubDate>
		<dc:creator>sooraj</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[How to start a blog]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[personl diary]]></category>
		<category><![CDATA[What is a blog]]></category>
		<category><![CDATA[word press]]></category>

		<guid isPermaLink="false">http://soorajknair.com/how-to-start-a-blog/</guid>
		<description><![CDATA[What is a blog? Blog is simply called a personal diary. a person have to write his ideas, thinking&#8217;s, better opportunities, his beliefs, thoughts, about his creations, his habits and...]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style" addthis:url='http://soorajknair.com/how-to-start-a-blog/' addthis:title='How to start a blog ' ><a class="addthis_button_google_plusone" g:plusone:size="medium" ></a><a class="addthis_counter addthis_pill_style"></a></div><p><strong>What is a blog?<br />
</strong><br />
Blog is simply called a personal diary. a person have to write his ideas, thinking&#8217;s, better opportunities, his beliefs, thoughts, about his creations, his habits and like all we have to write in the blog. Blog is your personal notes about anything, you have to publish it or restrict it with your selected circles. Means it is the online version of your personal diary, you can access this from everywhere in the universe using a internet connection.You can upload your travelling, photos and videos and all that is the advantage of the blog.</p>
<p><strong>How to start a blog?</strong></p>
<p><strong> </strong></p>
<p><strong> </strong>Starting your blog is very simple, If want your own name in your blog you can register a domain and purchase some web space and start a blog with the help of word press, joomla, Drupal like content management web applications.</p>
<p>The other simplest way to start a blog is to register a Blogger.com account and start a blog.</p>
<p>First of all you type the web browser <a href="http://www.blogger.com">www.blogger.com</a></p>
<p><img src="http://soorajknair.com/wp-content/uploads/2011/07/blogger.com-1.jpg" alt="blogger.com 1 How to start a blog" width="450" height="256" title="How to start a blog" /></p>
<p>And click the Get started Button for new registration; you can register the blog with a valid email address.</p>
<p><img src="http://soorajknair.com/wp-content/uploads/2011/07/blogregistration.jpg" alt="blogregistration How to start a blog" width="450" height="466" title="How to start a blog" /></p>
<p>After registration you can  login to the blog and name your blog</p>
<p><img src="http://soorajknair.com/wp-content/uploads/2011/07/startblog.jpg" alt="startblog How to start a blog" width="450" height="335" title="How to start a blog" /></p>
<p>After naming your blog choose one template for your blog</p>
<p><img src="http://soorajknair.com/wp-content/uploads/2011/07/blogtemplate.jpg" alt="blogtemplate How to start a blog" width="450" height="436" title="How to start a blog" /></p>
<p>your blog hasbeen created</p>
<p><img src="http://soorajknair.com/wp-content/uploads/2011/07/startblogging.jpg" alt="startblogging How to start a blog" width="450" height="290" title="How to start a blog" /></p>
<p>Then start writing to your blog,you can also insert images,video&#8217;s to your blog and publish to your to public.</p>
<p><img src="http://soorajknair.com/wp-content/uploads/2011/07/blogpublish.jpg" alt="blogpublish How to start a blog" width="450" height="344" title="How to start a blog" /></p>
<p>View your blog like this</p>
<p><img src="http://soorajknair.com/wp-content/uploads/2011/07/sampleblog.jpg" alt="sampleblog How to start a blog" width="450" height="274" title="How to start a blog" /></p>
<p>&nbsp;</p>
<div id="seo_alrp_related"><h2>consider reading...</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/hitsniffer-blog-status/" rel="bookmark">Hitsniffer blog status</a></h3><p>Hit Sniffer is a powerful real time visitors activity tracker. Monitor your visitors live and get useful stats data such as referrers, search keywords, technologies ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/6-twitter-tips/" rel="bookmark">6 twitter tips</a></h3><p>Twitter is the next new BIG thing on internet. Twitter is a micro blogging platform thru which we can spread our 140 char messages to ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/my-gmail-account-and-google-apps-got-hacked/" rel="bookmark">My Gmail Account and Google Apps Got Hacked</a></h3><p>My Gmail and Google Apps accounts were hacked recently but Google restored access in the next three hours. Here are lessons learned and tips that ...</p></div></li></ul></div><div class="addthis_toolbox addthis_default_style " addthis:url='http://soorajknair.com/how-to-start-a-blog/' addthis:title='How to start a blog '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></content:encoded>
			<wfw:commentRss>http://soorajknair.com/how-to-start-a-blog/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>What is Google Plus</title>
		<link>http://soorajknair.com/what-is-google-plus/</link>
		<comments>http://soorajknair.com/what-is-google-plus/#comments</comments>
		<pubDate>Sat, 09 Jul 2011 08:28:58 +0000</pubDate>
		<dc:creator>sooraj</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[New Release]]></category>
		<category><![CDATA[circles]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Google Plus Demo]]></category>
		<category><![CDATA[hangout]]></category>
		<category><![CDATA[How to Register Goolgle Plus]]></category>
		<category><![CDATA[Huddle]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[sparks]]></category>
		<category><![CDATA[what is google plus]]></category>
		<category><![CDATA[what is google+]]></category>

		<guid isPermaLink="false">http://soorajknair.com/?p=458</guid>
		<description><![CDATA[Goolgle like to bring the nuance and richness of real-life sharing to software. We want to make Google better by including you, your relationships, and your interests. And so begins the Google+ project]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style" addthis:url='http://soorajknair.com/what-is-google-plus/' addthis:title='What is Google Plus ' ><a class="addthis_button_google_plusone" g:plusone:size="medium" ></a><a class="addthis_counter addthis_pill_style"></a></div><p>Today, the connections between people increasingly happen online. Yet the subtlety and substance of real-world interactions are lost in the rigidness of our online tools.</p>
<p>Google like to bring the nuance and richness of real-life sharing to software. We want to make Google better by including you, your relationships, and your interests. And so begins the Google+ project:</p>
<p>That’s the Google+ project so far: Circles, Sparks, Hangouts and mobile. google beginning in Field Trial, so you may find some rough edges, and the project is by invitation only. But online sharing needs a serious re-think, so it’s time to got started.</p>
<h4>Circles</h4>
<p>You share different things with different people. So sharing the right stuff with the right people shouldn’t be a hassle. Circles makes it easy to put your friends from Saturday night in one circle, your parents in another, and your boss in a circle by himself &#8211; just like real life.</p>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/07/google+-circles.jpg"><img class="aligncenter size-large wp-image-459" title="google+ circles" src="http://soorajknair.com/wp-content/uploads/2011/07/google+-circles-1024x544.jpg" alt="google+ circles 1024x544 What is Google Plus" width="620" height="329" /></a></p>
<h4>Hangouts</h4>
<p>With Hangouts, the unplanned meet-up comes to the web for the first time. Let specific buddies (or entire circles) know you’re hanging out and then see who drops by for a face-to-face-to-face chat. Until teleportation arrives, it’s the next best thing.</p>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/07/google+-hangouts.jpg"><img class="aligncenter size-large wp-image-460" title="google+ hangouts" src="http://soorajknair.com/wp-content/uploads/2011/07/google+-hangouts-1024x546.jpg" alt="google+ hangouts 1024x546 What is Google Plus" width="620" height="330" /></a></p>
<h4>Instant Upload</h4>
<p>Taking photos is fun. Sharing photos is fun. Getting photos off your phone is pretty much the opposite of fun. With Instant Upload, your photos and videos upload themselves automatically, to a private album on Google+.  All you have to do is decide who to share them with.</p>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/07/google+-instant-upload.jpg"><img class="aligncenter size-large wp-image-462" title="google+ instant upload" src="http://soorajknair.com/wp-content/uploads/2011/07/google+-instant-upload-1024x548.jpg" alt="google+ instant upload 1024x548 What is Google Plus" width="620" height="331" /></a></p>
<h4>Sparks</h4>
<p>Tell Sparks what you’re into and it will send you stuff it thinks you’ll like, so when you’re free, there’s always something cool to watch, read, or share.</p>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/07/google+-sparkle.jpg"><img class="aligncenter size-large wp-image-463" title="google+ sparks" src="http://soorajknair.com/wp-content/uploads/2011/07/google+-sparkle-1024x544.jpg" alt="google+ sparkle 1024x544 What is Google Plus" width="620" height="329" /></a></p>
<h4>Huddle</h4>
<p>Texting is great, but not when you’re trying to get six different people to decide on a movie. Huddle turns all those different conversations into one simple group chat, so everyone gets on the same page all at once. Your thumbs will thank you.</p>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/07/google+-hurdle.jpg"><img class="aligncenter size-large wp-image-461" title="google+ hurdle" src="http://soorajknair.com/wp-content/uploads/2011/07/google+-hurdle-1024x542.jpg" alt="google+ hurdle 1024x542 What is Google Plus" width="620" height="328" /></a></p>
<h3>Google Plus Demo</h3>
<p><strong><a href="http://www.google.com/+/demo/" target="_blank">http://www.google.com/+/demo/</a></strong></p>
<h3>How to Register Goolgle Plus</h3>
<p><strong><a href="http://www.meabi.com/register-for-google-plus/" target="_blank">http://www.meabi.com/register-for-google-plus/</a></strong></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Now the Google plus is released for public</p>
<div id="seo_alrp_related"><h2>consider reading...</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/google-docs-fax-service/" rel="bookmark">Google Docs Fax Service</a></h3><p>What is the significance of Fax in this modern generation? This is a natural question, But most of the business people are still using fax ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/google-wallet/" rel="bookmark">Google Wallet</a></h3><p>Google Wallet is an Android app that makes your phone your wallet. It stores virtual versions of your existing plastic cards on your phone. Simply ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/microsoft-skype/" rel="bookmark">Microsoft Skype</a></h3><p>Skype has its own position in the internet world.skype is more user friendly than Yahoo messenger and google's gtalk.Microsoft has bought Skype for $8.5 billion, ...</p></div></li></ul></div><div class="addthis_toolbox addthis_default_style " addthis:url='http://soorajknair.com/what-is-google-plus/' addthis:title='What is Google Plus '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></content:encoded>
			<wfw:commentRss>http://soorajknair.com/what-is-google-plus/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>courteous.ly</title>
		<link>http://soorajknair.com/445/</link>
		<comments>http://soorajknair.com/445/#comments</comments>
		<pubDate>Sun, 26 Jun 2011 17:38:40 +0000</pubDate>
		<dc:creator>sooraj</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[courteous.ly]]></category>
		<category><![CDATA[email load]]></category>
		<category><![CDATA[gmail]]></category>

		<guid isPermaLink="false">http://soorajknair.com/?p=445</guid>
		<description><![CDATA[If you haven't already, go check out the video on the home page. In short, courteous.ly is a service for showing people your current email load. After you give courteous.ly access to your Gmail account, it periodically checks your email load.]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style" addthis:url='http://soorajknair.com/445/' addthis:title='courteous.ly ' ><a class="addthis_button_google_plusone" g:plusone:size="medium" ></a><a class="addthis_counter addthis_pill_style"></a></div><p><span style="color: #ff6600;"><strong><a href="http://soorajknair.com/wp-content/uploads/2011/06/courteous.ly_.jpg"><img class="alignright size-medium wp-image-446" title="courteous.ly" src="http://soorajknair.com/wp-content/uploads/2011/06/courteous.ly_-300x96.jpg" alt="courteous.ly  300x96 courteous.ly" width="300" height="96" /></a>What does courteous.ly do?</strong></span><br />
If you haven&#8217;t already, go check out the video on the home page. In short, courteous.ly is a service for showing people your current email load. After you give courteous.ly access to your Gmail account, it periodically checks your email load. You can tell courteous.ly what it should monitor to measure it: the unread messages in your inbox, the total number of messages in your inbox or how much mail you&#8217;ve sent recently. When somebody clicks your courteous.ly link, they&#8217;ll see that your current email load is either &#8220;light,&#8221; &#8220;normal&#8221; or &#8220;high.&#8221;<br />
<span style="color: #ff6600;"><strong>What do light, normal and high mean?</strong></span><br />
It&#8217;s relative to you. If you normally have 40,000 unread messages in your inbox, what&#8217;s 50 more? But if you usually have nothing in your inbox, then 50 unread messages is a big deal. courteous.ly keeps a log of how many messages it sees to get a feel for what&#8217;s normal for you. That&#8217;s why the service takes a few hours to warm up: it needs to understand your patterns.<br />
<span style="color: #ff6600;"><strong>Why only Google mail?</strong></span><br />
We would love to work with every email account in the world. But we don&#8217;t want to store passwords. That&#8217;s what it comes down to. Gmail has an infrastructure that allows courteous.ly to work without ever knowing or storing anybody&#8217;s password. Most other email services do not. If you&#8217;d like courteous.ly for your company&#8217;s mail, drop us a line.</p>
<p><span style="color: #000080;"><strong><a href="http://courteous.ly/">http://courteous.ly/</a></strong></span></p>
<div id="seo_alrp_related"><h2>consider reading...</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/creating-an-email-account/" rel="bookmark">Creating an Email Account</a></h3><p>What is an email address? , Email address is one person's representation in internet like your street address.Email address is always unique, Once you create ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/my-gmail-account-and-google-apps-got-hacked/" rel="bookmark">My Gmail Account and Google Apps Got Hacked</a></h3><p>My Gmail and Google Apps accounts were hacked recently but Google restored access in the next three hours. Here are lessons learned and tips that ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/google-docs-fax-service/" rel="bookmark">Google Docs Fax Service</a></h3><p>What is the significance of Fax in this modern generation? This is a natural question, But most of the business people are still using fax ...</p></div></li></ul></div><div class="addthis_toolbox addthis_default_style " addthis:url='http://soorajknair.com/445/' addthis:title='courteous.ly '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></content:encoded>
			<wfw:commentRss>http://soorajknair.com/445/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Wallet</title>
		<link>http://soorajknair.com/google-wallet/</link>
		<comments>http://soorajknair.com/google-wallet/#comments</comments>
		<pubDate>Wed, 01 Jun 2011 13:52:36 +0000</pubDate>
		<dc:creator>sooraj</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[New Release]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[Google Wallet]]></category>
		<category><![CDATA[NFC]]></category>

		<guid isPermaLink="false">http://soorajknair.com/?p=441</guid>
		<description><![CDATA[Google Wallet is an Android app that makes your phone your wallet. It stores virtual versions of your existing plastic cards on your phone. ]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style" addthis:url='http://soorajknair.com/google-wallet/' addthis:title='Google Wallet ' ><a class="addthis_button_google_plusone" g:plusone:size="medium" ></a><a class="addthis_counter addthis_pill_style"></a></div><p><a href="http://soorajknair.com/wp-content/uploads/2011/06/google-Wallet.png"><img class="alignleft size-medium wp-image-442" style="margin: 5px;" title="google Wallet" src="http://soorajknair.com/wp-content/uploads/2011/06/google-Wallet-284x300.png" alt="google Wallet 284x300 Google Wallet" width="284" height="300" /></a>Google Wallet is an Android app that makes your phone your wallet. It stores virtual versions of your existing plastic cards on your phone. Simply tap your phone to pay and redeem offers using near field communication, or NFC.</p>
<p>&nbsp;</p>
<h5>Payments, offers, loyalty, and so much more</h5>
<p>Google Wallet has been designed for an open commerce ecosystem. It will eventually hold many if not all of the cards you keep in your leather wallet today. And because Google Wallet is a mobile app, it will be able to do more than a regular wallet ever could, like storing thousands of payment cards and Google Offers but without the bulk. Eventually your loyalty cards, gift cards, receipts, boarding passes, tickets, even your keys will be seamlessly synced to your Google Wallet. And every offer and loyalty point will be redeemed automatically with a single tap via NFC.</p>
<p>More Details <strong><a href="http://www.google.com/wallet/">http://www.google.com/wallet/</a></strong></p>
<p>&nbsp;</p>
<div id="seo_alrp_related"><h2>consider reading...</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/mobile-payment-system/" rel="bookmark">Mobile Payment System</a></h3><p>online purchase,online payment,debit/credit card payment are very common in todays world. Online shopping is the process whereby consumers directly buy goods or services from a ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/what-is-google-plus/" rel="bookmark">What is Google Plus</a></h3><p>Today, the connections between people increasingly happen online. Yet the subtlety and substance of real-world interactions are lost in the rigidness of our online tools. ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/microsoft-skype/" rel="bookmark">Microsoft Skype</a></h3><p>Skype has its own position in the internet world.skype is more user friendly than Yahoo messenger and google's gtalk.Microsoft has bought Skype for $8.5 billion, ...</p></div></li></ul></div><div class="addthis_toolbox addthis_default_style " addthis:url='http://soorajknair.com/google-wallet/' addthis:title='Google Wallet '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></content:encoded>
			<wfw:commentRss>http://soorajknair.com/google-wallet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

