Skip to main content

Famous Five - Five things I have learned about Project Management from Enid Blyton's series

​During this summer, my wife and I introduced my eight years kid to Enid Blyton's series Famous Five. I was very delighted as this was one of my favourite series in my childhood and we're hoping that my son will also enjoy it the same way. 
After buying the book, my son and me were ready the book together. Much to my surprize I have learnt quite a good few tricks in Project Management and I want to share with you top Five tricks.
1. Planning: As said in PMBOK, planning is most crucial part of project management and without planning one is planning to fail. so does in Famous Five series. While they plan to explore the treasure Island, they jot down all the resources they might need for successful execution of the exploration. From food to axe, they listed everything they might require. Also, they planned for 3 days resources. So, identifying appropriate tools is very essential to be successful project execution.
2. Team: While work in a team, we need to understand that not everybody has same skills. Everybody is unique and each has their own strength. Anne, a possibly considered as weak link in the team has a unique strength of thinking out of the box and provide solution while team is thinking about the alternatives. This quality made her integral part of the team and not a weak link. In Treasure hunt, George acted as SME of the Island and we need SME power to execute any project. So, in short, in a team, it is very important to identify the strength of the member and expose their strong point based on the situation.
3. Overcome BOSSBurn Out Stress Syndrome is very common among the members in the project. We, while executing the project, if we stuck in any problem, tend to bog down with the problem. The Famous Five always knew when to take break and call for a day. If we practice this, we'll definitely beat BOSS and enjoy our work
4. Brainstorm and alternative plan: Sometimes what we plan does not work. During these phase, brain storming with the key members will help to find alternate solution. This approach were taken multiple times by the Famous Five in their different adventures.
5. Understand the limitation and take help from expert: Realizing that not everything is our cup of tea is one of the signs of maturity. In Treasure hunt, they escape from the Island after damaging the motor boat and reached to George's father for help. He in turn called police and Lawyer. same with the projects. Suppose we stuck with one of the component in the project which was not anticipated, need to ask help expert within the Organization or crowdsource the problem for resolution.

These are my top five findings about Project Management in the Famous Five series. 

Comments

Popular posts from this blog

Hybris Beanshell and Groovy script example

While doing support, we need to check some of the scenario and their result in the production server. The beanshell and groovy script comes very handy on this. Below are the few example of how I used/using it in my various project. This is very handy to test your data as well 1.        Check the log: Sometimes getting server access is very painful in the enterprise landscape. However, person joined in the project is required to work as soon as they inducted in the project. In this scenario, below groovy script is very useful.   Please note, run these in the rollback mode unless and until the otherwise is required. a.        The application is running from the container. For the POC, it was running in the tomcat server (tomcat/bin). To know the exact directory, run the below script in groovy console println "pwd".execute().text Below will be printed in the output tab /usr/sap/hybris/bin/platform/tomcat/bin ...

SonarCube and Hybris integration

There are some issues reported for SonarCube 6.7 integration with Hybris. The recommended version is Sonar 6.4 or less. For Sonar 6.4, there is no need to build the database. Please follow the below steps to use sonarcube with Hybris. For the POC, we have used Hybris 6.4.0.2 and sonar 6.4. Sonar Cube configuration 1.        Download sonar 6.4 and install/unzip. 2.        For the POC, we have used Embedded Database (default). But multiple database is supported. Access management can also be implemented. However, for the simplicity purpose, it is not used for the POC 3.        The java properties can be set at the sonar.properties file (not used in our case). Example of the property is sonar.web.javaOpts=-Xmx512m -Xms128m -XX:+HeapDumpOnOutOfMemoryError which can be enabled in the sonar.properties file under conf folder of the installed folder. 4.      ...

Beanshell/Groovy example - Change Local.properties permanently using script

Sometimes we need to change some of values defined for properties key in local.properties/project.properties. There are three ways to do it Update via HAC Update Local.properties Update using beanshell/groovy script If we use the first process, after server re-start, changes will go. So, the value will remain in the system memory till the server got re-started. Here, will give an example how to change local.properties and changes remain even after rebuild. Run the below script in the HAC script tab with "commit" on. import org.apache.commons.configuration.PropertiesConfiguration; import java.io.File; import java.io.IOException; import java.net.URI; import java.net.URISyntaxException; //The new value to be stored in the key/value pair in local.properties. String changedValue = "NEW_VALUE"; //Key name in the local.properties String propertyName = "test.properties.value"; PropertiesConfiguration config = new PropertiesConfiguratio...