I wrote last week about my first dive into React Native, so this will be a quasi-continuation of that project. Shortly after starting the project, I realized that I would need some kind of global state solution, particularly for authentication purposes. So for this article, I will document how to add Redux to your ReactContinue reading “Adding Redux to an Expo-Managed React Native Project”
Category Archives: guides
A Beginner’s Guide to React Native
I have been developing a mobile-forward React web application for a while now, with the intent to port it to React Native, once I have time to dive into it. Well, now is that time! But before I start trying to port an entire project, I’m going to build one from a blank slate, toContinue reading “A Beginner’s Guide to React Native”
Adding Email Confirmation Feature to Rails With Devise
Up until this point, I’ve survived without using Devise. I’ve built simple authentication from scratch or using BCrypt, and that worked for me. However, most large companies will use Devise, and for good reason. It provides you with everything you need for authentication, password resetting, email confirmation, and more. So, I’ve decided to upgrade myContinue reading “Adding Email Confirmation Feature to Rails With Devise”