Skip to main content

Improve employees skills - in working hours of in their free time?

I see in many companies the culture where people should improve their technical and soft skills by they own, especially in their free time. This is not a bad thing but not all the time the skills that needs to be learned by the employee are the same with the one that the company prefers.

 Let’s assume that the employee would like to learn JavaScript and Angular.JS, but based on the company vision and forecast, you need to increase the skills on desktop application. In this case, people will be oriented to learn and increase their knowledge in the area where company needs.
Until now, we could say that we are fine, the need from the market needs to be full field by the company. Because of this there is a direct inters for it, for company and people that are working in that company.
In an ideal world, the company will invest the time from normal working hours to improve and increase the skills on desktop applications or the area where they need.
In reality we all know that the employee will need to accept a ‘win-win’ situation, where he will need to invest from his own time to improve this skills. We could say that this approach is good, because the skills of the employee increase – and this is in the interest not only from the company perspective, but also from the person.
But let’s look at the problem from a different view. The company needs to increase the skills on a specific area. There is a direct interests to do this – in the end we are talking about business and money. To be able to full field the marker demand, increase their business or even to remain on the marker they need to increase the skills on a specific area. Once they do this, they can deliver project using that technologies and/or skills that will generate automatically revenue and business.
From this point of view, a company has his own interest to increase people skills and they will see a direct revenue from this action.
In this context, should people invest their own time to lean and improve the skills based on the company needs?
There is no perfect answer. The problem is complex and we could discuss around it for days.
From company perspective, it needs the right people to deliver a project or a task. If this people will improve their skills they will gain automatically different advantages that will be seen in time in their benefits package or opportunities.
From people perspective, they will learn new stuff and their value on the marker will increase. But what is happening if you have 3 kids at home and you don’t have time anymore for learning. What if in their free time they study and play with AI and they don’t want to learn the company target skills in their time.
In the end, is their time and we need to respect it.

My opinion about this problem is in favor of people. Yes, as a company you will have different objectives and interests. You will want to have only the people that have passion and are involved 100% in their job. But, in reality, we cannot have a company with 100 or 1000 people formed only from people with passion. It is not because you don’t want to have this, but because you will not be able to find so many people with passion, gather them under the same roof and make all of them happy.
Less than 10% of people are dedicated to their work and IT. You will not be the only company on the market that wants to recruit this kind of people.
In this case, because in the end you are making a business you need to accept two things:
  1. Not all the people will want to learn and improve their skills from their own time.
  2. It is your own interest to increase the skills, because of this you should invest, not only requests (in this case invest = offer time to learn).
The learning context that you should offer during working hours should be with a clear MGO (Mission, Goal and Objectives), otherwise you will not be able to accomplish what you want.

Finding the ideal situation is hard, the perfect win-win situation for long term is even harder. Because of this a company should invest in people (in the business hours especially). And trust me, people with passion and commitment will invest from their own time (based on how much time they have). But never judge a person based on that he is doing in his free time, especially if he prefer to do other stuff then your vision.

Comments

  1. "If this people will improve their skills they will gain automatically different advantages that will be seen in time in their benefits package or opportunities. "

    If people learn other things not in the interest of the company, but in the interest of the (general) market, it still opens up opportunities for them, possibly much more (a new job or even a new career). So I see quite little advantage in learning on your own time things that are not interesting to you.

    ReplyDelete
    Replies
    1. 100% true.
      At home you should learn and do what you enjoy.

      Delete

Post a Comment

Popular posts from this blog

Windows Docker Containers can make WIN32 API calls, use COM and ASP.NET WebForms

After the last post , I received two interesting questions related to Docker and Windows. People were interested if we do Win32 API calls from a Docker container and if there is support for COM. WIN32 Support To test calls to WIN32 API, let’s try to populate SYSTEM_INFO class. [StructLayout(LayoutKind.Sequential)] public struct SYSTEM_INFO { public uint dwOemId; public uint dwPageSize; public uint lpMinimumApplicationAddress; public uint lpMaximumApplicationAddress; public uint dwActiveProcessorMask; public uint dwNumberOfProcessors; public uint dwProcessorType; public uint dwAllocationGranularity; public uint dwProcessorLevel; public uint dwProcessorRevision; } ... [DllImport("kernel32")] static extern void GetSystemInfo(ref SYSTEM_INFO pSI); ... SYSTEM_INFO pSI = new SYSTEM_INFO(...

How to audit an Azure Cosmos DB

In this post, we will talk about how we can audit an Azure Cosmos DB database. Before jumping into the problem let us define the business requirement: As an Administrator I want to be able to audit all changes that were done to specific collection inside my Azure Cosmos DB. The requirement is simple, but can be a little tricky to implement fully. First of all when you are using Azure Cosmos DB or any other storage solution there are 99% odds that you’ll have more than one system that writes data to it. This means that you have or not have control on the systems that are doing any create/update/delete operations. Solution 1: Diagnostic Logs Cosmos DB allows us activate diagnostics logs and stream the output a storage account for achieving to other systems like Event Hub or Log Analytics. This would allow us to have information related to who, when, what, response code and how the access operation to our Cosmos DB was done. Beside this there is a field that specifies what was th...

Cloud Myths: Cloud is Cheaper (Pill 1 of 5 / Cloud Pills)

Cloud Myths: Cloud is Cheaper (Pill 1 of 5 / Cloud Pills) The idea that moving to the cloud reduces the costs is a common misconception. The cloud infrastructure provides flexibility, scalability, and better CAPEX, but it does not guarantee lower costs without proper optimisation and management of the cloud services and infrastructure. Idle and unused resources, overprovisioning, oversize databases, and unnecessary data transfer can increase running costs. The regional pricing mode, multi-cloud complexity, and cost variety add extra complexity to the cost function. Cloud adoption without a cost governance strategy can result in unexpected expenses. Improper usage, combined with a pay-as-you-go model, can result in a nightmare for business stakeholders who cannot track and manage the monthly costs. Cloud-native services such as AI services, managed databases, and analytics platforms are powerful, provide out-of-the-shelve capabilities, and increase business agility and innovation. H...