Mahammad YagubbayliSOLID Principles in Java (With Code Examples)SOLID is a set of five principles for object-oriented design that were first introduced by Robert C. Martin. Robert C. Martin, also known…Dec 23, 2022Dec 23, 2022
Mahammad YagubbayliOptimizing performance with thread pools in JavaIn Java, a thread pool is a collection of worker threads that can be used to execute tasks concurrently. Thread pools are useful for…Dec 18, 2022Dec 18, 2022
Mahammad YagubbayliSynchronizing threads with volatile in JavaIn Java, the volatile keyword is used to mark a variable as being volatile, which means that it can be modified concurrently by multiple…Dec 18, 2022Dec 18, 2022
Mahammad YagubbayliSynchronizing Access to Shared Resources in Java: A Guide to Preventing Race ConditionsThe article would cover the importance of synchronizing access to shared resources in a multi-threaded program, and explain how to use the…Dec 17, 2022Dec 17, 2022
Mahammad YagubbayliParsing XML files from Urls in Python using Beautiful Soup library & Export data to ExcelHow to retrieve and store data from XML files using Python librariesNov 15, 2022Nov 15, 2022