<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;CkUARnY7cCp7ImA9WhRUE08.&quot;"><id>tag:blogger.com,1999:blog-22481530</id><updated>2012-01-23T17:34:07.808+05:30</updated><category term="Viswanathan Anand" /><category term="India" /><category term="World chess championship" /><title>Nitin Kumar Singh - Blog</title><subtitle type="html" /><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://nitinsview.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://nitinsview.blogspot.com/" /><author><name>Nitin</name><uri>http://www.blogger.com/profile/12030589245714009598</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="21" src="http://lh6.google.com/singnitin/RyrXEAA7tpI/AAAAAAAAACY/xxvYCRPYXMQ/164970544_c0dbb0bdc3.jpg" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>9</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/blogspot/CVqGo" /><feedburner:info uri="blogspot/cvqgo" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;Ak8BQX0zfip7ImA9WxFUGEs.&quot;"><id>tag:blogger.com,1999:blog-22481530.post-9072191652983851025</id><published>2010-06-30T09:01:00.001+05:30</published><updated>2010-06-30T09:04:10.386+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-06-30T09:04:10.386+05:30</app:edited><title>Web Application Performance</title><content type="html">&lt;b&gt;Following methods to improve web application performance&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Using HTTP features 304 not modified, expires header, keep-alive, gzip&lt;/li&gt;
&lt;li&gt;Reducing HTTP requests&lt;/li&gt;
&lt;li&gt;Caching images in browser&lt;/li&gt;
&lt;li&gt;Gzip Compression&lt;/li&gt;
&lt;li&gt;Proper CSS Placements&lt;/li&gt;
&lt;li&gt;Proper JavaScript placement&lt;/li&gt;
&lt;li&gt;Minimizing CSS and JavaScript code&lt;/li&gt;
&lt;li&gt;Serving images from cookie less domain&lt;/li&gt;
&lt;li&gt;Avoiding HTTP redirection&lt;/li&gt;
&lt;li&gt;Optimizing Ajax&lt;/li&gt;
&lt;li&gt;Use PHP accelerators&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;b&gt;JavaScript Placement:&lt;/b&gt; JavaScript files have become important part of most of the web. Browsers allow parallel connections to a single hostname. This allows files to download faster in parallel and very helpful for web application performance. When JavaScript file is called browsers halts the parallel connections to all hosts. This is because JavaScript can alter the document dom with document.write(). &lt;span style="font-size: x-small;"&gt;&lt;a href="http://www.infotales.com/web-application-performance-javascript-placement/"&gt;more&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
This can badly hurt the front end performance of a web application. To avoid this all calls to JavaScript files should be moved to bottom of the page, just before end to BODY tag.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;CSS Placement:&lt;/b&gt; A CSS file or style should be placed in HEAD element of the page. It is important because browsers render page progressively if CSS is placed in HEAD. Putting CSS at bottom can block progressive rendering in most of the browsers. &lt;span style="font-size: x-small;"&gt;&lt;a href="http://www.infotales.com/web-application-performance-css-placement/"&gt;more&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Reducing HTTP Requests:&lt;/b&gt; A web page have multiple objects like images, css, JavaScript and flash etc. Browser have to send one http request to the server for each object. Each request adds a round trip to the server. Server have to receive and process each request and send the response.&lt;br /&gt;
&lt;br /&gt;
For enhancing web application performance the rule is simple, reduce http requests.&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Combining Images&lt;/li&gt;
&lt;li&gt;&lt;a href="http://rakaz.nl/2006/12/make-your-pages-load-faster-by-combining-and-compressing-javascript-and-css-files.html"&gt;Combining CSS files&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://rakaz.nl/2006/12/make-your-pages-load-faster-by-combining-and-compressing-javascript-and-css-files.html"&gt;Combining JS files&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Using browser cache for performance&lt;/li&gt;
&lt;/ol&gt;Above are the&amp;nbsp; techniques to reduce the http request&lt;span style="font-size: x-small;"&gt; &lt;/span&gt;&lt;span style="font-size: x-small;"&gt;&lt;a href="http://www.infotales.com/web-application-performance-reducing-http-requests/"&gt;more&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: x-small;"&gt;&lt;a href="http://www.infotales.com/topic/web-performance-optimization/"&gt;Read complete article&lt;/a&gt; &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/22481530-9072191652983851025?l=nitinsview.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/V-By1Fu53GXY_HyXOFIKMlcCz3g/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/V-By1Fu53GXY_HyXOFIKMlcCz3g/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/V-By1Fu53GXY_HyXOFIKMlcCz3g/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/V-By1Fu53GXY_HyXOFIKMlcCz3g/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/CVqGo/~4/1d4ExckW41A" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nitinsview.blogspot.com/feeds/9072191652983851025/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=22481530&amp;postID=9072191652983851025" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/22481530/posts/default/9072191652983851025?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/22481530/posts/default/9072191652983851025?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/CVqGo/~3/1d4ExckW41A/web-application-performance.html" title="Web Application Performance" /><author><name>Nitin</name><uri>http://www.blogger.com/profile/12030589245714009598</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="21" src="http://lh6.google.com/singnitin/RyrXEAA7tpI/AAAAAAAAACY/xxvYCRPYXMQ/164970544_c0dbb0bdc3.jpg" /></author><thr:total>3</thr:total><feedburner:origLink>http://nitinsview.blogspot.com/2010/06/web-application-performance.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0UHQHk8fSp7ImA9WxFVF0k.&quot;"><id>tag:blogger.com,1999:blog-22481530.post-135597572216640191</id><published>2010-06-17T10:00:00.001+05:30</published><updated>2010-06-17T10:03:51.775+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-06-17T10:03:51.775+05:30</app:edited><title>Non-Relational Database Systems</title><content type="html">The world of Web is shifting from relational to non-relational data stores. There are many non-relational data stores -&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://wiki.apache.org/cassandra/"&gt;Cassandra&lt;/a&gt; - Cassandra is a highly scalable, eventually consistent, distributed, structured key-value store. &lt;a href="http://wiki.apache.org/cassandra/"&gt;&lt;span style="font-size: x-small;"&gt;Read more&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.mongodb.org/"&gt;MongoDB &lt;/a&gt;- MongoDB isn't a key/value store, it's a document store. &lt;a href="http://www.php.net/mongo"&gt;PHP module&lt;/a&gt; is available. &lt;a href="http://www.mongodb.org/"&gt;&lt;span style="font-size: x-small;"&gt;Read more&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://couchdb.apache.org/"&gt;Apache CouchDB&lt;/a&gt; - Apache CouchDB is a document-oriented database that can be queried and indexed in a MapReduce fashion using JavaScript. CouchDB also offers incremental replication with bi-directional conflict detection and resolution. &lt;a href="http://couchdb.apache.org/"&gt;&lt;span style="font-size: x-small;"&gt;Read more&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://memcachedb.org/"&gt;MemcacheDB&lt;/a&gt; - combines the proven BerkeleyDB storage system with a network server that speaks the memcached network protocol so you can create memcahed-like nodes that hold more data than would fit in a traditional RAM-based memcached nodes and be assured that the data is not lost after a reboot. In some respects this is similar to the Tokyo Cabinet and Tokyo Tyrant combination. &lt;a href="http://memcachedb.org/"&gt;&lt;span style="font-size: x-small;"&gt;Read more&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://code.google.com/p/redis/"&gt;Redis&lt;/a&gt; - it's a lightweight in-memory key/value store that handles strings, sets, and lists and has an excellent core of features for manipulating those stored data types. Redis also has built-in replication support and the ability to periodically persist the data on disk so that can survive a reboot without major data loss. &lt;a href="http://code.google.com/p/redis/"&gt;&lt;span style="font-size: x-small;"&gt;Read more&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://riak.basho.com/"&gt;Riak&lt;/a&gt; - An Open Source Internet-Scale Data Store. Riak is a Dynamo-inspired key/value store that scales predictably and easily. Riak also simplifies development by giving developers the ability to quickly prototype, test, and deploy their applications. &lt;a href="http://riak.basho.com/"&gt;&lt;span style="font-size: x-small;"&gt;Read more&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://1978th.net/tokyocabinet/"&gt;Tokyo Cabinet&lt;/a&gt; - Tokyo Cabinet is a library of routines for managing a database. The database is a simple data file containing records, each is a pair of a key and a value. Every key and value is serial bytes with variable length. Both binary data and character string can be used as a key and a value. There is neither concept of data tables nor data types. Records are organized in hash table, B+ tree, or fixed-length array. &lt;a href="http://1978th.net/tokyocabinet/"&gt;&lt;span style="font-size: x-small;"&gt;Read more&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.hypertable.org/"&gt;Hypertable&lt;/a&gt; - Hypertable is a high performance distributed data storage system designed to support applications requiring maximum performance, scalability, and reliability. &lt;a href="http://www.hypertable.org/"&gt;&lt;span style="font-size: x-small;"&gt;Read more&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://project-voldemort.com/"&gt;Project Voldemort&lt;/a&gt; -  is a fairly mature system that’s in heavy use at LinkedIn and comes with automatic replication and partitioning. &lt;a href="http://project-voldemort.com/"&gt;&lt;span style="font-size: x-small;"&gt;Read more&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://aws.amazon.com/simpledb/"&gt;Amazon SimpleDB&lt;/a&gt; - Amazon SimpleDB is a highly available, scalable, and flexible non-relational data store that offloads the work of database administration. Developers simply store and query data items via web services requests, and Amazon SimpleDB does the rest. &lt;a href="http://aws.amazon.com/simpledb/"&gt;&lt;span style="font-size: x-small;"&gt;Read more&lt;/span&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/22481530-135597572216640191?l=nitinsview.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/cXvl33aEUH_1aGOjqxjeAkL2Xus/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/cXvl33aEUH_1aGOjqxjeAkL2Xus/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/cXvl33aEUH_1aGOjqxjeAkL2Xus/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/cXvl33aEUH_1aGOjqxjeAkL2Xus/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/CVqGo/~4/B4ao-qXReIU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nitinsview.blogspot.com/feeds/135597572216640191/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=22481530&amp;postID=135597572216640191" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/22481530/posts/default/135597572216640191?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/22481530/posts/default/135597572216640191?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/CVqGo/~3/B4ao-qXReIU/non-relational-database-systems.html" title="Non-Relational Database Systems" /><author><name>Nitin</name><uri>http://www.blogger.com/profile/12030589245714009598</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="21" src="http://lh6.google.com/singnitin/RyrXEAA7tpI/AAAAAAAAACY/xxvYCRPYXMQ/164970544_c0dbb0bdc3.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://nitinsview.blogspot.com/2010/06/non-relational-database-systems.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUYEQ3w8eip7ImA9WxFQFk4.&quot;"><id>tag:blogger.com,1999:blog-22481530.post-2739236265908780809</id><published>2010-05-12T09:35:00.000+05:30</published><updated>2010-05-12T09:35:02.272+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-05-12T09:35:02.272+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="World chess championship" /><category scheme="http://www.blogger.com/atom/ns#" term="Viswanathan Anand" /><category scheme="http://www.blogger.com/atom/ns#" term="India" /><title>Anand retains World Chess Championship title</title><content type="html">&lt;strong&gt;Congratulate Viswanathan Anand!&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_4QSuabuTRgw/S-oopvPKmxI/AAAAAAAAAHY/qxKMcGFVoR8/s1600/viswanathan-anand.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="176" src="http://1.bp.blogspot.com/_4QSuabuTRgw/S-oopvPKmxI/AAAAAAAAAHY/qxKMcGFVoR8/s200/viswanathan-anand.jpg" width="200" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
World champion &lt;strong&gt;Viswanathan Anand&lt;/strong&gt; retained his World Chess Championship title after winning the final game against &lt;strong&gt;Veselin Topalov&lt;/strong&gt; of Russia in Sofia, Bulgaria, on Tuesday. This is the fourth world title in his 11 years careers.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/22481530-2739236265908780809?l=nitinsview.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/YjfomLm-q94NTkT5Lh3zieRlQ_8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YjfomLm-q94NTkT5Lh3zieRlQ_8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/YjfomLm-q94NTkT5Lh3zieRlQ_8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YjfomLm-q94NTkT5Lh3zieRlQ_8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/CVqGo/~4/AzaTQD-Mcoo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nitinsview.blogspot.com/feeds/2739236265908780809/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=22481530&amp;postID=2739236265908780809" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/22481530/posts/default/2739236265908780809?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/22481530/posts/default/2739236265908780809?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/CVqGo/~3/AzaTQD-Mcoo/anand-retains-world-chess-championship.html" title="Anand retains World Chess Championship title" /><author><name>Nitin</name><uri>http://www.blogger.com/profile/12030589245714009598</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="21" src="http://lh6.google.com/singnitin/RyrXEAA7tpI/AAAAAAAAACY/xxvYCRPYXMQ/164970544_c0dbb0bdc3.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_4QSuabuTRgw/S-oopvPKmxI/AAAAAAAAAHY/qxKMcGFVoR8/s72-c/viswanathan-anand.jpg" height="72" width="72" /><thr:total>1</thr:total><feedburner:origLink>http://nitinsview.blogspot.com/2010/05/anand-retains-world-chess-championship.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUUHQX49fip7ImA9WxFQFk4.&quot;"><id>tag:blogger.com,1999:blog-22481530.post-7387292474645893887</id><published>2010-05-12T09:28:00.002+05:30</published><updated>2010-05-12T09:37:10.066+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-05-12T09:37:10.066+05:30</app:edited><title>Sultan Azlan Shah Hockey Tournament - India is on top position</title><content type="html">&lt;a href="http://1.bp.blogspot.com/_4QSuabuTRgw/S-opSz0JupI/AAAAAAAAAHg/bJKy50ybsJA/s1600/indian_hockey_11.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="143" src="http://1.bp.blogspot.com/_4QSuabuTRgw/S-opSz0JupI/AAAAAAAAAHg/bJKy50ybsJA/s200/indian_hockey_11.jpg" width="200" /&gt;&lt;/a&gt;Indian Hockey Team has done a great job, India is flying high. Topping the table with 10 points. The winning sequence - A draw followed by a three-in-a-row victory sequence against Pakistan, Korea and World champion Australia. The team needs at least one victory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-weight: bold;"&gt;Today matches -&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Australia v Pakistan (1-35 p.m.)&lt;/li&gt;
&lt;li&gt;China v Egypt (3-35 p.m.)&lt;/li&gt;
&lt;li style="font-weight: bold;"&gt;India v Malaysia (5-35 p.m.)&lt;/li&gt;
&lt;/ol&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-weight: bold;"&gt;The following is the position of teams:&lt;/span&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li style="color: #ff6666; font-weight: bold;"&gt;India, Played 4, Won 3, Drawn 1, Lost nil, Goals scored 12, Goals conceded 8, Points 10&lt;/li&gt;
&lt;li&gt;Korea 4-2-1-1-14-7-7&lt;/li&gt;
&lt;li&gt;Australia 3-2-0-1-9-5-6&lt;/li&gt;
&lt;li&gt;Malaysia 4-1-2-1-10-6-5&lt;/li&gt;
&lt;li&gt;Pakistan 3-1-1-1-11-9-4&lt;/li&gt;
&lt;li&gt;China 3-0-1-2-6-12-1&lt;/li&gt;
&lt;li&gt;Egypt 3-0-0-3-0-15-0&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
Hope we will continue the winning sequence!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/22481530-7387292474645893887?l=nitinsview.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/IcBU_Zfhq-dRtNHmHUfFyocid4g/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/IcBU_Zfhq-dRtNHmHUfFyocid4g/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/IcBU_Zfhq-dRtNHmHUfFyocid4g/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/IcBU_Zfhq-dRtNHmHUfFyocid4g/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/CVqGo/~4/NkQWRMM0jG8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nitinsview.blogspot.com/feeds/7387292474645893887/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=22481530&amp;postID=7387292474645893887" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/22481530/posts/default/7387292474645893887?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/22481530/posts/default/7387292474645893887?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/CVqGo/~3/NkQWRMM0jG8/sultan-azlan-shah-hockey-tournament.html" title="Sultan Azlan Shah Hockey Tournament - India is on top position" /><author><name>Nitin</name><uri>http://www.blogger.com/profile/12030589245714009598</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="21" src="http://lh6.google.com/singnitin/RyrXEAA7tpI/AAAAAAAAACY/xxvYCRPYXMQ/164970544_c0dbb0bdc3.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_4QSuabuTRgw/S-opSz0JupI/AAAAAAAAAHg/bJKy50ybsJA/s72-c/indian_hockey_11.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://nitinsview.blogspot.com/2010/05/sultan-azlan-shah-hockey-tournament.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU8NR3s-eip7ImA9WxRaEUo.&quot;"><id>tag:blogger.com,1999:blog-22481530.post-7383378039900166736</id><published>2008-04-08T12:55:00.002+05:30</published><updated>2008-12-13T18:41:36.552+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-12-13T18:41:36.552+05:30</app:edited><title>Times Internet launch a SN</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_4QSuabuTRgw/SAWfcfl5pWI/AAAAAAAAAFw/UABOa4Y3x8w/s1600-h/homeitimes.png"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://2.bp.blogspot.com/_4QSuabuTRgw/SAWfcfl5pWI/AAAAAAAAAFw/UABOa4Y3x8w/s320/homeitimes.png" alt="" id="BLOGGER_PHOTO_ID_5189729457479984482" border="0" /&gt;&lt;/a&gt;Times Internet Ltd. launch a SN called &lt;a href="http://www.itimes.com/"&gt;itimes&lt;/a&gt;. I am one of the developer of the site, we have recieved lot of good feedback on it. This SN have many functionality like -  User can create his/her own blog, gallery (Photo, Video), join community. It is also have mail feature, you do not need another account for it. Every module have seeting feature you can manage your content using this. This is alos integrated with Picasa, Flikr, Youtube. User can create his/her own application using this plateform.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/22481530-7383378039900166736?l=nitinsview.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/SQEx9iAbrEUthuoBSsGnMYZzoXY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/SQEx9iAbrEUthuoBSsGnMYZzoXY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/SQEx9iAbrEUthuoBSsGnMYZzoXY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/SQEx9iAbrEUthuoBSsGnMYZzoXY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/CVqGo/~4/87UneJUk_3Q" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nitinsview.blogspot.com/feeds/7383378039900166736/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=22481530&amp;postID=7383378039900166736" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/22481530/posts/default/7383378039900166736?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/22481530/posts/default/7383378039900166736?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/CVqGo/~3/87UneJUk_3Q/times-internet-launch-sn.html" title="Times Internet launch a SN" /><author><name>Nitin</name><uri>http://www.blogger.com/profile/12030589245714009598</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="21" src="http://lh6.google.com/singnitin/RyrXEAA7tpI/AAAAAAAAACY/xxvYCRPYXMQ/164970544_c0dbb0bdc3.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_4QSuabuTRgw/SAWfcfl5pWI/AAAAAAAAAFw/UABOa4Y3x8w/s72-c/homeitimes.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://nitinsview.blogspot.com/2008/04/times-internet-launch-sn.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU8NRnk6fCp7ImA9WxRaEUo.&quot;"><id>tag:blogger.com,1999:blog-22481530.post-1738764042156824603</id><published>2007-10-15T17:01:00.000+05:30</published><updated>2008-12-13T18:41:37.714+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-12-13T18:41:37.714+05:30</app:edited><title>ICC launch a new website</title><content type="html">ICC launch a new &lt;a href="http://www.lgiccrankings.com/"&gt;website&lt;/a&gt; for official ranking of the player. You can also compare two players.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_4QSuabuTRgw/RxNRF8OJ1xI/AAAAAAAAABs/wf9OJfiglYs/s1600-h/sachin"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: left; cursor: pointer;" src="http://2.bp.blogspot.com/_4QSuabuTRgw/RxNRF8OJ1xI/AAAAAAAAABs/wf9OJfiglYs/s320/sachin" alt="" id="BLOGGER_PHOTO_ID_5121526363757074194" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_4QSuabuTRgw/RxNRF8OJ1wI/AAAAAAAAABk/wriaatRAupM/s1600-h/gavaskar"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: left; cursor: pointer;" src="http://2.bp.blogspot.com/_4QSuabuTRgw/RxNRF8OJ1wI/AAAAAAAAABk/wriaatRAupM/s320/gavaskar" alt="" id="BLOGGER_PHOTO_ID_5121526363757074178" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;I have compared Sunil Gavaskar and Sachin, &lt;a href="http://www.lgiccrankings.com/test/player-comparison-results.php?stattype=batting&amp;amp;name=Gavaskar&amp;amp;name_selected=1844&amp;amp;name2=Tendulkar&amp;amp;name_selected2=1905&amp;amp;type=Compare"&gt;result&lt;/a&gt; shown Gavasker ranking is greater than sachin. But I think Sachin is more consitant than Gavaskar.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/22481530-1738764042156824603?l=nitinsview.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/eGePfIFEcGZfQKZgs_Mi8N8A18I/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/eGePfIFEcGZfQKZgs_Mi8N8A18I/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/eGePfIFEcGZfQKZgs_Mi8N8A18I/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/eGePfIFEcGZfQKZgs_Mi8N8A18I/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/CVqGo/~4/Q-05f2T_0sA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nitinsview.blogspot.com/feeds/1738764042156824603/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=22481530&amp;postID=1738764042156824603" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/22481530/posts/default/1738764042156824603?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/22481530/posts/default/1738764042156824603?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/CVqGo/~3/Q-05f2T_0sA/icc-launch-new-website.html" title="ICC launch a new website" /><author><name>Nitin</name><uri>http://www.blogger.com/profile/12030589245714009598</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="21" src="http://lh6.google.com/singnitin/RyrXEAA7tpI/AAAAAAAAACY/xxvYCRPYXMQ/164970544_c0dbb0bdc3.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_4QSuabuTRgw/RxNRF8OJ1xI/AAAAAAAAABs/wf9OJfiglYs/s72-c/sachin" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://nitinsview.blogspot.com/2007/10/icc-launch-new-website.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU8NRnY8eyp7ImA9WxRaEUo.&quot;"><id>tag:blogger.com,1999:blog-22481530.post-2863816109617937201</id><published>2007-08-18T19:09:00.000+05:30</published><updated>2008-12-13T18:41:37.873+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-12-13T18:41:37.873+05:30</app:edited><title>my.indiatimes.com</title><content type="html">Indiatimes launch &lt;a href="http://my.indiatimes.com/"&gt;http://my.indiatimes.com on&lt;/a&gt; 15th Aug. My team did a good job. You can personalize your page like igoogle. You can add tabs  and  add content to that tab. This is another project we have done very well. We have integrated with indiatimes mail also. You can see your indiatimes mail on &lt;a href="http://my.indiatimes.com/"&gt;my.indiatimes.com&lt;/a&gt;. You can see the &lt;a href="http://www.youtube.com/watch?v=AjVuiyOUBrs"&gt;video here&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_4QSuabuTRgw/Rwc3yMOJ1vI/AAAAAAAAABc/KfBpEqgAFPo/s1600-h/image001.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: left; cursor: pointer;" src="http://3.bp.blogspot.com/_4QSuabuTRgw/Rwc3yMOJ1vI/AAAAAAAAABc/KfBpEqgAFPo/s320/image001.jpg" alt="" id="BLOGGER_PHOTO_ID_5118120836943435506" border="0" /&gt;&lt;/a&gt;Indiatimes give a news in the Times of India&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/22481530-2863816109617937201?l=nitinsview.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/oOQpHYY5gCHQ-J1cLdsanLCVdLo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/oOQpHYY5gCHQ-J1cLdsanLCVdLo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/oOQpHYY5gCHQ-J1cLdsanLCVdLo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/oOQpHYY5gCHQ-J1cLdsanLCVdLo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/CVqGo/~4/GcBsXd_U-C4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nitinsview.blogspot.com/feeds/2863816109617937201/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=22481530&amp;postID=2863816109617937201" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/22481530/posts/default/2863816109617937201?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/22481530/posts/default/2863816109617937201?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/CVqGo/~3/GcBsXd_U-C4/myindiatimescom.html" title="my.indiatimes.com" /><author><name>Nitin</name><uri>http://www.blogger.com/profile/12030589245714009598</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="21" src="http://lh6.google.com/singnitin/RyrXEAA7tpI/AAAAAAAAACY/xxvYCRPYXMQ/164970544_c0dbb0bdc3.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_4QSuabuTRgw/Rwc3yMOJ1vI/AAAAAAAAABc/KfBpEqgAFPo/s72-c/image001.jpg" height="72" width="72" /><thr:total>2</thr:total><feedburner:origLink>http://nitinsview.blogspot.com/2007/08/myindiatimescom.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0MFSHg7eSp7ImA9WB5QEks.&quot;"><id>tag:blogger.com,1999:blog-22481530.post-7417431485456906527</id><published>2007-07-01T10:05:00.000+05:30</published><updated>2007-07-01T10:20:19.601+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-07-01T10:20:19.601+05:30</app:edited><title>India is looking for crucial win</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://users.wfu.edu/beesz5/_38896889_sachin_ap245x245.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px;" src="http://users.wfu.edu/beesz5/_38896889_sachin_ap245x245.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:arial;"&gt;The six-wicket victory in the second game on Friday has not only restored the balance in the three-match series. &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:arial;"&gt;    Sachin is back, he has completed 15000 run in ODI, he is in good form scores 99 and 93 in the series.&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/22481530-7417431485456906527?l=nitinsview.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/kCjZ6Pj-pPjv7Tz_hi9EajaLeGI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kCjZ6Pj-pPjv7Tz_hi9EajaLeGI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/kCjZ6Pj-pPjv7Tz_hi9EajaLeGI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kCjZ6Pj-pPjv7Tz_hi9EajaLeGI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/CVqGo/~4/bwHDBIa0_TA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nitinsview.blogspot.com/feeds/7417431485456906527/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=22481530&amp;postID=7417431485456906527" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/22481530/posts/default/7417431485456906527?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/22481530/posts/default/7417431485456906527?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/CVqGo/~3/bwHDBIa0_TA/india-is-looking-for-crucial-win.html" title="India is looking for crucial win" /><author><name>Nitin</name><uri>http://www.blogger.com/profile/12030589245714009598</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="21" src="http://lh6.google.com/singnitin/RyrXEAA7tpI/AAAAAAAAACY/xxvYCRPYXMQ/164970544_c0dbb0bdc3.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://nitinsview.blogspot.com/2007/07/india-is-looking-for-crucial-win.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0cHQ3o7fip7ImA9WBJXEEk.&quot;"><id>tag:blogger.com,1999:blog-22481530.post-114404080165254715</id><published>2006-04-03T10:33:00.000+05:30</published><updated>2006-04-03T10:40:32.406+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2006-04-03T10:40:32.406+05:30</app:edited><title>Akshardham Mandir</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/7544/2265/1600/CAIJKXEZ.0.0.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://photos1.blogger.com/blogger/7544/2265/320/CAIJKXEZ.0.0.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 102, 102);font-size:85%;" &gt;&lt;span style="font-family:arial;"&gt;Today I want to see Akshardham Temple.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="color: rgb(102, 102, 102);font-family:arial;" &gt;It is one of the biggest and most intricate religious places of worship ever constructed. Combining several completely different and contrasting architectural styles of Hindu temple architecture of northern India -- Rajasthani, Orrisan, Gujarati, Mughal and Jain -- the Akshardham Monument is entirely constructed of marble and the red-sandstone that Delhi is famous for, and that so many of her monuments are constructed of. It was completed in only 5 years a world record of sorts.&lt;br /&gt;&lt;br /&gt;This is a good place to  visit.&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/22481530-114404080165254715?l=nitinsview.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Fsgg16p87MHV6M5uCPJKsa92hcs/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Fsgg16p87MHV6M5uCPJKsa92hcs/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Fsgg16p87MHV6M5uCPJKsa92hcs/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Fsgg16p87MHV6M5uCPJKsa92hcs/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/CVqGo/~4/i6TDP5HglDw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nitinsview.blogspot.com/feeds/114404080165254715/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=22481530&amp;postID=114404080165254715" title="9 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/22481530/posts/default/114404080165254715?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/22481530/posts/default/114404080165254715?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/CVqGo/~3/i6TDP5HglDw/akshardham-mandir.html" title="Akshardham Mandir" /><author><name>Nitin</name><uri>http://www.blogger.com/profile/12030589245714009598</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="21" src="http://lh6.google.com/singnitin/RyrXEAA7tpI/AAAAAAAAACY/xxvYCRPYXMQ/164970544_c0dbb0bdc3.jpg" /></author><thr:total>9</thr:total><feedburner:origLink>http://nitinsview.blogspot.com/2006/04/akshardham-mandir.html</feedburner:origLink></entry></feed>

