what are the most important values a manager needs

Effective managers typically possess a variety of values that guide their actions and decisions. Some of the most important values for a manager include: Integrity: Managers must be honest and ethical in their actions, inspiring trust and confidence among their team members. Communication: Clear and open communication is crucial for effective management. Managers should be…… Continue reading what are the most important values a manager needs

Published
Categorized as Management

The Grand Feast of Distributedville

In Distributedville, King Scale-A-Lot planned a grand feast. Sir Client-Server suggested one large table, while Lady Peer-to-Peer favored many small tables for sharing. Chef Load-Balancer divided the food evenly, ensuring no corner of the hall was left wanting. Magical plates, whispering among themselves, managed requests like “Pass the salt” effortlessly. General Paxos Spoon and Lieutenant…… Continue reading The Grand Feast of Distributedville

Agile Methodology and Strategic Management: A Fusion of Flexibility and Vision

Introduction In the ever-shifting landscape of software development and management, Agile has emerged not just as a process but as a strategic ally. Reflecting on my journey from structured waterfall methods to the dynamic world of Agile, I’ve come to appreciate its role beyond operational efficiency. It’s a guide through the rapid currents of technological…… Continue reading Agile Methodology and Strategic Management: A Fusion of Flexibility and Vision

Published
Categorized as Management

My Experience with Randomizing Responses from OpenAI’s Completion API

prosthetic arm on blue background

Introduction: I recently embarked on an exciting journey of exploring the capabilities of OpenAI’s Completion API, specifically using the text-davinci-003 model. Intrigued by the possibilities, I was determined to generate unique and innovative software application ideas within a specific industry domain. My experimentation led me to some interesting discoveries, and I want to share my…… Continue reading My Experience with Randomizing Responses from OpenAI’s Completion API

Robust & Scalable code with Boilerplate Separation Pattern

Simply by pushing your code out of boilerplate will force you to build more scalable code fitting your agile model development. I’ve seen many developers use this software pattern (or refactor), but I didn’t seen this published as a formal guideline as a standard for writing scalable code. But following this guideline in your coding…… Continue reading Robust & Scalable code with Boilerplate Separation Pattern

3 Ticks of the sprint

How can you achieve a balanced sprint plan where plan meets actuals? Create a game for your team to challenge themself and create a better team synergy Given a nine days sprint, one day dropped for agile ceremonies, how can you “make sure” your team will make it to the finish line as planned? The…… Continue reading 3 Ticks of the sprint

Setup Jest with ModuleAppMapper

Working with Nrwl using a monorepo setup with multiple libraries allows to map short names to import modules based on absolute path, which in turn helps moving files around the module without affecting the client importing the module. To map these files you need to configure path in tsconfig.json as follows: so you can but…… Continue reading Setup Jest with ModuleAppMapper

Clean šŸ§¼ Architecture’d REST Api using NestJS as 3rd Party šŸ„³

In this post I present an implementation of clean architecture’d REST Api using NestJS. This post does not intends to teach about clean architecture, and for that you will need to follow the references at the bottom of this page. The stack for that project is: PostgresSQLTypeOrmNodeJSNestJS, a framework for building efficient, scalableĀ Node.jsĀ server-side applications.Nrwl -…… Continue reading Clean šŸ§¼ Architecture’d REST Api using NestJS as 3rd Party šŸ„³

Challenge: Design a HashMap

Requirements Hash map is a data structure which helps us store, delete and retrieve values by keys in O(1). Practical Use Case of hash map Lookup contact by name in phone book listDatabase indexDictionariesAssociative arraysCachesSets Without HashMap:finding a key in a list of values, we need to go through all indexes until we find a…… Continue reading Challenge: Design a HashMap