Create CI/CD Pipelines with GitHub Actions
Continuous Integration and Continuous Delivery (or Deployment) - better known as CI/CD Pipelines - is a pillar of modern software teams. Although it may sound like another buzzword, it’s actually about something very practical: automating the way code moves from your local enviroment to production.
Docker and Containerization
If you’ve been in software development for a while, you’ve probably dealt with this annoying issue: your code runs perfectly on your machine, but when a colleague tries to run…
From Bulls to Bytes: Excel Data Importation Made Easy with Ruby on Rails
Have you ever wondered about the complexity of importing data from Excel files (.xlsx) into a Ruby on Rails project? Considering that .xlsx files aren't plain-text like CSV, but rather…