ALL
Be Careful When Using Cursor to Help Build Application
Below are some tips or tricks when building application with Cursor. These lessons are based on my recent experience while building a Sudoku game (just wanna test Cursor's capability).Do commit frequently. Recommend doing commit for every big change (a new feature such as a new button added for some function, some big UI change like added some new component changing the UI layout a bit)Test everything (regression testing) after doing big change. It may affect existing functions when adding new features, you think the change should not impact other parts, but it may not be the case.Using Compos...