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

<channel>
	<title>Off notes off the mind</title>
	<atom:link href="http://mailtoaman.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mailtoaman.wordpress.com</link>
	<description>Sharing my thoughts with you</description>
	<lastBuildDate>Sat, 02 Feb 2008 19:35:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mailtoaman.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Off notes off the mind</title>
		<link>http://mailtoaman.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mailtoaman.wordpress.com/osd.xml" title="Off notes off the mind" />
	<atom:link rel='hub' href='http://mailtoaman.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Array operator overloading</title>
		<link>http://mailtoaman.wordpress.com/2008/02/03/array-operator-overloading/</link>
		<comments>http://mailtoaman.wordpress.com/2008/02/03/array-operator-overloading/#comments</comments>
		<pubDate>Sat, 02 Feb 2008 19:35:13 +0000</pubDate>
		<dc:creator>Aman</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Array Operator overloading in PHP]]></category>
		<category><![CDATA[ArrayAccess]]></category>

		<guid isPermaLink="false">http://mailtoaman.wordpress.com/?p=34</guid>
		<description><![CDATA[ArrayAccess interface is an excellent offer from PHP. Though I do not personally like the idea of operator overloading, this interface can be a great tool for developing application faster and neatly by overloading the array access. The interface is to be implemented by a class and override the accessors methods. I am giving a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mailtoaman.wordpress.com&amp;blog=2583352&amp;post=34&amp;subd=mailtoaman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>ArrayAccess interface is an excellent offer from PHP. Though I do not personally like the idea of operator overloading, this interface can be a great tool for developing application faster and neatly by overloading the array access.</p>
<p>The interface is to be implemented by a class and override the accessors methods.</p>
<p><img src="http://mailtoaman.files.wordpress.com/2008/02/arrayaccess.jpg?w=398&#038;h=264" alt="Class diagram of ArrayAccess interface" border="0" height="264" width="398" /></p>
<p>I am giving a simple code that demonstrate its usage.</p>
<pre><font color="#999999"> class MyArray implements ArrayAccess {       
    private $arr = array();

    function offsetExists($name) {              
        return isset($name);
    }

    function offsetGet($name) {       
        return $arr[$name];
    }

    function offsetSet($key, $val) {       
        $arr[$key]=$val;
    }

    function offsetUnset($name) {       
        unset($arr[$name]);
    }
}
$arr = new MyArray();
$userMap["Hello"]="Worlds";
echo $userMap["Hello"];</font></pre>
<p>This class can use a database for its model. The interface facilitates coding array style with similar __get() __set() functionalities for classes.</p>
<p>Btw, anybody knows how I can show codes like code in an editor with line number ?</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mailtoaman.wordpress.com/34/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mailtoaman.wordpress.com/34/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mailtoaman.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mailtoaman.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mailtoaman.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mailtoaman.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mailtoaman.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mailtoaman.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mailtoaman.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mailtoaman.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mailtoaman.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mailtoaman.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mailtoaman.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mailtoaman.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mailtoaman.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mailtoaman.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mailtoaman.wordpress.com&amp;blog=2583352&amp;post=34&amp;subd=mailtoaman&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mailtoaman.wordpress.com/2008/02/03/array-operator-overloading/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b3346a1af47c957e7bd37c3ca4518887?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Aman</media:title>
		</media:content>

		<media:content url="http://mailtoaman.files.wordpress.com/2008/02/arrayaccess.jpg" medium="image">
			<media:title type="html">Class diagram of ArrayAccess interface</media:title>
		</media:content>
	</item>
		<item>
		<title>Fedex localization with ASP.net-C#</title>
		<link>http://mailtoaman.wordpress.com/2008/02/02/fedex-localization-with-aspnet-c/</link>
		<comments>http://mailtoaman.wordpress.com/2008/02/02/fedex-localization-with-aspnet-c/#comments</comments>
		<pubDate>Sat, 02 Feb 2008 11:22:43 +0000</pubDate>
		<dc:creator>Aman</dc:creator>
				<category><![CDATA[ASP.net]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Fedex]]></category>
		<category><![CDATA[Freelancing]]></category>

		<guid isPermaLink="false">http://mailtoaman.wordpress.com/?p=33</guid>
		<description><![CDATA[Eventually I have got some free time to relax and to learn. Fortunately this time also turned to a time to earn some After a long time I worked as free lancer for a week. My brother from US gave me subcontract. The project was mainly to localize Fedex international website as well as build [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mailtoaman.wordpress.com&amp;blog=2583352&amp;post=33&amp;subd=mailtoaman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Eventually I have got some free time to relax and to learn. Fortunately this time also turned to a time to earn some <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>After a long time I worked as free lancer for a week. My brother from US gave me subcontract. The project was mainly to localize <a href="http://www.fedex.com" title="Fedex web site">Fedex</a>  international website as well as build a system for future purpose.</p>
<p>I enjoyed working with ASP.net after about 4 years. Being a java programmer that time I used to code rather use the studio to develop custom component and coding. Though some the localization could be done partially using the VS IDE, many part was was complex and need to modify C#,VB.net and JavaScript code. So, I preferred only coding without visual aid.</p>
<p>In addition to the enjoyment and freedom, end of the week I got quite a good pay <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Now, I am really thinking should I continue with free lancing?</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mailtoaman.wordpress.com/33/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mailtoaman.wordpress.com/33/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mailtoaman.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mailtoaman.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mailtoaman.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mailtoaman.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mailtoaman.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mailtoaman.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mailtoaman.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mailtoaman.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mailtoaman.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mailtoaman.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mailtoaman.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mailtoaman.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mailtoaman.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mailtoaman.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mailtoaman.wordpress.com&amp;blog=2583352&amp;post=33&amp;subd=mailtoaman&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mailtoaman.wordpress.com/2008/02/02/fedex-localization-with-aspnet-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b3346a1af47c957e7bd37c3ca4518887?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Aman</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP with NetBeans</title>
		<link>http://mailtoaman.wordpress.com/2008/02/01/php-with-netbeans/</link>
		<comments>http://mailtoaman.wordpress.com/2008/02/01/php-with-netbeans/#comments</comments>
		<pubDate>Thu, 31 Jan 2008 18:40:08 +0000</pubDate>
		<dc:creator>Aman</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://mailtoaman.wordpress.com/?p=32</guid>
		<description><![CDATA[I am always a fan of Java. And like NetBeans as well. Though it used to be slow, but the latest release netbeans 6 is super fast, it may be due to the latest jre. Using the the latest jre, old java swing applications are now super fast!!! Believe me, better else try yourself. I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mailtoaman.wordpress.com&amp;blog=2583352&amp;post=32&amp;subd=mailtoaman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am always a fan of Java. And like NetBeans as well. Though it used to be slow, but the latest release netbeans 6 is super fast, it may be due to the latest jre. Using the the latest jre, old java swing applications are now super fast!!! Believe me, better else try yourself. I am sure swing will come well into the desktop market in near future (it till then the desktop idea survives <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> )</p>
<p>Anyway, I was searching for an IDE for PHP with auto completion feature. Having downloaded the netbeans6 I was surprise to find a plug-in named PHP! Downloaded it and got exactly what I was looking for <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>For more information visit <a href="http://blogs.sun.com/phantom/entry/hello_netbeans_this_is_php" title="Php netbeans plug in tutorial">Php plug-in for netbeans</a>.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mailtoaman.wordpress.com/32/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mailtoaman.wordpress.com/32/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mailtoaman.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mailtoaman.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mailtoaman.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mailtoaman.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mailtoaman.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mailtoaman.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mailtoaman.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mailtoaman.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mailtoaman.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mailtoaman.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mailtoaman.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mailtoaman.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mailtoaman.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mailtoaman.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mailtoaman.wordpress.com&amp;blog=2583352&amp;post=32&amp;subd=mailtoaman&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mailtoaman.wordpress.com/2008/02/01/php-with-netbeans/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b3346a1af47c957e7bd37c3ca4518887?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Aman</media:title>
		</media:content>
	</item>
		<item>
		<title>Agile mashup in practice</title>
		<link>http://mailtoaman.wordpress.com/2008/01/22/agile-mashup-in-practice/</link>
		<comments>http://mailtoaman.wordpress.com/2008/01/22/agile-mashup-in-practice/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 10:45:34 +0000</pubDate>
		<dc:creator>Aman</dc:creator>
				<category><![CDATA[Software Engineering]]></category>

		<guid isPermaLink="false">http://mailtoaman.wordpress.com/2008/01/22/agile-mashup-in-practice/</guid>
		<description><![CDATA[&#8220;Traditional methodologies are a bunch of stick-in-the-muds who&#8217;d rather produce flawless documentation than a working system that meets business needs, Lightweight, er, &#8216;agile&#8217; methodologists are a bunch of glorified hackers who are doing to be in for a heck of a surprise when they try to scale up their toys into enterprise-wide-software.&#8221; &#8211; Jim Highsmith, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mailtoaman.wordpress.com&amp;blog=2583352&amp;post=30&amp;subd=mailtoaman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><font color="#c0c0c0"><font color="#333399">&#8220;Traditional methodologies are a bunch of stick-in-the-muds who&#8217;d rather produce flawless documentation than a working system that meets business needs, Lightweight, er, &#8216;agile&#8217; methodologists are a bunch of glorified hackers who are doing to be in for a heck of a surprise when they try to scale up their toys into enterprise-wide-software.&#8221;<br />
</font><br />
&#8211; Jim Highsmith, in &#8220;Great methodologies Debate: Part 2&#8243;, Cutter IT journal<br />
</font><br />
That says, none of the methodologies is perfect alone. Since traditional/formal models like Waterfall, Incremental,RAD model, Evolutionary, Spiral, Component-Based development etc are almost obsolete and impractical. They lost their feasibility in most cases for their time-consuming and expensive nature. Besides, few developers have the necessary background to apply formal methods, they often need extensive training on the model and methods. Furthermore, these models does not support a good communication with technically unsophisticated customers.</p>
<p>Hence come the agile methodologies. To produce the product right we encounter many implementation in this agile era, there are many paths originated from the agile development practice.</p>
<p>Now, which to choose ? Should you choose one and stick to that ? In my experience I found choosing a single methodologies is quite impractical, partly because none can match up with the unique project requirement, partly because there are way too many methodologies defined <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Lets look at the core blocks of some major agile practices.<br />
<i><br />
</i></p>
<p><i><b>Extreme Programming (XP)</b></i><br />
<font color="#800000"><i>Planning:</i></font><br />
Planning goes along with the creation of user stories. Stories are kept in index cards with priority value set by the customer. The xp team assigns a cost in terms of estimate time to complete. If the cost is more than three weeks, the story is broken into smaller ones. Needless to say, as agile goes, stories can be added any time!</p>
<p>Stories which will be included are set with customer&#8217;s approval along with the delevary date. The stories with highest value and the most risky ones are implemented first.</p>
<p><i><font color="#800000">Project velocity:</font></i><br />
Project velocity is calculated after each release. It is a simple calculation based on how many storeis are implemented in the release. Project velocity helps estimating the next release and understand the estimation accuracy.</p>
<p><i><font color="#800000">Design and Spikes:</font></i><br />
XP design provides only the implementation guidelines for a story as it is written. Specifying extra functionality is highly discouraged. Do only the things that is required for the current sotry in next release. If encountered a difficult design problem, create a spike solution i.e. an operational prototype.</p>
<p>One thing that you must need is the use of CRC cards. These cards also contains the release and story information. They are the only design artifacts produced by XP.<br />
<i><br />
<font color="#800000">Coding:</font></i><br />
Having done with the story and desing, now dive into development ? No, wait ! First write up some test cases and unit tests. Once the unit tests are created, focus only on what must be implemented. XP also encourages pair programing.</p>
<p><font color="#800000"><i>Testing:</i></font><br />
As mentioned earlier,testing starts before coding. Tests should be done using a framework which will enable regression testing as the iteration goes on.</p>
<p><i><b>Adaptive software development(ASD)<br />
</b></i><br />
It is based on team self-organization and collaboration. It is almost a formal incremental and iterative method which gives high value on learing practice.</p>
<p><i><font color="#800000">Speculation:</font></i><br />
First statge of ASD is speculation when the project goal, constraints etc are decided.</p>
<p><i><font color="#800000">Collaboration:</font></i><br />
Collaboration in this methodology does not mean simply being a motivated team working together. It is based on trust, the team met must trust each other to<br />
1. Criticize without anmosity<br />
2. Assist without resentment<br />
3. Communicate to solve a problem</p>
<p><i><font color="#800000">Learning:</font></i><br />
Learning is practiced by formal technical review of the component built by the team members.<br />
<span id="more-30"></span></p>
<p><i><b>Dynamic system development method (dsdm)<br />
</b></i><br />
It is a superset of XP and ASD butt his framwork deals with highly time constrained situation under a controlled project with incremental prototyping.</p>
<p>DSDM approach to each iteration following the 80% rule i.e. only doing the must-do works to move to the next increment. The remainin details are left for later completion when more related requirement, change request are requested and depends on the &#8220;time-gaps&#8221;.</p>
<p>Interestingly, DSDM creates a prototype which will ultimately the deliverable product.</p>
<p><i><font color="#800000">Feasibility study:</font></i><br />
Prepare the basic business requirement and figure out the constraints.</p>
<p><i><font color="#800000">Business study:</font></i><br />
Breaks down the busness requirement into functional requirement, defines overall application architecture.<br />
<i><font color="#800000"><br />
Function model iteration:</font></i><br />
Prepare a fucntional prototype from the sub set of all to be demonstrated to the customer. This where 80% rule comes. Customer feedback are gathered during the cycle and work on those to make it 100%.</p>
<p><i><b>Scrum</b></i></p>
<p>Scrum is actually not a methodology, rather it is framework which will use any effective agile methodologies.</p>
<p>First create the prodcut back log by the product owner(can be a customer) and prioritize, then create a sprint backlog i.e. which functions are to be imlemented. A sprint  generally spans 30 days and the team is consited of 5 to 9 people. The team lead is called the scrum master whoes main responsibility is to arrange daily scrum, sharing knowledge among the team and  to ensure the team gets the best possible circumstances to accomplish the next sprint.</p>
<p><i><b>Feature driven development</b></i></p>
<p>A feature in this contex is client&#8217;s on functional requirement that can be implemented in atmost 2 weeks. Features can be categorized into a hierachical way. The small size of the features, they are simpler to design, faster to implement and easier to inspect. Point to be noted, project planing and tracking is done according to the feature hierachy not to individual features chosen arbitarily or according to any criteria.</p>
<p>An example of a feature can be:<br />
<i><font color="#008000">&#8220;Show the last 10 posts.&#8221;<br />
&#8220;Auto save a post after 5 min.&#8221;</font><br />
</i></p>
<p>There are many other methodolgies exists out there. I think methodology practice in real life is often a combination of more than one.</p>
<p>Do you agree ?</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mailtoaman.wordpress.com/30/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mailtoaman.wordpress.com/30/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mailtoaman.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mailtoaman.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mailtoaman.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mailtoaman.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mailtoaman.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mailtoaman.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mailtoaman.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mailtoaman.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mailtoaman.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mailtoaman.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mailtoaman.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mailtoaman.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mailtoaman.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mailtoaman.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mailtoaman.wordpress.com&amp;blog=2583352&amp;post=30&amp;subd=mailtoaman&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mailtoaman.wordpress.com/2008/01/22/agile-mashup-in-practice/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b3346a1af47c957e7bd37c3ca4518887?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Aman</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://mailtoaman.wordpress.com/2008/01/22/hello-world/</link>
		<comments>http://mailtoaman.wordpress.com/2008/01/22/hello-world/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 06:01:51 +0000</pubDate>
		<dc:creator>Aman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mailtoaman.wordpress.com&amp;blog=2583352&amp;post=1&amp;subd=mailtoaman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to <a href="http://wordpress.com/">WordPress.com</a>. This is your first post. Edit or delete it and start blogging!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mailtoaman.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mailtoaman.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mailtoaman.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mailtoaman.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mailtoaman.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mailtoaman.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mailtoaman.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mailtoaman.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mailtoaman.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mailtoaman.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mailtoaman.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mailtoaman.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mailtoaman.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mailtoaman.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mailtoaman.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mailtoaman.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mailtoaman.wordpress.com&amp;blog=2583352&amp;post=1&amp;subd=mailtoaman&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mailtoaman.wordpress.com/2008/01/22/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b3346a1af47c957e7bd37c3ca4518887?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Aman</media:title>
		</media:content>
	</item>
		<item>
		<title>The role of a team lead in agile environment</title>
		<link>http://mailtoaman.wordpress.com/2008/01/21/the-role-of-a-team-lead-in-agile-environment/</link>
		<comments>http://mailtoaman.wordpress.com/2008/01/21/the-role-of-a-team-lead-in-agile-environment/#comments</comments>
		<pubDate>Mon, 21 Jan 2008 13:48:00 +0000</pubDate>
		<dc:creator>Aman</dc:creator>
				<category><![CDATA[Project Management]]></category>
		<category><![CDATA[Software Engineering]]></category>

		<guid isPermaLink="false">http://mailtoaman.wordpress.com/2008/01/21/the-role-of-a-team-lead-in-agile-environment/</guid>
		<description><![CDATA[I think pure waterfall model is impractical. It is as impractical as the pendulum in pure physics where the thread is of no weight and no friction exists. And that is what you can never have in the lab. We, the software developers know there is always &#8216;friction&#8217; and nothing is &#8216;massless&#8217;. The ever changing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mailtoaman.wordpress.com&amp;blog=2583352&amp;post=29&amp;subd=mailtoaman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I think pure waterfall model is impractical. It is as impractical as the pendulum in  pure physics where the thread is of no weight and no friction exists. And that is what you can never have in the lab.</p>
<p>We, the software developers know there is always &#8216;friction&#8217; and nothing is &#8216;massless&#8217;. The ever changing nature of the human mind and limitation to perceive what it needs results in modification in the requirement. That why we are agile, we don&#8217;t just fall.</p>
<p>Now, trust and sense of responsibility are at the base of agile methodologies among some other. Here, every member in a team is expected to be self driven and self motivated. They are given task and set free to accomplish that at their own choice. Formal managing, let alone macro managing, hardly gets its place. Then what would the team-lead do ? Should s/he dive into developing? or is there indeed any need of a team leader?</p>
<p>Actually, there is an unavoidable need of the team-lead-role. And s/he should never dive into developing unless it is that required. Rather, he(please add an &#8216;s&#8217; before &#8216;h&#8217;, I&#8217;m lazy.) role is to keep all his mets connected as well observe aspect of their work.</p>
<p>Team-Lead role is almost similar to the role of the wicket keeper in cricket; cheering up the players and catch all the balls behind. A team lead should also look for the quality and security of the code component. As well, he will also ensure development path is not deviated from the path. As we are talking about agile methodologies, change may come, but that change should be verified by the team lead.</p>
<p>Besides, the team lead should accumulate the knowledge learned by each of the team members. He is to somehow implement the notion of adaptive software development(ASD proposed by Jim Highsmith) i.e. focus on collaboration and learning. He is to arrange an meeting  to share the knowledge of the team mets. It can be in lunch time, can be after lunch hour or whenever seems appropriate. Remember, there is no need to prepare  presentation as it often time consuming and deviates the concentration from the development.  Main idea is to use any wheel if developed already by a team.</p>
<p>One point must be concerned about at this regard is to maintain the motivation and positive team spirit. Say two techniques are developed by two of the team members for similar type of problem. Both the developers are smart and techniques are smart too. Now, to server in future which method is to be used? The team lead should carefully analyze(don&#8217;t take too much time, if not resolved drop it till a right time) the two techniques with participation of them and expectedly he should sort out the right one and has to convince both of them positively.</p>
<p>Always keep in concern to maintain the team spirit and motivation.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mailtoaman.wordpress.com/29/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mailtoaman.wordpress.com/29/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mailtoaman.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mailtoaman.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mailtoaman.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mailtoaman.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mailtoaman.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mailtoaman.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mailtoaman.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mailtoaman.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mailtoaman.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mailtoaman.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mailtoaman.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mailtoaman.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mailtoaman.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mailtoaman.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mailtoaman.wordpress.com&amp;blog=2583352&amp;post=29&amp;subd=mailtoaman&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mailtoaman.wordpress.com/2008/01/21/the-role-of-a-team-lead-in-agile-environment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b3346a1af47c957e7bd37c3ca4518887?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Aman</media:title>
		</media:content>
	</item>
		<item>
		<title>Books I have read.</title>
		<link>http://mailtoaman.wordpress.com/2008/01/20/books-i-have-read/</link>
		<comments>http://mailtoaman.wordpress.com/2008/01/20/books-i-have-read/#comments</comments>
		<pubDate>Sun, 20 Jan 2008 12:11:00 +0000</pubDate>
		<dc:creator>Aman</dc:creator>
				<category><![CDATA[book]]></category>

		<guid isPermaLink="false">http://mailtoaman.wordpress.com/2008/01/20/books-i-have-read/</guid>
		<description><![CDATA[Reading is my hobby and forgetting is my nature. In continuation to this, I have just started reading the book &#8220;Agile Software Development Qauality Assurance&#8221; by Ioannis Stamelos and Panagiotis Sfetsos. Recently I was very much inspired by Hasin Hayder to read on, since that, I like to share my reading experience. This post will [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mailtoaman.wordpress.com&amp;blog=2583352&amp;post=28&amp;subd=mailtoaman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Reading is my hobby and forgetting is my nature. In continuation to this, I have just started reading the book &#8220;Agile Software Development Qauality Assurance&#8221; by Ioannis Stamelos and Panagiotis Sfetsos.</p>
<p>Recently I was very much inspired by <a href="http://hasin.wordpress.com/">Hasin Hayder</a>   to read on, since that, I like to share my reading experience.</p>
<p>This post will contain all my read books gradually <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>1. Agile software development quality assurance<br />by Ioannis G. Stamelos, Panagiotis Sfetsos</p>
<p>2. Test-Driven Development By Example<br />by Kent Beck</td>
<p>3. Software engineering A practitioner&#8217;s approach<br />by Roger S. Pressman</p>
<p>4. Object-oriented PHP, concepts, techniques and code<br />By Peter Lavin</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mailtoaman.wordpress.com/28/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mailtoaman.wordpress.com/28/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mailtoaman.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mailtoaman.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mailtoaman.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mailtoaman.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mailtoaman.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mailtoaman.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mailtoaman.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mailtoaman.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mailtoaman.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mailtoaman.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mailtoaman.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mailtoaman.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mailtoaman.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mailtoaman.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mailtoaman.wordpress.com&amp;blog=2583352&amp;post=28&amp;subd=mailtoaman&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mailtoaman.wordpress.com/2008/01/20/books-i-have-read/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b3346a1af47c957e7bd37c3ca4518887?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Aman</media:title>
		</media:content>
	</item>
		<item>
		<title>JQuiery</title>
		<link>http://mailtoaman.wordpress.com/2008/01/12/jquiery/</link>
		<comments>http://mailtoaman.wordpress.com/2008/01/12/jquiery/#comments</comments>
		<pubDate>Sat, 12 Jan 2008 18:53:00 +0000</pubDate>
		<dc:creator>Aman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mailtoaman.wordpress.com/2008/01/12/jquiery/</guid>
		<description><![CDATA[Once it used to be stated that to be a good developer one should learn a language every year. Why? The basic reason was to widen up ones view. By learning new language we can come to know about new techniques to solve a problem. Following that rule, I tasted some languages like C/C++(:P), java, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mailtoaman.wordpress.com&amp;blog=2583352&amp;post=27&amp;subd=mailtoaman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>
<p>Once it used to be stated that to be a good developer one should learn a language every year. Why? The basic reason was to widen up ones view. By learning new language we can come to know about new techniques to solve a problem. Following that rule, I tasted some languages like C/C++(:P), java, Perl, PHP VB, Bash, VRML, JavaScript, C#, VC++/MFC(it should fall in C++ !), Flash Action script, SQL, Ferite etc.</p>
<p>
<p>Now, should I start learning python or ruby? I know they worth knowing, those are suppose to be a pleasant experience. But, what else might be done? I think knowing some api/libs can do the same! So, we learn GTK, XFC, Enlightenment, JFP, Struts, Tapestry etc.</p>
<p>
<p>In this way, I have started tasting JQuery. I am not saying learning, as to &#8216;learn&#8217;or to say &#8220;I know THIS&#8221; not just means I read few books, some articles and a handful of codes to demonstrate, rather it&#8217;s a matter of a longer period than 24 hours or 30 days.</p>
<p>
<p>Anyway, I am just writing about what I understand while going through the journey with JQuery( JQ ). Btw, I am studying the book, &#8220;Learing JQuery&#8221; by Jonathan Chaffer and Karl Swedberg.</p>
<p>
<p><strong><em>What we can do with JQ:</em></strong></p>
<p>
<ol>
<li>Easily access to any DOM element</li>
<p>
<li>Modify the appearance on the fly [using css]</li>
<p>
<li>Change the content of the page</li>
<p>
<li>A wide range event handling to make the page more responsive to the user</li>
<p></ol>
<p>
<p>Besides these using jq we can do animation on the page,</p>
<p>ajax</p>
<p>integration and simplify other javascript tasks.
<p>JQ has an interesting factory function $() and it can refer to any object very easily, like:</p>
<p>
<ol>
<li>Elements : $(&#8216;p&#8217;) : Gets all the paragraphs</li>
<p>
<li>A particular element: $(&#8216;#an_id&#8217;): gets the element with id &#8216;an_id&#8217;</li>
<p>
<li>Elements with same class: $(&#8216;.className&#8217;)</li>
<p></ol>
<p>[to be continued, feeling sleepy..]
<p class="poweredbyzoundry">Powered by <a href="http://www.zoundry.com" class="poweredbyzoundry_link" rel="nofollow">Zoundry</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mailtoaman.wordpress.com/27/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mailtoaman.wordpress.com/27/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mailtoaman.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mailtoaman.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mailtoaman.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mailtoaman.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mailtoaman.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mailtoaman.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mailtoaman.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mailtoaman.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mailtoaman.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mailtoaman.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mailtoaman.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mailtoaman.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mailtoaman.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mailtoaman.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mailtoaman.wordpress.com&amp;blog=2583352&amp;post=27&amp;subd=mailtoaman&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mailtoaman.wordpress.com/2008/01/12/jquiery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b3346a1af47c957e7bd37c3ca4518887?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Aman</media:title>
		</media:content>
	</item>
		<item>
		<title>When captain want to score</title>
		<link>http://mailtoaman.wordpress.com/2007/12/07/when-captain-want-to-score/</link>
		<comments>http://mailtoaman.wordpress.com/2007/12/07/when-captain-want-to-score/#comments</comments>
		<pubDate>Fri, 07 Dec 2007 11:16:00 +0000</pubDate>
		<dc:creator>Aman</dc:creator>
				<category><![CDATA[Project Management]]></category>
		<category><![CDATA[SQA]]></category>

		<guid isPermaLink="false">http://mailtoaman.wordpress.com/2007/12/07/when-captain-want-to-score/</guid>
		<description><![CDATA[It is a post in reply to SQABD Yahoo group. Really a nice statement, there is no &#8216;I&#8217; in TEAM. In addition to it, I would like to say, &#8220;&#8230;though it is consisted ofsome I&#8217;s&#8221;. And everyone, really need to be concerned about all the I&#8217;s. Why I am saying this, is for another truth [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mailtoaman.wordpress.com&amp;blog=2583352&amp;post=26&amp;subd=mailtoaman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It is a post in reply to <a href="http://tech.groups.yahoo.com/group/sqa_bangladesh/message/973.">SQABD Yahoo group</a>.</p>
<p>Really a nice statement, there is no &#8216;I&#8217; in TEAM.</p>
<p>In addition to it, I would like to say, &#8220;&#8230;though it is consisted of<br />some I&#8217;s&#8221;. And everyone, really need to be concerned about all the I&#8217;s.</p>
<p>Why I am saying this, is for another truth that you said about team<br />sport. Yes, surely someone gets more credit. Say in foot ball, may be<br />the scorers are highlighted. But if the scorers want to play alone it<br />is not appreciated and can be risky; as we all know it will also<br />hamper the team effort.</p>
<p>Additionally, think about the case when the captain is always planning<br />how to score himself and forgets to plan how to defend his back, or<br />how to employ all the players for winning the match, in software<br />development context, meet the deadline and keep the project and make<br />the customer happy <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Though, in some organizations and in some teams, it is experienced<br />that some members irrespective of his/her role often forget their<br />play.Sometimes they fail to understand the difference between<br />confidence and (superiority)complex. It is rather detrimental when it<br />happens to the captains.</p>
<p>Specially the captains who came up to the managerial level by his/her<br />development talents, which is undoubtedly appreciable. But<br />occasionally, they are found to give more concentration on<br />development(not design) rather on managing. As a consequence,<br />developers kept idle. There are even some situations where developers<br />were kept idle for 5+ hours for a 2 decision of the skipper(and it was<br />solved in 10min after that), why ? cause s/he was coding in quiet<br />mode! And it was not use to happen occasionally, rather it was a<br />everyday practice! Developers working late nights often had to wait<br />for hours together for a decision.</p>
<p>Moreover,another problem of captains who were a Ronaldo(I&#8217;m his<br />fan!)once is frequently found in their initial planning and designing<br />the system. They tends to concentrate(and confined in the box) more on<br />development details. I had another experience, where the manager was<br />very talented and designed an system architecture(it was really a<br />nice, I admit) and made the developers write more than 60 classes! But<br />the problem was s/he did not know which technology/api will be used.<br />When the api is got along with the apidoc, all those piles of codes<br />are kept aside for the dust to fall on and with a hope to use in<br />future. Developers again started writing code when they come to know<br />what to do after sitting idle for hours. And again, the captain uses<br />his/her full talent to develop some roadblocks (definitely those were<br />very important) but without an integration plan and guess what&#8230; even<br />without a revision control system. So the developers started writing<br />the drama, which was scattered and scary&#8230;..</p>
<p>So I think, though the word TEAM has no &#8216;I&#8217; in it but it has an &#8216;M&#8217; at<br />the lead. S/he must ensure and be concerned that there comes no &#8216;I&#8217; in<br />TEAM.</p>
<p>Have a nice day !</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mailtoaman.wordpress.com/26/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mailtoaman.wordpress.com/26/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mailtoaman.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mailtoaman.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mailtoaman.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mailtoaman.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mailtoaman.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mailtoaman.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mailtoaman.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mailtoaman.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mailtoaman.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mailtoaman.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mailtoaman.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mailtoaman.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mailtoaman.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mailtoaman.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mailtoaman.wordpress.com&amp;blog=2583352&amp;post=26&amp;subd=mailtoaman&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mailtoaman.wordpress.com/2007/12/07/when-captain-want-to-score/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b3346a1af47c957e7bd37c3ca4518887?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Aman</media:title>
		</media:content>
	</item>
		<item>
		<title>NetBean, even more fun</title>
		<link>http://mailtoaman.wordpress.com/2007/11/22/netbean-even-more-fun/</link>
		<comments>http://mailtoaman.wordpress.com/2007/11/22/netbean-even-more-fun/#comments</comments>
		<pubDate>Thu, 22 Nov 2007 11:10:00 +0000</pubDate>
		<dc:creator>Aman</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Software Review]]></category>

		<guid isPermaLink="false">http://mailtoaman.wordpress.com/2007/11/22/netbean-even-more-fun/</guid>
		<description><![CDATA[I am not going to raise another holly war between netbeans and the eclipese IDE. But, even though eclipse ide worked great after little tweaking, i think everything work better after they are tweaked, I love netbeans for its simple and fast interface. I know, many of you already frowned as called netbeans fast ! [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mailtoaman.wordpress.com&amp;blog=2583352&amp;post=24&amp;subd=mailtoaman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am not going to raise another holly war between netbeans and the eclipese IDE. But, even though eclipse ide worked great after little tweaking, i think everything work better after they are tweaked, I love netbeans for its simple and fast interface. I know, many of you already frowned as called netbeans fast ! Yes indedd. At least for C/C++ development. Netbeans appeared simply lightening fast. It easily replaced geany as my favorite IDE.</p>
<p>It is true, eclipse user base is very rich and so is its plug-in base. Almost all the necessary tools along with huge unnecessary ones (for a particular development view) can be found with eclipse. Especially the subversion plug-in&#8230; it is simply splendid). No worries.. I will download the svn module for netbeans. Hope it will not dishearten me <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Lastly, I also admit, netbeans is very slow for java development. Last time I was developing a non-day-job project using jsp/struts. I choose netbeans and found that it takes all the memory of my computer. Again after tweaking for memory, it came up with much faster speed, even though  an honest  comment will be . SLOW.</p>
<p>But, if for C++ development, its simply great. Additionally, you can easily create UML design graphically by drag and drop; and then use it in your project ! One interesting feature of the UML module is that, here some of the design pattern templates are built in i.e. just select a pattern, give custom name click ok&#8230; you got the classes.</p>
<p>Finally, I am very happy with the new netbean.. I simply love it.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mailtoaman.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mailtoaman.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mailtoaman.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mailtoaman.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mailtoaman.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mailtoaman.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mailtoaman.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mailtoaman.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mailtoaman.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mailtoaman.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mailtoaman.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mailtoaman.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mailtoaman.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mailtoaman.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mailtoaman.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mailtoaman.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mailtoaman.wordpress.com&amp;blog=2583352&amp;post=24&amp;subd=mailtoaman&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mailtoaman.wordpress.com/2007/11/22/netbean-even-more-fun/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b3346a1af47c957e7bd37c3ca4518887?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Aman</media:title>
		</media:content>
	</item>
	</channel>
</rss>
