Blogs
VS Code Shortcuts
Find a closing bracket for a code block, i.e. jump to the matching bracket: Mac: Cmd + Shift + \ Windows: Ctrl + Shift + \
Hiding JavaScript Files …
Like a lot of JavaScript developers these days I’m writing mostly Typescript. If using VS Code as your IDE it can be helpful to hide or ignore the .js files that are generated. Here are the steps to hide the JavaScript files that are compiled during the development process in VS Code: Open the …
Generate JWT for Testing
JSON Web Tokens have become increasingly popular in recent years because of their powerful capabilities to exchange information between servers and services in a verifiable way. (Note: I did not say secure or encrypted :) ) Often JSON Web Tokens or JWTs (pronounced “jot”) are issued by …