Writing
Time for something new: Ritter Insurance Marketing -> IQVIA
Change is hard! And that includes changing jobs. But I am excited for what is to come.
TIL: Bracket notation during object declaration
Today I learned (TIL) is a series of random findings that I feel are worth sharing! You can use bracket notation for object properties even while declaring the object.
My development philosophy: KISS
Laying out my general philosophy for development: KISS, and explaining some lessons I have learned along the way.
Exporting top level dynamically generated components
A look at how to export programatically generated components as top level items that can be imported directly.
Using template refs in Vue 3 with Composition API
A look at how template refs have changed from the Options API to the Composition API
Exposing internal methods on Vue custom elements
Looking at how to expose internal methods on Vue custom elements to be utilized by their host.
TIL: crypto.randomUUID()
Today I learned (TIL) is a series of random findings that I feel are worth sharing! crypto.randomUUID() can be used to generate unique ids quickly and easily.
Getting to the (shadow)root of Vue 3 custom elements
Examining the usage of Shadow DOM in Vue 3 custom elements and workarounds for it.
The importance of user experience, as told by Animal Crossing
An examination of the importance of UX told through the lens of Animal Crossing: New Horizons.
The Vue.js Ref Attribute
An explanation of what the ref attribute is in Vue.js and some tips for using it.
VueConfUS 2020 Summary
A breakdown of the topics discussed in my "Demystifying the Vue Lifecycle" talk at VueConfUS 2020.
Demystifying the Vue Lifecycle
A dive into the Vue component lifecycle and the available lifecycle hooks including when they run and how to effectively use them.
Tips for Thoughtful Code Review
Thoughtful code review can be tough. Here are some tips on figuring out what is worth mentioning in a review and what is not.
Optional Chaining Comes to JavaScript
Optional chaining for JavaScript is finally here! We can say goodbye to absurd if statements.