10 Rules of Highly Successful Project Management
I commited the information below to report PDU of PMI. ^_^.
In this paper, the author introduces his good experience of project management. I list it below with my learning and understanding in our development.
- Be Agile
Learning: as a member of software development, we moved from water flow to agile, we involved customer in daily work, we can go to the correct direction with the customer involvement and fix it faster if there are any problems in our development.
- Do not Micromanage
Learning: the project manager is the leader, he or she shall not take more time in small/tiny activities like how to implement a function. As a project manager, you assign the responsibilities to individual team members, e.g. architect to control the technical topics.
- Keep Improving Your Project Management Practice
Learning: when a new method you learn, you shall apply to your daily work, yes, the adaption shall take. The management way shall change according to the environment e.g. the culture of company, the guider line of company.
- Ongoing Planning
Learning: the plan change all the time because the plan is very draft at the beginning of project, it may just have when to achieve the quality gate and when to release. The plan shall be more specify as the moving of project. But the plan shall keep the consistence. Otherwise, the time and quality cannot be controlled in a good way.
- Work with a Sense of Urgency
Learning: the project plan shall be urgent to make all team members contributes all the power to the projects. The weekly all temp project meeting, the daily standup meeting can move the project smoothly.
- Visualise and Communicate all Project Deliverables and Activities
Learning: to present the achievements and the progress to all team members or whole company, it can give the team member more sense of urgency. Kanban is a good method to present.
- Complete Deliverables Step-by-Step
Learning: in few years ago, we release software/firmware when project almost done, now we release the software in each sprint. And the test team can be involved early. In this development mode, the deliverables are tested and verified early, it reduces the risk. Any bugs or misunderstanding requirements can be soon changed.
- Healthy Risk Management
Learning: now we don’t have a risk officer, the role is taken by project manager. Next time we can take this to improvement.
- Open Communication
Learning: Open communication, it let you to hear different voices, and the project manager is not the expert of all areas. Different solutions/voices need to balance to achieve the time, budge and quality.
- Never Lose Sight of the 3-Factors: Time, Budget, and Quality
Learning: The project manager's main role is to keep all team members aware of these big three - Time, Budget and Quality.
The paper released at https://www.projectsmart.co.uk/10-rules-of-highly-successful-project-management.php
10 Rules of Highly Successful Project Management的更多相关文章
- Introduction to Project Management(II)
Introduction The purpose of this paper is to gain an understanding of project management and to give ...
- Project Management Process
Project Management ProcessDescription .............................................................. ...
- Favorites of top 10 rules for success
Dec. 31, 2015 Stayed up to last minute of 2015, 12:00am, watching a few of videos about top 10 rules ...
- Introduction to Project Management(I)
Project management in the modern sense began in the early 1950s, although it has its roots further b ...
- The habits of highly successful people
1.Morning Routine (早上列行公事) Probably the most common habit ultra-successful people have is they can t ...
- The Simplified Project Management Process
One of the challenges of explaining project management to people who are unfamiliar with the approac ...
- 简介 - PMP(Project Management Professional)
PMP(Project Management Professional) 官网(英文报名):https://www.pmi.org/ 中文注册:http://exam.chinapmp.cn/ Boo ...
- 译文——The habits of highly successful people
1.Morning Routine (早上列行公事) Probably the most common habit ultra-successful people have is they can t ...
- android studio开发的时候出现design editor is unavailable until after a successful project sync问题的解决方法
android studio设计界面的时候,出现了报错:design editor is unavailable until after a successful project sync,导致无法编 ...
随机推荐
- perl代码调试
perl调试教程 一.DESCRIPTIONA (very) lightweight introduction in the use of the perl debugger, and a point ...
- oracle用户下查看服务器或者本地IP地址
1.查看oracle所在服务器的ip: select utl_inaddr.get_host_address from dual; 2.查看登陆oracle机器的IP: select sys_cont ...
- 从Oracle数据库中的本地命名文件tnsnames.ora来看服务别名、服务名和实例名的区别。
tnsnames.ora的作用这里就不多述了,各位应该都知道. 首先先看两个例子: test1 = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCO ...
- ios scrollView代理的用法
// // ZQRViewController.m // 03-图片缩放 // // Created by apple on 17-08-25. // #import "ZQRViewCon ...
- DIV垂直居中对齐
效果图: CSS: #container{ display:table-cell; width:300px; height:300px; vertical-align:middle; border:1 ...
- 2.9 iframe
2.9 iframe 一.frame和iframe区别Frame与Iframe两者可以实现的功能基本相同,不过Iframe比Frame具有更多的灵活性. frame是整个页面的框架,iframe是内嵌 ...
- nexus和maven的安装与配置
如果用普通用户安装就需要创建用户 属组例 groupadd configer //创建用户组 useradd -g configer configer //创建用户并指定用户组 passwd co ...
- php操作redis(转)
Redis是一个开源的使用ANSI C语言编写.支持网络.可基于内存亦可持久化的日志型.Key-Value数据库,并提供多种语言的API. Redis支持的数据类型有 Stirng(字符串), Lis ...
- HttpClient官方sample代码的深入分析(连接池)
前言 之前一直使用apache的httpclient(4.5.x), 进行http的交互处理. 而httpclient实例则使用了http连接池, 而一旦涉及到连接池, 那会不会在使用上有些隐藏很 ...
- Python之路,第十篇:Python入门与基础10
python3 函数 函数(function) 什么是函数: 函数是可以重复执行的代码块,可以重复使用: 作用: 定义用户级的函数:实现了一个代码块的封装: 语法: def 函数名(参数列表): ...