OPI Blog
Learn from experts in their fields

Browsing Tags: Front-End

Jul 27, 2021
Getting Started with CSS Container Queries
For as long as I’ve been working full-time on the front-end, I’ve heard about the promise of container queries and their potential to solve the majority of our responsive web design needs. And, for as ...
Test your production UI code without deployment using Chrome DevTools
Have you ever faced an issue in a production, after a release, that you did not encounter during development? Wouldn’t it be helpful to test your hotfixes against the production environment before deployment? The solution ...
Apr 28, 2017
Two-way Data Binding in ReactJS – Part III
Variable-length Arrays In Part I, we learned how to automatically bind top-level state properties to form elements in JSX, so that updates to those elements automatically updated state and vice versa. In Part II, we ...
Apr 26, 2017
Two-way Data Binding in ReactJS – Part II
Nested State In Part I, we learned how to bind top-level state properties to form elements in JSX, so that updates to those elements automatically updated state and vice versa. However, the method we used ...
Apr 24, 2017
Two-way Data Binding in ReactJS – Part I
Simple Data Binding What do Aurelia, VueJS, and Angular have in common? All three are modern frameworks that support two-way data binding. Of course, ReactJS famously omits this feature, and I believe the standard excuse ...
Keeping it Clean: Making Good Use of the YUI3 Global Object and Loader
If you are new to YUI3, you might want to visit the YUI3 website before reading. Most of us know how much of a nightmare client-side code can be. We often come into a project ...