One of goals which neovim devs set for themselves, was making lua the first-class scripting language alternative to viml. Since version 0.4 its' interpreter along with 'stdlib' have been already bu...
In this post, we will finish up refactoring views that we saw, including a view that is heavily based on callbacks. We won't be able to delete them yet since for now we only render the cell in one ...
Encapsulating backend business logic into Trailblazer operations is a very important part of building an app based on it, alongside contracts and moving logic from controllers. Another important st...
Since we prepared and tested Operation and Contract to create Proposal with Trailblazer way, it is time to clean the mess in the controller. Let's remind how our controller #create action looks...
Before we move our business logic to Operation class we still need to handle: Setting the speaker data, Updating the bio of current user based on the speaker from proposal bio. **_(Iter...
Since we have basic cases and success flow tested and implemented, it is time to focus on our business logic which we want to move from controller to Operation. Our first identified logic is t...
Context Before I start this little controversial blog post, I would like to give a little context of the situation, which made me come with conclusions below. About 7 years ago I started to a ...