Category: APP Development

How to Automate Simple Tasks with Node.js
Recently, I had to travel through several countries by car 🚗. There were a lot of tolls to pay💰 and a lot of gasoline⛽ to fill. Which meant a lot of bills. I collected the …

How to Use Git Aliases to Increase Your Productivity
Git is a very powerful tool, and it can be a little scary sometimes. It doesn’t matter how long you’ve used it, you will find yourself searching for “how to do X”. Today I want …

Python Read JSON File – How to Load JSON from a File and Parse Dumps
Welcome! If you want to learn how to work with JSON files in Python, then this article is for you. You will learn: Why the JSON format is so important. Its basic structure and data …

Kubernetes at the edge with Akri
Kubernetes has become the Swiss Army knife of distributed computing. Its role as an orchestrator that’s extensible and relatively easy to configure is key to managing applications at scale, ensuring your code runs with the …

Why you’re doing cloudops wrong
Cloud operations, aka cloudops, is the long tail in the cloud computing migration and development story. It takes place after you deploy cloud-based solutions and then operate them over a long period of time. Cloudops …

Random Number Generator: How Do Computers Generate Random Numbers?
People have been using random numbers for millennia, so the concept isn’t new. From the lottery in ancient Babylon, to roulette tables in Monte Carlo, to dice games in Vegas, the goal is to leave …

How to Convert PDF to Word
In this step-by-step tutorial, learn how to convert PDF to Word on both your PC and on your iPhone or Android phone. By following these steps, you’ll be able to turn your PDF file into …

How to use HashSet in C#
A HashSet is an optimized collection of unordered, unique elements that provides fast lookups and high-performance set operations. The HashSet class was first introduced in .NET 3.5 and is part of the System.Collection.Generic namespace. This …

How I Built an IT Automation Project as a Self-Taught Software Developer
I have always been obsessed with how technologies work, namely computers. But my passion was hindered by a voice in my head that echoed time and time again – “you are not smart enough to …

The JavaScript `this` Keyword + 5 Key Binding Rules Explained for JS Beginners
JavaScript’s this keyword is one of the hardest aspects of the language to grasp. But it is critically important for writing more advanced JavaScript code. In JavaScript, the this keyword allows us to: Reuse functions …