Implementing a generic Angular Material Snackbar service

When developing web applications, it is common to display feedback messages to users. Snackbar is a popular component in Angular Material that can be used to display such messages. A snackbar is a dismissible message that appears temporarily at a fixed position on the screen. In this blog, we will discuss how to create a …

Creating an endpoint for returning diagnostics and runtime information in a Nodejs application

Returning diagnostics and runtime information in a Nodejs application If you’re a little bit like me , you favor having a way of diagnosing your applications without needing to start a debug. This is particularly useful when your application is running in an environment that cant be debugged locally or where faults and issues are …

A comparison of Visual Studio and Visual Studio code shortcuts

Visual Studio Vs Visual Studio code Most developers will often brag about not needing a mouse (some will even go as far as to say they don’t need a keyboard) but there is some truth to not needing a mouse as shortcuts are the name of the game for making tedious and repeatable tasks , …

From Trainee to Tech-lead: A journey through the art of story

In this blog post, I will call forth all the knowledge, insights, and experiences, accumulated during my six-year journey as a software developer in the corporate fin-tech and insure tech domains. With the art of storytelling, my sincere intention is to inspire, guide, and assist every reader who embarks upon this path. As with any …

Debugging Stress: Using Opposite Action Techniques in Tech

As software developers, we find ourselves in a fast-changing industry with new technologies emerging almost every day. Coupled with tight deadlines, long hours, and the effects of working from home during the pandemic, it’s no wonder that our motivation can wane. Personal life stressors add to the mix, leaving us feeling overwhelmed and lacking drive. …

The Importance of Unit and Integration Testing in Software Development

Introduction Software development is a complex process that demands meticulous attention to detail, especially when it comes to testing. Ensuring robust functionality and maintaining high-quality standards require both unit and integration testing. In a recent discussion from the “Council of Elders” meeting, the focus was on understanding and improving testing methodologies within projects. This blog …

Introduction to Federated Frontends

Federated micro-frontends extend the concept of microservices to the user interface. Instead of a monolithic front-end application, the UI is decomposed into smaller, autonomous fragments, each responsible for a specific piece of functionality. These fragments, or “micro-frontends,” can be developed, deployed, and updated independently.

Exploring Machine Learning Paradigms: A Comparative Analysis of Supervised and Unsupervised Learning

Introduction Machine learning is a subfield of artificial intelligence that focuses on developing models and algorithms that let computers learn from data and improve from previous experience without being explicitly programmed for every task. There are several types of machine learning, each with unique characteristics and applications. The most commonly used are supervised learning and …