> Visual Studio Code is a wonderful editor for coding and simple text editing. I found it to offer a better user experience than Github’s Atom Editor. What features do you like about VS Code?
Category Archives: Programming
Video: Case Against Frameworks
– Check out one of the hottest frameworks around, Vanilla-js
Best comment in the Youtube comment section.
The bad thing about frameworks is that they lock you down and force you to comply with an arbitrary set of rules.
The good thing about frameworks is that they lock other team members down and force you to comply with an arbitrary set of rules.
Video: Write Less CSS
Here’s are two good guides for building a scalable CSS architecture
– 8 simple rules for a robust, scalable CSS architecture (Github repo)
– Scalable and Modular Architecture for CSS (It’s a free online book!)
Dev Video: Javascript for-loops are complicated – HTTP203
JavaScript for-loops are⦠complicated – HTTP203
> Looping sure is complicated in JavaScript. There are 4 different types of loops that have the word `for` in them.
The gist below show you a basic for, for-in, for-of, and for-each loop in Javascript.
Confused yet?
Well in Google Go, they solved this problem by only having 1 type of loop. And it’s a for loop.