NSI often use object literals in place of if/else or switch statements. JS is nice about that.Comment路Article路Mar 8, 2022路Code Smell 119 - Stairs Code
NSDo you compile VS Code from source to make sure it's not leaking your private data to anywhere?Comment路Article路May 3, 2021路34 Ultimate VS Code Extensions to Increase Productivity! 馃挭
NSI'd use xdebug for PHP. Or Node inspector for JS. Clojure has one of the best tools... Cider for SpaceMacs evaluates your code as you type.Comment路Article路May 3, 2021路Tried and True; Troubleshooting.
NSJavascript never had classes because it was inspired by a functional language named Scheme. Not sure why Ecma Script added classes other than to appease Node. All the trends are moving towards functional programming and away from inheritance.Comment路Article路May 3, 2021路JavaScript Patterns [Ch.1: Introduction]
NSThanks for reminding me to update to Node 16. Also... The start.dev inside package.json was super important.Comment路Article路May 3, 2021路Node.js Development Environment Setup
NSIt sounds like an interesting idea... But I would use IAM roles on AWS. I'm still afraid my keys might be accidentally released. Then wake up to a $20k AWS bill from some hijack crypto miner. It's also why I use BitBucket for private code.Comment路Article路May 2, 2021路Doppler + RedwoodJS
NSThe unused CSS code feature is neat. I need an easy way to clean up my Sass.Comment路Article路May 2, 2021路Most Useful Features of Chrome Developer Tools That You Must Know
NSOptional chaining is essentially the equivalent of null object pattern. It's one reason chaining is forbidden in OOP... Law of Demeter.Comment路Article路May 2, 2021路Javascript Tips and Tricks
NSSuper useful. I like the calc () for css. I think you meant to write console.table in the code example?Comment路Article路May 2, 2021路8 Unique and Secret tricks Front-end Developers don't know