<  god of frontend  />
All posts

All posts

How to design better reusable code - Part 1

There is direct correlation between how much code you need to write to use an abstraction, and how customizable it is. This post explores how you can get the best of both worlds: Let users have as much control as they want over your code, while minimizing the amount of lines they need to write day to day.

4/6/2021, 8:21:31 PM
advanced
design-patterns
javascript
It's OK to break out of the Vue paradigm (sometimes) - QuickTips

You sometimes have to do the work of connecting the data to the DOM yourself. Read this to understand when.

9/26/2020, 5:39:32 PM
quick-tip
vue
javascript
Organize your JavaScript OOP code better with this functional programming trick - QuickTips

This functional inspired pattern can help you structure your OOP code better.

9/7/2020, 7:22:14 PM
quick-tip
javascript
How to handle input data conversion in Vue - QuickTips

Take advantage of an alternative syntax for computed props to make your code tidier and easier to reason about.

8/24/2020, 11:22:14 AM
quick-tip
vue