sideara-image

Lorem ipsum dolor sit . Proin gravida nibh vel vealiquete sollicitudin, lorem quis bibendum auctonisilin sequat. Nam nec tellus a odio tincidunt auctor ornare.

Stay Connected & Follow us

What are you looking for?

Simply enter your keyword and we will help you find what you need.

Tech

Managing dependency on external modules in a seamless way

Introduction  Have you ever worked with a project that depends on external dependency packages throughout your application code base? External packages can change at any time, which can cause issues and make refactoring difficult. To avoid this problem, we can use the Adapter Design Pattern to wrap our external dependency packages with a wrapper component that maps their interfaces back to our internal ones.  In this article, we will talk about the Adapter Pattern, and how it...

Create React App To Vite

Migrating your Create React App project to Vite

In one of my previous articles, I have discussed why Vite is faster and how you can start a new project with Vite. Today I will be focusing on how you can migrate your existing react project created with create-react-app. If you already have an existing react project, then it is a bit complicated process to move to Vite. Don't get confused with the steps necessary. I will try my best to describe the steps one by...

Webpack to Vite

Vite might be your next front end bundler

Imagine you have an existing react project that contains a lot of external modules and also your own custom module. When you start your dev server, you run npm start or yarn start and then what do you do? You wait for the dev server to start. This waiting time depends on how big your project is and how many external modules you have imported in your project. As we start to add more and...

Craftsmen sailing with terraform

Terra-forming Medialive Resources

We’ve all been there. Learning to use terraform, writing beautiful code to manage our cloud infrastructure; it’s all sunshine and rainbows. Until you realize you work with video and need to use Medialive resources. Now sure, you can create these resources from the aws console like a nomad and pass in the arn to make your CD pipeline do what it needs to do but unfortunately we are not nomads. We are engineers and hackers...