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 13 of 26
π₯ 2 neat things about <img> when src fails. You can:
π
π₯ Use object-fit:cover; on <img> and <video> to get that background-size: cover; effect
π₯ JavaScript Coding Challenge!
Filter this list of homes for the ones that match the list of needs.
π₯ Git Tip: Use git add -p to review and add changes hunk-by-hunk. Handy when you want to break a single file's changes into two commits
git add -p
π₯ Text Pastry + Sublime Multiple Cursors is one of my favourite combos
π₯ Sublime HyperClick lets you open ES6 + CommonJS modules right from their import statement
π₯ How to destructure and rename variables in a single shot
π₯ Setting Default Values with JavaScriptβs Destructuring
π₯ Wrap curly brackets around your console.log arguments to see the variable name when logged. This takes advantage of ES6 shorthand syntax
π₯ Four new JavaScript String methods you should know about: .startsWith(), .endsWith(), .includes() and .repeat()