<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="https://www.kiranjholla.com"  xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Kiran&#039;s blog</title>
 <link>https://www.kiranjholla.com/myblog</link>
 <description></description>
 <language>en</language>
<item>
 <title>Install Bugzilla on Shared Hosting</title>
 <link>https://www.kiranjholla.com/myblog/2013/08/install-bugzilla-on-shared-hosting.html</link>
 <description>&lt;style&gt;
div.geshifilter {
    padding: 1px 2px 1px 2px;
    margin-bottom: 1.5em;
    margin-right: 20px;
}
.perl, .php, .bash {
    margin: 4px;
    background: #f4f5f6;
    border: 1px dotted #aab4be;
    overflow: auto;
    font-size: 110%;
    white-space: nowrap;
}
.snippet {
    margin: 2px 20px 20px 2px;
    padding: 10px;
    border: 1px solid #ccc;
    background: #ffffff;
    overflow: auto;
    font-family: Calibri;
    white-space: nowrap;
}
.error-msg {
    margin: 2px 20px 20px 2px;
    padding: 10px;
    border: 1px solid #ccc;
    background: #f4f5f6;
    overflow: auto;
    font-family: monospace;
    font-size: 110%;
    white-space: nowrap;
}
code { 
    background: #f2f2f2;
    font-family: monospace;
    font-size: 110%;
    margin: 1px;
}
&lt;/style&gt;&lt;div id=&quot;install-bz-on-shared-hosting&quot; style=&quot;text-align:justify; margin: 0 5px 0&quot;&gt;
&lt;p&gt;Though I work with an IT major, my time at work is mostly spent on Microsoft Outlook and Excel and rarely do I get to get my hands dirty with actual code. Hence, as a hobby, I spend time building some applications in my spare time and that helps me keep in touch with coding.&lt;/p&gt;
&lt;p&gt;I recently embarked upon a project to build a Drupal module of sizeable proportions. As I worked on it, I soon found that ideas were flowing and bugs were being discovered faster than I could keep track of them. I realized that if I was to do any serious &amp;mdash; even if informal &amp;mdash; development, a Project Management/Bug Management software was essential.&lt;/p&gt;
&lt;p&gt;Having heard quite a bit about Bugzilla, I set out to install an instance for my own personal use. As it turns out getting Bugzilla working is not for the faint of heart.&lt;/p&gt;
&lt;p&gt;The initial steps to setup Bugzilla are the same as those documented in the &lt;a href=&quot;http://www.bugzilla.org/docs/4.4/en/html/installation.html&quot; target=&quot;_blank&quot;&gt;Bugzilla Documentation&lt;/a&gt;. However, here are some aspects of the installation that finally got Bugzilla working on my Shared hosting account:
&lt;/div&gt;
&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2013/08/install-bugzilla-on-shared-hosting.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/bugzilla">Bugzilla</category>
 <category domain="https://www.kiranjholla.com/tag/development">Development</category>
 <category domain="https://www.kiranjholla.com/tag/internet">Internet</category>
 <category domain="https://www.kiranjholla.com/tag/technology">Technology</category>
 <category domain="https://www.kiranjholla.com/tag/tips">Tips</category>
 <pubDate>Thu, 15 Aug 2013 15:54:32 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">69 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Ajax-paged tables with graceful degradation in Drupal 7</title>
 <link>https://www.kiranjholla.com/myblog/2013/07/ajax-paged-tables-with-graceful-degradation-in-drupal-7.html</link>
 <description>&lt;style&gt;
