"I wish I knew git when I first started to code. Actually, I wish I knew git now."
We spoke with @playcodepip founder @thomashpark about coding, his favourite apps and his past life at Mozilla.
Welcome to our Hacks: Decoded Interview series!
hacks.mozilla.org/2021/10/hacks-…
Shipped a hotfix v5.1.3 this weekend to revert an issue with button alignment in flex containers. Sorry for the hiccup, and now back to working on v5.2.0! github.com/twbs/bootstrap…
JavaScript code tip: Instead of concatenating strings with variables, use template literals to make your code more readable and less error-prone. Note the use of backticks instead of quotes. #javascript#codetip
JavaScript code tip: To save keystrokes, set aliases for querySelector & querySelectorAll. If you're using jQuery, pick different aliases or run jQuery in no-conflict mode. #javascript#codetip
CSS code tip: To add space within a row of buttons, apply the new 'gap' property on the container instead of adding margins to each button. #css#codetip