Search Engine Optimization (SEO) is the most important thing if you own, manage, monetize, or promote online content with Google. The website you have may be smaller or bigger than mine and provide di ...

After your website’s SSL is activated using Cloudflare, you may encounter 404 http error. Below is the screenshot of the error:So, how to resolve this problem? See below:Enable SSL in GoDaddy Window H ...

After publishing my website, I encountered the 502.5 error when opening the website on browser. Below is the screenshot of the error details:How to resolve the 502.5 error?1. Step 1: Double click on s ...

When I tried to publish the first time without modifying the publish profile file, I encountered the certificate validation error. Below is the details of the error message:Connected to the remote com ...

When you purchase a hosting plan on GoDaddy, they do offer SSL certificate for $6.67 a month. However, there are some services like Cloudflare or Let’s Encrypt which give you SSL certificates for free ...

If you have a Website or a Web API developed by using .Net Core and looking for a way to publish your applications, this post will explain how to do it using GoDaddy Windows Hosting.Note: at this mome ...

Space Complexity

  • Nov 24, 2020
  • 57
  • 59

Beside time complexity, space complexity is another measurement to determine if you code is a good one. When we talk about time complexity, we are referring to the speed of your algorithm, or in other ...

Big O Rules

  • Nov 22, 2020
  • 86
  • 56

We have been talking about and have a better understanding of what is Big O Notation and different time complexities. In this post, we will learn more about how to calculate Big O, how to simplify it, ...

Time Complexities (Part 2)

  • Nov 20, 2020
  • 97
  • 74

In the previous post, we have discussed the definitions of Computational Complexity, Big O Notation, and have been introduced to some common time complexities. We will discuss in details each of the c ...

Time Complexities (Part 1)

  • Nov 18, 2020
  • 96
  • 75

When we talk about Big O and scalability of code, we simply mean when we grow bigger and bigger with our input, how much does the algorithm or function slow down? In this post, we will understand more ...