Using Templates With Spring Boot

In this tutorial we’ll be building a very simple mini blog app. Rather than building a single page app for the UI that sends requests to a RESTful back end, we’ll be generating dynamic views on the server with Thymeleaf... Read more

Redux Without A Framework

Up until now, any Javascript development that I’ve worked on involving Redux has also involved using React. In fact, most of the Redux examples that I’ve seen on the web also use some sort of front end framework or library... Read more

Thoughts on Redux

Why Redux? The real benefits of using Redux weren’t incredibly obvious to me when I first started building interfaces with it. I didn’t see the point of having to touch three separate files to send an API request, handle a... Read more

Caching in Rails

Caching can go a long way towards improving the performance of any web app, and Rails apps are no exception. Ever since Twitter publicly announced they had replaced their Ruby on Rails search architecture with Scala back in 2011, the... Read more

Introduction to MongoDB

As far as NoSql databases go, MongoDB is one of the most popular and recognizable options out there. It’s been widely adopted in the Node JS community as the data store for the popular MEAN stack. As a document based... Read more