|
|
|
|
|
by swaggyBoatswain
2348 days ago
|
|
My coworkers at every new place I work at make jokes at me for doing this, but I usually identify reference code I can print off right away. For instance, once you finish a feature or task, identify the most important bits that happen. Create a gist of it on github.com, then promptly print it. It needs to fit on one or two pages at most, delete stuff that's not relevant. Likewise, if you have to learn their styling guidelines and naming, print off the most important parts. Stuck on javascript concepts? Print the parts you struggle on. Stuck on lifecycle methods? Print the diagram. Constantly flipping between jira tickets? Print them. The reason why this works is because you apply the concepts of space repetition to pick things up quickly. Your forced to chunk the code snippets in print form in a meaningful manner As time goes on just write reusable code that you can copy later for different parts of the app. You won't need to print anything anymore because its commited to memory. Also I make small side projects with coding patterns I can copy paste easily too |
|