Apr 25, 2018
We’ve been doing some pretty cool stuff with JavaScript at my company, and I wanted to write about some of the tools we are using to “up JavaScript’s game”. Obviously JS has been exploding with all the new frameworks and packages to improve its versatility, and in terms of web... Read more »
Mar 22, 2018
I’ve been doing some work with internationalization and localization (mostly language translation) which I first addressed here. In my continuing work with using the react-i18next package, I ran into a few places where it wasn’t very easy to use the package’s <I18n /> component. This I18n component is significant because,... Read more »
Mar 8, 2018
I’ve really been focusing on building programmatic views lately, and one way of avoiding the Massive View Controller problem is by creating a subclass of UIView and overriding the mechanism in which a UIViewController loads its view. In this way the subviews and constraints setup can be extracted out of... Read more »
Mar 7, 2018
I am currently implementating internationalization, often abbreviated as i18n, in a React app I’m working on. I’m using react-i18next to handle the translations, and I wanted to make sure we had proper test coverage for this new functionality. The way this package works, which is just a React wrapper around... Read more »