2022-11-28
|~1 min read
|149 words
I’m working on adopting more VIM into my life (again) and this time I’m starting by adding the Vim keybindings within VS Code. Almost…
2022-11-28
|~2 min read
|388 words
One of the great things about massive changes (e.g., a move, a new job, etc.) is the natural tendency to reevaluate all of your habits and…
2022-11-28
|~2 min read
|211 words
I found myself making a lot of new React components recently and decided to finally create a code snippet to help me move more quickly. To…
2022-11-28
|~5 min read
|911 words
A few months ago, I found a font, that introduced me to ligatures and how they could be useful in writing code. Fira Code’s ligature set…
2022-11-28
|~4 min read
|619 words
One of the productivity enhancements I’ve been meaning to learn more about for a while is making better use of code snippets. Code snippets…
2022-11-28
|~4 min read
|694 words
“If you’re good at the debugger it means you spent a lot of time debugging. I don’t want you to be good at the debugger.” ― Robert C. Martin…
2022-11-28
|~4 min read
|648 words
Update: I wrote a follow up to this post that takes a slightly different approach by using source maps for better debugging and focuses on…
2022-11-28
|~2 min read
|317 words
A quality of life enhancement with VS Code is changing the indent for the file explorer. By default, each new level of tree is indented by…
2022-11-28
|~1 min read
|163 words
I was looking for how to quickly collapse (fold) all code methods in VS Code the other day () when I came across something even more useful…
2022-11-28
|~4 min read
|639 words
Whenever possible, I avoid using my mouse. This means I’m constantly on the lookout for efficiencies I can gain from operating within the…
2022-11-28
|~2 min read
|317 words
One of those little things I love about my VS Code is that certain words will be in cursive and others are not. This is because of the…
2022-11-28
|~1 min read
|124 words
When I have very modularized applications and want to be able to debug a single file, it’s useful to be able to switch from a workspace…
2022-11-28
|~3 min read
|529 words
The steps to adding Prettier to a project are very simple: Install Prettier () Create a file in the root directory Add an empty object to…
2022-11-28
|~4 min read
|790 words
While Storybook is great for communicating the potential of different components, debugging issues with components can be more of a…