Skip to main content

How to manage an IT team?

Are your from developer background?

If yes, think like a MVC in real life when you are manager to manage your team. If you are manager then you are the controller.
Your marketing team or client interaction team is your HTML templates :)

While your developers, designers and network guys (all technical guys) are your models who contains the business and who runs the business as they are the heart to generate the revenue for the your organization.

In MVC real business logic relies in models, same in real life real quality work or impression and outcome of an IT company relies of technical team of your team.
Okay, apart from this imaginary world of team management via MVC, what are the key points to manage the team?

1. Never forget anything:
Being the manager, you are responsible for all and everything for your team. If your team is doing great, you are managing greatly. If your team is doing bed, you are the only person being a manager for that bed performance. No team member is responsible.
So always keep the lists and track who is doing what and when. Here "who" includes yourself as manager and each team member of your team. Being a manger you have no rights to forget anything :)

2. Think for priorities:
If you are remembering everything there is a lot to do on your desk for you and for your team, and then take some relaxed time to think for priorities.

3. Motivate your team:
Good persons in the team should always be motivated, but still persons who performed low should also be motivated by managers to improve the confidence.

4. Communicate with your team:
Always stay in touch for small things with your team to know their day to day problems and day to day routines.

5. Communicate with customers and competitors:
Also customer satisfaction is another huge topic but to improve the team and to think for the next plans, being a manager it’s your responsibility to communicate with clients.
Also managers need to communicate with competitors so they can know what’s running in real market :)



Apart from all these rules, there is thumb rule for managing the team "There is no rule" :)

Comments

Popular posts from this blog

As a symfony developer what you should take care when symfony standard edition is legacy:

Now  symfony standard edition is legacy . So no need to worry much just go threw article and understand whats new in symfony 4 if standard edition is legacy now. This is the main difference in Symfony 4 from symfony 2 and symfony 3 . Older symfony versions provide by default doctrine, twig, form, validation, profiler, annotations and many other components. But some time user do not want to use it. Suppose what if user do not want to doctrine or twig? Still he has doctrine and twig in his dependency. That makes symfony heavy framework. When starting a new project developers do not like to assemble things manually. So symfony 2 and 3 provides standard edition for developers to start a big project. But was hard to scale down project and decrease dependency if user do not require some packages. Symfony 2 and 3  are big success and in years developers are now aware with composer and dependency injection. So adding/removing a new package is not a big deal. So symfony chose...

Learn Angular 4 from scratch

Angular 4 is the latest version of AngularJs released in March 2017. The basic steps to accomplish our first Angular 4 hello world example. Here, we’ll simply create a component that passes the title from component to the view. 1. Install Angular CLI The Angular CLI is a command line interface that helps to scaffold and build angular apps in Node.js style. Also, it set up the angular 4 environments and will be helpful for us to work with angular apps like creating, running, etc. Now, install Angular-CLI. <code>npm install -g angular-cli</code> Once installation is done, just make sure that it’s installed by checking it’s version. <code>ng -v</code> 2. Install an Angular 4 Hello World App Here, we will create an app named hello-world ng new hello-world Now, go to the directory of a newly created project. cd hello-world Before running your app, let’s dive a bit deeper in coding behind the picture. 2.1 Fi...

3 Node.js Alternatives To WordPress

3 Node.js Alternatives To WordPress As compare to WordPress there is alternative option like Node.js. There are many various latest challengers that have large communities, support themes, plugins and are easy to install on your own server. Here are 3 you might want to checkout. KeystoneJS KeystoneJS is a content management system and framework to build server applications that interact with a database. It is based on the Express framework for Node.js and uses MongoDB for data storage. It represents a CMS alternative for web developers who want to build a data-driven website but don’t want to get into the PHP platform or large systems like WordPress. EnduroJS Enduro.js offers a fast and easy way to build your project, beautiful and simple admin UI and integrated tools to build everything on the server. It works without a database, instead relying on a system of flat files that can be opened directly in a text editor. It is easy to install and can be deployed via Git. ...