Self-optimization
The optimization process starts when you start writing code. Awareness of what you can optimize and how it should appear during writing a code is essential. After the writing process, when you start optimization, it can be pretty hard to refactor and restructure the code. But it is easy to build code and automatically append optimization processes. Which of these processes can you perform during the writing of code?
- Usage of short forms
- Omit usage of
!important
- Omit usage of IDs
A few steps before you push code live
In the code creation process, there are a few repeatable steps:
- Writing code
- Testing code
- Pushing code live
The processes are sometimes repeatable, especially when they are related to projects built in The Lean Startup methodology by Eric Ries and projects with multiple stages. You need to remember these few steps before you push code live:
- Check whether short forms are used
- Check whether elements/declarations are duplicated
- Check whether elements/declarations are used...