Published 2 years ago
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...
Published 2 years ago
What Is A Pseudocode?Pseudocode is a simple, stripped-down version of a programming language with relaxed syntax rules used to expl...
Published 2 years ago
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...
Published 2 years ago
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...
Published 2 years ago
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...
Published 2 years ago
Remove .html From The End Of URLs | NetlifyDepending on how you generate your HTML assets to be hosted on Netlify , your URLs might end with for example: . You might want to change this to a path name without the extension i.e: ...