Posts
2017
Dry-web-roda for Rails Developers Part II (Persistence)
Following my previous post, Dry-web-roda part 1, I have decided to create my small website to keep track of all the things I learn throughout the day.
Yes, I know, another Today I Learned Website 😓 - til_web, but this time I started with the persistence layer, and I wanted to share my experience with you.
2016
React back to basics
·630 words·3 mins
This post will not be another post describing React and what is good or wrong about it; I’m just learning it, and part of the learning process I decided to write a blog post to help me maintain this new concept.
Back from summer resolution
·197 words·1 min
After a long vacation, I came with a lot of energy and new goals for the new year.
So I’m going to start making things right. Being a developer can be challenging, and you have to continuously update your knowledge and keep practicing even outside office hours. Don’t get me wrong, I love coding, but there are days or weeks when I’m lazier than usual.
2015
Testing rake tasks
This post continues our work in Improving our rake tasks with OOP.
In this one, we will discuss how to test our rake task; the example will be very straightforward. We will invoke the rake task and expect that some classes receive the correct arguments.
Improving our rake tasks with OOP
I have been writing some rake tasks for downloading backups, accessing APIs, or automating tedious and repetitive work. Rake tasks are great, but dangerous at the same time.
We add so much code to our rake tasks that they become a source of errors. Following the principles of OOP, we can clean our rake tasks, improving our code and making them much easier to test.
Working your way up with promises
·540 words·3 mins
Lately, I have been working more with JavaScript.
Initially, I wasn’t enthusiastic about working with JavaScript, but the project surprised me.
For starters, it uses React and Redux for managing the state of the application.