[caption id="attachment_722" align="alignnone" width="612"] finished-first-week-at-new-job-finally-started-coding[/caption]
Another week of new opportunities is ahead of us. We made it a habitto learn something new every week, be it a simple fact, a new skill or anything else. Consistent growth is the key.
Let's jump right in.
Onboarding struggle is real 🚧
A lot of teams struggle with onboarding developers. 👩💻 There are a couple of reasons for that:
- Incompatible dependencies, 👹
- Unsupported libraries,
- OS differences,
- Stars are out of alignment, 😉
- and everything else in between...
It's inevitable that, at some point, you will find yourself with a dependency that you can’t seem to install and set up. You ask a colleague for help, but you hear the feared phrase: "But it works on my computer", and you're left to fight the battle on your own.
Research made by the Brandon Hall Group shows that a great onboarding experience can improve employee retention by a staggering 82%. 😮 No sane person wants to spend more time troubleshooting than actually coding.
Ephemeral environments are no stranger to the DevOps world. They ensure repeatable and consistent environments without configuration drift, sometimes referred to as infrastructure-as-code. In modern CI workflows, it is common to have a fully functional environment for each pull request/branch where you try the new features or run functional tests. After the PR is merged, the environment is scrapped to free up resources for others.
Instead of describing configuration dependencies in the README.md file, the configuration is defined in an explicit format and is a part of the source code. Every dependency needed to start and develop the project is included in the configuration file.
With cloud-based dev environments, developers will see an increase in productivity, be ready to code from day one, and remove the “It works on my machine” from their vocabularies.
Also, companies can expect new developers to be more satisfied with the onboarding process and have a better retention rate. Also, you can allow developers to truly choose any computers they want to work on without restricting their choice to pre-setup machines.
Reposted to Blog
That's why I had to start looking at docker sometime ago but still have got there.
yes. Containernization is getting popular.