<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:atom="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" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-5354723093732968818</atom:id><lastBuildDate>Mon, 16 Apr 2012 04:26:39 +0000</lastBuildDate><title>Rule the Web</title><description>Anything new on web? Please post it to:
s3lokchand.ruletheweb@blogger.com</description><link>http://trilok-web.blogspot.com/</link><managingEditor>noreply@blogger.com (Trilok Chand S)</managingEditor><generator>Blogger</generator><openSearch:totalResults>39</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><feedburner:info uri="trilok/ruletheweb" /><feedburner:browserFriendly /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/s3lokchand/web" /><feedburner:info uri="s3lokchand/web" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-1196240091965725186</guid><pubDate>Tue, 11 Jan 2011 21:23:00 +0000</pubDate><atom:updated>2011-01-11T16:23:48.650-05:00</atom:updated><title>YouTube Architecture</title><description>&lt;div class="journal-entry-text"&gt;&lt;div class="body"&gt;                                         &lt;strong&gt;Update 2:&lt;/strong&gt;&amp;nbsp;&lt;a href="http://mashable.com/2009/10/09/youtube-billion-views/"&gt;YouTube Reaches One Billion Views Per Day&lt;/a&gt;. &lt;em&gt;That’s at least 11,574 views per second, 694,444 views per minute, and 41,666,667 views per hour. &lt;/em&gt; &lt;br /&gt;
&lt;strong&gt;Update:&lt;/strong&gt; &lt;a href="http://www.techcrunch.com/2008/03/12/youtube-the-platform/"&gt;YouTube: The Platform&lt;/a&gt;.  YouTube adds a new rich set of APIs in order to become your video  platform leader--all for free. Upload, edit, watch, search, and comment  on video from your own site without visiting YouTube. Compose your site  internally from APIs because you'll need to expose them later anyway. &lt;br /&gt;
&lt;br /&gt;
YouTube  grew incredibly fast, to over 100 million video views per day, with  only a handful of people responsible for scaling the site. How did they  manage to deliver all that video to all those users? And how have they  evolved since being acquired by Google?&lt;br /&gt;
&lt;h2&gt;Information Sources&lt;/h2&gt;&lt;ol&gt;&lt;li&gt; &lt;a href="http://video.google.com/videoplay?docid=-6304964351441328559"&gt; Google Video&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;h2&gt;Platform&lt;/h2&gt;&lt;ol&gt;&lt;li&gt; Apache&lt;/li&gt;
&lt;li&gt; Python&lt;/li&gt;
&lt;li&gt; Linux (SuSe)&lt;/li&gt;
&lt;li&gt; MySQL &lt;/li&gt;
&lt;li&gt; psyco, a dynamic python-&amp;gt;C compiler&lt;/li&gt;
&lt;li&gt; lighttpd for video instead of Apache &lt;/li&gt;
&lt;/ol&gt;&lt;h2&gt;What's Inside?&lt;/h2&gt;&lt;h3&gt;The Stats&lt;/h3&gt;&lt;ol&gt;&lt;li&gt; Supports the delivery of over 100 million videos per day.&lt;/li&gt;
&lt;li&gt; Founded 2/2005&lt;/li&gt;
&lt;li&gt; 3/2006 30 million video views/day&lt;/li&gt;
&lt;li&gt; 7/2006 100 million video views/day&lt;/li&gt;
&lt;li&gt; 2 sysadmins, 2 scalability software architects&lt;/li&gt;
&lt;li&gt; 2 feature developers, 2 network engineers, 1 DBA&lt;/li&gt;
&lt;/ol&gt;&lt;h3&gt;Recipe for handling rapid growth&lt;/h3&gt;&lt;code&gt; while (true)&lt;br /&gt;
{ &lt;br /&gt;
identify_and_fix_bottlenecks();&lt;br /&gt;
drink();&lt;br /&gt;
sleep();&lt;br /&gt;
notice_new_bottleneck();&lt;br /&gt;
}&lt;/code&gt;&lt;br /&gt;
&lt;br /&gt;
This loop runs many times a day.&lt;br /&gt;
&lt;h3&gt;Web Servers&lt;/h3&gt;&lt;ol&gt;&lt;li&gt; NetScalar is used for load balancing and caching static content.&lt;/li&gt;
&lt;li&gt; Run Apache with mod_fast_cgi.&lt;/li&gt;
&lt;li&gt; Requests are routed for handling by a Python application server.&lt;/li&gt;
&lt;li&gt; Application server talks to various databases and other informations sources to get all the data and formats the html page.&lt;/li&gt;
&lt;li&gt;Can usually scale web tier by adding more machines.&lt;/li&gt;
&lt;li&gt; The Python web code is usually NOT the bottleneck, it spends most of its time blocked on RPCs.&lt;/li&gt;
&lt;li&gt; Python allows rapid flexible development and deployment. This is critical given the competition they face.&lt;/li&gt;
&lt;li&gt; Usually less than 100 ms page service times.&lt;/li&gt;
&lt;li&gt; Use psyco, a dynamic python-&amp;gt;C compiler that uses a JIT compiler approach to optimize inner loops.&lt;/li&gt;
&lt;li&gt; For high CPU intensive activities like encryption, they use C extensions.&lt;/li&gt;
&lt;li&gt; Some pre-generated cached HTML for expensive to render blocks.&lt;/li&gt;
&lt;li&gt; Row level caching in the database.&lt;/li&gt;
&lt;li&gt; Fully formed Python objects are cached.&lt;/li&gt;
&lt;li&gt; Some data are calculated and sent to each application so the values  are cached in local memory. This is an underused strategy. The fastest  cache is in your application server and it doesn't take much time to  send precalculated data to all your servers. Just have an agent that  watches for changes, precalculates, and sends.&lt;/li&gt;
&lt;/ol&gt;&lt;h3&gt;Video Serving&lt;/h3&gt;&lt;li&gt; Costs include bandwidth, hardware, and power consumption.&lt;/li&gt;&lt;br /&gt;
&lt;li&gt; Each video hosted by a mini-cluster. Each video is served by more than one machine.&lt;/li&gt;&lt;br /&gt;
&lt;li&gt; Using a a cluster means:&lt;br /&gt;
- More disks serving content which means more speed.&lt;br /&gt;
- Headroom. If a machine goes down others can take over.&lt;br /&gt;
- There are online backups.&lt;/li&gt;&lt;br /&gt;
&lt;li&gt; Servers use the lighttpd web server for video:&lt;br /&gt;
- Apache had too much overhead.&lt;br /&gt;
- Uses epoll to wait on multiple fds.&lt;br /&gt;
- Switched from single process to multiple process configuration to handle more connections.&lt;/li&gt;&lt;br /&gt;
&lt;li&gt; Most popular content is moved to a CDN (content delivery network):&lt;br /&gt;
-  CDNs replicate content in multiple places. There's a better chance of  content being closer to the user, with fewer hops, and content will run  over a more friendly network.&lt;br /&gt;
- CDN machines mostly serve out of  memory because the content is so popular there's little thrashing of  content into and out of memory.&lt;/li&gt;&lt;br /&gt;
&lt;li&gt; Less popular content (1-20 views per day) uses YouTube servers in various colo sites.&lt;br /&gt;
-  There's a long tail effect. A video may have a few plays, but lots of  videos are being played. Random disks blocks are being accessed.&lt;br /&gt;
-  Caching doesn't do a lot of good in this scenario, so spending money on  more cache may not make sense. This is a very interesting point. If you  have a long tail product caching won't always be your performance  savior. &lt;br /&gt;
- Tune RAID controller and pay attention to other lower level issues to help.&lt;br /&gt;
- Tune memory on each machine so there's not too much and not too little.&lt;/li&gt;&lt;br /&gt;
&lt;h3&gt;Serving Video Key Points&lt;/h3&gt;&lt;ol&gt;&lt;li&gt; Keep it simple and cheap.&lt;/li&gt;
&lt;li&gt; Keep a simple network path. Not too many devices between content  and users. Routers, switches, and other appliances may not be able to  keep up with so much load.&lt;/li&gt;
&lt;li&gt; Use commodity hardware. More expensive hardware gets the more  expensive everything else gets too (support contracts). You are also  less likely find help on the net.&lt;/li&gt;
&lt;li&gt; Use simple common tools. They use most tools build into Linux and layer on top of those.&lt;/li&gt;
&lt;li&gt; Handle random seeks well (SATA, tweaks).&lt;/li&gt;
&lt;/ol&gt;&lt;h3&gt;Serving Thumbnails&lt;/h3&gt;&lt;li&gt; Surprisingly difficult to do efficiently.&lt;/li&gt;&lt;br /&gt;
&lt;li&gt; There are a like 4 thumbnails for each video so there are a lot more thumbnails than videos.&lt;/li&gt;&lt;br /&gt;
&lt;li&gt; Thumbnails are hosted on just a few machines.&lt;/li&gt;&lt;br /&gt;
&lt;li&gt; Saw problems associated with serving a lot of small objects:&lt;br /&gt;
- Lots of disk seeks and problems with inode caches and page caches at OS level.&lt;br /&gt;
-  Ran into per directory file limit. Ext3 in particular. Moved to a more  hierarchical structure. Recent improvements in the 2.6 kernel may  improve Ext3 large directory handling up to &lt;a href="http://ext2.sourceforge.net/2005-ols/paper-html/node3.html"&gt;100 times&lt;/a&gt;, yet storing lots of files in a file system is still not a good idea.&lt;br /&gt;
- A high number of requests/sec as web pages can display 60 thumbnails on page.&lt;br /&gt;
- Under such high loads Apache performed badly.&lt;br /&gt;
-  Used squid (reverse proxy) in front of Apache.  This worked for a  while, but as load increased performance eventually decreased. Went from  300 requests/second to 20.&lt;br /&gt;
- Tried using lighttpd but with a single  threaded it stalled. Run into problems with multiprocesses mode because  they would each keep a separate cache.&lt;br /&gt;
- With so many images setting up a new machine took over 24 hours.&lt;br /&gt;
- Rebooting machine took 6-10 hours for cache to warm up to not go to disk.&lt;/li&gt;&lt;br /&gt;
&lt;li&gt; To solve all their problems they started using Google's BigTable, a distributed data store:&lt;br /&gt;
- Avoids small file problem because it clumps files together.&lt;br /&gt;
- Fast, fault tolerant. Assumes its working on a unreliable network.&lt;br /&gt;
- Lower latency because it uses a distributed multilevel cache. This cache works across different collocation sites.&lt;br /&gt;
- For more information on BigTable take a look at &lt;a href="http://highscalability.com/google-architecture"&gt;Google Architecture&lt;/a&gt;, &lt;a href="http://highscalability.com/googletalk-architecture"&gt;GoogleTalk Architecture&lt;/a&gt;, and &lt;a href="http://highscalability.com/tags/bigtable"&gt;BigTable&lt;/a&gt;.&lt;/li&gt;&lt;br /&gt;
&lt;h3&gt;Databases&lt;/h3&gt;&lt;ol&gt;&lt;li&gt; The Early Years&lt;br /&gt;
- Use MySQL to store meta data like users, tags, and descriptions.&lt;br /&gt;
- Served data off a monolithic RAID 10 Volume with 10 disks. &lt;br /&gt;
-  Living off credit cards so they leased hardware. When they needed more  hardware to handle load it took a few days to order and get delivered.  &lt;br /&gt;
-  They went through a common evolution: single server, went to a single  master with multiple read slaves, then partitioned the database, and  then settled on a sharding approach.&lt;br /&gt;
- Suffered from replica lag. The  master is multi-threaded and runs on a large machine so it can handle a  lot of work. Slaves are single threaded and usually run on lesser  machines and replication is asynchronous, so the slaves can lag  significantly behind the master. &lt;br /&gt;
- Updates cause cache misses which goes to disk where slow I/O causes slow replication.&lt;br /&gt;
- Using a replicating architecture you need to spend a lot of money for incremental bits of write performance.&lt;br /&gt;
-  One of their solutions was prioritize traffic by splitting the data  into two clusters: a video watch pool and a general cluster. The idea is  that people want to watch video so that function should get the most  resources. The social networking features of YouTube are less important  so they can be routed to a less capable cluster.&lt;/li&gt;
&lt;li&gt;The later years:&lt;br /&gt;
- Went to database partitioning.&lt;br /&gt;
- Split into shards with users assigned to different shards.&lt;br /&gt;
- Spreads writes and reads.&lt;br /&gt;
- Much better cache locality which means less IO.&lt;br /&gt;
- Resulted in a 30% hardware reduction.&lt;br /&gt;
- Reduced replica lag to 0.&lt;br /&gt;
- Can now scale database almost arbitrarily.&lt;/li&gt;
&lt;/ol&gt;&lt;h3&gt;Data Center Strategy&lt;/h3&gt;&lt;ol&gt;&lt;li&gt; Used &lt;a href="http://www.webhostingsearch.com/managed-web-hosting.php"&gt;manage hosting&lt;/a&gt; providers at first. Living off credit cards so it was the only way.&lt;/li&gt;
&lt;li&gt; Managed hosting can't scale with you.  You can't control hardware or make favorable networking agreements.&lt;/li&gt;
&lt;li&gt; So they went to a colocation arrangement. Now they can customize everything and negotiate their own contracts.&lt;/li&gt;
&lt;li&gt; Use 5 or 6 data centers plus the CDN.&lt;/li&gt;
&lt;li&gt; Videos come out of any data center. Not closest match or anything. If a video is popular enough it will move into the CDN.&lt;/li&gt;
&lt;li&gt; Video bandwidth dependent, not really latency dependent. Can come from any colo.&lt;/li&gt;
&lt;li&gt; For images latency matters, especially when you have 60 images on a page.&lt;/li&gt;
&lt;li&gt; Images are replicated to different data centers using BigTable. Code&lt;br /&gt;
looks at different metrics to know who is closest.&lt;/li&gt;
&lt;/ol&gt;&lt;h2&gt;Lessons Learned&lt;/h2&gt;&lt;ol&gt;&lt;li&gt; &lt;strong&gt;Stall for time&lt;/strong&gt;. Creative and risky tricks can help you cope in the short term while you work out longer term solutions.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Prioritize&lt;/strong&gt;. Know what's essential to your service and prioritize your resources and efforts around those priorities.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Pick your battles&lt;/strong&gt;. Don't be afraid to outsource  some essential services. YouTube uses a CDN to distribute their most  popular content. Creating their own network would have taken too long  and cost too much. You may have similar opportunities in your system.  Take a look at &lt;a href="http://highscalability.com/tags/saas"&gt;Software as a Service&lt;/a&gt; for more ideas.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Keep it simple!&lt;/strong&gt; Simplicity allows you to  rearchitect more quickly so you can respond to problems. It's true that  nobody really knows what simplicity is, but if you aren't afraid to make  changes then that's a good sign simplicity is happening.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Shard&lt;/strong&gt;. Sharding helps to isolate and constrain storage, CPU, memory, and IO. It's not just about getting more writes performance.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Constant iteration on bottlenecks&lt;/strong&gt;:&lt;br /&gt;
- Software: DB, caching&lt;br /&gt;
- OS: disk I/O &lt;br /&gt;
- Hardware: memory, RAID&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;You succeed as a team&lt;/strong&gt;. Have a good cross  discipline team that understands the whole system and what's underneath  the system. People who can set up printers, machines, install networks,  and so on. With a good team all things are possible.&lt;/li&gt;
&lt;/ol&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-1196240091965725186?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/SvtZkAIu5y8WlSXP8juxvV7de2Q/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/SvtZkAIu5y8WlSXP8juxvV7de2Q/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/SvtZkAIu5y8WlSXP8juxvV7de2Q/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/SvtZkAIu5y8WlSXP8juxvV7de2Q/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/6uY4rOjmoEs" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/6uY4rOjmoEs/youtube-architecture.html</link><author>noreply@blogger.com (Trilok Chand S)</author><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2011/01/youtube-architecture.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-1314857118208211766</guid><pubDate>Tue, 02 Jun 2009 18:14:00 +0000</pubDate><atom:updated>2009-06-02T14:30:09.110-04:00</atom:updated><title>Bay Area Traffic Report - SigAlert</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_j4No1o0__0w/SiVvqo0p36I/AAAAAAAAMz0/vldDTnISF9E/s1600-h/SigalertLogoWhite120x20.gif"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 120px; height: 20px;" src="http://3.bp.blogspot.com/_j4No1o0__0w/SiVvqo0p36I/AAAAAAAAMz0/vldDTnISF9E/s200/SigalertLogoWhite120x20.gif" border="0" alt=""id="BLOGGER_PHOTO_ID_5342799311248416674" /&gt;&lt;/a&gt;&lt;br /&gt;A Sig Alert is defined by the California Highway Patrol as "any traffic incident that will tie up two or more lanes of a freeway for two or more hours, as opposed to a planned event like road construction, which is planned separately." Sig Alerts are issued by the CHP and are posted on their Web site, broadcast on radio and television stations throughout California, and signalled to motorists via electronic message signs on the freeways&lt;br /&gt;&lt;br /&gt;http://beta.sigalert.com/Map.asp&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-1314857118208211766?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/7hB7a6F5yewys3-JBS9eC7-6Lsw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/7hB7a6F5yewys3-JBS9eC7-6Lsw/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/7hB7a6F5yewys3-JBS9eC7-6Lsw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/7hB7a6F5yewys3-JBS9eC7-6Lsw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/SBrCzvwO3Ak" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/SBrCzvwO3Ak/bay-area-traffic-report-sigalert.html</link><author>noreply@blogger.com (Trilok Chand S)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_j4No1o0__0w/SiVvqo0p36I/AAAAAAAAMz0/vldDTnISF9E/s72-c/SigalertLogoWhite120x20.gif" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2009/06/bay-area-traffic-report-sigalert.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-3073405911706764198</guid><pubDate>Sun, 29 Mar 2009 18:25:00 +0000</pubDate><atom:updated>2009-03-29T14:27:07.951-04:00</atom:updated><title>Watch TV on Internet Free</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://static.wakoopa.com/images/software/3875/picture.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 48px; height: 48px;" src="http://static.wakoopa.com/images/software/3875/picture.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;The best way to watch TV on the Internet, download TVU player and watch them free&lt;br /&gt;&lt;br /&gt;&lt;a href="http://pages.tvunetworks.com/downloads/player.html#"&gt;http://pages.tvunetworks.com/downloads/player.html#&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-3073405911706764198?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/aKLvU3HAQQuQ55zCEuCghGN0c_g/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/aKLvU3HAQQuQ55zCEuCghGN0c_g/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/aKLvU3HAQQuQ55zCEuCghGN0c_g/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/aKLvU3HAQQuQ55zCEuCghGN0c_g/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/EGnuHbePugA" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/EGnuHbePugA/watch-tv-on-internet-free.html</link><author>noreply@blogger.com (Trilok Chand S)</author><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2009/03/watch-tv-on-internet-free.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-6313661891464949203</guid><pubDate>Sat, 21 Feb 2009 14:37:00 +0000</pubDate><atom:updated>2009-02-21T09:43:00.488-05:00</atom:updated><title>Echo Topic - Turns Worlds into Customers</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_j4No1o0__0w/SaAS652RyZI/AAAAAAAAMqw/F0ilAT3zLyU/s1600-h/echo-topic.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 128px; height: 59px;" src="http://3.bp.blogspot.com/_j4No1o0__0w/SaAS652RyZI/AAAAAAAAMqw/F0ilAT3zLyU/s200/echo-topic.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5305261164212636050" /&gt;&lt;/a&gt;&lt;br /&gt;Advertisers:&lt;br /&gt;Reach your customers and capture their attention when they are most receptive –  by placing your message directly into the text of high quality websites. EchoTopic® text links deliver highly relevant online advertising with no complex keywords to manage.&lt;br /&gt;&lt;br /&gt;Publishers:&lt;br /&gt;&lt;br /&gt;EchoTopic provides publishers with new sources of revenue by delivering in-text advertising campaigns.&lt;br /&gt;&lt;br /&gt;http://www.echotopic.com/&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-6313661891464949203?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/u1ZqnJRgBCNnv6pzFvpy0VwUqI0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/u1ZqnJRgBCNnv6pzFvpy0VwUqI0/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/u1ZqnJRgBCNnv6pzFvpy0VwUqI0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/u1ZqnJRgBCNnv6pzFvpy0VwUqI0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/EUAxpcYnxKo" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/EUAxpcYnxKo/echo-topic-turns-worlds-into-customers.html</link><author>noreply@blogger.com (Trilok Chand S)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_j4No1o0__0w/SaAS652RyZI/AAAAAAAAMqw/F0ilAT3zLyU/s72-c/echo-topic.jpg" height="72" width="72" /><thr:total>1</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2009/02/echo-topic-turns-worlds-into-customers.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-9084092500212579255</guid><pubDate>Thu, 05 Feb 2009 13:23:00 +0000</pubDate><atom:updated>2009-02-05T09:47:26.181-05:00</atom:updated><title>'Google Latitude' lets you track friends &amp; family</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_j4No1o0__0w/SYrppQYUB_I/AAAAAAAAMoM/j_2GF0_GHqo/s1600-h/map.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 124px; height: 200px;" src="http://2.bp.blogspot.com/_j4No1o0__0w/SYrppQYUB_I/AAAAAAAAMoM/j_2GF0_GHqo/s200/map.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5299304806535661554" /&gt;&lt;/a&gt;&lt;br /&gt;Google has launched a tracking service that lets parents keep an eye on their children  -  and wives keep tabs on their husbands  -  round the clock.&lt;br /&gt;&lt;br /&gt;The software allows owners of mobile phones or BlackBerry hand-held computers to have their whereabouts followed by family and friends anywhere around the world.&lt;br /&gt;&lt;br /&gt;Once the service is activated, the location of a person's phone appears as a blue dot on a map on the screen of whoever is allowed to monitor them. &lt;br /&gt;&lt;br /&gt;Google Latitude is available on the following mobile devices wherever Google Maps for mobile v3.0 and above is supported:&lt;br /&gt;- Android-powered devices with Maps v3.0 and above. G1 users in the US will be receiving Maps v3.0 in a system update soon.&lt;br /&gt;- Most color BlackBerry devices&lt;br /&gt;- Most Windows Mobile 5.0 and above devices.&lt;br /&gt;&lt;br /&gt;If you don't have the support on your mobile use it by adding a gadget on your iGoogle page. I added and invited few friends to test it.&lt;br /&gt;&lt;br /&gt;&lt;object width="480" height="295"&gt;&lt;param name="movie" value="http://www.youtube.com/v/Q-Oq-9enE-k&amp;hl=en&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/Q-Oq-9enE-k&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="380" height="275"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-9084092500212579255?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/GfOHiZHytGADFqGoz4ThnCOJ5_Q/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/GfOHiZHytGADFqGoz4ThnCOJ5_Q/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/GfOHiZHytGADFqGoz4ThnCOJ5_Q/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/GfOHiZHytGADFqGoz4ThnCOJ5_Q/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/2uA8WPad3jY" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/2uA8WPad3jY/google-latitude-lets-you-track-friends.html</link><author>noreply@blogger.com (Trilok Chand S)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_j4No1o0__0w/SYrppQYUB_I/AAAAAAAAMoM/j_2GF0_GHqo/s72-c/map.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2009/02/google-latitude-lets-you-track-friends.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-1530478226349018799</guid><pubDate>Wed, 04 Feb 2009 05:24:00 +0000</pubDate><atom:updated>2009-02-04T00:28:53.987-05:00</atom:updated><title>'Google Ocean' launched as extension of Google Earth</title><description>Google has launched an extension of Google Earth, which will allow web users to virtually explore the ocean with thousands of images of underwater landscapes.&lt;br /&gt;Google Ocean, which will be included in the newest version of Google Earth, will allow users to swim around underwater volcanoes, watch videos about exotic marine life, read about nearby shipwrecks, contribute photos and watch unseen footage of historic ocean expeditions - all from the comfort of their homes. &lt;br /&gt;&lt;br /&gt;&lt;object width="480" height="295"&gt;&lt;param name="movie" value="http://www.youtube.com/v/UgjjsNGSkt4&amp;hl=en&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/UgjjsNGSkt4&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="350" height="250"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-1530478226349018799?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/yC6SNAzymzHgDZscRTT2KvL-wXA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/yC6SNAzymzHgDZscRTT2KvL-wXA/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/yC6SNAzymzHgDZscRTT2KvL-wXA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/yC6SNAzymzHgDZscRTT2KvL-wXA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/2Su4lszAy7Y" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/2Su4lszAy7Y/google-ocean-launched-as-extension-of.html</link><author>noreply@blogger.com (Trilok Chand S)</author><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2009/02/google-ocean-launched-as-extension-of.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-4101826535985219116</guid><pubDate>Fri, 23 Jan 2009 12:30:00 +0000</pubDate><atom:updated>2009-01-23T07:34:05.516-05:00</atom:updated><title>Add website URL to Search Engines</title><description>You can submit your URLs to various search engines as shown below.&lt;br /&gt;&lt;br /&gt;&lt;table style="width: 382px; height: 684px;" bgcolor="#fffff9" border="1"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://www.google.com/addurl.html" target="new"&gt;&lt;img src="http://bblmedia.com/ad.gif" border="0" /&gt;&lt;/a&gt;  &lt;/td&gt;&lt;td&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:arial;"&gt;Google&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;          &lt;/tr&gt;   &lt;tr&gt;     &lt;td&gt;&lt;a href="http://search.yahoo.com/info/submit.html" target="new"&gt;&lt;img src="http://bblmedia.com/ad.gif" border="0" /&gt;&lt;/a&gt; &lt;/td&gt;     &lt;td&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:arial;"&gt;Yahoo!&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;/td&gt;          &lt;/tr&gt;   &lt;tr&gt;     &lt;td&gt;&lt;a href="http://beta.search.msn.com/docs/submit.aspx?FORM=WSUT" target="new"&gt;&lt;img src="http://bblmedia.com/ad.gif" alt="Add Url to MSN" border="0" /&gt;&lt;/a&gt; &lt;/td&gt;     &lt;td&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:arial;"&gt;MSN.COM&lt;/span&gt;   &lt;a href="http://bblmedia.msncode.hop.clickbank.net/" target="_blank"&gt;&lt;span style=";font-family:comic sans MS;font-size:78%;color:brown;"   &gt;Get 1st Rank&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt; &lt;/span&gt;&lt;/td&gt;          &lt;/tr&gt;   &lt;tr&gt;     &lt;td&gt;&lt;a href="http://www.carnivalofmakingmoneyonline.com/referral/7777774b" target="new"&gt;&lt;img src="http://bblmedia.com/ad.gif" border="0" /&gt;&lt;/a&gt; &lt;/td&gt;     &lt;td&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;a href="http://www.carnivalofmakingmoneyonline.com/referral/7777774b" target="new"&gt;&lt;span style=";font-family:arial;color:green;"  &gt;Carnival of Money&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;      &lt;/td&gt;          &lt;/tr&gt;   &lt;tr&gt; &lt;td&gt;&lt;a href="http://www.free-advertising-blog.com/Advertise-Free/22891" target="new"&gt;&lt;img src="http://bblmedia.com/ad.gif" border="0" /&gt;&lt;/a&gt; &lt;/td&gt;     &lt;td&gt;&lt;b&gt;&lt;a href="http://www.free-advertising-blog.com/Advertise-Free/22891"&gt;&lt;span style=";font-family:arial;color:navy;"  &gt;&lt;b&gt;FREE AD BLOG&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;    &lt;/td&gt;      &lt;/tr&gt;   &lt;tr&gt;     &lt;td&gt;&lt;a href="http://www.qango.com/dir/addurl.html" target="new"&gt;&lt;img src="http://bblmedia.com/ad.gif" border="0" /&gt;&lt;/a&gt; &lt;/td&gt;     &lt;td&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:arial;"&gt;Qango.Com&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;/td&gt;           &lt;/tr&gt;   &lt;tr&gt;     &lt;td&gt;&lt;a href="http://www.whatuseek.com/addurl.shtml" target="new"&gt;&lt;img src="http://bblmedia.com/ad.gif" border="0" /&gt;&lt;/a&gt; &lt;/td&gt;     &lt;td&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:arial;"&gt;&lt;b&gt;WhatUSeek.com&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;          &lt;/tr&gt;   &lt;tr&gt; &lt;td&gt;&lt;a href="http://www.linkstraffic.net/" title="Links Traffic Exchange quality system" target="new"&gt;&lt;img src="http://bblmedia.com/ad.gif" border="0" /&gt;&lt;/a&gt; &lt;/td&gt;     &lt;td&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:arial;"&gt;&lt;b&gt;LinksTraffic&lt;/b&gt;&lt;/span&gt;     &lt;/span&gt;&lt;/b&gt;&lt;/td&gt;          &lt;/tr&gt;   &lt;tr&gt;     &lt;td&gt;&lt;a href="http://www.towersearch.com/addurl.php" target="new"&gt;&lt;img src="http://bblmedia.com/ad.gif" border="0" /&gt;&lt;/a&gt;  &lt;/td&gt;     &lt;td&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;a href="http://www.towersearch.com/addurl.php" target="_blank"&gt;&lt;span style=";font-family:arial;color:blue;"  &gt;Tower Search&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt; &lt;/span&gt;&lt;/td&gt;          &lt;/tr&gt;   &lt;tr&gt;     &lt;td&gt;&lt;a href="http://www.hotlaunch.com/addurl.asp" target="new"&gt;&lt;img src="http://bblmedia.com/ad.gif" alt="Add Url to HotLaunch" border="0" /&gt;&lt;/a&gt; &lt;/td&gt;     &lt;td&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:arial;"&gt;HotLaunch&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;/td&gt;          &lt;/tr&gt;   &lt;tr&gt;     &lt;td&gt;&lt;a href="http://www.searchmonster.org/index.php?id=1&amp;amp;edid=833" target="new"&gt;&lt;img src="http://bblmedia.com/ad.gif" alt="Add Url to Search Monster" border="0" /&gt;&lt;/a&gt; &lt;/td&gt;     &lt;td&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:arial;"&gt;&lt;b&gt;Search Monster&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;  &lt;/b&gt;&lt;/td&gt;          &lt;/tr&gt;   &lt;tr&gt;     &lt;td&gt;&lt;a href="http://www.infospace.com/submit.html" target="new"&gt;&lt;img src="http://bblmedia.com/ad.gif" border="0" /&gt;&lt;/a&gt; &lt;/td&gt;     &lt;td&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:arial;"&gt;Infoseek&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;/td&gt;          &lt;/tr&gt;   &lt;tr&gt;     &lt;td&gt;&lt;a href="http://www.searchit.com/addurl.htm" target="new"&gt;&lt;img src="http://bblmedia.com/ad.gif" alt="Add Url to Searchit.com" border="0" /&gt;&lt;/a&gt; &lt;/td&gt;     &lt;td&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:arial;"&gt;Searchit.Com&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;/td&gt;          &lt;/tr&gt;   &lt;tr&gt;     &lt;td&gt;&lt;a href="http://bblmedia.ssinc.hop.clickbank.net/" target="new"&gt;&lt;img src="http://bblmedia.com/ad.gif" border="0" /&gt;&lt;/a&gt; &lt;/td&gt;     &lt;td&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style=";font-family:arial;color:purple;"  &gt;&lt;a href="http://bblmedia.ssinc.hop.clickbank.net/"&gt;Search Secrets SEO&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;/td&gt;            &lt;/tr&gt;   &lt;tr&gt;       &lt;td&gt;&lt;a href="http://www.netsearch.org/promo/submit.htm" target="new"&gt;&lt;img src="http://bblmedia.com/ad.gif" border="0" /&gt;&lt;/a&gt; &lt;/td&gt;     &lt;td&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:arial;"&gt;NetSearch&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;/td&gt;          &lt;/tr&gt;   &lt;tr&gt;     &lt;td&gt;&lt;a href="http://www.shoula.com/adding_your_site.php" target="new"&gt;&lt;img src="http://bblmedia.com/ad.gif" border="0" /&gt;&lt;/a&gt; &lt;/td&gt;     &lt;td&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:arial;"&gt;Shoula.com&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt; &lt;/span&gt;&lt;/td&gt;          &lt;/tr&gt;   &lt;tr&gt;     &lt;td&gt;&lt;a href="http://www.the-search-site.com/add_url_form.asp" target="new"&gt;&lt;img src="http://bblmedia.com/ad.gif" add="" url="" to="" the="" search="" site="" border="0" /&gt;&lt;/a&gt; &lt;/td&gt;     &lt;td&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:arial;"&gt;The-Search-Site&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;/td&gt;          &lt;/tr&gt;   &lt;tr&gt;     &lt;td&gt; &lt;a href="http://www.shareasale.com/r.cfm?b=27709&amp;amp;u=91948&amp;amp;m=6133&amp;amp;urllink=&amp;amp;afftrack=" target="_blank"&gt;&lt;img src="http://bblmedia.com/ad.gif" border="0" /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:arial;"&gt;Free Submit 20&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;  &lt;/td&gt;          &lt;/tr&gt;   &lt;tr&gt;     &lt;td&gt;&lt;a href="http://www.websquash.com/cgi-bin/search/search.pl?Mode=AnonAdd" target="blank"&gt; &lt;img src="http://bblmedia.com/ad.gif" border="0" /&gt;&lt;/a&gt; &lt;/td&gt;     &lt;td&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:arial;"&gt;&lt;b&gt;WebSquash&lt;/b&gt;&lt;/span&gt; &lt;/span&gt;&lt;/td&gt;          &lt;/tr&gt;   &lt;tr&gt;     &lt;td&gt;&lt;a href="http://www.web4url.com/add.php" target="new"&gt;&lt;img src="http://bblmedia.com/ad.gif" border="0" /&gt;&lt;/a&gt; &lt;/td&gt;     &lt;td&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:arial;"&gt;WEB4URL.COM&lt;/span&gt;&lt;/span&gt;&lt;/b&gt; &lt;/td&gt;          &lt;/tr&gt;                  &lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-4101826535985219116?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/pCVkS22qLUT42eX6S-9FGXpXeRw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/pCVkS22qLUT42eX6S-9FGXpXeRw/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/pCVkS22qLUT42eX6S-9FGXpXeRw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/pCVkS22qLUT42eX6S-9FGXpXeRw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/ibYSywAGAbM" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/ibYSywAGAbM/add-website-url-to-search-engines.html</link><author>noreply@blogger.com (Trilok Chand S)</author><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2009/01/add-website-url-to-search-engines.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-246110065000169195</guid><pubDate>Wed, 19 Nov 2008 12:17:00 +0000</pubDate><atom:updated>2008-11-19T07:30:33.159-05:00</atom:updated><title>Online File Storage</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_j4No1o0__0w/SSQGg3yMJpI/AAAAAAAAL3E/YRqxM-uhu-M/s1600-h/box.gif"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 49px; height: 30px;" src="http://2.bp.blogspot.com/_j4No1o0__0w/SSQGg3yMJpI/AAAAAAAAL3E/YRqxM-uhu-M/s200/box.gif" alt="" id="BLOGGER_PHOTO_ID_5270344625730365074" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;A file hosting service, online file storage service, or online media center is an Internet hosting service specifically designed to host static content, typically large files that are not web pages. Typically they allow web and FTP access. They can be optimized for serving many users or be optimized for single-user storage. Related services are video sharing, virtual storage and remote backup.&lt;br /&gt;&lt;br /&gt;Some of the notable file hosting services are:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.box.net/"&gt;Box.net&lt;/a&gt;&lt;br /&gt;DropBox&lt;br /&gt;FileFront&lt;br /&gt;MediaFire&lt;br /&gt;MegUpload&lt;br /&gt;RapidShare&lt;br /&gt;SendSpace&lt;br /&gt;SteekR&lt;br /&gt;YouSendIt&lt;br /&gt;&lt;br /&gt;I am using Box.net which give 50MB of free space.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-246110065000169195?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/zs4p0xpZoqCUJ6jnc4VTuINwytU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/zs4p0xpZoqCUJ6jnc4VTuINwytU/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/zs4p0xpZoqCUJ6jnc4VTuINwytU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/zs4p0xpZoqCUJ6jnc4VTuINwytU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/fZAHHhFO2-E" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/fZAHHhFO2-E/online-file-storage.html</link><author>noreply@blogger.com (Trilok Chand S)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_j4No1o0__0w/SSQGg3yMJpI/AAAAAAAAL3E/YRqxM-uhu-M/s72-c/box.gif" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2008/11/online-file-storage.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-2560054042132772676</guid><pubDate>Mon, 03 Nov 2008 14:38:00 +0000</pubDate><atom:updated>2008-11-03T09:47:01.344-05:00</atom:updated><title>Web conferencing - Webinar</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_j4No1o0__0w/SQ8O2cCG2rI/AAAAAAAALxA/HO_jU0nYrJk/s1600-h/g2w_logo.gif"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 200px; height: 44px;" src="http://1.bp.blogspot.com/_j4No1o0__0w/SQ8O2cCG2rI/AAAAAAAALxA/HO_jU0nYrJk/s200/g2w_logo.gif" alt="" id="BLOGGER_PHOTO_ID_5264442817820154546" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Web conferencing is used to conduct live meetings or presentations over the Internet. In a web conference, each participant sits at his or her own computer and is connected to other participants via the internet. This can be either a downloaded application on each of the attendees computers or a web-based application where the attendees will simply enter a URL (website address) to enter the conference.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;A Webinar, or "Web seminar," is an online event designed to facilitate communication between a small number of presenters and a large remote audience using the Internet. Webinars reach audiences more effectively than regular in-person events because there is no need to plan travel or reserve conference space.&lt;br /&gt;&lt;br /&gt;A webinar is a neologism to describe a specific type of web conference. It is typically one-way, from the speaker to the audience with limited audience interaction, such as in a webcast. A webinar can be collaborative and include polling and question &amp;amp; answer sessions to allow full participation between the audience and the presenter. In some cases, the presenter may speak over a standard telephone line, pointing out information being presented on screen and the audience can respond over their own telephones, preferably a speaker phone. There are web conferencing technologies on the market that have incorporated the use of VoIP audio technology, to allow for a truly web-based communication. Webinars may (depending upon the provider) provide hidden or anonymous participant functionality, enabling participants to be unaware of other participants in the same meeting.&lt;br /&gt;&lt;br /&gt;sign up for a free trail version at &lt;a href="http://www.gotowebinar.com/"&gt;http://www.gotowebinar.com&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I got a chance to attend Java classes recently, classes are scheduled 1 hour a day after office hours.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-2560054042132772676?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/xjNOT9d70D8CYXhFXaH5rqXCifM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/xjNOT9d70D8CYXhFXaH5rqXCifM/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/xjNOT9d70D8CYXhFXaH5rqXCifM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/xjNOT9d70D8CYXhFXaH5rqXCifM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/A5BmztqawIk" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/A5BmztqawIk/web-conferencing-webinar.html</link><author>noreply@blogger.com (Trilok Chand S)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_j4No1o0__0w/SQ8O2cCG2rI/AAAAAAAALxA/HO_jU0nYrJk/s72-c/g2w_logo.gif" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2008/11/web-conferencing-webinar.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-233746897581834270</guid><pubDate>Thu, 30 Oct 2008 10:49:00 +0000</pubDate><atom:updated>2008-10-30T06:49:02.587-04:00</atom:updated><title>Different modes to access Gmail</title><description>&lt;div class="gmail_quote"&gt;Gmail Modes&lt;img style="width: 120px; height: 60px; float: right; margin-left: 5px; margin-bottom: 5px;" src="http://4.bp.blogspot.com/_ZaGO7GjCqAI/SQcK3oq8ngI/AAAAAAAAOEQ/FxAY8n93dtE/s400/gmail-plus-talk-logo.png" alt="" border="0"&gt;&lt;br&gt;  If you can&amp;#39;t access Gmail, try some of these URLs:&lt;br&gt;&lt;br&gt;&lt;span style="font-weight: bold;"&gt;Safe mode&lt;/span&gt; - &lt;a href="http://mail.google.com/mail/?labs=0" target="_blank"&gt;http://mail.google.com/mail/?labs=0&lt;/a&gt;. It disables the experimental features from Gmail Labs, just in case some of them are buggy. You can remove some of the features from Gmail&amp;#39;s settings page.&lt;br&gt;&lt;br&gt;&lt;span style="font-weight: bold;"&gt;Secure mode&lt;/span&gt; - &lt;a href="http://../" target="_blank"&gt;https://mail.google.com/&lt;/a&gt;. It encrypts the traffic between your computer and Gmail&amp;#39;s servers. Use it from public computers, Wi-Fi networks or to bypass some proxies and web accelerators. There&amp;#39;s a Gmail setting that redirects the standard version to the secure mode (&amp;quot;Always use https&amp;quot;).&lt;br&gt;&lt;br&gt;&lt;span style="font-weight: bold;"&gt;Older version&lt;/span&gt; - &lt;a href="http://mail.google.com/mail/?ui=1" target="_blank"&gt;http://mail.google.com/mail/?ui=1&lt;/a&gt;. This version has been replaced in October 2007 by a rearchitectured Gmail, but the old version is a little bit faster.&lt;br&gt;  &lt;br&gt;&lt;span style="font-weight: bold;"&gt;Basic mode&lt;/span&gt; - &lt;a href="http://mail.google.com/mail/?ui=html" target="_blank"&gt;http://mail.google.com/mail/?ui=html&lt;/a&gt;. It&amp;#39;s the version that doesn&amp;#39;t use JavaScript, so it loads faster and it works well with older browsers. Unfortunately, &lt;a href="http://mail.google.com/support/bin/answer.py?hl=en&amp;amp;answer=15049" target="_blank"&gt;many Gmail features are missing&lt;/a&gt; (contacts autocomplete, chat, spell checker, rich formatting) and each click loads a new page. If you like this version, click on &amp;quot;Set basic HTML as default view&amp;quot; at the top of the page.&lt;br&gt;&lt;br&gt;&lt;span style="font-weight: bold;"&gt;Mobile mode&lt;/span&gt; - &lt;a href="http://mail.google.com/mail/?ui=mobile" target="_blank"&gt;http://mail.google.com/mail/?ui=mobile&lt;/a&gt; or &lt;a href="http://m.gmail.com/" target="_blank"&gt;http://m.gmail.com&lt;/a&gt;. This is a simplified Gmail interface for mobile phones that has even less feature than the basic mode. Use it if no other Gmail mode works for you.&lt;br&gt;&lt;br&gt;&lt;span style="font-weight: bold;"&gt;iPhone mode&lt;/span&gt; - &lt;a href="http://mail.google.com/mail/x/gdlakb-/gp/" target="_blank"&gt;http://mail.google.com/mail/x/gdlakb-/gp/&lt;/a&gt;. A more user-friendly mobile version for iPhone and other mobile phones that use WebKit-based browsers.&lt;br&gt;  &lt;br&gt;&lt;span style="font-weight: bold;"&gt;iGoogle gadget&lt;/span&gt; - &lt;a href="http://www.google.com/ig/gmailmax" target="_blank"&gt;http://www.google.com/ig/gmailmax&lt;/a&gt;. This is the canvas view for the updated Gmail gadget which can be found in &lt;a href="http://googlesystem.blogspot.com/2008/10/new-igoogle-publicly-launched.html" target="_blank"&gt;the new iGoogle&lt;/a&gt;. Some people found that this interface bypasses most corporate filters that prevent them from accessing Gmail at work.&lt;br&gt;  &lt;br&gt;&lt;span style="font-weight: bold;"&gt;&amp;quot;No browser checking&amp;quot; mode&lt;/span&gt; - &lt;a href="http://mail.google.com/mail?nocheckbrowser" target="_blank"&gt;http://mail.google.com/mail?nocheckbrowser&lt;/a&gt;. If you use a cutting-edge new browser and Gmail serves you the basic HTML mode, try this URL to bypass browser detection.&lt;br clear="all"&gt; &lt;font color="#888888"&gt; &lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;br&gt; &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-233746897581834270?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/mHu1Lcv9jub0oLpZIjAIAD0I2Tk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/mHu1Lcv9jub0oLpZIjAIAD0I2Tk/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/mHu1Lcv9jub0oLpZIjAIAD0I2Tk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/mHu1Lcv9jub0oLpZIjAIAD0I2Tk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/YdHjx3Ct8kw" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/YdHjx3Ct8kw/different-modes-to-access-gmail.html</link><author>noreply@blogger.com (Trilok Chand S)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_ZaGO7GjCqAI/SQcK3oq8ngI/AAAAAAAAOEQ/FxAY8n93dtE/s72-c/gmail-plus-talk-logo.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2008/10/different-modes-to-access-gmail.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-2005315777761468847</guid><pubDate>Wed, 15 Oct 2008 05:19:00 +0000</pubDate><atom:updated>2008-10-15T01:21:16.880-04:00</atom:updated><title>List of Torrent Sites</title><description>&lt;span style="font-weight: bold;"&gt;My favorites are 1 &amp;amp; 2&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:78%;"&gt;(Install a torrent client, before you download any torrent files. I use Bittorrent client)&lt;/span&gt;&lt;br /&gt;&lt;ol&gt;&lt;li style="font-weight: bold;"&gt;&lt;a href="www.btjunike.com"&gt;btjunike.com&lt;br /&gt;&lt;/a&gt;&lt;/li&gt;&lt;li style="font-weight: bold;"&gt;&lt;a href="www.torrentz.com"&gt;torrentz.com&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://torrentsites.org/tracker.php?do=out&amp;amp;id=113" title="Visit Site"&gt;TorrentPond.com&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://torrentsites.org/tracker.php?do=out&amp;amp;id=14" title="Visit Site"&gt;myBittorrent&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://torrentsites.org/tracker.php?do=out&amp;amp;id=3" title="Visit Site"&gt;&lt;span class="bold_sites"&gt;TorrentSpy&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://torrentsites.org/tracker.php?do=out&amp;amp;id=1" title="Visit Site"&gt;&lt;span class="bold_sites"&gt;The Pirate Bay&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://torrentsites.org/tracker.php?do=out&amp;amp;id=4" title="Visit Site"&gt;Iso-Hunt&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://torrentsites.org/tracker.php?do=out&amp;amp;id=105" title="Visit Site"&gt;TorrentsHub.com&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://torrentsites.org/tracker.php?do=out&amp;amp;id=456" title="Visit Site"&gt;Sharingcode Torrent Tracker&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://torrentsites.org/tracker.php?do=out&amp;amp;id=116" title="Visit Site"&gt;SuperShare&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://torrentsites.org/tracker.php?do=out&amp;amp;id=77" title="Visit Site"&gt;Ogg Frog Free Music Torrents&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://torrentsites.org/tracker.php?do=out&amp;amp;id=55" title="Visit Site"&gt;&lt;span class="bold_sites"&gt;BitTorrentFind.com&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://torrentsites.org/tracker.php?do=out&amp;amp;id=88" title="Visit Site"&gt;Last Crack BT Site&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://torrentsites.org/tracker.php?do=out&amp;amp;id=42" title="Visit Site"&gt;OpenLite BT - A BitTorrent Source&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://torrentsites.org/tracker.php?do=out&amp;amp;id=18" title="Visit Site"&gt;meganova&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://torrentsites.org/tracker.php?do=out&amp;amp;id=5" title="Visit Site"&gt;Bit-Torrent&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-2005315777761468847?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/c2OLivrMPp4voXD6k3ieLI8sChk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/c2OLivrMPp4voXD6k3ieLI8sChk/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/c2OLivrMPp4voXD6k3ieLI8sChk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/c2OLivrMPp4voXD6k3ieLI8sChk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/pBSBtIaaUcA" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/pBSBtIaaUcA/list-of-torrent-sites.html</link><author>noreply@blogger.com (Trilok Chand S)</author><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2008/10/list-of-torrent-sites.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-2868986286061600681</guid><pubDate>Wed, 01 Oct 2008 05:09:00 +0000</pubDate><atom:updated>2008-10-01T01:13:39.618-04:00</atom:updated><title>Web Hosting: Who's Popular?</title><description>Top 10 web hosting providers as on Sept 2008&lt;br /&gt;&lt;table class="TableText" border="0" cellpadding="0" cellspacing="0" width="100%"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class="TableHeading" align="center" bgcolor="#ff7200" height="24" valign="middle" width="24"&gt;&lt;div align="center"&gt;RANK&lt;/div&gt;&lt;/td&gt;                                                                                                                              &lt;td class="Vline" bgcolor="#ff7200" valign="middle" width="150"&gt;&lt;div align="center"&gt;&lt;span class="TableHeading"&gt;SHARED WEB HOST&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;                                                                                    &lt;td class="Vline" align="right" bgcolor="#ff7200" valign="middle" width="68"&gt;&lt;div align="center"&gt;&lt;span class="TableHeading"&gt;PRICE&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;                                          &lt;td class="Vline" align="right" bgcolor="#ff7200" valign="middle" width="68"&gt;&lt;div align="center"&gt;&lt;span class="TableHeading"&gt;SALES INDEX&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;                                                                                                                                                                                                                                                          &lt;/tr&gt;                                        &lt;tr&gt;                                          &lt;td class="style3 style5" align="center" height="50" valign="middle" width="24"&gt;&lt;div class="style1" align="center"&gt;1&lt;/div&gt;&lt;/td&gt;                                                                                                                              &lt;td class="Vline" valign="middle" width="150"&gt;&lt;div align="center"&gt;&lt;a onmouseover="window.status='Visit HostMonster'; return true" title="Visit HostMonster" href="http://affiliates.opienetwork.com/ez/bvlfvqks/" target="_blank"&gt;&lt;img name="logo" src="http://hosting-review.com/images/logos/w/hostmonster.gif" alt="Visit HostMonster" height="40" width="150" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;                                                                                    &lt;td class="Vline" align="right" valign="middle" width="68"&gt;&lt;div class="contentSubHeading" align="center"&gt;$4.95&lt;/div&gt;&lt;/td&gt;                                          &lt;td class="Vline" align="right" valign="middle" width="68"&gt;&lt;div align="center"&gt;&lt;img src="http://hosting-review.com/images/wideTEST/gauge-red.gif" alt="Sales Index = HOT" height="36" width="57" /&gt;&lt;/div&gt;&lt;/td&gt;                                                                                                                                                                                                                                                          &lt;/tr&gt;                                        &lt;tr&gt;                                          &lt;td class="style1 style5" align="center" bgcolor="#ebe7de" height="50" valign="middle" width="24"&gt;&lt;div align="center"&gt;&lt;strong&gt;2&lt;/strong&gt;&lt;/div&gt;&lt;/td&gt;                                                                                                                              &lt;td class="Vline" align="right" bgcolor="#ebe7de" valign="middle" width="150"&gt;&lt;div align="center"&gt;&lt;a onmouseover="window.status='Visit BlueHost'; return true" title="Visit BlueHost" href="http://affiliates.opienetwork.com/ez/arwprwlt/" target="_blank"&gt;&lt;img name="logo" src="http://hosting-review.com/images/logos/w/bluehost.gif" alt="Visit BlueHost" height="40" width="150" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;                                                                                    &lt;td class="Vline" align="right" bgcolor="#ebe7de" valign="middle" width="68"&gt;&lt;div class="contentSubHeading" align="center"&gt;                                              &lt;div align="center"&gt;$4.95&lt;/div&gt;                                          &lt;/div&gt;&lt;/td&gt;                                          &lt;td class="Vline" align="right" bgcolor="#ebe7de" valign="middle" width="68"&gt;&lt;div align="center"&gt;&lt;img src="http://hosting-review.com/images/wideTEST/gauge-orange.gif" alt="Sales Index = Warm" height="36" width="57" /&gt;&lt;/div&gt;&lt;/td&gt;                                                                                                                                                                                                                                                          &lt;/tr&gt;                                        &lt;tr&gt;                                          &lt;td class="style3 style5" align="center" height="50" valign="middle" width="24"&gt;&lt;div class="style1" align="center"&gt;3&lt;/div&gt;&lt;/td&gt;                                                                                                                              &lt;td class="Vline" valign="middle" width="150"&gt;&lt;div align="center"&gt;&lt;a onmouseover="window.status='Visit StartLogic'; return true" title="Visit StartLogic" href="http://affiliates.opienetwork.com/ez/dxscxsom/" target="_blank"&gt;&lt;img name="logo" src="http://hosting-review.com/images/logos/w/startlogic.gif" alt="Visit StartLogic" height="40" width="150" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;                                                                                    &lt;td class="Vline" valign="middle" width="68"&gt;&lt;div class="contentSubHeading" align="center"&gt;$4.95&lt;/div&gt;&lt;/td&gt;                                          &lt;td class="Vline" valign="middle" width="68"&gt;&lt;div align="center"&gt;&lt;img src="http://hosting-review.com/images/wideTEST/gauge-orange.gif" alt="Sales Index = Warm" height="36" width="57" /&gt;&lt;/div&gt;&lt;/td&gt;                                                                                                                                                                                                                                                          &lt;/tr&gt;                                        &lt;tr&gt;                                          &lt;td class="style1 style5" align="center" bgcolor="#ebe7de" height="50" valign="middle" width="24"&gt;&lt;div align="center"&gt;&lt;strong&gt;4&lt;/strong&gt;&lt;/div&gt;&lt;/td&gt;                                                                                                                              &lt;td class="Vline" align="right" bgcolor="#ebe7de" valign="middle" width="150"&gt;&lt;div align="center"&gt;&lt;a onmouseover="window.status='Visit Dot5 Hosting'; return true" title="Visit Dot5 Hosting" href="http://affiliates.opienetwork.com/ez/arwprwat/" target="_blank"&gt;&lt;img name="logo" src="http://hosting-review.com/images/logos/w/dot5-logo.gif" alt="Visit Dot5 Hosting" height="40" width="150" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;                                                                                    &lt;td class="Vline" align="right" bgcolor="#ebe7de" valign="middle" width="68"&gt;&lt;div class="contentSubHeading" align="center"&gt;$3.95&lt;/div&gt;&lt;/td&gt;                                          &lt;td class="Vline" align="right" bgcolor="#ebe7de" valign="middle" width="68"&gt;&lt;div align="center"&gt;&lt;img src="http://hosting-review.com/images/wideTEST/gauge-orange.gif" alt="Sales Index = Warm" height="36" width="57" /&gt;&lt;/div&gt;&lt;/td&gt;                                                                                                                                                                                                                                                          &lt;/tr&gt;                                        &lt;tr&gt;                                          &lt;td class="style3 style5" align="center" height="50" valign="middle" width="24"&gt;&lt;div class="style1" align="center"&gt;5&lt;/div&gt;&lt;/td&gt;                                                                                                                              &lt;td class="Vline" align="center" valign="middle" width="150"&gt;&lt;div class="contentsubheading" align="center"&gt;&lt;a href="http://affiliates.opienetwork.com/ez/bvlfvlqk/" title="Visit FastDomain" target="_blank" onmouseover="window.status='Visit FastDomain'; return true"&gt;&lt;img src="http://hosting-review.com/images/logos/w/fastdomain.gif" alt="Visit Fast Domain Hosting" name="fastdomain" id="fastdomain" height="40" width="150" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;                                                                                    &lt;td class="Vline" align="right" valign="middle" width="68"&gt;&lt;div class="contentSubHeading" align="center"&gt;                                              &lt;div class="contentsubheading" align="center"&gt;$3.95&lt;/div&gt;                                          &lt;/div&gt;&lt;/td&gt;                                          &lt;td class="Vline" align="right" valign="middle" width="68"&gt;&lt;div align="center"&gt;&lt;img src="http://hosting-review.com/images/wideTEST/gauge-yellow.gif" alt="Sales Index = Neutral" height="36" width="57" /&gt;&lt;/div&gt;&lt;/td&gt;                                                                                                                                                                                                                                                          &lt;/tr&gt;                                                                                &lt;tr&gt;                                          &lt;td class="style1 style5" align="center" bgcolor="#ebe7de" height="50" valign="middle" width="24"&gt;&lt;div align="center"&gt;&lt;strong&gt;6&lt;/strong&gt;&lt;/div&gt;&lt;/td&gt;                                                                                                                              &lt;td class="Vline" align="right" bgcolor="#ebe7de" valign="middle" width="150"&gt;&lt;div align="center"&gt;&lt;a onmouseover="window.status='Visit HostPapa'; return true" title="Visit HostPapa" href="http://affiliates.opienetwork.com/ez/dxscxykb/" target="_blank"&gt;&lt;img name="logo" src="http://hosting-review.com/images/logos/w/hostpapa.gif" alt="Visit HostPapa" height="40" width="150" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;                                                                                    &lt;td class="Vline" align="right" bgcolor="#ebe7de" valign="middle" width="68"&gt;&lt;div class="contentSubHeading" align="center"&gt;$5.45*&lt;/div&gt;&lt;/td&gt;                                          &lt;td class="Vline" align="right" bgcolor="#ebe7de" valign="middle" width="68"&gt;&lt;div align="center"&gt;&lt;img src="http://hosting-review.com/images/wideTEST/gauge-yellow.gif" alt="Sales Index = Neutral" height="36" width="57" /&gt;&lt;/div&gt;&lt;/td&gt;                                                                                                                                                                                                                                                          &lt;/tr&gt;                                        &lt;tr&gt;                                          &lt;td class="style1 style5" align="center" height="50" valign="middle" width="24"&gt;&lt;div align="center"&gt;&lt;strong&gt;7&lt;/strong&gt;&lt;/div&gt;&lt;/td&gt;                                                                                                                              &lt;td class="Vline" align="right" valign="middle" width="150"&gt;&lt;div align="center"&gt;&lt;a onmouseover="window.status='Visit Go Daddy'; return true" title="Visit Go Daddy" href="http://www.tkqlhce.com/click-1238355-10441117" target="_blank"&gt;&lt;img src="http://hosting-review.com/images/logos/w/godaddy.gif" alt="Visit GoDaddy" name="GoDaddy" id="GoDaddy" height="40" width="150" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;                                                                                    &lt;td class="Vline" align="right" valign="middle" width="68"&gt;&lt;div class="contentSubHeading" align="center"&gt;$5.94&lt;/div&gt;&lt;/td&gt;                                          &lt;td class="Vline" align="right" valign="middle" width="68"&gt;&lt;div align="center"&gt;&lt;img src="http://hosting-review.com/images/wideTEST/gauge-yellow.gif" alt="Sales Index = Neutral" height="36" width="57" /&gt;&lt;/div&gt;&lt;/td&gt;                                                                                                                                                                                                                                                          &lt;/tr&gt;                                                                                                                           &lt;tr&gt;                                           &lt;td class="style1 style5" align="center" bgcolor="#ebe7de" height="50" valign="middle" width="24"&gt;&lt;div align="center"&gt;&lt;strong&gt;8&lt;/strong&gt;&lt;/div&gt;&lt;/td&gt;                                                                                                                                 &lt;td class="Vline" align="right" bgcolor="#ebe7de" valign="middle" width="150"&gt;&lt;div align="center"&gt;&lt;a onmouseover="window.status='Visit IX Web Hosting'; return true" title="Visit IX Web Hosting" href="http://affiliates.opienetwork.com/ez/arwprwww/" target="_blank"&gt;&lt;img name="logo" src="http://hosting-review.com/images/logos/w/ix-web-hosting.gif" alt="Visit ix Webhosting" height="40" width="150" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;                                                                                      &lt;td class="Vline" align="right" bgcolor="#ebe7de" valign="middle" width="68"&gt;&lt;div class="contentSubHeading" align="center"&gt;$4.95&lt;/div&gt;&lt;/td&gt;                                           &lt;td class="Vline" align="right" bgcolor="#ebe7de" valign="middle" width="68"&gt;&lt;div align="center"&gt;&lt;img src="http://hosting-review.com/images/wideTEST/gauge-orange.gif" alt="Sales Index = Warm" height="36" width="57" /&gt;&lt;/div&gt;&lt;/td&gt;                                                                                                                                                                                                                                                                &lt;/tr&gt;                                         &lt;tr&gt;                                           &lt;td class="style1 style5" align="center" height="50" valign="middle" width="24"&gt;&lt;div align="center"&gt;&lt;strong&gt;9&lt;/strong&gt;&lt;/div&gt;&lt;/td&gt;                                                                                                                                 &lt;td class="Vline" align="right" valign="middle" width="150"&gt;&lt;div align="center"&gt;&lt;a onmouseover="window.status='Visit Yahoo Small Business Hosting'; return true" title="Visit Yahoo Small Business Hosting" href="http://www.tkqlhce.com/click-1238355-10432567" target="_blank"&gt;&lt;img src="http://hosting-review.com/images/logos/w/yahoo.gif" alt="Visit Yahoo" name="yahoo" id="yahoo2" height="40" width="150" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;                                                                                      &lt;td class="Vline" align="right" valign="middle" width="68"&gt;&lt;div class="contentSubHeading" align="center"&gt;$8.96*&lt;/div&gt;&lt;/td&gt;                                           &lt;td class="Vline" align="right" valign="middle" width="68"&gt;&lt;div align="center"&gt;&lt;img src="http://hosting-review.com/images/wideTEST/gauge-yellow.gif" alt="Sales Index = Neutral" height="36" width="57" /&gt;&lt;/div&gt;&lt;/td&gt;                                                                                                                                                                                                                                                                &lt;/tr&gt;                                                                                  &lt;tr&gt;                                           &lt;td class="style1 style5" align="center" bgcolor="#ebe7de" height="50" valign="middle" width="24"&gt;&lt;div align="center"&gt;&lt;strong&gt;10&lt;/strong&gt;&lt;/div&gt;&lt;/td&gt;                                                                                                                                 &lt;td class="Vline" align="right" bgcolor="#ebe7de" valign="middle" width="150"&gt;&lt;div align="center"&gt;&lt;a onmouseover="window.status='Visit PowWeb Hosting'; return true" title="Visit PowWeb Hosting" href="http://affiliates.opienetwork.com/ez/bvlfvlkq/" target="_blank"&gt;&lt;img src="http://hosting-review.com/images/logos/w/powweb.gif" alt="Visit PowWeb" name="powweb" id="powweb" height="42" width="150" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;                                                                                      &lt;td class="Vline" align="right" bgcolor="#ebe7de" valign="middle" width="68"&gt;&lt;div class="contentSubHeading" align="center"&gt;$3.88*&lt;/div&gt;&lt;/td&gt;                                           &lt;td class="Vline" align="right" bgcolor="#ebe7de" valign="middle" width="68"&gt;&lt;div align="center"&gt;&lt;img src="http://hosting-review.com/images/wideTEST/gauge-blue.gif" alt="Sales Index = Cool" height="36" width="57" /&gt;&lt;/div&gt;&lt;/td&gt;                                                                                                                                                                                                                       &lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-2868986286061600681?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/EObv0wBrXZeZF2tgBVDc3U4gLFc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/EObv0wBrXZeZF2tgBVDc3U4gLFc/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/EObv0wBrXZeZF2tgBVDc3U4gLFc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/EObv0wBrXZeZF2tgBVDc3U4gLFc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/nZi42gAgTAo" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/nZi42gAgTAo/web-hosting-whos-popular.html</link><author>noreply@blogger.com (Trilok Chand S)</author><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2008/10/web-hosting-whos-popular.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-4563340255793089958</guid><pubDate>Wed, 01 Oct 2008 04:32:00 +0000</pubDate><atom:updated>2008-10-01T00:35:24.896-04:00</atom:updated><title>Is your blog on Technorati? Know more about it.</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_j4No1o0__0w/SOL-Afh9_uI/AAAAAAAALes/c4TyzEYSyxM/s1600-h/technorati.gif"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://3.bp.blogspot.com/_j4No1o0__0w/SOL-Afh9_uI/AAAAAAAALes/c4TyzEYSyxM/s400/technorati.gif" alt="" id="BLOGGER_PHOTO_ID_5252039399884848866" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Technorati is an Internet search engine for searching blogs, competing with Google and Yahoo. As of June 2008, Technorati indexes 112.8 million blogs and over 250 million pieces of tagged social media. The name Technorati is a blend, pointing to the technological version of literati or intellectuals. Technorati was founded by Dave Sifry and its headquarters are in San Francisco, California.&lt;br /&gt;&lt;br /&gt;Register your blogs here and get them indexed.&lt;br /&gt;&lt;a href="http://www.technorati.com/"&gt;http://www.technorati.com&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-4563340255793089958?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/qGf7OQCpVR-aRWAJsYsnzVEjkd0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/qGf7OQCpVR-aRWAJsYsnzVEjkd0/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/qGf7OQCpVR-aRWAJsYsnzVEjkd0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/qGf7OQCpVR-aRWAJsYsnzVEjkd0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/UMHSRlP3hBs" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/UMHSRlP3hBs/is-your-blog-on-technorati-know-more.html</link><author>noreply@blogger.com (Trilok Chand S)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_j4No1o0__0w/SOL-Afh9_uI/AAAAAAAALes/c4TyzEYSyxM/s72-c/technorati.gif" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2008/10/is-your-blog-on-technorati-know-more.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-2212716293990405524</guid><pubDate>Thu, 25 Sep 2008 13:12:00 +0000</pubDate><atom:updated>2008-09-25T09:19:17.747-04:00</atom:updated><title>WWW Schools (w3schools)</title><description>I found this website very very useful for learning technologies related to world wide web.  At W3Schools you will find all the Web-building tutorials you need, from basic HTML and XHTML to advanced XML, SQL, Database, Multimedia and WAP.&lt;br /&gt;&lt;br /&gt;With the online HTML editor you can edit the examples and experiment with the code online very easily.&lt;br /&gt;&lt;br /&gt;Try it yourself &lt;a href="http://www.w3schools.com/"&gt;http://www.w3schools.com/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-2212716293990405524?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/VRc4KFqnEGrviYmzLWrgaTZxlxI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/VRc4KFqnEGrviYmzLWrgaTZxlxI/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/VRc4KFqnEGrviYmzLWrgaTZxlxI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/VRc4KFqnEGrviYmzLWrgaTZxlxI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/6We-5IlumoY" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/6We-5IlumoY/www-schools-w3schools.html</link><author>noreply@blogger.com (Trilok Chand S)</author><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2008/09/www-schools-w3schools.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-3904145136965201830</guid><pubDate>Thu, 25 Sep 2008 09:12:00 +0000</pubDate><atom:updated>2008-09-25T08:34:18.607-04:00</atom:updated><title>Web Browser History</title><description>This is a table of web browsers by year of release of major version, in chronological order, with the approximate number of users in millions.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_j4No1o0__0w/SNt7PMQCULI/AAAAAAAALWA/hIoD078uvWE/s1600-h/web+browser+history.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_j4No1o0__0w/SNt7PMQCULI/AAAAAAAALWA/hIoD078uvWE/s400/web+browser+history.JPG" alt="" id="BLOGGER_PHOTO_ID_5249925291547185330" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-3904145136965201830?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/fAVH17zLoyZ_6lsb06tTnUPEtyE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fAVH17zLoyZ_6lsb06tTnUPEtyE/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/fAVH17zLoyZ_6lsb06tTnUPEtyE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fAVH17zLoyZ_6lsb06tTnUPEtyE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/7z89GjkGTWE" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/7z89GjkGTWE/web-browser-history.html</link><author>noreply@blogger.com (Trilok Chand S)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_j4No1o0__0w/SNt7PMQCULI/AAAAAAAALWA/hIoD078uvWE/s72-c/web+browser+history.JPG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2008/09/web-browser-history.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-427936508481336996</guid><pubDate>Thu, 25 Sep 2008 07:07:00 +0000</pubDate><atom:updated>2008-09-25T03:09:45.964-04:00</atom:updated><title>Internet Explorer 8</title><description>Internet Explorer 8 public beta 2 was released August 27th 2008. &lt;p&gt;New features in IE beta 2:&lt;/p&gt; &lt;p&gt;&lt;b&gt;New Tab features&lt;/b&gt; allow you to open accidentally closed tabs, and group  related tabs together using color codes.&lt;/p&gt; &lt;p&gt;&lt;b&gt;Tab isolation&lt;/b&gt; prevents a faulty web site from crashing the whole  browser. Only the tab with the faulty page will close.&lt;/p&gt; &lt;p&gt;&lt;b&gt;InPrivate&lt;/b&gt; allow you to browse the web without saving any browsing data  like; passwords, login data, browsing history, and such.&lt;/p&gt; &lt;p&gt;&lt;b&gt;SmartScreen&lt;/b&gt; improves the phishing filter from Internet Explorer 7. It  uses a phishing address database, and also recognizes some keywords from the URL  (like PayPal in paypal.givemeallyourmoney.com)&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.microsoft.com/windows/internet-explorer/beta/default.aspx"&gt;Download&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-427936508481336996?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/tlYgzVMvdZZRNLnlxlkIG4pB8Po/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/tlYgzVMvdZZRNLnlxlkIG4pB8Po/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/tlYgzVMvdZZRNLnlxlkIG4pB8Po/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/tlYgzVMvdZZRNLnlxlkIG4pB8Po/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/u7KOf2ZknMo" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/u7KOf2ZknMo/internet-explorer-8.html</link><author>noreply@blogger.com (Trilok Chand S)</author><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2008/09/internet-explorer-8.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-5336555867636717415</guid><pubDate>Thu, 18 Sep 2008 08:27:00 +0000</pubDate><atom:updated>2008-09-18T04:47:57.760-04:00</atom:updated><title>Google's Android phone</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_j4No1o0__0w/SNISA3_c6XI/AAAAAAAALU0/AvPjtVLsjpA/s1600-h/180px-Android-logo.svg.png"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_j4No1o0__0w/SNISA3_c6XI/AAAAAAAALU0/AvPjtVLsjpA/s200/180px-Android-logo.svg.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5247276322079435122" /&gt;&lt;/a&gt;&lt;br /&gt;   Android is a software platform and operating system for mobile devices based on the Linux operating system developed by Google and later the Open Handset Alliance. It allows developers to write managed code in a Java-like language that utilizes Google-developed Java libraries.&lt;br /&gt;&lt;br /&gt;    Owners of the new Google-powered mobile phone will be able to unlock the handset by drawing a secret shape on the screen.&lt;br /&gt;&lt;br /&gt;The new 'signature unlocking' tool was among the features revealed during a sneak preview in California yesterday.&lt;br /&gt;&lt;br /&gt;Other highlights include a built-in compass that will allow people to orientate maps as they use their phone to scout out a restaurant or venue, and a customisable homepage that lets people bookmark their favourite web pages. &lt;br /&gt;&lt;br /&gt;Android Demo by Sergey Brin and Steve Horowitz &lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/1FJHYqE0RDg&amp;hl=en&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/1FJHYqE0RDg&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-5336555867636717415?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/2CmBbWaifX4_Av2zAvCD8Ldh1WI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2CmBbWaifX4_Av2zAvCD8Ldh1WI/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/2CmBbWaifX4_Av2zAvCD8Ldh1WI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2CmBbWaifX4_Av2zAvCD8Ldh1WI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/3QcQDRbidkg" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/3QcQDRbidkg/googles-android-phone.html</link><author>noreply@blogger.com (Trilok Chand S)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_j4No1o0__0w/SNISA3_c6XI/AAAAAAAALU0/AvPjtVLsjpA/s72-c/180px-Android-logo.svg.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2008/09/googles-android-phone.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-2461917155802257240</guid><pubDate>Tue, 16 Sep 2008 06:57:00 +0000</pubDate><atom:updated>2008-09-24T03:30:42.690-04:00</atom:updated><title>The True Story of Internet</title><description>Cool program about "Download:The True Story of Internet" on Discovery Channel.&lt;br /&gt;&lt;br /&gt;&lt;object height="344" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/pg4C2wayqCo&amp;amp;hl=en&amp;amp;fs=1"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;embed src="http://www.youtube.com/v/pg4C2wayqCo&amp;amp;hl=en&amp;amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" height="344" width="425"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;The other 4 parts of the program can be found below&lt;br /&gt;&lt;a href="http://www.youtube.com/watch?v=yGE61LMwaLo"&gt;http://www.youtube.com/watch?v=yGE61LMwaLo&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.youtube.com/watch?v=--mHEKXBgbI"&gt;http://www.youtube.com/watch?v=--mHEKXBgbI&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.youtube.com/watch?v=l8wi9j-TZws"&gt;http://www.youtube.com/watch?v=l8wi9j-TZws&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.youtube.com/watch?v=1Lnlc5e26Xg"&gt;http://www.youtube.com/watch?v=1Lnlc5e26Xg&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-2461917155802257240?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/94P_11J9cG6FN-_QncuKWVaQOEk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/94P_11J9cG6FN-_QncuKWVaQOEk/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/94P_11J9cG6FN-_QncuKWVaQOEk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/94P_11J9cG6FN-_QncuKWVaQOEk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/xDFgezA1K04" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/xDFgezA1K04/true-story-of-internet.html</link><author>noreply@blogger.com (Trilok Chand S)</author><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2008/09/true-story-of-internet.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-4177505182654214017</guid><pubDate>Fri, 05 Sep 2008 14:10:00 +0000</pubDate><atom:updated>2008-09-05T10:28:25.626-04:00</atom:updated><title>Popular Web Aggregators</title><description>&lt;span style="font-size:85%;"&gt;&lt;span style="font-family: arial;"&gt;Aggregators automatically check a series of RSS feeds for new items on an ongoing basis,   making it is possible to keep track of changes to multiple websites without needing to tediously   read and re-read each of the websites yourself. Subscribe to RSS feed using the below aggregators, i have been using Google Reader and iGoogle, trust me they are wonderful.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="margin-top: 0pt; margin-left: 12px; width: 464px;"&gt;        &lt;tbody&gt;&lt;tr&gt;  &lt;td&gt;&lt;label for="ry" class="checkboxLabel"&gt;&lt;img src="http://us.i1.yimg.com/us.yimg.com/i/us/my/addtomyyahoo4.gif" alt="" align="absmiddle" /&gt; &lt;span class="note"&gt;(Add your feed to &lt;a href="http://my.yahoo.com/" target="_blank"&gt;My Yahoo!&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;  &lt;/td&gt;  &lt;/tr&gt;    &lt;tr&gt;  &lt;td&gt;&lt;label for="gg" class="checkboxLabel"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" alt="Google Reader or Google Homepage" align="absmiddle" border="0" /&gt; &lt;span class="note"&gt;(Add your feed to &lt;a href="http://www.google.com/ig" target="_blank"&gt;Google Homepage&lt;/a&gt;/&lt;a href="http://www.google.com/reader" target="_blank"&gt;Google Reader&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;  &lt;/td&gt;  &lt;/tr&gt;     &lt;tr&gt;  &lt;td&gt;&lt;label for="rg" class="checkboxLabel"&gt;&lt;img src="http://www.newsgator.com/images/ngsub1.gif" alt="" align="absmiddle" border="0" /&gt; &lt;span class="note"&gt;(Add your feed to &lt;a href="http://feedburner.google.com/fb/a/chickletchooser???chicklet.gator.home???" target="_blank"&gt;Newsgator&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;  &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;  &lt;td&gt;&lt;label for="rj" class="checkboxLabel"&gt;&lt;img src="http://blog.rojo.com/RojoWideRed.gif" alt="" align="absmiddle" border="0" /&gt; &lt;span class="note"&gt;(Add your feed to &lt;a href="http://www.rojo.com/" target="_blank"&gt;Rojo&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;  &lt;/td&gt;  &lt;/tr&gt;      &lt;tr&gt;  &lt;td&gt;&lt;label for="maol" class="checkboxLabel"&gt;&lt;img src="http://favorites.my.aol.com/ffclient/webroot/0.2.1/locale/en_US/aol/images/myAOLButtonSmall.gif" align="absmiddle" /&gt; &lt;span class="note"&gt;(Add your feed to &lt;a href="http://about.aol.com/myaol" target="_blank"&gt;My AOL&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;  &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;  &lt;td&gt;&lt;label for="nv" class="checkboxLabel"&gt;&lt;img src="http://www.netvibes.com/img/add2netvibes.gif" alt="" align="absmiddle" border="0" /&gt; &lt;span class="note"&gt;(Add your feed to &lt;a href="http://www.netvibes.com/" target="_blank"&gt;Netvibes&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;  &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;  &lt;td&gt;&lt;label for="bl" class="checkboxLabel"&gt;&lt;img src="http://www.bloglines.com/images/sub_modern11.gif" alt="" align="absmiddle" border="0" /&gt; &lt;span class="note"&gt;(Add your feed to &lt;a href="http://bloglines.com/" target="_blank"&gt;Bloglines&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;  &lt;/td&gt;  &lt;/tr&gt;      &lt;tr&gt;  &lt;td&gt;&lt;label for="freedictionary" class="checkboxLabel"&gt;&lt;img src="http://img.tfd.com/hp/addToTheFreeDictionary.gif" alt="" align="absmiddle" border="0" /&gt; &lt;span class="note"&gt;(Add your feed to &lt;a href="http://www.thefreedictionary.com/" target="_blank"&gt;The Free Dictionary&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;  &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;  &lt;td&gt;&lt;label for="bitty" class="checkboxLabel"&gt;&lt;img src="http://www.bitty.com/img/bittychicklet_91x17.gif" alt="" align="absmiddle" border="0" /&gt; &lt;span class="note"&gt;(Add your feed to a &lt;a href="http://www.bitty.com/" target="_blank"&gt;Bitty Browser&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;  &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;  &lt;td&gt;&lt;label for="plusmo" class="checkboxLabel"&gt;&lt;img src="http://plusmo.com/res/graphics/fbplusmo.gif" alt="" align="absmiddle" border="0" /&gt; &lt;span class="note"&gt;(Add your feed to &lt;a href="http://www.plusmo.com/" target="_blank"&gt;Plusmo&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;  &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;  &lt;td&gt;&lt;label for="newsalloy" class="checkboxLabel"&gt;&lt;img src="http://www.newsalloy.com/subrss3.gif" alt="" align="absmiddle" border="0" /&gt; &lt;span class="note"&gt;(Add your feed to &lt;a href="http://www.newsalloy.com/" target="_blank"&gt;NewsAlloy&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;  &lt;/td&gt;  &lt;/tr&gt;    &lt;tr&gt;   &lt;td&gt;&lt;label for="excitemix" class="checkboxLabel"&gt;&lt;img src="http://image.excite.co.uk/mix/addtomix.gif" alt="add to excite mix" align="absmiddle" /&gt; &lt;span class="note"&gt;(Add your feed to &lt;a href="http://webfeeds.excite.co.uk/guide/webmaster" target="_blank"&gt;Excite MIX&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;   &lt;/td&gt;   &lt;/tr&gt;    &lt;tr&gt;   &lt;td&gt;&lt;label for="netomat" class="checkboxLabel"&gt;&lt;img src="http://www.netomat.net/blogger/images/icon_netomat_feedbutton.gif" alt="" align="absmiddle" /&gt; &lt;span class="note"&gt;(Add your feed to &lt;a href="http://netomathub.com/" target="_blank"&gt;netomat Hub&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;   &lt;/td&gt;   &lt;/tr&gt;    &lt;tr&gt;   &lt;td&gt;&lt;label for="fwicki" class="checkboxLabel"&gt;&lt;img src="http://www.fwicki.com/images/ui/fwicki_clicklet.png" alt="" align="absmiddle" /&gt; &lt;span class="note"&gt;(Add your feed to &lt;a href="http://www.fwicki.com/" target="_blank"&gt;fwicki&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;   &lt;/td&gt;   &lt;/tr&gt;    &lt;tr&gt;   &lt;td&gt;&lt;label for="flurry" class="checkboxLabel"&gt;&lt;img src="http://www.flurry.com/images/flurry_rss_logo2.gif" alt="" align="absmiddle" /&gt; &lt;span class="note"&gt;(Add your feed to &lt;a href="http://www.flurry.com/" target="_blank"&gt;flurry&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;   &lt;/td&gt;   &lt;/tr&gt;    &lt;tr&gt;   &lt;td&gt;&lt;label for="webwag" class="checkboxLabel"&gt;&lt;img src="http://www.webwag.com/images/wwgthis.gif" alt="" align="absmiddle" /&gt; &lt;span class="note"&gt;(Add your feed to &lt;a href="http://www.webwag.com/" target="_blank"&gt;Webwag&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;   &lt;/td&gt;   &lt;/tr&gt;  &lt;tr&gt;   &lt;td&gt;&lt;label class="checkboxLabel" for="attensa"&gt;&lt;img src="http://www.attensa.com/_img/attensa_feed_button.gif" alt="attensa button" align="absmiddle" /&gt;&lt;span class="note"&gt;(Add your feed to &lt;a href="http://www.attensa.com/" target="_blank"&gt;Attensa&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;   &lt;/td&gt;  &lt;/tr&gt;    &lt;tr&gt;   &lt;td&gt;&lt;label for="zaptxt" class="checkboxLabel"&gt;&lt;img src="http://zaptxt.com/images/btn_zaptxt_1.png" alt="" align="absmiddle" /&gt; &lt;span class="note"&gt;(Add your feed to &lt;a href="http://www.zaptxt.com/" target="_blank"&gt;ZapTXT&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;   &lt;/td&gt;   &lt;/tr&gt;  &lt;tr&gt;  &lt;td&gt;&lt;label for="oo" class="checkboxLabel"&gt;&lt;img src="http://odeo.com/img/badge-channel-black.gif" alt="" align="absmiddle" /&gt; &lt;span class="note"&gt;(Add your &lt;strong&gt;podcast&lt;/strong&gt; feed to &lt;a href="http://odeo.com/" target="_blank"&gt;ODEO&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;  &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;  &lt;td&gt;&lt;label for="pv" class="checkboxLabel"&gt;&lt;img src="http://www.podnova.com/img_chicklet_podnova.gif" alt="" align="absmiddle" /&gt; &lt;span class="note"&gt;(Add your &lt;strong&gt;podcast&lt;/strong&gt; feed to &lt;a href="http://www.podnova.com/" target="_blank"&gt;podnova&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;  &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;  &lt;td&gt;&lt;label for="pcr" class="checkboxLabel"&gt;&lt;img src="http://www.podcastready.com/images/podcastready_button.gif" alt="" align="absmiddle" /&gt; &lt;span class="note"&gt;(Add your &lt;strong&gt;podcast&lt;/strong&gt; feed to &lt;a href="http://www.podcastready.com/" target="_blank"&gt;Podcast Ready&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;  &lt;/td&gt;  &lt;/tr&gt;    &lt;tr&gt;   &lt;td&gt;&lt;label for="pageflakes" class="checkboxLabel"&gt;&lt;img src="http://www.pageflakes.com/ImageFile.ashx?instanceId=Static_4&amp;amp;fileName=ATP_blu_91x17.gif" alt="" align="absmiddle" /&gt; &lt;span class="note"&gt;(Add your &lt;strong&gt;podcast&lt;/strong&gt; feed to &lt;a href="http://www.pageflakes.com/" target="_blank"&gt;Pageflakes&lt;/a&gt;)&lt;/span&gt;&lt;/label&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-4177505182654214017?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/D0DlQPbWc2GaXy8m2KrhTN1wfog/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/D0DlQPbWc2GaXy8m2KrhTN1wfog/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/D0DlQPbWc2GaXy8m2KrhTN1wfog/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/D0DlQPbWc2GaXy8m2KrhTN1wfog/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/iQakF-ZWx24" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/iQakF-ZWx24/popular-web-aggregators.html</link><author>noreply@blogger.com (Trilok Chand S)</author><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2008/09/popular-web-aggregators.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-1663087275667229437</guid><pubDate>Thu, 04 Sep 2008 04:45:00 +0000</pubDate><atom:updated>2008-09-24T03:31:10.104-04:00</atom:updated><title>Google released 'Chrome' browser on Windows</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_j4No1o0__0w/SL9r8bwEr-I/AAAAAAAAIpQ/Pq8woI7q-Ac/s1600-h/chrome-205_noshadow.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://3.bp.blogspot.com/_j4No1o0__0w/SL9r8bwEr-I/AAAAAAAAIpQ/Pq8woI7q-Ac/s200/chrome-205_noshadow.png" alt="" id="BLOGGER_PHOTO_ID_5242027177268260834" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Google Chrome is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. Following are some new features&lt;br /&gt;1. Address Bar - Web search. Web history. Address bar. Suggestions as you type. One unified box serves all your browsing needs&lt;br /&gt;2. New Tab page - Every time you open a new tab, you'll see a visual sampling of your most visited sites, most used search engines, and recently bookmarked pages and closed tabs.&lt;br /&gt;3. Application Shortcuts - Use web apps without opening your browser. Application shortcuts can directly load your favorite online apps.&lt;br /&gt;4. Dynamic Tabs - You can drag tabs out of the browser to create new windows, gather multiple tabs into one window or arrange your tabs however you wish -- quickly and easily.&lt;br /&gt;5. Crash Control - Every tab you're using is run independently in the browser, so if one app crashes it won't take anything else down&lt;br /&gt;6. Incognito Mode - Don't want pages you visit to show up in your web history? Choose incognito mode for private browsing&lt;br /&gt;7. Safe Browsing - Google Chrome warns you if you're about to visit a suspected phishing, malware or otherwise unsafe website.&lt;br /&gt;8. Instant Bookmarks - Want to bookmark a web page? Just click the star icon at the left edge of the address bar and you're done.&lt;br /&gt;9. Import Settings - When you switch to Google Chrome, you can pick up where you left off with all the bookmarks and passwords from your existing browser.&lt;br /&gt;10. Simpler Downloads - No intrusive download manager; you see your download's status at the bottom of your current window.&lt;br /&gt;&lt;br /&gt;Install the Beta version&lt;br /&gt;&lt;a href="http://www.google.com/chrome"&gt;http://www.google.com/chrome&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-1663087275667229437?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/2SNOraaVv8FlGjpEDM9e2AnoM-8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2SNOraaVv8FlGjpEDM9e2AnoM-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/2SNOraaVv8FlGjpEDM9e2AnoM-8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2SNOraaVv8FlGjpEDM9e2AnoM-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/s3lokchand/web/~4/gmnCg9sqkIQ" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/gmnCg9sqkIQ/google-released-chrome-browser-on.html</link><author>noreply@blogger.com (Trilok Chand S)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_j4No1o0__0w/SL9r8bwEr-I/AAAAAAAAIpQ/Pq8woI7q-Ac/s72-c/chrome-205_noshadow.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2008/09/google-released-chrome-browser-on.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-139412947344654381</guid><pubDate>Fri, 25 Jul 2008 06:41:00 +0000</pubDate><atom:updated>2008-09-24T03:31:44.930-04:00</atom:updated><title>Dodgeball - Mobile Social Software</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_j4No1o0__0w/SIl3t0_6_TI/AAAAAAAAIPg/SC5Nu73NNtw/s1600-h/dodgeball.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp0.blogger.com/_j4No1o0__0w/SIl3t0_6_TI/AAAAAAAAIPg/SC5Nu73NNtw/s200/dodgeball.jpg" alt="" id="BLOGGER_PHOTO_ID_5226840471744740658" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Its a mobile social software available in several cities in the United States.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;What does it do? Here is an example &lt;/b&gt;&lt;br /&gt;The idea is simple: tell them where you are and they will tell you who and what is around you.&lt;br /&gt;&lt;br /&gt;We'll ping your friends with your whereabouts, let you know when friends-of-friends are within 10 blocks, allow you to broadcast content to anyone within 10 blocks of you or blast messages to your groups of friends.&lt;br /&gt;&lt;br /&gt;For example, you're having drinks at Ace Bar. Send a text message to 36343 ("dodge") with the message "@Ace Bar" and we'll send out a text message telling all your friends where you are AND send you back a message letting you know if any friends-of-friends are within 10 blocks. If you have a camera phone, we'll even send you their picture.&lt;br /&gt;&lt;br /&gt;Visit &lt;a href="http://www.dodgeball.com"&gt;http://www.dodgeball.com &lt;/a&gt;and find your friends and friends of friends. You can find me in NY city :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-139412947344654381?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/5FFe_byARBktL45SPlyJAmngINQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5FFe_byARBktL45SPlyJAmngINQ/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/5FFe_byARBktL45SPlyJAmngINQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5FFe_byARBktL45SPlyJAmngINQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/0lVInsb_TLQ" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/0lVInsb_TLQ/dodgeball-mobile-social-software.html</link><author>noreply@blogger.com (Trilok Chand S)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://bp0.blogger.com/_j4No1o0__0w/SIl3t0_6_TI/AAAAAAAAIPg/SC5Nu73NNtw/s72-c/dodgeball.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2008/07/dodgeball-mobile-social-software.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-7396887394037557871</guid><pubDate>Fri, 25 Jul 2008 05:34:00 +0000</pubDate><atom:updated>2008-10-01T00:42:24.499-04:00</atom:updated><title>List of Bookmark and sharing services</title><description>I have tried Delicious, Google Bookmarks and found them very good. As these bookmarks are on web you can access them from any where in the world. Delicious lists the top and most popular bookmarks in the internet and you can also have RSS feeds to your favorite bookmarks.&lt;br /&gt;Try it by registering at &lt;a href="http://www.delicious.com/"&gt;http://www.delicious.com/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Below are the list of bookmarking and services available on web.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_j4No1o0__0w/SIlmKz9fmsI/AAAAAAAAIPY/tUqF1Sxs4JE/s1600-h/services+bookmark.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 215px; height: 236px;" src="http://bp1.blogger.com/_j4No1o0__0w/SIlmKz9fmsI/AAAAAAAAIPY/tUqF1Sxs4JE/s200/services+bookmark.JPG" alt="" id="BLOGGER_PHOTO_ID_5226821178473028290" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-7396887394037557871?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/1VEHLZxsDg1YeEMo5jjpTLPkXjA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/1VEHLZxsDg1YeEMo5jjpTLPkXjA/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/1VEHLZxsDg1YeEMo5jjpTLPkXjA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/1VEHLZxsDg1YeEMo5jjpTLPkXjA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/qJXuH555Jj0" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/qJXuH555Jj0/list-of-bookmark-and-sharing-services.html</link><author>noreply@blogger.com (Trilok Chand S)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://bp1.blogger.com/_j4No1o0__0w/SIlmKz9fmsI/AAAAAAAAIPY/tUqF1Sxs4JE/s72-c/services+bookmark.JPG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2008/07/list-of-bookmark-and-sharing-services.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-4532642184086926233</guid><pubDate>Thu, 24 Jul 2008 11:40:00 +0000</pubDate><atom:updated>2008-10-01T00:44:42.943-04:00</atom:updated><title>Digg It</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_j4No1o0__0w/SOMALUOypZI/AAAAAAAALe0/FlVJt0UhRAk/s1600-h/digg.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://1.bp.blogspot.com/_j4No1o0__0w/SOMALUOypZI/AAAAAAAALe0/FlVJt0UhRAk/s400/digg.jpg" alt="" id="BLOGGER_PHOTO_ID_5252041784853439890" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Digg is a place for people to discover and share content across the web, from the biggest online destinations to the most obscure blog. Digg surfaces the best stuff as voted on by digg users.&lt;br /&gt;&lt;br /&gt;How do we do this? Everything on Digg — from news to videos to images to Podcasts — is submitted by our community (that would be you). Once something is submitted, other people see it and Digg what they like best. If your submission rocks and receives enough Diggs, it is promoted to the front page for the millions of our visitors to see.&lt;br /&gt;&lt;br /&gt;Click here to see my submissions to digg&lt;br /&gt;&lt;a href="http://digg.com/users/s3lokchand"&gt;http://digg.com/users/s3lokchand&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-4532642184086926233?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/nOvmigT7m1NsWP5cGpTkE7GX6oI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/nOvmigT7m1NsWP5cGpTkE7GX6oI/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/nOvmigT7m1NsWP5cGpTkE7GX6oI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/nOvmigT7m1NsWP5cGpTkE7GX6oI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/48Tmm7vrKRQ" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/48Tmm7vrKRQ/whats-digg.html</link><author>noreply@blogger.com (Trilok Chand S)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_j4No1o0__0w/SOMALUOypZI/AAAAAAAALe0/FlVJt0UhRAk/s72-c/digg.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2008/07/whats-digg.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-5788069129983974443</guid><pubDate>Thu, 24 Jul 2008 11:17:00 +0000</pubDate><atom:updated>2008-09-24T03:32:47.637-04:00</atom:updated><title>Did you hear Scour?</title><description>It is the next gen search engine with Google/Yahoo/MSN results and user comments all on one page. Best of all we get paid for using it by earning points with every search, comment and vote. The points are redeemable for Visa gift cards! It's like earning credit card or airline points just for searching! Hit the link below to join for free and we will both get points!&lt;br /&gt;&lt;br /&gt;&lt;a href="http://scour.com/invite/sureshjawaji/" target="_blank"&gt;http://scour.com/invite/&lt;wbr&gt;s3lokchand&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Its launched on 14th July 08 and you can find their official blog at&lt;br /&gt;&lt;a href="http://blog.scour.com/"&gt;http://blog.scour.com/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Click on the below video to know how to use it&lt;br /&gt;&lt;object height="344" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/kWBI7F_bMQk&amp;amp;hl=en&amp;amp;fs=1"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;embed src="http://www.youtube.com/v/kWBI7F_bMQk&amp;amp;hl=en&amp;amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" height="344" width="425"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-5788069129983974443?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/4Pi3tSjawYJtw3645UDPx3smLsQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/4Pi3tSjawYJtw3645UDPx3smLsQ/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/4Pi3tSjawYJtw3645UDPx3smLsQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/4Pi3tSjawYJtw3645UDPx3smLsQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/UwNCno4e4_Q" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/UwNCno4e4_Q/did-you-hear-scour.html</link><author>noreply@blogger.com (Trilok Chand S)</author><thr:total>1</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2008/07/did-you-hear-scour.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5354723093732968818.post-848836067923658310</guid><pubDate>Thu, 17 Jul 2008 08:24:00 +0000</pubDate><atom:updated>2008-09-24T03:34:56.216-04:00</atom:updated><title>List of Open Social sites</title><description>Get connected to you friends and colleagues using these open social networking sites.&lt;br /&gt;I have already registered with few of them...&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.Engage.com/"&gt;http://www.Engage.com/&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.friendster.com/"&gt;http://www.friendster.com/ &lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.hi5.com/"&gt;http://www.hi5.com/&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.hyves.net/"&gt;http://www.hyves.net/&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.imeem.com/"&gt;http://www.imeem.com/&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.LinkedIn.com/"&gt;http://www.LinkedIn.com/&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.MySpace.com/"&gt;http://www.MySpace.com/&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.ning.com/"&gt;http://www.ning.com/&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.orkut.com/"&gt;http://www.orkut.com/&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.plaxo.com/"&gt;http://www.plaxo.com/&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.sixapart.com/"&gt;http://www.sixapart.com/&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.tianji.com/"&gt;http://www.tianji.com/&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.viadeo.com/"&gt;http://www.viadeo.com/&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.xing.com/"&gt;http://www.xing.com/&lt;/a&gt;&lt;br /&gt;&lt;a href="http://en.netlog.com/"&gt;http://en.netlog.com/&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.cityin.com/"&gt;http://www.cityin.com/&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.oracle.net/"&gt;http://www.oracle.net/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If there are additional open social networking sites please write a comment with those details.&lt;br /&gt;&lt;br /&gt;Trilok&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5354723093732968818-848836067923658310?l=trilok-web.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/uId1b6Xwz2q4UZgAZnE4JPAAg1s/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/uId1b6Xwz2q4UZgAZnE4JPAAg1s/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/uId1b6Xwz2q4UZgAZnE4JPAAg1s/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/uId1b6Xwz2q4UZgAZnE4JPAAg1s/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/s3lokchand/web/~4/fdPu0fFua9s" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/s3lokchand/web/~3/fdPu0fFua9s/list-of-open-social-sites.html</link><author>noreply@blogger.com (Trilok Chand S)</author><thr:total>0</thr:total><feedburner:origLink>http://trilok-web.blogspot.com/2008/07/list-of-open-social-sites.html</feedburner:origLink></item></channel></rss>

