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 8 of 26
π₯ CSS Grid doesnβt do masonry/pinterest layout, but if you pre-define a few consistent sizes, grid-auto-flow: dense; works really well!
π₯ In Emmet, you can use $@15 to start numbering from any number.
π₯ Multiple caret trick in VS Code/Sublime/Atom. Did this neat trick in my React course that everyone asks about - enjoy!
π₯CSS Variables and CSS grid have the same browser support so you can use vars to define row/col/gap and update with JS
π₯ ResizeObserver is coming to browsers, which means we can have resize events on a per-element basis. (Element queries anyone?!)
π₯ Async functions can chain a .catch() to catch any errors without a try/catch
π₯ The new IntersectionObserver browser API will allow us to easily detect when elements on fully or partially on screen.
π₯ Node 8.6.0 brings support for Object Spread! Goodbye Object.assign()
π₯ 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