
JavaScript Void 0 – What Does javascript:void(0); Mean?
The word void means “completely empty space” according to the dictionary. This term, when used in programming, refers to a return of “nothing” – an “empty value” so to speak. What is the void keyword? …

What I Wish I Knew as a Junior Dev – Lessons Learned After 11 Years of Coding
I initially wrote this article as a list of lessons for beginners and junior developers on Reddit. Then it blew up with over 50 awards. Lots of heart warming messages followed. So I’ve decided to …

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 …

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 …

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 …

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 …