Programming How to fix mistakes in Git The optimal strategy to fix depends primarily on two questions: Have you already committed the mistakes?if it's committed, have you already pushed them to the remote repository?Before we
Programming Understanding TypeScript Decorators Decorators are used to modify a class and its members (methods, properties). The question may be, why do we need decorators to change those things? Why not directly change in
Programming Unit testing is more important than you think The most important benefit unit testing gave me is being able to make changes without fearing things might blow up due to even a small change. The whole process of