Published a year 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 a year 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 a year 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 a year 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: ...
Published a year ago
Capitalizing The First Letter In Each Word | PHPPHP's function can be used to create readable blog post titles by capitalizing the first characters of each word. Additionally, you can capitalize the first character of names in your app. Below is an example of how to use the function. ...
Published a year ago
Highlight.js: Add Line NumbersHighlightJS does not provide line number feature out of the box. You will need a third-party library for that. Fortunately, there are a number of them to choose from. The one used in the ...