<?xml version="1.0" encoding="UTF-8" standalone="no"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:georss="http://www.georss.org/georss" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:media="http://search.yahoo.com/mrss/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" version="2.0">

<channel>
	<title>Treading between Business and Technology</title>
	<atom:link href="https://maverikpro.wordpress.com/feed/" rel="self" type="application/rss+xml"/>
	<link>https://maverikpro.wordpress.com</link>
	<description>Junction where business meets technology</description>
	<lastBuildDate>Sun, 11 Jul 2010 15:15:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain="maverikpro.wordpress.com" path="/?rsscloud=notify" port="80" protocol="http-post" registerProcedure=""/>
<image>
		<url>https://s0.wp.com/i/buttonw-com.png</url>
		<title>Treading between Business and Technology</title>
		<link>https://maverikpro.wordpress.com</link>
	</image>
	<atom:link href="https://maverikpro.wordpress.com/osd.xml" rel="search" title="Treading between Business and Technology" type="application/opensearchdescription+xml"/>
	<atom:link href="https://maverikpro.wordpress.com/?pushpress=hub" rel="hub"/>
	<itunes:explicit>no</itunes:explicit><itunes:subtitle>Junction where business meets technology</itunes:subtitle><item>
		<title>Why use Big Decimal in java</title>
		<link>https://maverikpro.wordpress.com/2010/07/11/why-use-big-decimal-in-java/</link>
					<comments>https://maverikpro.wordpress.com/2010/07/11/why-use-big-decimal-in-java/#respond</comments>
		
		<dc:creator><![CDATA[maverikpro]]></dc:creator>
		<pubDate>Sun, 11 Jul 2010 15:15:04 +0000</pubDate>
				<category><![CDATA[java]]></category>
		<guid isPermaLink="false">http://maverikpro.wordpress.com/?p=23</guid>

					<description><![CDATA[Java Big decimal to store the right precision]]></description>
										<content:encoded><![CDATA[<p>When we work with decimals in certain financial related calculations, we see that certain numbers get rounded off incorrectly even though they are stored in double. Below is the example:</p>
<div id="_mcePaste">public static void main(String o[])</div>
<div id="_mcePaste">{</div>
<div id="_mcePaste">double d =3.141592653589<span style="color:#ff0000;">79353</span>d;</div>
<div id="_mcePaste">System.out.println(d);</div>
<div id="_mcePaste">}</div>
<p>Output is :</p>
<p>3.141592653589<span style="color:#ff0000;">793</span><span style="color:#ff0000;">6</span></p>
<p>It makes sense to have the value as 3.141592653589<span style="color:#ff0000;">793</span><span style="color:#ff0000;">5 <span style="color:#000000;">but not the one that is printed. The reason is double cannot store the right precision for floating point numbers and if you need to store the precision correctly, you need to use Big Decimal. A very good article of using big decimal can be found <a href="http://blogs.sun.com/CoreJavaTechTips/entry/the_need_for_bigdecimal" target="_blank">here</a></span></span></p>
]]></content:encoded>
					
					<wfw:commentRss>https://maverikpro.wordpress.com/2010/07/11/why-use-big-decimal-in-java/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content medium="image" url="https://2.gravatar.com/avatar/2f44f92748c18db2f4891b716423f2d233189a5983950342cb6fde817a108e0a?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">maverikpro</media:title>
		</media:content>
	</item>
		<item>
		<title>Java Titbits – Filtering files</title>
		<link>https://maverikpro.wordpress.com/2010/07/08/java-titbits-filtering-files/</link>
					<comments>https://maverikpro.wordpress.com/2010/07/08/java-titbits-filtering-files/#respond</comments>
		
		<dc:creator><![CDATA[maverikpro]]></dc:creator>
		<pubDate>Thu, 08 Jul 2010 03:55:17 +0000</pubDate>
				<category><![CDATA[Technology]]></category>
		<guid isPermaLink="false">http://maverikpro.wordpress.com/?p=17</guid>

					<description><![CDATA[java filter files in a directory]]></description>
										<content:encoded><![CDATA[<p>We would have encountered scenarios where we would want to filter certain files within a directory. The traditional method is to get all the files and run through that list and select those that you need. But java  does provide a fileNamefilter class or a fileFilter class that you can use while listing all the files within a directory. (And this has been in jdk since version 1.0 .. something that i didnt know.)</p>
<p>An example to filter all jpeg files in a directory C:\pictures</p>
<p><span style="color:#000000;">File myDir = </span><span style="color:#7f0055;"><strong>new </strong></span><span style="color:#000000;">File</span><span style="color:#000000;">(</span><span style="color:#2a00ff;">&#8220;C:/pictures&#8221;</span><span style="color:#000000;">)</span><span style="color:#000000;">;</span></p>
<p><span style="color:#000000;"><span style="color:#000000;">File</span><span style="color:#000000;">[] </span><span style="color:#000000;">contents = myDir.listFiles</span><span style="color:#000000;">(</span><span style="color:#7f0055;"><strong>new FileNameFilter() <span style="color:#000000;">{</span></strong></span></span></p>
<p><span style="color:#000000;"><span style="color:#7f0055;"><strong><span style="color:#000000;">public boolean accept(File directory, String fileName) {</span></strong></span></span></p>
<p><span style="color:#000000;"><span style="color:#7f0055;"><strong><span style="color:#000000;">return (fileName.endswith(&#8220;jpeg&#8221;));</span></strong></span></span></p>
<p><span style="color:#000000;"><span style="color:#7f0055;"><strong><span style="color:#000000;">}</span></strong></span></span></p>
<p><span style="color:#000000;"><span style="color:#7f0055;"><strong><span style="color:#000000;">}</span><span style="color:#000000;"> </span></strong></span><span style="color:#000000;">)</span><span style="color:#000000;">;</span></span></p>
<p><span style="color:#000000;"><span style="color:#000000;">You can also use FileFilter if the accept method needs to use any attributes of file object.</span></span></p>
]]></content:encoded>
					
					<wfw:commentRss>https://maverikpro.wordpress.com/2010/07/08/java-titbits-filtering-files/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content medium="image" url="https://2.gravatar.com/avatar/2f44f92748c18db2f4891b716423f2d233189a5983950342cb6fde817a108e0a?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">maverikpro</media:title>
		</media:content>
	</item>
		<item>
		<title>My Take on Tata Nano</title>
		<link>https://maverikpro.wordpress.com/2008/01/13/my-take-on-tata-nano/</link>
					<comments>https://maverikpro.wordpress.com/2008/01/13/my-take-on-tata-nano/#comments</comments>
		
		<dc:creator><![CDATA[maverikpro]]></dc:creator>
		<pubDate>Sun, 13 Jan 2008 17:55:51 +0000</pubDate>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Maruti 800 Vs Tata Nano]]></category>
		<category><![CDATA[Nano]]></category>
		<category><![CDATA[Tata Nano]]></category>
		<guid isPermaLink="false">http://maverikpro.wordpress.com/2008/01/13/my-take-on-tata-nano/</guid>

					<description><![CDATA[No No, this isn&#8217;t another post to talk about the launch of Tata&#8217;s 1 lakh car or about its features or Specs. Theres load of information over the internet regarding this. This post is about why or who should buy a Nano? Or should one buy Nano ? Lets compare Nano with Maruti 800 to [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>No No, this isn&#8217;t another post to talk about the launch of Tata&#8217;s 1 lakh car or about its features or Specs. Theres load of information over the internet regarding this. This post is about why or who should buy a Nano? Or should one buy Nano ? Lets compare Nano with Maruti 800 to see where it stands. Maruti has higher engine capacity at 796cc compared to Nano&#8217;s 673cc.But Nano is smaller compared to Maruti 800 yet has larger space inside comparatively. Thats a great achievement. Thats because the engine in Nano is fitted at the back similar to an auto. Parking should be much easier now and so should be finding spaces to park.In terms of fuel mileage there is not much difference. Tata&#8217;s claim that Nano will give 20 km per litre and maruti gives around 21 Km per litre. But a lot of difference lies in the price. Maruti 800&#8217;s base model is priced at 1.94 lakhs + taxes and Nano&#8217;s base model is priced at 1 lakh. That means people can buy 2 Nano instead of 1 Maruti <img src="https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> And thats exactly what has happened. Lot of them have postponed their decision to buy a car waiting for Nano. And most of them are planning to buy more than one car. Tatas have created a revolution by launching such a low cost car. This has posed a tough competition for others in the industry. Given the traffic condition in each metro, people find there is no use of buying high-end vehicles and SUV&#8217;s. You will never get to drive at such fast speeds because of traffic and a signal placed at every arm&#8217;s length. My manager is planning to sell his  Ford  Fusion and get a Nano if its a hit. And why not? given that his family comprises of just 4 people Nano will serve that purpose. My point is this car is a steal especially for those married coupled who have a baby. We know that driving bike with baby in hand is risky. Such couples get stranded in their houses as they hesitate to take the baby along in the bike. They will be yearning for Nano. A typical family in a metro comprises of 2 adults and a child. Given they stay in metro, Nano should be very much affordable. A typical family living in a tier-2 cities say (ex:coimbatore) will comprises of 4 adults and a child. Nano too can fit them all. Working women too would go for Nano. Those who use public transport will find this affordable provided they have been given attractive EMIs to pay off auto loans. And those who use scooty/honda/pleasure will go for Nano as it is much safer to ride a 4-wheeler than a 2-wheeler (for themselves ofcourse). And not to forget the Cab Drivers. These where the people who waited for tata nano much more than any other. To ferry employees of MNCs from office to home and home to office,Nano would be the best-fit. But there is a small problem. When Nano starts be used as a cab, people will hesitate to buy it. Remember what happened to Tata Indica. Tata would be better off if it has different color variants so that cabies go for white color and other buyers go for colors like metallic-grey. I mean any color that signifies great style and finishing. They might come with a pink variant to attract women buyers too.<br />
What could jeopardize their plans ? Frequent maintenance needed for the vehicle and poor after sale service. Maruti is just so good at this. The Traffic. Just imagine if so many cars get on roads in cities like bangalore and hyderabad. Driving would become a nightmare. Car&#8217;s engine is good enough to pull load of 4 Adults. Given the roads in hyderabad where there are very hilly, there remains concerns whether Nano can climb such hilly roads with 4 people in it and say AC is on ? How much is the ground clearance ? safety concerns for the driver incase the car crashes headon. Is there a diesel variant ?<br />
If Nano fares well in each of this parameter then they have revolutionized the auto industry. But that said, Tatas have done an excellent job. Making a promise of launching a 1-lakh car inspite of none in the industry believing in it and keeping up the promise is no mean feat.Kudos to Tata and their team behind this project.</p>
<p class="poweredbyperformancing">Powered by <a href="http://scribefire.com/">ScribeFire</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://maverikpro.wordpress.com/2008/01/13/my-take-on-tata-nano/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		
		<media:content medium="image" url="https://2.gravatar.com/avatar/2f44f92748c18db2f4891b716423f2d233189a5983950342cb6fde817a108e0a?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">maverikpro</media:title>
		</media:content>
	</item>
		<item>
		<title>Top Ten Firefox Add ons</title>
		<link>https://maverikpro.wordpress.com/2008/01/12/top-ten-firefox-add-ons/</link>
					<comments>https://maverikpro.wordpress.com/2008/01/12/top-ten-firefox-add-ons/#comments</comments>
		
		<dc:creator><![CDATA[maverikpro]]></dc:creator>
		<pubDate>Sat, 12 Jan 2008 19:05:10 +0000</pubDate>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[browser utilities]]></category>
		<category><![CDATA[firefox addons]]></category>
		<category><![CDATA[SessionManager]]></category>
		<category><![CDATA[stumbleupon]]></category>
		<guid isPermaLink="false">http://maverikpro.wordpress.com/2008/01/12/top-ten-firefox-add-ons/</guid>

					<description><![CDATA[Well you would have come across most of the content posted here. Moreover some of the addons that i have bumped upon are from the tech blogs i visited. I have compiled all of them and listed my favourites here. Most of the addons mentioned would be of help to developers who surf a lot [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Well you would have come across most of the content posted here. Moreover some of the addons that i have bumped upon are from the tech blogs i visited. I have compiled all of them and listed my favourites here. Most of the addons mentioned would be of help to developers who surf a lot . So without much ado here they are:</p>
<p>1. <a href="https://addons.mozilla.org/en-US/firefox/addon/138" target="_blank">Stumbleupon</a> &#8211; Gateway to surf the best of the internet. It also provides features to bookmark the visited sites and share it with friends and build communities based on your interests. A must for an avid surfer</p>
<p>2.  <a href="https://addons.mozilla.org/en-US/firefox/addon/2324" target="_blank">SessionManager</a> &#8211; Nice to have addon that helps you to save all the links and restore them when needed. Generally i open a lot of links in my browser and when i need to take a break, i save the entire session using session manager so the next time i restart my laptop i can get to where i left by restoring the entire session.Quite helpful.</p>
<p>3. <a href="https://addons.mozilla.org/en-US/firefox/addon/4437" target="_blank">Send Tab Urls</a> &#8211; Another helpful addon i use when i browse at office. It so happens that i cant continue browsing  web pages at office and intend to browse them at home at my convenience. But i would need to start it all over from scratch had it not been for this addon. This addon helps me in saving all the links into a mail and send it to a mail address. So when i reach home all i do is open all the links and recontinue my work from where i left at the office. Alternatively the same can be done by saving the session using session manager and sending the .session file created to your email. At your home you just need to save the file at %LOCAL_USER%\Application Data\Mozilla\Firefox\Profiles\1hju3cck.default\sessions</p>
<p>4. <a href="https://maverikpro.wordpress.com/2008/01/04/some-internet-utilities-part-ii/" target="_blank">Roboform</a>&#8211; The needed info is already available in the preceding post.</p>
<p>5.  <a href="https://addons.mozilla.org/en-US/firefox/addon/1843" target="_blank">Firebug</a> &#8211; A must addon for any web developer who deals with CSS and Java script. Noteworthy feature is that it allows you to edit javascript/CSS and execute it on the fly and see the results.</p>
<p>6. <a href="https://addons.mozilla.org/en-US/firefox/addon/3863" target="_blank">Imacros</a> &#8211; Hmm, we have roboform which automates authentication to websites like gmail,yahoo,wordpress,etc. Infact these are the sites that i initially visit. What if there is a means to automate launching all these sites so that in one click all these sites open and i m logged with my account. Thats where Imacro is of use to me. Just as their website say you can automate anything that firefox does.</p>
<p>7. <a href="https://addons.mozilla.org/en-US/firefox/addon/383?application=firefox&amp;id=383" target="_blank">AutoCopy</a> &#8211; A software developer survives on the basic skill needed in IT industry: Ctrl+C..Ctrl+V. This addon typically increases productivity of the developer by copying any selected text to the clipboard.</p>
<p>8.<a href="https://addons.mozilla.org/en-US/firefox/addon/2410" target="_blank"> Fox Marks Sychroniser</a> &#8211; A addon for managing your bookmarks across your computers. I browse a lot at office and any worthy link i add it to my bookmark. I use this tool to create a repository of them at a server and at home i come and syncronise my local bookmarks with that on my server. By doing this i dont stand to lose any of my bookmarks incase my PC crashes.</p>
<p>9. <a href="http://downthemall.mozdev.org/" title="Is it broken ?" target="_blank">Downthemall</a> &#8211; Useful when you are downloading and saving pages on your computer.</p>
<p>10. <a href="https://addons.mozilla.org/en-US/firefox/addon/1730" target="_blank">FireScribe</a> &#8211; This is just a fill in. Just to bring the number to 10. Neverthless useful to bloggers who intend to publish their posts in various blogging sites like wordpres, blogger etc.</p>
<p>Hope you found these addons as useful as i did.</p>
<p>~ Maverik</p>
]]></content:encoded>
					
					<wfw:commentRss>https://maverikpro.wordpress.com/2008/01/12/top-ten-firefox-add-ons/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		
		<media:content medium="image" url="https://2.gravatar.com/avatar/2f44f92748c18db2f4891b716423f2d233189a5983950342cb6fde817a108e0a?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">maverikpro</media:title>
		</media:content>
	</item>
		<item>
		<title>Some internet utilities part – II</title>
		<link>https://maverikpro.wordpress.com/2008/01/04/some-internet-utilities-part-ii/</link>
					<comments>https://maverikpro.wordpress.com/2008/01/04/some-internet-utilities-part-ii/#comments</comments>
		
		<dc:creator><![CDATA[maverikpro]]></dc:creator>
		<pubDate>Fri, 04 Jan 2008 18:17:28 +0000</pubDate>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Crossloop]]></category>
		<category><![CDATA[internet utilities]]></category>
		<category><![CDATA[roboform]]></category>
		<guid isPermaLink="false">http://maverikpro.wordpress.com/2008/01/04/some-internet-utilities-part-ii/</guid>

					<description><![CDATA[As promised, here is my next quota of utilities that i found useful on internet. Top on my list is roboform . Well this is a browser addon that can manage passwords for all your sites. Whenever you enter your username and password for any website, roboform stores them so the next time you visit [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>As promised, here is my next quota of utilities that i found useful on internet. Top on my list is <a href="http://www.download.com/RoboForm/3000-2092_4-10476591.html" target="_blank">roboform</a> . Well this is a browser addon that can manage passwords for all your sites. Whenever you enter your username and password for any website, roboform stores them so the next time you visit those sites you just need to select the website name in roboform toolbar and it will fill the username and passwords and automatically log you in. There are host of other useful features. You can check them out <a href="http://www.roboform.com/features.html" target="_blank">here </a>. I like the auto fill feature wherein you can create an identity for yourself and then wherever you need to register just click on the identity and select fill forms and roboform fills common details like first name, last name, email id etc.</p>
<p>Other utility i found useful is <a href="https://www.crossloop.com/" target="_blank">crossloop</a>. This software is really useful when you want to remote desktop to any machine over internet. Helps when your troubleshooting your brother&#8217;s or your family&#8217;s PC. You can right away download and use it. There is a nice article on this available <a href="http://www.howtogeek.com/howto/windows-vista/remotely-control-somebodys-desktop-the-easy-way/" target="_blank">here</a>.When i tried to connect to my friend&#8217;s laptop over internet it was very slow. it takes a lot of time to render. Instead i would suggest him to put his laptop over internet so that i can remote desktop. That would be a little faster. Yet this tool is very handy when the other party is naive at using computers.</p>
<p>Hmm..well someday i ll also write some must have firefox add-ons that increase your productivity and ease certain manual tasks.</p>
<p>Till then,Its good bye from your host.</p>
<p>~ Maverik</p>
]]></content:encoded>
					
					<wfw:commentRss>https://maverikpro.wordpress.com/2008/01/04/some-internet-utilities-part-ii/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
		
		<media:content medium="image" url="https://2.gravatar.com/avatar/2f44f92748c18db2f4891b716423f2d233189a5983950342cb6fde817a108e0a?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">maverikpro</media:title>
		</media:content>
	</item>
		<item>
		<title>Some internet utilities part – I</title>
		<link>https://maverikpro.wordpress.com/2008/01/01/some-internet-utilities-part-i/</link>
					<comments>https://maverikpro.wordpress.com/2008/01/01/some-internet-utilities-part-i/#comments</comments>
		
		<dc:creator><![CDATA[maverikpro]]></dc:creator>
		<pubDate>Tue, 01 Jan 2008 17:56:18 +0000</pubDate>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[purplenova]]></category>
		<category><![CDATA[terminals]]></category>
		<category><![CDATA[utilities]]></category>
		<guid isPermaLink="false">http://maverikpro.wordpress.com/2008/01/01/some-internet-utilities-part-i/</guid>

					<description><![CDATA[This post is to share with you some tools and utilities that i have bumped upon while i keep surfing the internet. A few of them are freewares and a few of them are commercially sold. These tools have helped me increase my efficiency and provide accesability and i hope you find them as useful [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>This post is to share with you some tools and utilities that i have bumped upon while i keep surfing the internet. A few of them are freewares and a few of them are commercially sold. These tools have helped me increase my efficiency and provide accesability  and i hope you find them as useful as i did.</p>
<p>So first to start with is <a href="http://www.purplenova.com/" target="_blank">Purplenova</a> web server. This easy to install and configure software is useful when you want to host your files and access the same from internet (that means from anywhere). I have run this ftp software from my home laptop so that i can access certain files from my office. Apart from providing plain ftp access, this software provides a host of other features like hosting web sites, exposing web services, etc. Although these features come with the commercial version <img src="https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f626.png" alt="😦" class="wp-smiley" style="height: 1em; max-height: 1em;" /> . A cool feature is that you can subscribe to RSS feeds so whenever i upload a file you can get a notification. Another one is you can categorise your files for public or private access. The file that is only privately shared has to be accessed by hitting the url. I have created my internet share at <a href="http://maverikpro.purplenova.net/" rel="nofollow">http://maverikpro.purplenova.net/</a> .</p>
<p>Next on my list is <a href="http://www.codeplex.com/Terminals" target="_blank">Terminals.</a>A remote desktop client which you can use to store and configure different RDP connections. Earlier I used to save each RDP connection on desktop and double click them when i needed to connect. Managing all the saved connections was cumbersome and the desktop looked ugly . This utility manages all the connections without making your desktop look ugly. Since it shows each connections in a tabbed pane, switching between connection is easy. A must download for anyone who remote connects to different hosts for file upload, deploy, troubleshoot etc.</p>
<p>Well will end the Part one of this post here. Stay tuned to for more updates on this topic</p>
<p>And Wish you a very happy and a prosperous new year 2008</p>
<p>-Maverik</p>
]]></content:encoded>
					
					<wfw:commentRss>https://maverikpro.wordpress.com/2008/01/01/some-internet-utilities-part-i/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		
		<media:content medium="image" url="https://2.gravatar.com/avatar/2f44f92748c18db2f4891b716423f2d233189a5983950342cb6fde817a108e0a?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">maverikpro</media:title>
		</media:content>
	</item>
		<item>
		<title>Updates about my blog</title>
		<link>https://maverikpro.wordpress.com/2007/12/16/updates-about-my-blog/</link>
					<comments>https://maverikpro.wordpress.com/2007/12/16/updates-about-my-blog/#respond</comments>
		
		<dc:creator><![CDATA[maverikpro]]></dc:creator>
		<pubDate>Sun, 16 Dec 2007 11:01:13 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blog podcast]]></category>
		<category><![CDATA[blog updates]]></category>
		<guid isPermaLink="false">http://maverikpro.wordpress.com/2007/12/16/updates-about-my-blog/</guid>

					<description><![CDATA[A few updates about my blog. I have added a podcast feed from odiogo. So anybody interested to listen rather than read my post can download the podcast. Thats just another feature of this blog. Also i have included links from other blogs that i constantly read.These blogs cover lot of areas from business, technology, [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>A few updates about my blog. I have added a podcast feed from odiogo. So anybody interested to listen rather than read my post can download the podcast. Thats just another feature of this blog. Also i have included links from other blogs that i constantly read.These blogs cover lot of areas from business, technology, real estate and self-improvement. Just check them out. You might like a few of them.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://maverikpro.wordpress.com/2007/12/16/updates-about-my-blog/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content medium="image" url="https://2.gravatar.com/avatar/2f44f92748c18db2f4891b716423f2d233189a5983950342cb6fde817a108e0a?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">maverikpro</media:title>
		</media:content>
	</item>
		<item>
		<title>Power of web will democratise the system</title>
		<link>https://maverikpro.wordpress.com/2007/12/13/power-of-web-will-democratise-the-system/</link>
					<comments>https://maverikpro.wordpress.com/2007/12/13/power-of-web-will-democratise-the-system/#respond</comments>
		
		<dc:creator><![CDATA[maverikpro]]></dc:creator>
		<pubDate>Thu, 13 Dec 2007 19:00:11 +0000</pubDate>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Philosophy]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[burrp]]></category>
		<category><![CDATA[Mouthshut]]></category>
		<category><![CDATA[Social networking]]></category>
		<guid isPermaLink="false">http://maverikpro.wordpress.com/2007/12/13/power-of-web-will-democratise-the-system/</guid>

					<description><![CDATA[This post is just to make you realize the power of web. How can one leverage web to communicate his thoughts and thereby fight effectively against the system. The system could be any entity: political, non-political, business organizations or any individual. This post is all about how we can take better decisions and learn from [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>This post is just to make you realize the power of web. How can one leverage web to communicate his thoughts and thereby fight effectively against the system. The system could be any entity: political, non-political, business organizations or any individual. This post is all about how we can take better decisions and learn from each other mistakes. Web as a medium fosters faster communication at a wider audience with less transmission loss. For Example, the rating of a new movie is known instantly . People have the liberty to judge a movie without needing to visit the theatre. <a href="http://www.imdb.com" target="_blank">IMDB</a> &#8211; Internet Movie Database has the ratings for all the movies. It also includes reviews written by movie-goers.  Thanks to the evolution of web from 1.0 to 2.0 . Web 1.0 was all about displaying static content. Web 2.0 is all about of social networking. It defines how group of people communicate to take informed decision and share information for each other&#8217;s benefit</p>
<p>I will quote few instances where i used social networking to make informed decision. The objective of this post is to make you embrace the power of web2.0 for the betterment of society. In March 2006 I had planned to buy a bike. In this age you are spoiled for choices. To choose one that best fits you is a tough proposition. I bumped on a website called <a href="http://www.mouthshut.com" target="_blank">mouthshut.com</a> . This site has rating of all the products on earth &#8211; you name and it is there. You can find the reviews posted by users of the product. And you can also rate the reviews posted by other users. You can build a network of trusted users and set aside the untrusty ones. You can add products to your wishlist and can receive notifications whenever any user adds a review of that product. And now that is really cool. By the way you can find my review of indiaplaza.in at <a href="http://www.mouthshut.com/review/IndiaPlaza.com-135197-1.html" title="IndiaPlaza sucks" target="_blank">here </a>.  When it comes to rating restaurants, i look upto <a href="http://www.burrp.com" target="_blank">burrp.com</a> &#8211; A social networking site built to specifically rate restaurants, hotels in your city.  Such sites makes business organizations to be on their toes. They are aware that any mistake they make has a lot of repercussions. Corporates are infact using the same medium to attract customers too. Mouthshut has introduced a new feature called Corporate blog through which corporates can get first hand info about how customers feel about their product. Social networking is going to redefine how we buy and how companies sell their products. I ll definitely encourage you to be a part of this redefinning process.</p>
<p>Another such instance of my brushes with web2.0 is the creation of this blog. One of the reason why i  decided to blog was to share information to a wider audience who can benefit from it. And with this post i have started my  initial albeit small baby steps towards that goal [:)]</p>
]]></content:encoded>
					
					<wfw:commentRss>https://maverikpro.wordpress.com/2007/12/13/power-of-web-will-democratise-the-system/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content medium="image" url="https://2.gravatar.com/avatar/2f44f92748c18db2f4891b716423f2d233189a5983950342cb6fde817a108e0a?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">maverikpro</media:title>
		</media:content>
	</item>
		<item>
		<title>Time for Tax planning</title>
		<link>https://maverikpro.wordpress.com/2007/12/01/time-for-tax-planning/</link>
					<comments>https://maverikpro.wordpress.com/2007/12/01/time-for-tax-planning/#comments</comments>
		
		<dc:creator><![CDATA[maverikpro]]></dc:creator>
		<pubDate>Sat, 01 Dec 2007 17:17:35 +0000</pubDate>
				<category><![CDATA[Finance]]></category>
		<category><![CDATA[ELSS]]></category>
		<category><![CDATA[investments]]></category>
		<category><![CDATA[tax saving]]></category>
		<guid isPermaLink="false">http://maverikpro.wordpress.com/2007/12/01/time-for-tax-planning/</guid>

					<description><![CDATA[In the past few days, i have been thinking about my tax planning for this year. I generally invest my money in ELSS apart from PF (which is mandatory for everybody to invest money in). The other investment options like PPF, NSC, Govt Bonds don&#8217;t generate good returns although they are less risky. ELSS are [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>In the past few days, i have been thinking about my tax planning for this year. I generally invest my money in ELSS apart from PF (which is mandatory for everybody to invest money in). The other investment options like PPF, NSC, Govt Bonds don&#8217;t generate good returns although they are less risky. ELSS are basically mutual funds that invest money in Stock markets. The catch here is they have a minimum lock-in period of 3 years. On an average they have generated 30% profit, which is commendable compared to what other tax saving investments offer (max 8.5%). Few Funds have given 1-year close to 80% . ELSS are a must to invest in for any investor in his 20s since the long-term benefits outweigh the risks involved. So my next step was to analyse all ELSS funds available in the market and decide on 3-4. I spread my investments over 3-4 mutual funds as diversifying has its own advantage. Some of the websites that i surf include <a href="http://www.moneycontrol.com/mutualfundindia/" title="MFs in india" target="_blank">moneycontrol.com</a> and <a href="http://www.valueresearchonline.com/funds/typecomp.asp?type=1&amp;objective=20" title="ELSS - Fund Compare" target="_blank">valueresearchonline.com</a> . Both the sites have different ways to grade MFs and hence present a problem of their own. MFs selects those MFs whose recent run in stock markets has been phenomenal whereas Valueresearchonline selects those MFs who have a long standing record (say for min 3 yrs) in investing in stock markets. So that boils down to betting on funds that are new kids on the block or Funds that are old horses. Any risk averse investor should prefer betting on track-proven funds and any investor capable of taking risks can bet on the risky ones. Given my risk profile i would choose 3 risky funds and 1 track proven fund. Moreover based on my experience, those funds who have given very good 1-yr return had fallen down as time passed. Hence it takes a lot of time to optimise the right mix of funds.</p>
<p>I went through the reports of both the sites and at last narrowed on 4 ELSS. I have chosen one proven fund in ELSS &#8211; <a href="http://www.valueresearchonline.com/funds/newsnapshot.asp?schemecode=198" target="_blank">SBI Magnum Tax gain</a>. One other fund is of a risky nature &#8211; <a href="http://www.valueresearchonline.com/funds/newsnapshot.asp?schemecode=89" target="_blank">Principal Tax Savings</a>. The rest two have been around for quite some time. They are <a href="http://www.valueresearchonline.com/funds/newsnapshot.asp?schemecode=24" target="_blank">Birla sun life</a> and <a href="http://www.valueresearchonline.com/funds/newsnapshot.asp?schemecode=687" target="_blank">Sundaram PNB tax saver</a>. SBI magnum Tax gain has been given 5 star rating and the rest of them have been given a 4-star rating (Source:Valueresearchonline.com ). The mix of their portfolios rightly suits my profile too. SBI Magnum invests primarily on Large cap stocks that provide both value and growth. Prinicipal Tax savings invests in midcap stocks that are growth oriented. hence risky in nature The rest two  are safe bets &#8211; they invest primarily on large cap stocks that are growth oriented. While investing in ELSS, one can choose 3 options namely growth, dividen-payout and dividend-reinvest. i wouldnt suggest anyone to choose dividend-reinvest as the units bought at the time dividend was announced can be sold only after 3- years .Just check this <a href="http://desimoney.blogspot.com/2006/01/rediff-personal-finance-elss-and.html" target="_blank">blog</a> site for more info. Now that i have decided which ELSS to inves, i need to decide the time frame when i ll buy these units. The Stock markets have been hitting new highs everyday. I m planning to invest when the markets undergo correction. Now when will the markets correct is a million dollar question ? Do you have the answer ? <img src="https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f61b.png" alt="😛" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>Let me know incase you do</p>
<p>Till then,</p>
<p>Happy tax saving,</p>
<p>Maverik</p>
]]></content:encoded>
					
					<wfw:commentRss>https://maverikpro.wordpress.com/2007/12/01/time-for-tax-planning/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
		
		<media:content medium="image" url="https://2.gravatar.com/avatar/2f44f92748c18db2f4891b716423f2d233189a5983950342cb6fde817a108e0a?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">maverikpro</media:title>
		</media:content>
	</item>
		<item>
		<title>Remote Debug a web application using eclipse</title>
		<link>https://maverikpro.wordpress.com/2007/11/26/remote-debug-a-web-application-using-eclipse/</link>
					<comments>https://maverikpro.wordpress.com/2007/11/26/remote-debug-a-web-application-using-eclipse/#comments</comments>
		
		<dc:creator><![CDATA[maverikpro]]></dc:creator>
		<pubDate>Mon, 26 Nov 2007 13:36:30 +0000</pubDate>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[eclipse + JBOSS + remote debug]]></category>
		<category><![CDATA[Remote Debug]]></category>
		<guid isPermaLink="false">http://maverikpro.wordpress.com/2007/11/26/remote-debug-a-web-application-using-eclipse/</guid>

					<description><![CDATA[Eclipse has become the defacto IDE to develop enterprise applications in java. The architecture provides capabilities to support new features by adding plugins for the same. And there are host lot of plugins available for eclipse. For more info click here . Inspite of providing lot of features, developers are not aware of them and [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Eclipse has become the defacto IDE to develop enterprise applications in java. The architecture provides capabilities to support new features by adding plugins for the same. And there are host lot of plugins available for eclipse. For more info click <a href="http://www.eclipseplugincentral.com/" target="_blank">here</a> . Inspite of providing lot of features, developers are not aware of them and hence dont use them to simplify tasks. One of the important aspects of enteprise web applications is debugging. This post will tell you on how to debug web applications using eclipse. The Application server used for this example is JBOSS 4.0.2. I hope the steps specified here would be similar when used with other applications servers.</p>
<p>First specify a breakpoint at which you want the run time execution to stop. You can do this in eclipse by double clicking on the left pane of java editor. Next go to JBOSS_HOME\bin. Open the run.bat file in notepad and search for &#8220;8787&#8221; . You would hit at a line like this</p>
<p><a href="https://maverikpro.wordpress.com/wp-content/uploads/2007/11/jboss.png" title="JBOSS run.bat"><img src="https://maverikpro.wordpress.com/wp-content/uploads/2007/11/jboss.thumbnail.png?w=450" alt="JBOSS run.bat" /></a></p>
<p>Delete the REM statement at the start of the line. By doing this you are enabling JBOSS to run in remote debug mode. Build your war file using MAven/Ant and deploy it in JBOSS_HOME\server\default\deploy folder.Save the run.bat file and double click on it  to run JBOSS.</p>
<p>Now come back to eclipse. Once you have configured breakpoints in eclipse. Click on Run-&gt;Open Debug Dialog. Right Click on Remote Java Application and choose new. A new application based on the class name that contains break point is displayed. Now in Connection properties (right pane) specify the port 8787. A typical configuration for remote debug in eclipse looks like this :</p>
<p><a href="https://maverikpro.wordpress.com/wp-content/uploads/2007/11/remotedebug.png" title="Remote Debug Configuration in eclipse"><img src="https://maverikpro.wordpress.com/wp-content/uploads/2007/11/remotedebug.thumbnail.png?w=450" alt="Remote Debug Configuration in eclipse" /></a></p>
<p>You are done with all the settings. You just have to click on debug to start remote debugging your web application.  Open the debug perspective if eclipse prompts you so. You can add break points dynamically, know values of variables at run time by right clicking on that variable and selecting watch. Remote debugging is very useful for a newbie in a project to learn about the flow of web application. Hope you find this post useful for your day-today project work.</p>
<p>TitBit to deploy web applications using maven :  Developers need to redeploy their war files to JBOSS\..\deploy folder whenever they make changes to the code. This manual operation is tedious as the developer has to do three operations : Build the war file, copy to JBOSS\..\deploy and start the JBOSS server. The last two operation can be done through maven 2.x plugin for JBOSS. For more info about the plugin visit <a href="http://mojo.codehaus.org/jboss-maven-plugin/usage.html" target="_blank">Maven-JBOSS-Plugin </a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://maverikpro.wordpress.com/2007/11/26/remote-debug-a-web-application-using-eclipse/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		
		<media:content medium="image" url="https://2.gravatar.com/avatar/2f44f92748c18db2f4891b716423f2d233189a5983950342cb6fde817a108e0a?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">maverikpro</media:title>
		</media:content>

		<media:content medium="image" url="https://maverikpro.wordpress.com/wp-content/uploads/2007/11/jboss.thumbnail.png">
			<media:title type="html">JBOSS run.bat</media:title>
		</media:content>

		<media:content medium="image" url="https://maverikpro.wordpress.com/wp-content/uploads/2007/11/remotedebug.thumbnail.png">
			<media:title type="html">Remote Debug Configuration in eclipse</media:title>
		</media:content>
	</item>
	</channel>
</rss>