<?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; General</title>
	<atom:link href="http://soorajknair.com/category/general/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.2</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>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>Euclid&#8217;s Algorithm</title>
		<link>http://soorajknair.com/euclids-algorithm/</link>
		<comments>http://soorajknair.com/euclids-algorithm/#comments</comments>
		<pubDate>Sun, 02 Oct 2011 18:00:57 +0000</pubDate>
		<dc:creator>sooraj</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Euclid's algorithm]]></category>
		<category><![CDATA[gcd]]></category>
		<category><![CDATA[greatest common divisor of two positive integers]]></category>

		<guid isPermaLink="false">http://soorajknair.com/?p=535</guid>
		<description><![CDATA[One of the basic techniques of number theory is Euclid's algorithm, which is a simple procedure for determining the greatest common divisor of two positive integers.]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style" addthis:url='http://soorajknair.com/euclids-algorithm/' addthis:title='Euclid&#8217;s Algorithm ' ><a class="addthis_button_google_plusone" g:plusone:size="medium" ></a><a class="addthis_counter addthis_pill_style"></a></div><p>One of the basic techniques of number theory is Euclid&#8217;s algorithm, which is a simple procedure for determining the greatest common divisor of two positive integers.</p>
<p>Greatest Common Divisor</p>
<p>We will use the notation gcd(a,b) to mean the greatest common divisor of a and b.The positive integer c is said to be the greatest common divisor of a and b if</p>
<p>&nbsp;</p>
<p>1. c is divisor of a and of b;</p>
<p>2. any divisor of a nad b is a divisor of c.</p>
<p>an equivalent defenition is the following:</p>
<p>gcd(a,b) = max[k, such that k|a and k|b]</p>
<p>Because we require that the greatest common divisor be positive,</p>
<p>gcd(a,b)=gcd(a, -b)=gcd(-a,b)=gcd(-a,-b). In general,gcd(a,b)=gcd(|a|,|b|).</p>
<p>&nbsp;</p>
<p>Eg: gcd(60,24)=gcd(60,-24)=12</p>
<p>Also because all nonzero integers divide 0, we have gcd(a,0)=|a|.</p>
<p>We stated that two integers a and b are relatively prime if their only common positive integer factor is 1. This is equivalant to saying that a and b are relatively prime if gcd(a,b)=1.</p>
<div id="seo_alrp_related"><h2>consider reading...</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/cricket-world-cup-ipl/" rel="bookmark">Cricket World Cup &#038; IPL</a></h3><p>What is Cricket World Cup? The ICC Cricket World Cup is the premier international championship of men's One Day International (ODI) cricket. The event is ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/rajasthan/" rel="bookmark">Rajasthan</a></h3><p>Rajasthan is the largest state of India. Literally, Rajasthan means “The Land of Kings”. It is one of the most charming and captivating states of ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/411/" rel="bookmark">Software testing</a></h3><p>Software testing is an investigation conducted to provide stakeholders with information about the quality of the product or service under test. Software testing also provides ...</p></div></li></ul></div><div class="addthis_toolbox addthis_default_style " addthis:url='http://soorajknair.com/euclids-algorithm/' addthis:title='Euclid&#8217;s Algorithm '  ><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/euclids-algorithm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cricket World Cup &amp; IPL</title>
		<link>http://soorajknair.com/cricket-world-cup-ipl/</link>
		<comments>http://soorajknair.com/cricket-world-cup-ipl/#comments</comments>
		<pubDate>Sun, 03 Apr 2011 18:17:41 +0000</pubDate>
		<dc:creator>sooraj</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[championship]]></category>
		<category><![CDATA[ICC Cricket World Cup]]></category>
		<category><![CDATA[Indian Premier League]]></category>

		<guid isPermaLink="false">http://soorajknair.com/?p=406</guid>
		<description><![CDATA[The ICC Cricket World Cup is the premier international championship of men's One Day International (ODI) cricket. The event is organised by the sport's governing body, the International Cricket Council (ICC), with preliminary qualification rounds leading up to a finals tournament which is held every four years]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style" addthis:url='http://soorajknair.com/cricket-world-cup-ipl/' addthis:title='Cricket World Cup &amp; IPL ' ><a class="addthis_button_google_plusone" g:plusone:size="medium" ></a><a class="addthis_counter addthis_pill_style"></a></div><h3>What is Cricket World Cup?</h3>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/04/cricketWorldCup.jpg"><img class="alignleft size-medium wp-image-408" style="margin: 5px;" title="cricketWorldCup" src="http://soorajknair.com/wp-content/uploads/2011/04/cricketWorldCup-156x300.jpg" alt="cricketWorldCup 156x300 Cricket World Cup & IPL" width="156" height="300" /></a>The ICC Cricket World Cup is the premier international championship of men&#8217;s One Day International (ODI) cricket. The event is organised by the sport&#8217;s governing body, the International Cricket Council (ICC), with preliminary qualification rounds leading up to a finals tournament which is held every four years. The tournament is the world&#8217;s fourth-largest and fourth-most-viewed sporting event. According to the ICC, it is the most important tournament and the pinnacle of achievement in the sport. The first Cricket World Cup contest was organised in England in 1975. A separate Women&#8217;s Cricket World Cup has been held every four years since 1973.</p>
<p>The finals of the Cricket World Cup are contested by all ten Test-playing and ODI-playing nations, together with other nations that qualify through the World Cup Qualifier. Australia has been the most successful of the five teams to have won the tournament, taking four titles. The West Indies and India have won twice, while Pakistan and Sri Lanka have each won once.</p>
<p>The ICC Cricket World Cup Trophy is presented to the winners of the World Cup finals. The current trophy was created for the 1999 championships, and was the first permanent prize in the tournament&#8217;s history; prior to this, different trophies were made for each World Cup. The trophy was designed and produced in London by a team of craftsmen from Garrard &amp; Co over a period of two months.</p>
<p>The current trophy is made from silver and gild, and features a golden globe held up by three silver columns. The columns, shaped as stumps and bails, represent the three fundamental aspects of cricket: batting, bowling and fielding, while the globe characterises a cricket ball. It stands 60 cm high and weighs approximately 11 kilograms. The names of the previous winners are engraved on the base of the trophy, with space for a total of twenty inscriptions.</p>
<p>&nbsp;</p>
<h3>Indian Premier League</h3>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/04/IPL.jpg"><img class="alignright size-full wp-image-407" style="margin: 5px;" title="IPL" src="http://soorajknair.com/wp-content/uploads/2011/04/IPL.jpg" alt="IPL Cricket World Cup & IPL" width="300" height="250" /></a> The Indian Premier League (often abbreviated as IPL) is a professional league for Twenty20 cricket competition in India. It was initiated by the Board of Control for Cricket in India (BCCI) headquartered in Mumbai supervised by BCCI Vice President Chirayu Amin, current chairman &amp; commissioner of IPL, and CEO, Sundar Raman. It is currently contested by 10 teams consisting of players from around the world. It was started after an altercation between the BCCI and the Indian Cricket League.</p>
<p>The winning bidders for the eight franchises were announced on 24 January 2008. While the total base price for auction was US $400 million, the auction fetched US $723.59 million.</p>
<p>IPL drew positive reactions from the rest of the Asia also. In Pakistan, the reception was described as &#8220;massive&#8221;.The matches were telecast live in GEO Super. The matches also generated interest in Sri   Lanka and Bangladesh, despite only one Bangladeshi player being involved. The following in the subcontinental nations was aided by the prime time telecast of the matches as they belong to adjacent time zones.</p>
<p>The IPL became a big hit in South   Africa due to a large composition of South Asians in their population.Another reason for the success is that the second edition of IPL was hosted at South Africa drawing massive crowds from the country as well as the other countries in the subcontinent.</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/uninor-mobile-tariff-plans/" rel="bookmark">Uninor Mobile Tariff Plans</a></h3><p>After Tata DoCoMo, another international-desi mobile network Uninor is about to launch their services across 22 telecom circles in India. Uninor is the joint venture ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/tennis-ball-game/" rel="bookmark">Tennis Ball Game</a></h3><p>Tennis Balls: Divide the participants up into small groups of about eight to ten people and have them arrange themselves in a circle. Give a ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/mobile-number-portability/" rel="bookmark">Mobile Number Portability</a></h3><p>MNP(Mobile Number Portability) is implemented in different ways across the globe. The international and European standard is for a customer wishing to port his/her number ...</p></div></li></ul></div><div class="addthis_toolbox addthis_default_style " addthis:url='http://soorajknair.com/cricket-world-cup-ipl/' addthis:title='Cricket World Cup &amp; IPL '  ><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/cricket-world-cup-ipl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nuclear Reactor Japan</title>
		<link>http://soorajknair.com/nuclear-reactor-japan/</link>
		<comments>http://soorajknair.com/nuclear-reactor-japan/#comments</comments>
		<pubDate>Mon, 14 Mar 2011 08:49:56 +0000</pubDate>
		<dc:creator>sooraj</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[cancer treatment]]></category>
		<category><![CDATA[Fukushima]]></category>
		<category><![CDATA[Japan’s damaged nuclear reactors]]></category>
		<category><![CDATA[medical isotopes]]></category>
		<category><![CDATA[neuclear reactor]]></category>
		<category><![CDATA[nuclear chain reactions]]></category>
		<category><![CDATA[nuclear leakage]]></category>
		<category><![CDATA[plants in Fukushima]]></category>
		<category><![CDATA[tsunami]]></category>

		<guid isPermaLink="false">http://soorajknair.com/?p=399</guid>
		<description><![CDATA[A nuclear reactor is a system that contains and controls sustained nuclear chain reactions. Reactors are used for generating electricity, moving aircraft carriers and submarines, producing medical isotopes for imaging and cancer treatment, and for conducting research.]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style" addthis:url='http://soorajknair.com/nuclear-reactor-japan/' addthis:title='Nuclear Reactor Japan ' ><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/03/japan-nuclear-blast.jpg"><img class="alignleft size-medium wp-image-400" style="margin: 5px;" title="japan nuclear blast" src="http://soorajknair.com/wp-content/uploads/2011/03/japan-nuclear-blast-300x225.jpg" alt="japan nuclear blast 300x225 Nuclear Reactor Japan" width="300" height="225" /></a>The situation with Japan&#8217;s damaged nuclear reactors continues to deteriorate. One reactor already had an explosion which collapsed the roof and spewed radioactive steam into the air. Scientists and engineers are now working on pouring seawater into that reactor in an effort to cool off the fuel rods. Seawater will rust the metal in the containment room eventually and some experts are saying that means the reactor is being given up as a total loss.</p>
<p>Japan has declared states of emergency at two nuclear plants damaged by Friday&#8217;s massive earthquake along the country&#8217;s northeastern coast.</p>
<p>8.9 magnitude quake and subsequent tsunami knocked power out and caused cooling systems to fail at two plants in Fukushima. They warned of radiation leaks as steam was vented from reactors in an effort to relieve growing pressure.</p>
<h3>What is a Nuclear Reactor?</h3>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/03/nuclear-Power.jpg"><img class="alignright size-full wp-image-401" title="nuclear Power" src="http://soorajknair.com/wp-content/uploads/2011/03/nuclear-Power.jpg" alt="nuclear Power Nuclear Reactor Japan" width="281" height="224" /></a>A nuclear reactor is a device to initiate and control a sustained nuclear chain reaction. The most common use of nuclear reactors is for the generation of electrical power (see Nuclear power) and for the power in some ships (see Nuclear marine propulsion). Heat from nuclear fission is used to raise steam, which runs through turbines, which in turn powers either ship&#8217;s propulsion or electrical generators. There are also other less common uses as discussed below.</p>
<p>A nuclear reactor is a system that contains and controls sustained nuclear chain reactions. Reactors are used for generating electricity, moving aircraft carriers and submarines, producing medical isotopes for imaging and cancer treatment, and for conducting research.</p>
<p>Fuel, made up of heavy atoms that split when they absorb neutrons, is placed into the reactor vessel (basically a large tank) along with a small neutron source. The neutrons start a chain reaction where each atom that splits releases more neutrons that cause other atoms to split. Each time an atom splits, it releases large amounts of energy in the form of heat. The heat is carried out of the reactor by coolant, which is most commonly just plain water. The coolant heats up and goes off to a turbine to spin a generator or drive shaft. So basically, nuclear reactors are exotic heat sources.</p>
<h4>Types of nuclear reactors</h4>
<p>There are very many different types of nuclear reactors with different fuels, coolants, fuel cycles, purposes. Here’s an incomplete list of them.</p>
<ul>
<li><strong>Pressurized Water Reactor</strong></li>
<li><strong>Boiling Water Reactor</strong></li>
<li><strong>Sodium Cooled Fast Reactor</strong></li>
<li><strong>High Temperature Gas Cooled Reactor</strong></li>
<li><strong>Liquid Fluoride Thorium Reactor<br />
<span style="font-weight: normal;"><strong><a href="http://soorajknair.com/wp-content/uploads/2011/03/Nuclear-Reactor.gif"><img class="aligncenter size-medium wp-image-402" title="Nuclear Reactor" src="http://soorajknair.com/wp-content/uploads/2011/03/Nuclear-Reactor-300x155.gif" alt="Nuclear Reactor 300x155 Nuclear Reactor Japan" width="300" height="155" /></a> </strong></span></strong></li>
</ul>
<div id="seo_alrp_related"><h2>consider reading...</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/tsunami-harbor-wave/" rel="bookmark">tsunami &#8211; harbor wave</a></h3><p>A tsunami (Japanese:'harbor wave') is a series of water waves caused by the displacement of a large volume of a body of water, usually an ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/asias-25-beautiful-places/" rel="bookmark">Asia&#039;s 25 Beautiful Places</a></h3><p>Gujarat, India The nation’s largest producer of cotton and salt, Gujarat is the birthplace of Mahatma Gandhi. In 2005 and 2006 heavy monsoons caused severe ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/tata-venture/" rel="bookmark">Tata Venture</a></h3><p>Tata Venture is less than four metre long and can comfortably accommodate eight passengers in three front facing rows. It has ample luggage space. Second ...</p></div></li></ul></div><div class="addthis_toolbox addthis_default_style " addthis:url='http://soorajknair.com/nuclear-reactor-japan/' addthis:title='Nuclear Reactor Japan '  ><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/nuclear-reactor-japan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>tsunami &#8211; harbor wave</title>
		<link>http://soorajknair.com/tsunami-harbor-wave/</link>
		<comments>http://soorajknair.com/tsunami-harbor-wave/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 18:15:32 +0000</pubDate>
		<dc:creator>sooraj</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[cars in tsunami]]></category>
		<category><![CDATA[Japan]]></category>
		<category><![CDATA[suzuki]]></category>
		<category><![CDATA[swimming car]]></category>
		<category><![CDATA[toyoto]]></category>
		<category><![CDATA[tsunami accident]]></category>

		<guid isPermaLink="false">http://soorajknair.com/?p=393</guid>
		<description><![CDATA[A tsunami (Japanese:'harbor wave') is a series of water waves caused by the displacement of a large volume of a body of water, usually an ocean, but can occur in large lakes.
Thousands of cars and human beings wiped out in the waves]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style" addthis:url='http://soorajknair.com/tsunami-harbor-wave/' addthis:title='tsunami &#8211; harbor wave ' ><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/03/tsunami.jpg"><img class="alignleft size-medium wp-image-395" style="margin: 5px;" title="tsunami" src="http://soorajknair.com/wp-content/uploads/2011/03/tsunami-300x225.jpg" alt="tsunami 300x225  tsunami   harbor wave" width="300" height="225" /></a>A tsunami (Japanese:&#8217;harbor wave&#8217;) is a series of water waves caused by the displacement of a large volume of a body of water, usually an ocean, but can occur in large lakes. Tsunamis are a frequent occurrence in Japan; approximately 195 events have been recorded. Owing to the immense volumes of water and the high energy involved, tsunamis can devastate coastal regions.</p>
<p>&nbsp;</p>
<p>Earthquakes, volcanic eruptions and other underwater explosions (including detonations of underwater nuclear devices), landslides and other mass movements, meteorite ocean impacts or similar impact events, and other disturbances above or below water all have the potential to generate a tsunami.</p>
<p>&nbsp;</p>
<p>A tsunami is a series of ocean waves that sends surges of water, sometimes reaching heights of over 100 feet (30.5 meters), onto land. These walls of water can cause widespread destruction when they crash ashore.</p>
<p>&nbsp;</p>
<p>These awe-inspiring waves are typically caused by large, undersea earthquakes at tectonic plate boundaries. When the ocean floor at a plate boundary rises or falls suddenly it displaces the water above it and launches the rolling waves that will become a tsunami.</p>
<p>&nbsp;</p>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/03/tsunami-dust-wave.jpg"><img class="alignright size-medium wp-image-394" title="tsunami-dust-wave" src="http://soorajknair.com/wp-content/uploads/2011/03/tsunami-dust-wave-300x198.jpg" alt="tsunami dust wave 300x198  tsunami   harbor wave" width="300" height="198" /></a>Most tsunamis, about 80 percent, happen within the Pacific Ocean’s “Ring of Fire,” a geologically active area where tectonic shifts make volcanoes and earthquakes common.</p>
<p>&nbsp;</p>
<p>A tsunami starts when a huge volume of water is quickly shifted. This rapid movement can happen as the result of an underwater earthquake (when the sea floor quickly moves up or down), a rock slide, a volcanic eruption, or another high-energy event.</p>
<p>After the huge volume of water has moved, the resulting wave is very long (the distance from crest to crest can be hundred of miles long) but not very tall (roughly 3 feet tall). The wave propagates (spreads) across the sea in all directions; it can travel great distances from the source at tremendous speeds.</p>
<p>&nbsp;</p>
<h3><strong>The Speed of a Tsunami:</strong></h3>
<p>A tsunami can travel at well over 970 kph (600 mph) in the open ocean &#8211; as fast as a jet flies. It can take only a few hours for a tsunami to travel across an entire ocean. A regular wave (generated by the wind) travels at up to about 90 km/hr.</p>
<p>&nbsp;</p>
<p><iframe title="YouTube video player" src="http://www.youtube.com/embed/AlPqL7IUT6M" frameborder="0" width="480" height="390"></iframe></p>
<div id="seo_alrp_related"><h2>consider reading...</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/nuclear-reactor-japan/" rel="bookmark">Nuclear Reactor Japan</a></h3><p>The situation with Japan's damaged nuclear reactors continues to deteriorate. One reactor already had an explosion which collapsed the roof and spewed radioactive steam into ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/asias-25-beautiful-places/" rel="bookmark">Asia&#039;s 25 Beautiful Places</a></h3><p>Gujarat, India The nation’s largest producer of cotton and salt, Gujarat is the birthplace of Mahatma Gandhi. In 2005 and 2006 heavy monsoons caused severe ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/euclids-algorithm/" rel="bookmark">Euclid&#8217;s Algorithm</a></h3><p>One of the basic techniques of number theory is Euclid's algorithm, which is a simple procedure for determining the greatest common divisor of two positive ...</p></div></li></ul></div><div class="addthis_toolbox addthis_default_style " addthis:url='http://soorajknair.com/tsunami-harbor-wave/' addthis:title='tsunami &#8211; harbor wave '  ><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/tsunami-harbor-wave/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mobile Number Portability</title>
		<link>http://soorajknair.com/mobile-number-portability/</link>
		<comments>http://soorajknair.com/mobile-number-portability/#comments</comments>
		<pubDate>Wed, 19 Jan 2011 16:49:47 +0000</pubDate>
		<dc:creator>sooraj</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[New Release]]></category>
		<category><![CDATA[airtel]]></category>
		<category><![CDATA[bsnl]]></category>
		<category><![CDATA[docomo]]></category>
		<category><![CDATA[idea]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Mobile Number Portability]]></category>
		<category><![CDATA[portability]]></category>
		<category><![CDATA[uninor]]></category>
		<category><![CDATA[vodafone]]></category>

		<guid isPermaLink="false">http://soorajknair.com/?p=338</guid>
		<description><![CDATA[If you're tired of poor service from your current telecom service provider but have not switched to avoid changing your number, you don't have to worry anymore. You can now leave your old service provider for a new one and keep the old number.]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style" addthis:url='http://soorajknair.com/mobile-number-portability/' addthis:title='Mobile Number Portability ' ><a class="addthis_button_google_plusone" g:plusone:size="medium" ></a><a class="addthis_counter addthis_pill_style"></a></div><div id="_mcePaste"><a href="http://soorajknair.com/wp-content/uploads/2011/01/mobile-number-portability.jpg"><img class="alignleft size-full wp-image-341" title="mobile-number-portability" src="http://soorajknair.com/wp-content/uploads/2011/01/mobile-number-portability.jpg" alt="mobile number portability Mobile Number Portability" width="286" height="287" /></a>MNP(Mobile Number Portability) is implemented in different ways across the globe. The international and European standard is for a customer wishing to port his/her number to contact the new provider (Recipient) who will then arrange necessary process with the old provider (Donor).</div>
<div></div>
<div></div>
<div id="_mcePaste">This facility is launching in india also since 2011 January 20th onwards.</div>
<div id="_mcePaste">A significant technical aspect of MNP (Mobile Number Portability) is related to the routing of calls or mobile messages (SMS, MMS) to a number once it has been ported. There are various flavours of call routing implementation across the globe but the international and European best practice is via the use of a central database (CDB) of ported numbers. Network operator makes copies of CDB and queries it to find out which network to send a call to. This is also known as All Call Query (ACQ) and is highly efficient and scalable. Majority of the established and upcoming MNP systems across the world are based on this ACQ/CDB method of call routing. One of the very few countries to not use ACQ/CDB is the UK where calls to a number once it has been ported are still routed via the Donor network. This is also known as &#8216;Indirect Routing&#8217; and is highly inefficient as it is wasteful of transmission and switching capacity. Because of its Donor dependent nature, Indirect Routing also means that if the Donor network develops a fault or goes out of business, the customers who have ported out of that network will lose incoming calls to their numbers.</div>
<div></div>
<div></div>
<div id="_mcePaste">Service providers and carriers who route messages and voice calls to MNP-enabled countries might use HLR query services to find out the correct network of a mobile phone number. A number of such services exist, which query the operator&#8217;s home location register (HLR) over the SS7 signalling network in order to determine the current network of a specified mobile phone number prior to attempted routing of messaging or voice traffic.</div>
<div></div>
<div></div>
<div id="_mcePaste">MNP is being introduced pan-India on January 20 after the service was first introduced in Haryana last year.</div>
<div id="_mcePaste">If you&#8217;re tired of poor service from your current telecom service provider but have not switched to avoid changing your number, you don&#8217;t have to worry anymore. You can now leave your old service provider for a new one and keep the old number.</div>
<div></div>
<div></div>
<div id="_mcePaste"><a href="http://soorajknair.com/wp-content/uploads/2011/01/mobile-number-portability-1.jpg"><img class="alignright size-medium wp-image-340" title="mobile-number-portability (1)" src="http://soorajknair.com/wp-content/uploads/2011/01/mobile-number-portability-1-300x300.jpg" alt="mobile number portability 1 300x300 Mobile Number Portability" width="300" height="300" /></a>Dump your phone company. Move to a better one. But keep your present number. A total of 700 million Indians use cell phones. With mobile number portability kicking in on November 25, many customers, especially pre-paid ones, might abandon ship. Firms might offer better service but won&#8217;t drop prices any further.</div>
<div></div>
<div></div>
<div id="_mcePaste">Here&#8217;s how you can shift. Send an SMS from your phone to 1900. Your present company will reply with a unique porting code. Use that code while filling out a detailed form for the company you want to shift to. Within 48 hours, that company will take over all your cell services. The fee charge may cost you about Rs 19.</div>
<div></div>
<div></div>
<div id="_mcePaste">Your cell number will be switched off for only one hour. All bills after that are paid to your new company. You&#8217;ll be stuck with them for at least 50 days before you can shift again, so choose with care. While you can shift from a GSM service to CDMA or vice versa, you cannot shift from one state to another.</div>
<div></div>
<div></div>
<p><a href="http://soorajknair.com/wp-content/uploads/2011/01/india-mobile-number-portability-.jpg"><img class="aligncenter size-full wp-image-339" title="india-mobile-number-portability-" src="http://soorajknair.com/wp-content/uploads/2011/01/india-mobile-number-portability-.jpg" alt="india mobile number portability  Mobile Number Portability" width="259" height="150" /></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/trai%e2%80%99s-new-spam-call-and-sms-regulations/" rel="bookmark">TRAI’s New SPAM Call And SMS Regulations</a></h3><p>India’s Telecom regulator TRAI yesterday issued regulations covering the unsolicited (spam) calls and text messages communications to subscribers. This follows the failure of the Do ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/uninor-mobile-tariff-plans/" rel="bookmark">Uninor Mobile Tariff Plans</a></h3><p>After Tata DoCoMo, another international-desi mobile network Uninor is about to launch their services across 22 telecom circles in India. Uninor is the joint venture ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/445/" rel="bookmark">courteous.ly</a></h3><p>What does courteous.ly do? If you haven't already, go check out the video on the home page. In short, courteous.ly is a service for showing ...</p></div></li></ul></div><div class="addthis_toolbox addthis_default_style " addthis:url='http://soorajknair.com/mobile-number-portability/' addthis:title='Mobile Number Portability '  ><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-number-portability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hitsniffer blog status</title>
		<link>http://soorajknair.com/hitsniffer-blog-status/</link>
		<comments>http://soorajknair.com/hitsniffer-blog-status/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 17:55:35 +0000</pubDate>
		<dc:creator>Sooraj</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://soorajknair.com/?p=203</guid>
		<description><![CDATA[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 used, OS, Browser, Came from, Country, Timely Graph and much more... All in Live. just open live section and watch your visitors stream. It works on both Blogs and Websites.]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style" addthis:url='http://soorajknair.com/hitsniffer-blog-status/' addthis:title='Hitsniffer blog status ' ><a class="addthis_button_google_plusone" g:plusone:size="medium" ></a><a class="addthis_counter addthis_pill_style"></a></div><div id="_mcePaste"><a href="http://soorajknair.com/wp-content/uploads/2010/10/img_1.jpg"><img class="alignleft size-full wp-image-204" style="margin: 5px;" title="img_1" src="http://soorajknair.com/wp-content/uploads/2010/10/img_1.jpg" alt="img 1 Hitsniffer blog status" width="274" height="116" /></a>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 used, OS, Browser, Came from, Country, Timely Graph and much more&#8230; All in Live. just open live section and watch your visitors stream. It works on both Blogs and Websites.</div>
<div id="_mcePaste"></div>
<div>Installation :</div>
<div id="_mcePaste">
To use this plugin, you must have a hitsniffer.com account. Get your free account now!</div>
<div id="_mcePaste"></div>
<div>1. Upload hit-sniffer folder to the /wp-content/plugins/ directory</div>
<div id="_mcePaste">2. Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.</div>
<div id="_mcePaste">3. Open setting of your added site in hitsniffer.com and copy/get WordPress API Code.</div>
<div id="_mcePaste">4. Place API code in wordpress setting section.</div>
<div id="_mcePaste">5. Now, your site is being tracker. you can watch your stats info on hitsniffer.com dashboard.</div>
<div id="seo_alrp_related"><h2>consider reading...</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/looking-for-a-good-puzzle-game-for-windows-microsoft-tinker-is-here/" rel="bookmark">Looking for a Good Puzzle Game for Windows? Microsoft Tinker is here</a></h3><p>Looking for a good puzzle game for the whole family? Tinker is a simple yet challenging game where you have to help a robot find ...</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/inbox2/" rel="bookmark">Inbox2</a></h3><p>Inbox 2 collects all your emails and social networking updates to one single place and this activity stream can be stored by contacts which is ...</p></div></li></ul></div><div class="addthis_toolbox addthis_default_style " addthis:url='http://soorajknair.com/hitsniffer-blog-status/' addthis:title='Hitsniffer blog status '  ><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/hitsniffer-blog-status/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google, Skype may also face ban in India</title>
		<link>http://soorajknair.com/google-skype-may-also-face-ban-in-india/</link>
		<comments>http://soorajknair.com/google-skype-may-also-face-ban-in-india/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 07:26:04 +0000</pubDate>
		<dc:creator>Sooraj</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://soorajknair.com/?p=184</guid>
		<description><![CDATA[India's showdown with BlackBerry could reportedly widen to encompass Google and Skype after the government threatened to cut off core features of the popular smartphone on security grounds.

Research In Motion, the BlackBerry's Canadian maker, gave no immediate indication that it would accede to the latest pressure from an emerging economy to open up its services to security agencies.]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style" addthis:url='http://soorajknair.com/google-skype-may-also-face-ban-in-india/' addthis:title='Google, Skype may also face ban in India ' ><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/2010/09/GoogleCL.jpg"><img class="alignleft size-medium wp-image-185" title="GoogleCL" src="http://soorajknair.com/wp-content/uploads/2010/09/GoogleCL-300x211.jpg" alt="GoogleCL 300x211 Google, Skype may also face ban in India" width="300" height="211" /></a> India&#8217;s showdown with BlackBerry could reportedly widen to encompass Google and Skype after the government threatened to cut off core features of the popular smartphone on security grounds.</p>
<p>Research In Motion, the BlackBerry&#8217;s Canadian maker, gave no immediate indication that it would accede to the latest pressure from an emerging economy to open up its services to security agencies.</p>
<p>&#8220;If a technical solution is not provided by August 31, 2010, the government will review the position and take steps to block&#8221; BlackBerry email and messenger services, India&#8217;s home ministry said.</p>
<p>New Delhi, battling insurgencies ranging from Kashmir in the northwest to the far-flung northeast, fears that heavily encrypted BlackBerry communications could be used by militants.</p>
<p>Islamic extremists used mobile and satellite phones to coordinate the 2008 Mumbai attacks that killed 166 people. The Indian announcement came after Saudi Arabia on Tuesday postponed imposing a BlackBerry ban as the ultra-conservative Muslim country reported progress in solving its own security concerns.</p>
<div id="_mcePaste">The United Arab Emirates, however, has said it will ban BlackBerry messenger, email and web browsing services from October 11 for security reasons. That has prompted expressions of concern from the US government.</div>
<p>The United Arab Emirates, however, has said it will ban BlackBerry messenger, email and web browsing services from October 11 for security reasons. That has prompted expressions of concern from the US government.</p>
<p>In response to the Indian threat, RIM said it tried to be as cooperative as possible with governments &#8220;in the spirit of supporting legal and national security requirements.&#8221; <a href="http://soorajknair.com/wp-content/uploads/2010/09/skype.jpg"><img class="alignright size-medium wp-image-186" title="skype" src="http://soorajknair.com/wp-content/uploads/2010/09/skype-300x300.jpg" alt="skype 300x300 Google, Skype may also face ban in India" width="300" height="300" /></a></p>
<p>But it also wanted to preserve &#8220;the lawful needs of citizens and corporations&#8221;, according to a RIM statement. Analysts have noted that other security-conscious countries such as China and Russia appear to be satisfied over their intelligence agencies&#8217; level of access to BlackBerry communications.</p>
<p>But the company insisted, &#8220;RIM maintains a consistent global standard for lawful access requirements that does not include special deals for specific countries.&#8221;</p>
<p>The Indian warning came after a high-level meeting on Thursday between the home ministry and intelligence agencies, and the end-August deadline was relayed to Indian telecoms firms that offer BlackBerry services.</p>
<p>India&#8217;s security concerns are not confined to RIM with other communications providers such as Google and the Internet telephony firm Skype also in its sights, according to Friday&#8217;s Financial Times.</p>
<p>Quoting minutes from a July 12 meeting between Indian officials and telecoms and Internet providers, the FT said the government wanted a broad solution to enable possible interception and monitoring of all Internet-based traffic.</p>
<p>&#8220;There was consensus that there (is) more than one type of service for which solutions are to be explored,&#8221; the minutes by the telecommunications ministry&#8217;s security wing said, according to the FT.</p>
<p>&#8220;Some of them are BlackBerry, Skype, Google etc,&#8221; the minutes said. &#8220;It was decided first to undertake the issue of BlackBerry and then the other services.&#8221;</p>
<p>Internet giant Google is already locked in tension with Beijing over state censorship and cyberattacks that the US company says originated in China, the world&#8217;s largest online market with 420 million users</p>
<p>India is another coveted prize for communications providers. It is the world&#8217;s fastest-expanding cellular market and already has a million BlackBerry customers.</p>
<p>If the ban is imposed, BlackBerry corporate or &#8220;enterprise&#8221; customers in India would only be able to use their handsets for phone calls and web browsing.</p>
<p><strong>News courtesy : </strong><a href="http://timesofindia.indiatimes.com/tech/news/internet/Google-Skype-may-also-face-ban-in-India/articleshow/6303560.cms">http://timesofindia.indiatimes.com/tech/news/internet/Google-Skype-may-also-face-ban-in-India/articleshow/6303560.cms</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/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><li><div class="seo_alrp_rl_content"><h3><a href="http://soorajknair.com/digigo-%e2%80%94-the-digital-revolution%e2%84%a2-%e2%80%94-uninors-mobile-motivations-in-india/" rel="bookmark">digiGO! — The Digital (R)Evolution™ — Uninor&#039;s Mobile Motivations In India</a></h3><p>Telenor Group's Indian mobile operation, Uninor, has launched its mobile services in seven Indian telecom circles, making it the largest single day launch in the ...</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></ul></div><div class="addthis_toolbox addthis_default_style " addthis:url='http://soorajknair.com/google-skype-may-also-face-ban-in-india/' addthis:title='Google, Skype may also face ban in India '  ><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-skype-may-also-face-ban-in-india/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>For $75,000, buy Sachin&#039;s blood in a book</title>
		<link>http://soorajknair.com/for-75000-buy-sachins-blood-in-a-book/</link>
		<comments>http://soorajknair.com/for-75000-buy-sachins-blood-in-a-book/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 05:11:47 +0000</pubDate>
		<dc:creator>Sooraj</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://soorajknair.com/?p=178</guid>
		<description><![CDATA[How much would you pay to own a piece of Sachin Tendulkar, literally? At least 10 people are willing to fork out $75,000 (approx Rs 35.2 lakh) for a very limited edition of his book, the Tendulkar Opus, which will feature a page made from paper pulp that includes the master batsman's blood.]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style" addthis:url='http://soorajknair.com/for-75000-buy-sachins-blood-in-a-book/' addthis:title='For $75,000, buy Sachin&#039;s blood in a book ' ><a class="addthis_button_google_plusone" g:plusone:size="medium" ></a><a class="addthis_counter addthis_pill_style"></a></div><div id="_mcePaste"><a href="http://soorajknair.com/wp-content/uploads/2010/07/Sachin-Tendulkar_3.jpg"><img class="alignleft size-full wp-image-179" style="margin: 5px;" title="Sachin-Tendulkar" src="http://soorajknair.com/wp-content/uploads/2010/07/Sachin-Tendulkar_3.jpg" alt="Sachin Tendulkar 3 For $75,000, buy Sachin&#039;s blood in a book" width="235" height="329" /></a>How much would you pay to own a piece of Sachin Tendulkar, literally? At least 10 people are willing to fork out $75,000 (approx Rs 35.2 lakh) for a very limited edition of his book, the Tendulkar Opus, which will feature a page made from paper pulp that includes the master batsman&#8217;s blood.</div>
<div></div>
<div></div>
<div id="_mcePaste">&#8220;The signature page will be mixed with Sachin&#8217;s blood — mixed into the paper pulp, so it&#8217;s a red resin. It is what it is — you will have Sachin&#8217;s blood on the page,&#8221; publisher Kraken Media&#8217;s chief executive Karl Fowler is quoted as saying by the Guardian newspaper.</div>
<div></div>
<div></div>
<div id="_mcePaste">&#8220;It&#8217;s not everyone&#8217;s cup of tea. But the key thing here is that Sachin Tendulkar, to millions of people, is a religious icon. And we thought how, in a publishing form, can you get as close to your god as possible?&#8221;</div>
<div></div>
<div></div>
<div id="_mcePaste">Fowler also confirmed 10 such special copies had already been pre-ordered and all proceeds from the sale of these books would go towards Tendulkar&#8217;s charitable foundation to help build a school in Mumbai.</div>
<div></div>
<div></div>
<div id="_mcePaste">The book, due to be published in February to coincide with the World Cup in India, will contain previously unpublished family photographs from Tendulkar, weighs 37 kgs, comprises 852 pages and is edged in gold leaf.</div>
<div id="_mcePaste">To accommodate the tastes of those who aren&#8217;t excited at the prospect of blood, even if it is Sachin&#8217;s, and whose wallets don&#8217;t fancy the hefty price tag, a &#8220;regular&#8221; edition is available at $2000-3000 (Rs 94,000-1,41,000).</div>
<div id="_mcePaste">The publisher will print 1,000 such copies, and all will be signed by Tendulkar and include a DNA map, but no actual blood.</div>
<div></div>
<p>How much would you pay to own a piece of Sachin Tendulkar, literally? At least 10 people are willing to fork out $75,000 (approx Rs 35.2 lakh) for a very limited edition of his book, the Tendulkar Opus, which will feature a page made from paper pulp that includes the master batsman&#8217;s blood.&#8221;The signature page will be mixed with Sachin&#8217;s blood — mixed into the paper pulp, so it&#8217;s a red resin. It is what it is — you will have Sachin&#8217;s blood on the page,&#8221; publisher Kraken Media&#8217;s chief executive Karl Fowler is quoted as saying by the Guardian newspaper.<br />
&#8220;It&#8217;s not everyone&#8217;s cup of tea. But the key thing here is that Sachin Tendulkar, to millions of people, is a religious icon. And we thought how, in a publishing form, can you get as close to your god as possible?&#8221;<br />
Fowler also confirmed 10 such special copies had already been pre-ordered and all proceeds from the sale of these books would go towards Tendulkar&#8217;s charitable foundation to help build a school in Mumbai.<br />
The book, due to be published in February to coincide with the World Cup in India, will contain previously unpublished family photographs from Tendulkar, weighs 37 kgs, comprises 852 pages and is edged in gold leaf.<br />
To accommodate the tastes of those who aren&#8217;t excited at the prospect of blood, even if it is Sachin&#8217;s, and whose wallets don&#8217;t fancy the hefty price tag, a &#8220;regular&#8221; edition is available at $2000-3000 (Rs 94,000-1,41,000).<br />
The publisher will print 1,000 such copies, and all will be signed by Tendulkar and include a DNA map, but no actual blood.</p>
<p>News <span style="font-family: Georgia;">Courtesy: Hidustantimes</span></p>
<p><span style="font-family: Georgia;"> </span><a href="http://www.hindustantimes.com/For-75-000-buy-Sachin-s-blood-in-a-book/H1-Article1-574926.aspx">http://www.hindustantimes.com/For-75-000-buy-Sachin-s-blood-in-a-book/H1-Article1-574926.aspx</a></p>
<p class="MsoNormal"><span> </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-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/bo-lt-for-web-sharing/" rel="bookmark">BO.LT for web sharing</a></h3><p>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 ...</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/for-75000-buy-sachins-blood-in-a-book/' addthis:title='For $75,000, buy Sachin&#039;s blood in a book '  ><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/for-75000-buy-sachins-blood-in-a-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

