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
🔥Use mix-blend-mode:multiply; in your CSS to knock out white backgrounds from images
mix-blend-mode:multiply;
Pen:
🔥 ES6 Tip: Use Destructuring to create multiple variables from an array of data:
🔥 Use JSON.stringify()'s third param to pretty print an object to your page
🔥 Use git push origin head if you have hard to type or long branch names
git push origin head
🔥Terminal Tip: Use curly brackets to speed up the creation of multiple files with similar names:
🔥 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