A Beginner’s Guide to Docker

docker

Introduction In the fast-paced world of software development and deployment, Docker has become a cornerstone technology. It offers a standardized approach to packaging, distributing, and running applications. In this detailed guide, we will explore the core components of Docker, including Docker images, containers, Dockerfiles, Docker Compose, and delve into the practical use of volumes. Our … Read more

WordPress Nonce

Nonce in WordPress

Nonces are the security tokens of WordPress. In this article we’ll go over why we need to use nonces and how to create and verify them in WordPress.

JavaScript Promises

JavaScript Promises

JavaScript promises is one of the confusing concepts in web development. In this article we’ll go over what promises are and how we can use them.

Email DNS Records for Dummies

DNS records for emails

There are four DNS records that are related to emails on your domain name. They are: MX Record SPF Record DKIM Record DMARC Record MX records are a DNS record type and they impact incoming emails. The other three are actually TXT record type and they are related to outgoing emails. SPF records and DKIM … Read more

SSH

OpenSSH

What is SSH? SSH (Secure Shell) is a protocol (like HTTP or FTP) that lets us connect to a remote server. After connecting to a remote server via SSH, all the commands that we run on the terminal get executed on the remote server. When we connect to a server via SSH, we always log … Read more

JavaScript OOP Using Constructor Functions

JavaScript OOP with Constructor Functions

Object Oriented Programming can be implemented in JavaScript in three ways In this article, I’ll go over the first way, which is using constructor functions. Using constructor functions is the oldest and main method of doing OOP in JavaScript. Our Sample Object Imagine our objective is to be able to programmatically create objects representing cars … Read more

How to Find All Incoming Internal Links to a Post on WordPress

Find All Incoming Internal Links to a Post on WordPress

Internal Linking If you take the SEO of your site seriously, you probably already know that internal linking is an essential factor in the ranking of the pages on your site. Internal links help Google find and index the pages on your site. If used strategically, internal links can increase the page authority of the … Read more