Tough situation examples

During one of my interviews, questions appeared about my experience resolving tough situations in a team. I have much experience working with teams, but I used to work in a toxic environment. So, any toughness was normal. Anyway, I remember some good examples. Continuous struggling As part of a backoffice

Am I sure?

What are the duties of an engeneering manager? Why a company need this role? And the most important question for my is am I understand what I would do and want it? To help me navigate a career challenge, my wife recommended that I find a mentor. I searched for

Let's have one more attempt

I have chosen a career path to become a CTO through an Engineering Manager role in a corporation. Of course, I know that the easiest way to become a CTO is to create your own startup.😁 Finally, I want to achieve the desired role by working in a big company

Big-O notation

Big-O notation categorizes algorithms based on efficiency. It helps us compare and choose the best algorithm for a task. The Essence of Big-O One way of finding the largest number in a list involves comparing each number to the current largest one. This is a linear time algorithm, shown as

Clean architecture and transactions in Golang

I want to narrate my approach to using transactions with repository patterns using clean architecture. Problem In a classic service, we have use cases separately with repositories. Use cases know nothing about databases and storage. Repositories don't know about business logic. So, which layer should raise a transaction?