Other Single line responsibility The single line responsibility principle is very clear with its intention: one line must do one and only one thing. The intention of coding with this…
Front-end How to write maintainable CSS with BEM How to choose the correct name for a class in CSS can be crucial in terms of clean, readable and maintainable code. The code you write…
Featured Other Comments to never do on your code Even though commenting your code can be seen as a good practice for most people, not every comment is actually useful, needed or informative in any…
Front-end Why and how to initialize the CSS What does to initialize the CSS mean? It means to set up default style values for the different elements we’ll be using. These settings allow us…