Flow types with React Relay and GraphQL

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 »

10 Minutes of Code: Using i18next in React without react-i18next

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 »

10 Minutes of Code: Overriding UIViewController's loadView

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 »