What Is A URL Slug?
A URL slug is the part of a URL formed from the title of the content. Let's use this blog post as an example. It has the title "What Is A URL Slug?" and its resulting URL is https://www.eddymens.com/blog/what-is-a-u...
What Is A Boilerplate?
In software development, boilerplate code is code with many placeholders that you can replace with your code or data. Boilerplates come in different forms depending on the type of software. In web development, for instance, boilerplate code might provide you with a folder structure as we...
What Is A Pseudocode?
Pseudocode is a simple, stripped-down version of a programming language with relaxed syntax rules used to expl...
What Is Semver?
Semver versioning is a type of versioning that tracks major and minor changes as well as fixes using the format eg: . Semver versioning provides a lot more information. For example, by just looking...
What Is Separation Of Concern (Soc)?
Separation Of Concern (SOC) is the separation of a functionality into distinct components. This means that the code is organized in such a way that a change in the behavior of one part does not lead to a domino effect where other parts are affected. An example of this is separating the c...
What Is Spaghetti Code?
Spaghetti code is code that is difficult to understand and eventually maintain because its structure is all over the place hence the word spaghetti in its name. One reference used in most examples is the statement. Usually, code is meant to be executed from the top to bottom, but...