EDDYMENS

Eddymens (List page)


Last updated 2022-11-05 03:50:45

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...

Last updated 2022-11-05 03:50:45

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...

Last updated 2022-11-05 03:50:45

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...

Last updated 2022-11-04 01:47:30

Remove .html From The End Of URLs | Netlify

Depending 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: ...

Last updated 2022-11-02 04:31:53

Capitalizing The First Letter In Each Word | PHP

PHP'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. ...

Last updated 2022-10-29 12:07:05

Highlight.js: Add Line Numbers

HighlightJS 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 ...