Published a year ago
What Is Idempotent In Programming?The meaning of Idempotent in English (As something that remains unchanged) is about the same as that used in programming. There are different circumstances where we can describe a program or action as idempotent. ...
Published a year ago
What Is Dependence Injection?Dependency injection as a concept is similar to the difference between getting your coffee already made for you versus getting a cup of coffee with sugar and cream on the side. In the latter example, you get to decide how much sugar and cream to use or even forego them altogether. ...
Published a year ago
What Is The Difference Between Instantiating And Initializing In Programming?Instantiating and initialization are some of those terms that have an almost similar definition that we turn to use them interchangeably. There is, however, a bit of a difference in what they stand for. In programming, there are different concepts of code templates you can create and reus...
Published a year ago
What Is Regression Testing?Published a year ago
How-to-start-a-python-http-serverYou can start a simple [Python]() HTTP server using the or modules for Python 2.x and Python 3.x respectively. This allows you to serve HTML files more easily. The above will both start a server on port ...
Published a year ago
What Is A Relative URL?A relative URL is a partial URL path that is provided relative to the page or site that it's on. It's usually up to the platform, browser, or viewer of the URL to match and put together the other parts of the URL to make it complete. For example, append the website's domain name and TLD t...