Hot tips are spicy lil' nuggets related to web development and tooling that I share on my twitter account. I've logged them here to make them easier to find.
Page 19 of 26
🔥 One of my most used plugins — ChangeQuotes for Sublime Text swaps and escapes between single and double quotes
🔥 Use ES6 destructuring to easily assign nested data to variables.
🔥 Simple example on how to use Browsersync to expose your realtime localhost to the world
🔥 Independent Properties for CSS Transforms are coming! You can use Post CSS in the mean time.
🔥 Use console.time() and console.timeEnd() to easily time any type of operation
🔥 ⌘ + Click URLs and file paths in iTerm to open them in your editor or browser.
🔥 What's the deal with const objects in JavaScript?
🔥 Most text editors will wrap highlighted selections when typing the quote or bracket you need.
🔥 Mistype a git command? Immediately re-run the correct command with
git config --global help.autocorrect -1
🔥 Use a variable to hold and call your methods instead of using if statements #javascript