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 26 of 44
π₯ On a website with an obnoxious and slow slideslow animation? Make it instant by running $.fx.off = true; in your console
π₯ VS @code has a built in diffing tool you can run from the command line with --diff
π₯ video.play() returns a Promise which means you can async + await before updating any UI. πͺπ» @rem
π₯ Auto Rename Tag for VS Code does, well, exactly what it says. No keyboard shortcut, just rename one tag and the other updates!
π₯ JavaScript Fundamentals Video: Reference VS Copy
π₯ Import Cost package for VS Code will help you understand the impact of a package as you import it
π₯ Get VS Code Emmet working in JSX with this setting:
"emmet.includeLanguages": { "javascript": "javascriptreact", }
π₯ Use F8 in VS @code to cycle through errors and warnings and display them inline.
π₯ The JavaScript Web Payments API is super simple to use and can be used with any existing payment provider
π₯ You can use ES6 computed property names in React to make attaching inputs to state a little easier