Curated list of episodes, bundled to help you on your learning path!
Videos of tech, infrastructure, hardware and software which non-instructional by nature.
Articles around software and tutorials.
Show your love and support while looking fancy.
Got a question or want to chat about a topic? Let's talk!
In this episode, we take a look at some tips and tricks around the database schema and model scopes.
Separating view logic from bloated models can help maintain the model in the long run.
Callbacks are great for quickly tapping into the object life cycle. However, after a model or an application grows, it will become harder to maintain over time. It is better to extract the responsibility and separate the logic.
State Machines are useful for tracking the state of an object. With AASM, we take a dive into how states can transition as well as modifying states and interacting with them.
In this episode, we look at creating an interactive documentation for a Rails API.
N+1 queries can make an application slow. Having queries called within views can also slow down an app as well as making it less extendable.
Easily create PDF files within your Rails Application with Wicked PDF.
In this episode, we look at creating an iOS Application which will communicate with the Rails API application from the previous episode.
Using the URI or Accept Headers, we can version our API to prevent breaking changes to our end users. In this episode, we look at versioning our RESTful API.
The Observer pattern (also known as publish/subscribe) provides a simple mechanism for one object to inform a set of interested third-party objects when its state changes.