
6 Reasons Why You Should Avoid Scheduled Batch Jobs
Scheduled batch jobs are convinient, but has it’s own challenges. Explore shortcomings of scheduled task and investigate alternetives.
Scheduled batch jobs are convinient, but has it’s own challenges. Explore shortcomings of scheduled task and investigate alternetives.
In my previous team, I’ve worked on a project which was actually a fork of another internal project at the parent company. A git fork project is very powerful in that the project maintains its connection to the original project. When there are new commits added to the original project, a fork project can simply…
Managing Dependency Versions in Gradle When developing a software, you rarely write all the code from scratch. Usually, libraries or frameworks are used, allowing developers to use numerous features without building everything from the ground up. Mismanagement these dependencies can lead to broken build or application, so it is important to manage them properly. The…