ZHZachary Hortonincleancodestudio.hashnode.dev·Aug 4, 2021 · 4 min readGRIT IT or QUIT IT"Our emotions don't necessarily demand action - facts do." GRIT IT or QUIT IT One of the questions I've had to learn to ask myself through time is whether to GRIT IT or QUIT IT. In other words, I'm still learning how to understand myself and any ...00
ZHZachary Hortonincleancodestudio.hashnode.dev·Aug 3, 2021 · 3 min readLinux Terminal Cheat Sheet (Useful for Beginners)A Linux cheat sheet for beginners (short, sweet, and to the point) Linux (Useful Commands) Terminal Cheat Sheet Navigation Commands: passwd - change password ls - list directory (Can point at any point on the machine) -la a flag that lists a...00
ZHZachary Hortonincleancodestudio.hashnode.dev·Aug 2, 2021 · 10 min readThis is How To Make JS Promises [From Scratch]Promises, under the hood Today, we create our own JavaScript Promise implementation [From Scratch]. To create a new promise we simply use new Promise like so: new Promise((resolve, reject) => { ... resolve(someValue) }) We pass a cal...00
ZHZachary Hortonincleancodestudio.hashnode.dev·Jul 13, 2021 · 5 min read14 JavaScript Array Methods (In 8 Minutes)[14 JS Array Methods (In 8 Minutes) Screencast] let stocks = [ { name: 'Apple', price: 321.85 }, { name: 'Tesla', price: 2471.04 }, { name: 'Disney', price: 118.77 }, { name: 'Google', price: 1434.87 }, { name: 'Netflix', price: 42...00