div.geshifilter {
    padding: 1px 2px 1px 2px;
    margin-bottom: 1.5em;
}
.php, .javascript, .drupal6 {
    margin: 2px 0px 2px 0px;
    padding: 10px 10px 10px 10px;
    border: 1px dotted #aab4be;
    border-left: 20px solid #b4b4b4;
    background: #f4f5f6;
    overflow: auto;
    font-size: 110%;
    white-space: nowrap;
    height: 500px;
}
code { background: #f2f2f2; font-family: monospace; font-size: 110%; margin: 1px; }
&lt;/style&gt;&lt;div id=&quot;ajax-pager-for-drupal&quot; style=&quot;text-align:justify; margin: 0 5px 0&quot;&gt;
I was recently developing a Drupal module that required having multiple tables on the same page. No issues right? Wrong! As soon as I put multiple tables with pagers on the same page, I found that the pagers on the tables just stopped working.&lt;/p&gt;
&lt;p&gt;Flummoxed, I started searching for a solution and finally stumbled upon &lt;a href=&quot;http://www.rahulsingla.com/blog/2011/05/ajax-sorted-and-paged-tables-in-drupal-7&quot; target=&quot;_blank&quot;&gt;Rahul Singla&#039;s blog explaining how to implement table pagers using ajax&lt;/a&gt;. However, Rahul&#039;s script did not handle graceful degradation, which was important for me. Hence, using Rahul&#039;s approach &amp;amp; script as a starting-point template and reading up a bit more about the PagerDefault and TableSort query extenders in Drupal, this is what I came up with:
&lt;/div&gt;
&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2013/07/ajax-paged-tables-with-graceful-degradation-in-drupal-7.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/ajax">Ajax</category>
 <category domain="https://www.kiranjholla.com/tag/development">Development</category>
 <category domain="https://www.kiranjholla.com/tag/drupal">Drupal</category>
 <category domain="https://www.kiranjholla.com/tag/technology">Technology</category>
 <category domain="https://www.kiranjholla.com/tag/tips">Tips</category>
 <pubDate>Wed, 24 Jul 2013 14:09:28 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">66 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Default to DuckDuckGo!</title>
 <link>https://www.kiranjholla.com/myblog/2013/06/default-to-duckduckgo.html</link>
 <description>&lt;div id=&quot;duck-duck-go&quot; style=&quot;text-align:justify; margin: 0 5px 0&quot;&gt;
&lt;p&gt;There are many advantages of not using Google as your primary search engine. Escaping incessant tracking across the Internet is just one such benefit. With the recent brouhaha about NSA tracking almost all of us via the PRISM program, it may be a good idea to do with less tracking around the Internet. A search engine we should all consider using instead of Google, is &lt;a href=&quot;https://duckduckgo.com/&quot; target=&quot;_blank&quot;&gt;DuckDuckGo&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The USP of DuckDuckGo is that they don&#039;t store identifiable information about you along with the searches that you perform. Hence, even if the US Government wanted them to share data, they wouldn&#039;t have it! Yes, there is a compromise: they cannot provide you with the kind of personalized search results that Google can. However, for most generic searches, they&#039;ll do just fine.&lt;/p&gt;
&lt;p&gt;I have personally been using DuckDuckGo for over an year now and the search results are just as great, if not better, than those that are returned by Google.&lt;/p&gt;
&lt;p&gt;Most of us don&#039;t explicitly visit Search sites &amp;mdash; search engines, these days, are usually integrated right into our browsers in the form of the search bar or the &quot;Awesome Bar&quot;.&lt;/p&gt;
&lt;p&gt;Here are a few easy steps that you can use to setup DuckDuckGo as your default search engine across all your browsers.&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2013/06/default-to-duckduckgo.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/duckduckgo">DuckDuckGo</category>
 <category domain="https://www.kiranjholla.com/tag/google">Google</category>
 <category domain="https://www.kiranjholla.com/tag/internet">Internet</category>
 <category domain="https://www.kiranjholla.com/tag/privacy">Privacy</category>
 <category domain="https://www.kiranjholla.com/tag/search">Search</category>
 <category domain="https://www.kiranjholla.com/tag/technology">Technology</category>
 <category domain="https://www.kiranjholla.com/tag/tips">Tips</category>
 <pubDate>Sun, 23 Jun 2013 15:09:20 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">68 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Mind reading with Google Glass!</title>
 <link>https://www.kiranjholla.com/myblog/2013/06/mind-reading-with-google-glass.html</link>
 <description>&lt;div id=&quot;mind-reading-with-google-glass&quot; style=&quot;text-align:justify; margin:0 5px 0&quot;&gt;
&lt;p&gt;Google Glass is in the news these days with everyone either raving about how cool it is or about how idiotic it makes the wearer look. There is even a new term to describe anyone wearing a Google Glass: they are called &quot;&lt;i&gt;Glassholes&lt;/i&gt;&quot;! &lt;/p&gt;
&lt;div id=&quot;glass-experience&quot; style=&quot;float: left; margin: 5px 10px 0px 0px; width: 400px&quot;&gt;
&lt;div id=&quot;glass-image&quot;&gt;
      &lt;img alt=&quot;Is this going to be the view from Google Glass?&quot; src=&quot;/sites/all/content/blogs/mind-reading-with-google-glass/download.jpg&quot; width=&quot;380px&quot; /&gt;
   &lt;/div&gt;
&lt;div id=&quot;glass-message&quot; style=&quot;text-align:left; font-size:85%; font-weight:bold&quot;&gt;Image source: Twitter stream of @&lt;a href=&quot;https://twitter.com/57UN&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;57UN&lt;/a&gt;
   &lt;/div&gt;
&lt;div style=&quot;background-color: #f6f6f6; margin: 10px 20px 10px 0px; padding: 20px&quot;&gt;
      &lt;i&gt;&lt;b&gt;Update (02-Oct-2013): &lt;/b&gt;The link to the tweet, from which I originally got this image, just results in a &quot;Page not found&quot; error on the Twitter website. It appears that @&lt;a href=&quot;https://twitter.com/57UN&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;57UN&lt;/a&gt;&#039;s twitter account has either been deleted or has been compromised. However, I was able to obtain a version of the above image off of Google cache and have now put it up on this page directly.&lt;/i&gt;
   &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Jokes aside however, Google Glass provides serious indications for the future of &lt;a href=&quot;http://en.wikipedia.org/wiki/Augmented_reality&quot; target=&quot;_blank&quot;&gt;augmented reality&lt;/a&gt; as well as Google&#039;s ambitions in that future. While Google Glass is still nascent technology with only a few niche early adopters using it today, the day can&#039;t be far where this technology is as all-pervasive as the Android phone is today.&lt;/p&gt;
&lt;p&gt;I did not really pay much attention to Google Glass until I saw a &lt;a href=&quot;https://twitter.com/57UN/status/336167565929897984&quot; target=&quot;_blank&quot;&gt;tweet&lt;/a&gt; in my Twitter timeline recently with this picture. This picture, though a joke, does make me wonder whether the future will indeed be something similar.&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2013/06/mind-reading-with-google-glass.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/google">Google</category>
 <category domain="https://www.kiranjholla.com/tag/google-glass">Google Glass</category>
 <category domain="https://www.kiranjholla.com/tag/musings">Musings</category>
 <category domain="https://www.kiranjholla.com/tag/privacy">Privacy</category>
 <category domain="https://www.kiranjholla.com/tag/technology">Technology</category>
 <pubDate>Sun, 02 Jun 2013 16:47:39 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">67 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Voting based on issues</title>
 <link>https://www.kiranjholla.com/myblog/2013/05/voting-based-on-issues.html</link>
 <description>&lt;div id=&quot;voting-on-issues&quot; style=&quot;text-align:justify; margin:0 5px 0&quot;&gt;
&lt;p&gt;We recently came off an election in Karnataka and I watched with interest the proceedings and the result. The BJP successfully lost the only South Indian state that ever gave it a mandate and the Congress roared back to power.&lt;/p&gt;
&lt;p&gt;While the new CM, Siddaramaiah, seems to have taken a different approach to governance than the first CM from the previous ruling party &amp;mdash; atleast his first actions were something to do with governance and not a pilgrimage &amp;mdash; only time will tell how effective the governance will be! &lt;/p&gt;
&lt;p&gt;However, I can&#039;t stop thinking that we, the Indian voters, are taken too much for granted. And rightly so I regret to say. One look at the after-election analyses and you will see that the analyses are all about how the Lingayat vote was split thanks to a certain corrupt politician; not about governance, or the lack thereof. Every one of the commentators stressed on how the votes had gone based on caste. How losing certain members of the BJP had cost the party dearly in terms of votes from certain castes.&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2013/05/voting-based-on-issues.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/election">Election</category>
 <category domain="https://www.kiranjholla.com/tag/india">India</category>
 <category domain="https://www.kiranjholla.com/tag/karnataka">Karnataka</category>
 <category domain="https://www.kiranjholla.com/tag/musings">Musings</category>
 <category domain="https://www.kiranjholla.com/tag/society">Society</category>
 <pubDate>Sun, 19 May 2013 16:06:03 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">64 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Do yourself a favor and use Password Safe</title>
 <link>https://www.kiranjholla.com/myblog/2012/12/do-yourself-a-favor-and-use-password-safe.html</link>
 <description>&lt;div id=&quot;use-password-safe&quot; style=&quot;text-align:justify; margin:0 5px 0&quot;&gt;
&lt;p&gt;We live a large part of our lives online these days. The services that we use carry sensitive and personal, data on their servers - data, which, if lost or compromised, can cause us a whole lot of worry.&lt;/p&gt;
&lt;p&gt;We use passwords to protect that data. Many users have had their data compromised due to weak passwords and then have a hard time getting their lives back on track. I have seen many of my friends &amp;amp; family suffering such data compromises and the resulting embarrassment and even financial loss.&lt;/p&gt;
&lt;p&gt;Experts reiterate a three-point security rule to ensure that loss due to a single compromised password is minimized:
&lt;ol&gt;
&lt;li&gt;Have a unique password for every website - i.e. use a different password for every online account&lt;/li&gt;
&lt;li&gt;Make your passwords a combination of random alphabets, digits and special characters&lt;/li&gt;
&lt;li&gt;Don&#039;t write down or share your passwords with anyone&lt;/li&gt;
&lt;/ol&gt;
&lt;/p&gt;&lt;p&gt;Those rules are all good and truly help us stay safe. However, users still choose weak passwords, reuse passwords across sites or keep a written record of their passwords in some diary or piece of paper somewhere. Why?&lt;/p&gt;
&lt;p&gt;The reason obviously is that those rules are to too damn hard to live by. I was personally guilty of reusing passwords across sites; that was before I started using Password Safe.&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2012/12/do-yourself-a-favor-and-use-password-safe.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/internet">Internet</category>
 <category domain="https://www.kiranjholla.com/tag/password-safe">Password Safe</category>
 <category domain="https://www.kiranjholla.com/tag/security">Security</category>
 <category domain="https://www.kiranjholla.com/tag/technology">Technology</category>
 <category domain="https://www.kiranjholla.com/tag/tips">Tips</category>
 <pubDate>Sat, 01 Dec 2012 16:32:09 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">62 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Automatically backup your website to Dropbox</title>
 <link>https://www.kiranjholla.com/myblog/2012/11/automatically-backup-your-website-to-dropbox.html</link>
 <description>&lt;style&gt;
div.geshifilter {
    font-size: 110%;
    white-space: nowrap;
    padding: 1px 2px 1px 2px;
    margin-bottom: 1.5em;
}
.php {
    overflow: auto;
    margin: 4px;
}
.bash {
    overflow: auto;
    border: 1px dotted #aab4be;
    border-left: 20px solid #b4b4b4;
    background: #f4f5f6;
    height: 600px;
}

.size_code_frame { height: 600px; }
.size_command_frame { height: 30px; }
&lt;/style&gt;&lt;div id=&quot;auto-backup-website-to-dropbox&quot; style=&quot;text-align:justify; margin:0 5px 0&quot;&gt;
&lt;p&gt;Until recently I have been periodically taking manual backups of the content on my website. However given that life has been extremely busy in recent times, I have often missed my backup schedule. That I had to login onto my CPanel to take the backups, then manually download them - all time consuming activities - did not help. I kept deferring my backups reasoning to myself that I hadn&#039;t made any recent updates in any case.&lt;/p&gt;
&lt;p&gt;One day however, I found that some comments that had been left on my blogs were missing. I tried to investigate but couldn&#039;t figure out what had happened. I then encountered some missing files - again without explanation. Then my website just rolled over and died! Every time I got unsatisfactory explanations from my webhost: a planned server migraton had been cancelled; they had performed some security updates at the server level; etc. All the time they assured me that my content should be intact - well, I felt different.&lt;/p&gt;
&lt;p&gt;That was when I decided that an Automated Backup solution was a necessity. I needed something that had minimal necessity of manual intervention.
&lt;/div&gt;
&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2012/11/automatically-backup-your-website-to-dropbox.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/backup">Backup</category>
 <category domain="https://www.kiranjholla.com/tag/internet">Internet</category>
 <category domain="https://www.kiranjholla.com/tag/technology">Technology</category>
 <category domain="https://www.kiranjholla.com/tag/tips">Tips</category>
 <pubDate>Sun, 25 Nov 2012 18:15:26 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">61 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Is honesty really the best policy?</title>
 <link>https://www.kiranjholla.com/myblog/2012/03/is-honesty-really-the-best-policy.html</link>
 <description>&lt;div id=&quot;is-honesty-best&quot; style=&quot;text-align:justify; margin:0 5px 0&quot;&gt;
&lt;p&gt;Back in 1991, on my 9th grade school trip, we had an incentive to look forward to. We were all going to be allowed access to some money to buy stuff of our choice from the shops during one of our breaks. For a 14 year old who did not normally get access to cash, this was a big deal. That opportunity - to handle cash, bargain with shopkeepers and buy stuff of our choice - was something that each one of the about 100 students in my batch looked forward to.&lt;/p&gt;
&lt;p&gt;As it so happened, some of the boys in our group decided to step out of line and as a method of disciplining them, the teachers accompanying us decided to withhold that shopping privilege from them. Not to be out-done, they soon got in touch with their friends with requests to buy stuff on their behalf. I too got one such request from one such defaulter. Hoping to be of some help to my friend, I agreed.&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2012/03/is-honesty-really-the-best-policy.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/ethics">Ethics</category>
 <category domain="https://www.kiranjholla.com/tag/india">India</category>
 <category domain="https://www.kiranjholla.com/tag/lifestyle">Lifestyle</category>
 <category domain="https://www.kiranjholla.com/tag/musings">Musings</category>
 <pubDate>Sun, 04 Mar 2012 11:31:56 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">59 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>An approach to creating Google+ circles</title>
 <link>https://www.kiranjholla.com/myblog/2011/08/an-approach-to-creating-google-plus-circles.html</link>
 <description>&lt;div id=&quot;google-plus-circles&quot; style=&quot;text-align:justify; margin:0 5px 0&quot;&gt;
&lt;p&gt;Ever since Google came up with their latest challenge to Facebook in the form of Google+, there has been quite a lot of buzz about this new Social Networking platform.&lt;/p&gt;
&lt;p&gt;Having been a person who wasn&#039;t too kind to Facebook, Google+ had the two qualities that made me decide to try it out:&lt;/p&gt;
&lt;div id=&quot;google-plus-circles-container1&quot;&gt;
&lt;div id=&quot;google-plus-circles-left-space1&quot; style=&quot;width: 3%; float: left;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div id=&quot;google-plus-circles-content1&quot; style=&quot;width: 94%; float: left;&quot;&gt;
&lt;ol&gt;
&lt;li&gt;An ability to control your data; Google call this &lt;i&gt;Data Liberation&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;An ability to control what you share and with whom; Google call this &lt;i&gt;Circles&lt;/i&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Google&#039;s &lt;i&gt;Circles&lt;/i&gt; feature has generated a lot of buzz as well as confusion. While Google has started off each one of us with a few suggestions for the circles we can organize our contacts into, I have seen numerous other websites also providing their own insights.&lt;/p&gt;
&lt;p&gt;I thought, why not share my own insights as well! So here goes…&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2011/08/an-approach-to-creating-google-plus-circles.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/google">Google</category>
 <category domain="https://www.kiranjholla.com/tag/google-plus">Google+</category>
 <category domain="https://www.kiranjholla.com/tag/humor">Humor</category>
 <category domain="https://www.kiranjholla.com/tag/musings">Musings</category>
 <pubDate>Tue, 02 Aug 2011 18:12:10 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">58 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Android: To root or not to root</title>
 <link>https://www.kiranjholla.com/myblog/2011/07/android-to-root-or-not-to-root.html</link>
 <description>&lt;div id=&quot;root-or-not-content&quot; style=&quot;text-align:justify; margin:0 5px 0&quot;&gt;
&lt;p&gt;I have been asked many times by many people: &quot;What is root and what is the advantage of having it on my phone?&quot;. I could reply by the standard answer that we so often come across on Android forums, that if you don&#039;t know what root is you probably don&#039;t need it. However, I personally find that response a bit offending &amp;mdash; how is anyone supposed to learn new things if everyone who knows is unwilling to clearly explain?&lt;/p&gt;
&lt;p&gt;Though I don&#039;t claim to be an expert, but my experiences in the past year with Android has taught me enough to understand what the pros and cons are with rooting an Android device.&lt;/p&gt;
&lt;p&gt;Here, I explain the few points that you may want to consider before you decide to root your Android phone.&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2011/07/android-to-root-or-not-to-root.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/android">Android</category>
 <category domain="https://www.kiranjholla.com/tag/gadgets">Gadgets</category>
 <category domain="https://www.kiranjholla.com/tag/technology">Technology</category>
 <category domain="https://www.kiranjholla.com/tag/tips">Tips</category>
 <pubDate>Sun, 03 Jul 2011 11:05:58 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">57 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Tiger! Tiger!</title>
 <link>https://www.kiranjholla.com/myblog/2011/06/tiger-tiger.html</link>
 <description>&lt;div id=&quot;tiger-tiger&quot; style=&quot;text-align:justify; margin:0 5px 0&quot;&gt;
&lt;p&gt;As we drove through the Bandipur Forest in the safari jeep, the mood was getting increasingly desperate. We hadn&#039;t sighted a thing! On the safari the previous day, a lady in the seat behind me had been yapping off as though there was going to be no tomorrow and whatever chances we had had of sighting any wildlife, diminished with her high-pitch, high-volume voice regularly piercing through the forest. We pinned our exasperation on her and requested a more private safari for our next day.&lt;/p&gt;
&lt;p&gt;Today we were on our own and yet, things had gone from bad to worse. Even with the lady&#039;s continuous commentary, we had managed to see a family of elephants yesterday. Today we hadn&#039;t even seen a langur! It was like the light rain had driven every animal into some secret hiding spot deep within the jungle.&lt;/p&gt;
&lt;p&gt;At each fork on our trail through the forest, with each turn we took, I found myself wondering &quot;Are we taking the wrong turn? What if there is an animal just beyond the line-of-sight on the path we aren&#039;t taking?&quot; Turn after turn we saw only wet trees and muddy puddles.&lt;/p&gt;
&lt;p&gt;After having fruitlessly driven through the forest for more than an hour and a half we had all but given up hope of seeing any wildlife. It was then that our luck changed.&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2011/06/tiger-tiger.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/india">India</category>
 <category domain="https://www.kiranjholla.com/tag/karnataka">Karnataka</category>
 <category domain="https://www.kiranjholla.com/tag/photography">Photography</category>
 <category domain="https://www.kiranjholla.com/tag/travel">Travel</category>
 <category domain="https://www.kiranjholla.com/tag/wildlife">Wildlife</category>
 <pubDate>Sun, 19 Jun 2011 09:08:35 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">56 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>How did Google get Apps2SD so wrong?</title>
 <link>https://www.kiranjholla.com/myblog/2011/04/how-did-google-get-apps2sd-so-wrong.html</link>
 <description>&lt;div id=&quot;how-google-got-a2sd-wrong&quot; style=&quot;text-align:justify; margin:0 5px 0&quot;&gt;
&lt;p&gt;This post is more a user&#039;s rant than an expert opinion. I have used Android for just about an year now and have wondered why certain things were the way they were. Having moved to Android from Windows Mobile 6.0, the first thing that struck me as odd was the lack of flexibility for the users to install their applications into the SD Card. That meant that the users were confined to whatever Internal Storage was available on their phones and more often than not that was very limited.&lt;/p&gt;
&lt;p&gt;As soon as I bought my first Android phone, I started fishing around for a solution to this problem and found it in &lt;a href=&quot;http://androidforums.com/desire-all-things-root/220627-faq-apps2sd-updated-19-03-11-a.html&quot; target=&quot;_blank&quot;&gt;Apps2SD+&lt;/a&gt; (now called Legacy Apps2SD+ or, at times, Apps2EXT). However Apps2SD+ needed &lt;a href=&quot;https://secure.wikimedia.org/wikipedia/en/wiki/Rooting_%28Android_OS%29&quot; target=&quot;_blank&quot;&gt;root access&lt;/a&gt; and was tricky to set up. It took every bit of my technical acumen to understand and execute the steps it entailed. It was also risky and could have easily &lt;a href=&quot;http://en.wikipedia.org/wiki/Brick_%28electronics%29&quot; target=&quot;_blank&quot;&gt;bricked&lt;/a&gt; my phone!&lt;/p&gt;
&lt;p&gt;Hence when Google released &lt;a href=&quot;http://googleblog.blogspot.com/2010/05/android-froyo-with-some-sprinkles.html&quot; target=&quot;_blank&quot;&gt;Froyo&lt;/a&gt; with in-built support for Apps2SD I had high expectations. The Froyo Apps2SD turned out to be a disappointment though. I believe that Google got the design of their Apps2SD solution wrong, and although I can think of a few reasons why they might have chosen the design that they did, I cannot help but think that they could have done a better job.&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2011/04/how-did-google-get-apps2sd-so-wrong.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/android">Android</category>
 <category domain="https://www.kiranjholla.com/tag/gadgets">Gadgets</category>
 <category domain="https://www.kiranjholla.com/tag/google">Google</category>
 <category domain="https://www.kiranjholla.com/tag/musings">Musings</category>
 <category domain="https://www.kiranjholla.com/tag/technology">Technology</category>
 <pubDate>Sun, 24 Apr 2011 16:36:58 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">55 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Exploring Karnataka&#039;s wild side</title>
 <link>https://www.kiranjholla.com/myblog/2011/03/exploring-karnatakas-wild-side.html</link>
 <description>&lt;div id=&quot;exploring-karnatakas-wild-side&quot; style=&quot;text-align:justify; margin:0 5px 0&quot;&gt;
&lt;div id=&quot;exploring-karnatakas-wild-side-teaser-photo&quot; style=&quot;float: left; margin: 8px 15px 5px 0&quot;&gt;
&lt;div&gt;
    &lt;a href=&quot;/mypictures/view/nagarahole-wildlife-reserve/IMG_3312.JPG.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;/mygallery/mypictures/download/42709-3/IMG_3312.JPG&quot; width=&quot;360&quot; alt=&quot;Nagarahole Wildlife Reserve&quot; /&gt;&lt;/a&gt;
  &lt;/div&gt;
&lt;div id=&quot;exploring-karnatakas-wild-side-teaser-text&quot; style=&quot;font-size: 85%; font-weight: bold; text-align: left&quot;&gt;Nagarahole Wildlife Reserve&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Recently, I got the opportunity to visit two of Karnataka&#039;s well known Wildlife destinations: first, as a birthday present to me, my wife planned a day visit to the Dubare Elephant camp; second, we decided to take a break from the work schedules and head off to the Nagarahole Wildlife Reserve.&lt;/p&gt;
&lt;p&gt;Both outings were planned spontaneously via &lt;a href=&quot;http://www.junglelodges.com/&quot; target=&quot;_blank&quot;&gt;Jungle Lodges &amp;amp; Resorts (JLR)&lt;/a&gt; and turned out to be extremely enjoyable; we came back thoroughly refreshed and elated.&lt;/p&gt;
&lt;p&gt;This blog post is to share our experience as well as some of the pictures I managed to click on these trips.&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2011/03/exploring-karnatakas-wild-side.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/india">India</category>
 <category domain="https://www.kiranjholla.com/tag/karnataka">Karnataka</category>
 <category domain="https://www.kiranjholla.com/tag/photography">Photography</category>
 <category domain="https://www.kiranjholla.com/tag/travel">Travel</category>
 <category domain="https://www.kiranjholla.com/tag/wildlife">Wildlife</category>
 <pubDate>Wed, 23 Mar 2011 15:51:59 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">54 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>10 of my favorite photos from 2010</title>
 <link>https://www.kiranjholla.com/myblog/2011/01/10-of-my-favorite-photos-from-2010.html</link>
 <description>&lt;link type=&quot;text/css&quot; rel=&quot;stylesheet&quot; media=&quot;all&quot; href=&quot;/sites/all/modules/gallery/gallery.css&quot; /&gt;
&lt;div id=&quot;2010photoroundup-maincontent&quot; style=&quot;text-align:justify; margin: 0 5px 0&quot;&gt;
&lt;p&gt;2010 has not been a great year for photography.  Though I did get many shots, and many good ones at that, I must say that this was the year in which Photography took a backseat.  I can blame it on my move back to India; an unpredictable work schedule, difficulty getting around and slow broadband connection did not help.&lt;/p&gt;
&lt;p&gt;However, I did get my camera out of its bag time and again and got some shots.  Here are the ones I consider my favorites from among the photographs I clicked in 2010.  You can click on the image to go to the original gallery where the image was hosted.  Feel free to provide a rating for the image in its gallery and leave a comment.&lt;/p&gt;
&lt;div id=&quot;2010photoroundup-photo01&quot; style=&quot;display:block&quot;&gt;
&lt;div id=&quot;2010photoroundup-photo01-title&quot; style=&quot;font-weight: bold&quot;&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2011/01/10-of-my-favorite-photos-from-2010.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/photography">Photography</category>
 <pubDate>Sun, 02 Jan 2011 18:29:55 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">53 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Android Apps: Tweetdeck v/s Seesmic</title>
 <link>https://www.kiranjholla.com/myblog/2010/12/android-apps-tweetdeck-vs-seesmic.html</link>
 <description>&lt;div id=&quot;android-apps-tweetdeck-vs-seesmic-content&quot; style=&quot;text-align:justify; margin:0 5px 0&quot;&gt;
&lt;div style=&quot;margin: 30px; background-color: #f6f6f6&quot;&gt;
&lt;i&gt;&lt;b&gt;Update (07-Sep-2012):&lt;/b&gt;  Seesmic has now been acquired by Hootsuite and they say &quot;&lt;a href=&quot;http://blog.hootsuite.com/welcomes-seesmic-users/&quot; target=&quot;_blank&quot;&gt;Consumer users of Seesmic are encouraged to explore new tools, apps and features available at Twitter.com&lt;/a&gt;&quot;. Effectively, what they seem to be saying is that general users should go and find some other client that suits their need and Seesmic will no longer be around for long. With that, I suppose, this comparison is now moot since Seesmic will soon cease to exist as a great option for general users looking for a powerful Twitter Client.&lt;/i&gt;
&lt;/div&gt;
&lt;p&gt;When I first started off on &lt;a href=&quot;http://www.twitter.com&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Twitter&lt;/a&gt;, &lt;a href=&quot;http://www.tweetdeck.com/&quot; target=&quot;_blank&quot;&gt;Tweetdeck&lt;/a&gt; for Desktop was my preferred client.  I found it to be extremely user friendly, feature-packed and intuitive.  Once I got my HTC Desire though, I realized that the best way to use Twitter is through my mobile phone.  Twitter is all about instantaneous sharing of views and opinions and my phone allowed me to do just that; it soon became my primary platform for Twitter usage and I longed for an equally feature-packed Twitter client.  I longed for Tweetdeck for Android.&lt;/p&gt;
&lt;p&gt;Though I initially used HTC Peep, the in-built Twitter client on my phone, once I discovered &lt;a href=&quot;http://www.seesmic.com&quot; target=&quot;_blank&quot;&gt;Seesmic&lt;/a&gt; for Android, there was no looking back.  Seesmic had everything I was looking for and was the perfect client for me.&lt;/p&gt;
&lt;p&gt;That is why when Tweetdeck finally got around to releasing their client for Android, I found myself in a dilemma.  Should I stick with my new found loyalty to Seesmic or should I go back to Tweetdeck?&lt;/p&gt;
&lt;p&gt;I decided to compare the two with regards to the functionality that I use most and here is what I found.&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2010/12/android-apps-tweetdeck-vs-seesmic.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/android">Android</category>
 <category domain="https://www.kiranjholla.com/tag/android-market">Android Market</category>
 <category domain="https://www.kiranjholla.com/tag/gadgets">Gadgets</category>
 <category domain="https://www.kiranjholla.com/tag/internet">Internet</category>
 <category domain="https://www.kiranjholla.com/tag/seesmic">Seesmic</category>
 <category domain="https://www.kiranjholla.com/tag/tweetdeck">Tweetdeck</category>
 <category domain="https://www.kiranjholla.com/tag/twitter">Twitter</category>
 <pubDate>Tue, 21 Dec 2010 17:11:14 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">52 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>The Signature Parody</title>
 <link>https://www.kiranjholla.com/myblog/2010/12/the-signature-parody.html</link>
 <description>&lt;div id=&quot;the-signature-parody-content&quot; style=&quot;text-align:justify; margin:0 5px 0&quot;&gt;
&lt;p&gt;We have all learnt that it is imperative that we read any document in its entirety before we sign it.  By affixing our signatures on any legal or contractually binding document, we effectively affirm that we agree to every word that is written on it.&lt;/p&gt;
&lt;p&gt;However, how many of us really stop to read and understand every word on that document before we sign it?  Most of us don&#039;t.&lt;/p&gt;
&lt;p&gt;What is more amazing is that people have come to expect that you don&#039;t read the document before signing it.  In fact, I have had multiple experiences in India, where people clearly got irritated if I&#039;d stopped to read the document before signing it.  Somehow people in India seem to believe that we must simply put all our trust in them and sign the dotted line.  They seem to believe that by reading the document first, we would be wasting their time.&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2010/12/the-signature-parody.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/india">India</category>
 <category domain="https://www.kiranjholla.com/tag/kannada">Kannada</category>
 <category domain="https://www.kiranjholla.com/tag/language">Language</category>
 <category domain="https://www.kiranjholla.com/tag/law">Law</category>
 <category domain="https://www.kiranjholla.com/tag/society">Society</category>
 <pubDate>Sun, 05 Dec 2010 15:27:59 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">51 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Why you don&#039;t need snooze with Google Calendar</title>
 <link>https://www.kiranjholla.com/myblog/2010/09/why-you-dont-need-snooze-with-google-calendar.html</link>
 <description>&lt;div id=&quot;we-do-not-need-snooze-content&quot; style=&quot;text-align:justify; margin:0 5px 0&quot;&gt;
&lt;p&gt;Ever since I moved to Android from Windows Mobile, I have been complaining about the Android Platform&#039;s seeming limitation in handling Calendar reminders.  The fact that the Android Calendar gave me only one 5-minute snooze option always troubled me and &lt;a href=&quot;http://www.kiranjholla.com/myblog/2010/07/android-first-impressions.html&quot; target=&quot;_blank&quot;&gt;I have written about this annoyance in the past too&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I promptly bought &lt;a href=&quot;http://www.androidzoom.com/android_applications/productivity/calendar-snooze_gjro.html&quot; target=&quot;_blank&quot;&gt;Calendar Snooze&lt;/a&gt;, an application available in the Android Market which allows users to choose the duration of time for which the reminder must be snoozed, and &lt;a href=&quot;http://www.kiranjholla.com/myblog/2010/08/android-applications-10-of-my-picks.html&quot; target=&quot;_blank&quot;&gt;even recommended it in one of my blog posts&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;When I noticed that Google had neglected to include the feature in their much hyped Android 2.2 (Froyo) as well, I couldn&#039;t understand why Google chose to ignore such basic functionality.&lt;/p&gt;
&lt;p&gt;However, in all my eagerness to lambast Google at their oversight, I seem to have neglected one design feature of the Google Calendar, which renders the snooze option redundant.&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2010/09/why-you-dont-need-snooze-with-google-calendar.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/android">Android</category>
 <category domain="https://www.kiranjholla.com/tag/google">Google</category>
 <category domain="https://www.kiranjholla.com/tag/google-calendar">Google Calendar</category>
 <category domain="https://www.kiranjholla.com/tag/microsoft">Microsoft</category>
 <category domain="https://www.kiranjholla.com/tag/outlook">Outlook</category>
 <category domain="https://www.kiranjholla.com/tag/technology">Technology</category>
 <category domain="https://www.kiranjholla.com/tag/tips">Tips</category>
 <pubDate>Sat, 18 Sep 2010 16:51:59 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">49 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Of Indian Roads and Indians</title>
 <link>https://www.kiranjholla.com/myblog/2010/09/of-indian-roads-and-indians.html</link>
 <description>&lt;div id=&quot;driving-in-india-content&quot; style=&quot;text-align: justify; margin: 0 5px&quot;&gt;
&lt;p&gt;It is no secret that what happens on the Indian roads is best described as controlled chaos.  Expecting orderly traffic while driving in India is probably not the best idea.  I have driven in India since 1994; even then, each time I go abroad and return, it takes me a while to get used to the kind of driving witnessed in India.&lt;/p&gt;
&lt;p&gt;I read somewhere that driving in India is basically pointing your vehicle in the general direction you want to go and stepping on the accelerator &amp;mdash; and hoping to god that you don&#039;t get hit by something.  That description quite summarizes what drivers in India go through every day.&lt;/p&gt;
&lt;p&gt;Here are a few points about Indian driving and Indians that everyone who wishes to visit India and possibly drive here should know.&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2010/09/of-indian-roads-and-indians.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/chaltha-hai">Chaltha Hai</category>
 <category domain="https://www.kiranjholla.com/tag/culture">Culture</category>
 <category domain="https://www.kiranjholla.com/tag/india">India</category>
 <category domain="https://www.kiranjholla.com/tag/lifestyle">Lifestyle</category>
 <category domain="https://www.kiranjholla.com/tag/society">Society</category>
 <pubDate>Wed, 01 Sep 2010 05:39:29 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">50 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Android Applications - 10 of my picks</title>
 <link>https://www.kiranjholla.com/myblog/2010/08/android-applications-10-of-my-picks.html</link>
 <description>&lt;div id=&quot;10-android-apps-content&quot; style=&quot;text-align:justify; margin:0 5px 0&quot;&gt;
&lt;div id=&quot;android-apps-intro&quot;&gt;
&lt;p&gt;Android is a powerful Mobile OS and it is growing.  However, &lt;a href=&quot;http://www.kiranjholla.com/myblog/2010/07/android-first-impressions.html&quot; target=&quot;_blank&quot;&gt;as I had earlier mentioned&lt;/a&gt; you&#039;ll need to install applications from the Android Market to tailor its behavior to your liking.&lt;/p&gt;
&lt;p&gt;Here are some of the applications that I use frequently.  These are the ones that have helped me tailor my Android experience just the way I like it.&lt;/p&gt;
&lt;p&gt;The applications listed below are those that you can make use of without any tweaks to your phone.  You do not need to be Root on your phone to run these.&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2010/08/android-applications-10-of-my-picks.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/android">Android</category>
 <category domain="https://www.kiranjholla.com/tag/android-market">Android Market</category>
 <category domain="https://www.kiranjholla.com/tag/gadgets">Gadgets</category>
 <category domain="https://www.kiranjholla.com/tag/google">Google</category>
 <category domain="https://www.kiranjholla.com/tag/technology">Technology</category>
 <pubDate>Sun, 15 Aug 2010 10:01:25 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">47 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Handling multiple Exchange Calendars</title>
 <link>https://www.kiranjholla.com/myblog/2010/08/handling-multiple-exchange-calendars.html</link>
 <description>&lt;div id=&quot;outlook-icalendar-content&quot; style=&quot;text-align:justify; margin:0 5px 0&quot;&gt;
&lt;p&gt;One of the disadvantages with having to manage multiple Exchange Accounts is that it is very difficult to get a unified view of the all the accounts.  Be it email or calendar schedule, each Exchange account could potentially have a different set that have to be dealt with.  Microsoft Products only allow access to one Exchange account at a time, and that complicates things.&lt;/p&gt;
&lt;p&gt;For emails I just move them into PST folders organized by project, initiative, topic, whatever the case may be.  Once these emails &amp;mdash; whichever Exchange Account they came from &amp;mdash; are in their folders, I can easily get a chronological view of what conversations were going on related to that piece work.&lt;/p&gt;
&lt;p&gt;Getting a similar view of appointments is trickier.  I always like to know when my meetings are scheduled and ensure I am not double-booked at any particular time before I respond to meeting requests.&lt;/p&gt;
&lt;p&gt;Managing this with two Outlook Profiles is next to impossible.  However, I found a rather unique way of handing this issue.  I use the &quot;Publish to Internet&quot; feature in Outlook 2007 to do this.&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2010/08/handling-multiple-exchange-calendars.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/microsoft">Microsoft</category>
 <category domain="https://www.kiranjholla.com/tag/office">Office</category>
 <category domain="https://www.kiranjholla.com/tag/outlook">Outlook</category>
 <category domain="https://www.kiranjholla.com/tag/technology">Technology</category>
 <category domain="https://www.kiranjholla.com/tag/tips">Tips</category>
 <pubDate>Sat, 31 Jul 2010 20:05:22 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">48 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Android: First Impressions</title>
 <link>https://www.kiranjholla.com/myblog/2010/07/android-first-impressions.html</link>
 <description>&lt;div id=&quot;android-content&quot; style=&quot;text-align:justify; margin:0 5px 0&quot;&gt;
&lt;div&gt;
&lt;p&gt;Early this year, I was looking out for a new phone.  After looking around for quite a while, I finally decided to go with the &lt;a href=&quot;http://www.gsmarena.com/htc_desire-3077.php&quot; target=&quot;_blank&quot;&gt;HTC Desire&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Before the Desire, I had another HTC phone &amp;mdash; the &lt;a href=&quot;http://www.gsmarena.com/htc_tytn-1659.php&quot; target=&quot;_blank&quot;&gt;HTC TyTN&lt;/a&gt; running Windows Mobile 6.0.  Given that I have always been &amp;mdash; right from its Pocket PC days &amp;mdash; a Windows Mobile devotee, my &lt;a href=&quot;http://en.wikipedia.org/wiki/Personal_information_management&quot; target=&quot;_blank&quot;&gt;PIM&lt;/a&gt; is mainly based out of Outlook and Exchange.  Windows Mobile 6.0 integrated beautifully with Outlook and using both of these together was extremely convenient.&lt;/p&gt;
&lt;p&gt;Hence, moving to Android wasn&#039;t an easy decision.  However rave reviews received by the Desire and the fact that &lt;a href=&quot;http://www.kiranjholla.com/myblog/2010/03/why-the-windows-phone-isnt-exciting.html&quot; target=&quot;_blank&quot;&gt;I was unconvinced about the suitability of future Windows Mobile Platforms&lt;/a&gt;, made me take the plunge into Android.&lt;/p&gt;
&lt;p&gt;Now that I have had my Desire for almost three months, I thought I should write about my first impressions.&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2010/07/android-first-impressions.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/android">Android</category>
 <category domain="https://www.kiranjholla.com/tag/gadgets">Gadgets</category>
 <category domain="https://www.kiranjholla.com/tag/google">Google</category>
 <category domain="https://www.kiranjholla.com/tag/technology">Technology</category>
 <pubDate>Sat, 03 Jul 2010 19:34:13 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">46 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>The liability of a civilized society</title>
 <link>https://www.kiranjholla.com/myblog/2010/05/the-liability-of-a-civilized-society.html</link>
 <description>&lt;div id=&quot;liability-content&quot; style=&quot;text-align:justify; margin:0 5px 0&quot;&gt;
&lt;p&gt;In early May, the Special Court in Mumbai convicted &lt;a href=&quot;http://en.wikipedia.org/wiki/Ajmal_Kasab&quot; target=&quot;_blank&quot;&gt;Ajmal Kasab&lt;/a&gt; for his role in the &lt;a href=&quot;http://en.wikipedia.org/wiki/2008_Mumbai_attacks&quot; target=&quot;_blank&quot;&gt;26/11 attack on Mumbai&lt;/a&gt; and sentenced him to death.&lt;/p&gt;
&lt;p&gt;Kasab is going to die, eventually.  But before he is put to death, he will probably go through several appeals, mercy petitions, so on and so forth; he might actually die of old age before he is hanged!  Take the case of another Pakistani terrorist on the Indian Death Row: &lt;a href=&quot;http://en.wikipedia.org/wiki/Mohammad_Afzal&quot; target=&quot;_blank&quot;&gt;Afzal Guru&lt;/a&gt;.  Guru was supposed to be hanged in 2006, but still remains on death row.  The government seems to be &lt;a href=&quot;http://timesofindia.indiatimes.com/city/delhi/Afzal-Guru-file-moves--to-L-Gs-office-and-back/articleshow/5946770.cms&quot; target=&quot;_blank&quot;&gt;incapable of taking a decision&lt;/a&gt; one way or another!&lt;/p&gt;
&lt;p&gt;When Kasab was sentenced, it was quickly proclaimed by many as a victory for the Indian judiciary.  I was amazed at the number of people, including the media, who liked to believe that it meant closure for the numerous families who were directly affected by the horrible attack on Mumbai.  However, I can&#039;t help but believe that this is just a shallow victory.&lt;/p&gt;
&lt;p&gt;Kasab was undoubtedly the killer of numerous innocent people, but he was just a pawn.  While there is no doubt in anybody&#039;s mind that he deserves to die, there also has to be a realization that while India has been able to bring this one man to justice the organization and the network of terrorists that backed him up that day still remain at large.&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2010/05/the-liability-of-a-civilized-society.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/india">India</category>
 <category domain="https://www.kiranjholla.com/tag/society">Society</category>
 <category domain="https://www.kiranjholla.com/tag/terrorism">Terrorism</category>
 <pubDate>Sun, 23 May 2010 17:48:41 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">45 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Isle of Wight</title>
 <link>https://www.kiranjholla.com/myblog/2010/04/isle-of-wight.html</link>
 <description>&lt;div id=&quot;isle-of-wight-content&quot; style=&quot;text-align:justify; margin:0 5px 0&quot;&gt;
&lt;div id=&quot;isle-of-wight-teaser-photo&quot; style=&quot;float: left; margin: 8px 15px 5px 0&quot;&gt;
&lt;div&gt;
    &lt;a href=&quot;/mypictures/view/isle-of-wight/IMG_1433.JPG.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.kiranjholla.com/mygallery/mypictures/download/37848-3/IMG_1433.JPG&quot; width=&quot;360&quot; alt=&quot;Isle of Wight&quot; /&gt;&lt;/a&gt;
  &lt;/div&gt;
&lt;div id=&quot;isle-of-wight-teaser-text&quot; style=&quot;font-size: 85%; font-weight: bold; text-align: left&quot;&gt;Isle of Wight&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Isle of Wight is a small island to the south of mainland England.  Accessible by ferries, the island is a picturesque holiday destination.  Any tourist will immediately be awestruck by the natural beauty of this place.&lt;/p&gt;
&lt;p&gt;Though this was our third stint in the UK we had never, before now, been able to make it to this island.  Given that, we took the opportunity over this Easter weekend to make the trip to Isle of Wight.  Since the island is a small one and we had ample time on our hands, we were assured that the holiday will be a relaxed get together with friends and the kids.&lt;/p&gt;
&lt;p&gt;The planning for the trip began more than a month and half in advance.  There were a lot of things to coordinate: travel, stay, sightseeing, entertainment for the kids, and most importantly food!&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2010/04/isle-of-wight.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/photography">Photography</category>
 <category domain="https://www.kiranjholla.com/tag/travel">Travel</category>
 <pubDate>Fri, 09 Apr 2010 22:41:21 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">44 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Why the Windows Phone isn&#039;t exciting</title>
 <link>https://www.kiranjholla.com/myblog/2010/03/why-the-windows-phone-isnt-exciting.html</link>
 <description>&lt;div id=&quot;windows-phone-7-content&quot; style=&quot;text-align:justify; margin:0 5px 0&quot;&gt;
&lt;p&gt;Microsoft came out with the &lt;a href=&quot;http://www.windowsphone7series.com/&quot; target=&quot;_blank&quot;&gt;Windows Phone 7 Series&lt;/a&gt; during the &lt;a href=&quot;http://www.mobileworldcongress.com/index.htm&quot; target=&quot;_blank&quot;&gt;Mobile World Congress&lt;/a&gt; in February 2010.  With the Windows Phone, Microsoft has drastically changed the way they intend for the user to interact with their devices.  It has been touted as the Mobile OS that will enable Microsoft to capture the market back from Apple&#039;s iPhone.&lt;/p&gt;
&lt;p&gt;I have been a devoted Windows Mobile user since my days with Pocket PC 2002 on my &lt;a href=&quot;http://ixbtlabs.com/articles/compaqipaq3800/&quot; target=&quot;_blank&quot;&gt;Compaq iPAQ 3850&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;When Apple came out with the iPhone, it was definitely worth sitting up and taking notice!  It was a new concept and a glamorous one at that.  Suddenly, the Windows Mobile looked jaded and just another old phone.  However, I stuck with it primarily due to the fact that the iPhone was, and still is, too locked in.  I cannot install anything or do anything on the phone without Apple explicitly allowing me to do so.  The only other way is to &quot;&lt;a href=&quot;http://en.wikipedia.org/wiki/Jailbreak_%28iPhone_OS%29&quot; target=&quot;_blank&quot;&gt;jailbreak&lt;/a&gt;&quot; the phone; something that would void my warranty.&lt;/p&gt;
&lt;p&gt;Devices running Windows Mobile were a stark contrast &amp;mdash; though they embodied flexibility and customizability with numerous vendors providing applications that added great functionality, they lacked touch-friendliness.  With Windows Mobile 7, or the Windows Phone 7 Series as Microsoft like to call the new version of their Mobile OS, they have brought in a whole new paradigm!  It is no longer a computer on a phone; it is a consumer phone with possibilities.&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2010/03/why-the-windows-phone-isnt-exciting.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/gadgets">Gadgets</category>
 <category domain="https://www.kiranjholla.com/tag/microsoft">Microsoft</category>
 <category domain="https://www.kiranjholla.com/tag/technology">Technology</category>
 <category domain="https://www.kiranjholla.com/tag/windows-phone-7">Windows Phone 7</category>
 <pubDate>Sun, 21 Mar 2010 22:02:38 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">43 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>The Very Hidden Sheet in Excel</title>
 <link>https://www.kiranjholla.com/myblog/2010/03/the-very-hidden-sheet-in-excel.html</link>
 <description>&lt;div id=&quot;veryhidden-content&quot; style=&quot;text-align:justify; margin:0 5px 0&quot;&gt;
&lt;p&gt;All of us know that Microsoft Excel allows us to hide certain worksheets from view.  Hiding sheets helps us in ensuring that any background lookup data or reference data that you want to utilize in your spreadsheets remain neatly tucked away from general view.&lt;/p&gt;
&lt;p&gt;You may also want to prevent users from viewing certain numbers that are used in calculation on your spreadsheets.  Hiding worksheets simply makes the workbook clutter free and helps readers focus on the spreadsheets that really matter.&lt;/p&gt;
&lt;p&gt;The only disadvantage with simply hiding your worksheets is that it is equally easy to unhide them.  Any Excel user worth his salt knows how to find and unhide a hidden sheet.  To prevent users from unhiding your worksheets, you may choose to protect the workbook.  However when you protect a workbook, you are also preventing the users from a myriad of other functionality that they may genuinely require.&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2010/03/the-very-hidden-sheet-in-excel.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/excel">Excel</category>
 <category domain="https://www.kiranjholla.com/tag/microsoft">Microsoft</category>
 <category domain="https://www.kiranjholla.com/tag/office">Office</category>
 <category domain="https://www.kiranjholla.com/tag/technology">Technology</category>
 <category domain="https://www.kiranjholla.com/tag/tips">Tips</category>
 <pubDate>Sun, 14 Mar 2010 13:22:00 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">37 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Are we losing our linguistic wealth?</title>
 <link>https://www.kiranjholla.com/myblog/2010/02/are-we-losing-our-linguistic-wealth.html</link>
 <description>&lt;div id=&quot;culture-maincontent&quot; style=&quot;text-align: justify; margin: 0 5px 0&quot;&gt;
&lt;p&gt;Language is a means of communication.  As long as you are able to get your message across to the other person, the purpose of communication is served.  At least that is what I always thought until I read this &lt;a href=&quot;http://www.time.com/time/world/article/0,8599,1964610,00.html&quot; target=&quot;_blank&quot;&gt;excellent piece about the death of a language&lt;/a&gt; &amp;mdash; the &lt;a href=&quot;http://en.wikipedia.org/wiki/Aka-Bo_language&quot; target=&quot;_blank&quot;&gt;Bo language&lt;/a&gt;.  The piece has been authored by &lt;a href=&quot;http://ishaantharoor.wordpress.com/about/&quot; target=&quot;_blank&quot;&gt;Mr. Ishaan Tharoor&lt;/a&gt; on the Time Magazine&#039;s website.&lt;/p&gt;
&lt;p&gt;As per the &lt;a href=&quot;http://www.ethnologue.com/ethno_docs/distribution.asp?by=size&quot; target=&quot;_blank&quot;&gt;statistics published in the Ethnologue&lt;/a&gt;, there are around 7000 languages in the world today, 26% of which are spoken by less than a thousand people each.  It also states that about 94% of the world&#039;s languages are spoken by only 6% of its population!&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2010/02/are-we-losing-our-linguistic-wealth.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/culture">Culture</category>
 <category domain="https://www.kiranjholla.com/tag/english">English</category>
 <category domain="https://www.kiranjholla.com/tag/india">India</category>
 <category domain="https://www.kiranjholla.com/tag/kannada">Kannada</category>
 <category domain="https://www.kiranjholla.com/tag/language">Language</category>
 <category domain="https://www.kiranjholla.com/tag/society">Society</category>
 <pubDate>Sun, 21 Feb 2010 21:27:31 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">41 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Please advice</title>
 <link>https://www.kiranjholla.com/myblog/2010/02/please-advice.html</link>
 <description>&lt;div id=&quot;please-advice-maincontent&quot; style=&quot;text-align: justify; margin: 0 5px 0&quot;&gt;
&lt;p&gt;The eccentricities in the English language has long been a subject of discussion, debate and even ridicule!  English is full of similar sounding words, weird spellings and punctuation that, when in the wrong place, can alter the meaning of the sentence!  While English and its eccentricities can throw off any newbie, even veterans at times fall prey to them.&lt;/p&gt;
&lt;p&gt;This may look like a very trivial and even banal subject to blog about.  However, having come across multiple instances where even seasoned veterans make mistakes in choosing the right words for their professional communication, I thought the risk of sounding repetitive was worth taking.&lt;/p&gt;
&lt;p&gt;Among various instances of such mistakes in communication, the most common mistake arguably is the use of the phrase &quot;Please advice&quot;!&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2010/02/please-advice.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/career">Career</category>
 <category domain="https://www.kiranjholla.com/tag/english">English</category>
 <category domain="https://www.kiranjholla.com/tag/language">Language</category>
 <category domain="https://www.kiranjholla.com/tag/tips">Tips</category>
 <pubDate>Tue, 02 Feb 2010 14:02:33 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">39 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Shooting Snow</title>
 <link>https://www.kiranjholla.com/myblog/2010/01/shooting-snow.html</link>
 <description>&lt;link type=&quot;text/css&quot; rel=&quot;stylesheet&quot; media=&quot;all&quot; href=&quot;/sites/all/modules/gallery/gallery.css&quot; /&gt;
&lt;div id=&quot;shooting-snow-maincontent&quot; style=&quot;text-align:justify; margin-right:5px&quot;&gt;
&lt;p&gt;Croydon, the place I stay in London, got nearly 6 inches of snow today.  As was expected train services were disrupted with only minimal services running this morning.&lt;/p&gt;
&lt;p&gt;Given that on a normal day I take an hour and half to get to work, I decided that it was best if I worked from home today given all the snow-caused disruption.  The morning was fairly busy with emails pouring in as usual.  However, towards the afternoon, the load tapered off giving me some time to nip out of the house and click some shots of the snow covered neighborhood.&lt;/p&gt;
&lt;p&gt;Here are some of the shots that I got today.&lt;/p&gt;
&lt;div id=&quot;shooting-snow-photo01&quot; style=&quot;display:block&quot;&gt;
&lt;div id=&quot;shooting-snow-photo01-photo&quot; style=&quot;text-align: center; margin-left: 8px ; margin-right: 8px&quot;&gt;
&lt;div class=&quot;one-image&quot;&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2010/01/shooting-snow.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/photography">Photography</category>
 <category domain="https://www.kiranjholla.com/tag/snow">Snow</category>
 <category domain="https://www.kiranjholla.com/tag/winter">Winter</category>
 <pubDate>Wed, 06 Jan 2010 21:04:30 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">38 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>10 of my favorite photos from 2009</title>
 <link>https://www.kiranjholla.com/myblog/2010/01/10-of-my-favorite-photos-from-2009.html</link>
 <description>&lt;link type=&quot;text/css&quot; rel=&quot;stylesheet&quot; media=&quot;all&quot; href=&quot;/sites/all/modules/gallery/gallery.css&quot; /&gt;
&lt;div id=&quot;2009photoroundup-maincontent&quot; style=&quot;text-align:justify; margin-right:5px&quot;&gt;
&lt;p&gt;In the year 2009, I have had many opportunities to click, what I thought were, good photographs.  Hence, it might be a good time to look back on all those photographs and select my favorites.&lt;/p&gt;
&lt;p&gt;Here are the photographs that I consider my favorites.  You can click on the image to go to the original gallery where the image was hosted.  Feel free to provide a rating for the image in its gallery and leave a comment.&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2010/01/10-of-my-favorite-photos-from-2009.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/photography">Photography</category>
 <pubDate>Fri, 01 Jan 2010 12:30:22 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">32 at https://www.kiranjholla.com</guid>
</item>
<item>
 <title>Ad-Blocking: A debate about ethics</title>
 <link>https://www.kiranjholla.com/myblog/2009/12/ad-blocking-a-debate-about-ethics.html</link>
 <description>&lt;div id=&quot;adblock-maincontent&quot; style=&quot;text-align:justify; margin:3px&quot;&gt;
I am an active user and advocate of &lt;a href=&quot;http://www.mozilla.com/en-US/firefox/personal.html&quot; target=&quot;_blank&quot;&gt;Mozilla Firefox&lt;/a&gt;.  I also am a fan of its Ad-blocking extension - &lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/1865&quot; target=&quot;_blank&quot;&gt;AdBlock Plus&lt;/a&gt;.  I have considered AdBlock Plus a very useful extension that allowed me to get rid of all annoying and pesky pop-ups and banner ads that otherwise clutter my browsing experience.
&lt;p&gt;However, a recent blog by &lt;a href=&quot;http://blog.gadodia.net/about/&quot; target=&quot;_blank&quot;&gt;Vaibhav Gadodia&lt;/a&gt; titled &quot;&lt;a href=&quot;http://blog.gadodia.net/when-will-people-stop-stealing-content/&quot; target=&quot;_blank&quot;&gt;When will people stop stealing content&lt;/a&gt;&quot; raised a very interesting point; it gave me food for thought.  In his blog Vaibhav argues that since the advertising pays for the content, blocking those ads deprives the site owner the revenues that he would have earned had those ads been visible.  Vaibhav goes on to compare the online content monetized by ads to an &quot;honor system&quot; of selling goods, wherein the users are free to pick up the goods as long as they drop the recommended amount into the jar.&lt;/p&gt;
&lt;p&gt;Equating ad-blocking to stealing, in my opinion, is a radical generalization and I disagree with it.  Here&#039;s why.&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;https://www.kiranjholla.com/myblog/2009/12/ad-blocking-a-debate-about-ethics.html&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="https://www.kiranjholla.com/tag/ad-block">Ad Block</category>
 <category domain="https://www.kiranjholla.com/tag/advertising">Advertising</category>
 <category domain="https://www.kiranjholla.com/tag/ethics">Ethics</category>
 <category domain="https://www.kiranjholla.com/tag/firefox">Firefox</category>
 <category domain="https://www.kiranjholla.com/tag/internet">Internet</category>
 <category domain="https://www.kiranjholla.com/tag/privacy">Privacy</category>
 <category domain="https://www.kiranjholla.com/tag/technology">Technology</category>
 <pubDate>Tue, 22 Dec 2009 22:20:56 +0000</pubDate>
 <dc:creator>Kiran</dc:creator>
 <guid isPermaLink="false">31 at https://www.kiranjholla.com</guid>
</item>
</channel>
</rss>
