The Data Engineer Roadmap 🗺
PublishedIntroduction With the ever growing data volumes and demands, the data engineering career has been one of the fastest growing jobs for the past few years. According to the 2021 Stack Overflow survey, data engineers are one of the top 5 highest paid pr...
Bobby Iliev
Introduction No matter if you are a DevOps/SysOps engineer, developer, or just a Linux enthusiast, you can use Bash scripts to combine different Linux commands and automate boring and repetitive daily tasks, so that you can focus on more productive a...
Bobby Iliev
Introduction to Docker It is more likely than not that Docker and containers are going to be part of your IT career in one way or another. In this blog post series I'll cover the following: What are Docker images, containers and Docker Hub Installi...
Bobby Iliev
Introduction Hacktoberfest is a month-long event where people are awarded for contributing to open source projects 🙌. In order to participate you need to sign up here and then Submit four pull requests (PRs) to a GitHub repo tagged with the hacktober...
Bobby Iliev
🚀 The Missing SQL Basics Crash Course
PublishedIntroduction No matter if you are a DevOps/SysOps engineer, developer, or just a Linux enthusiast, you will most likely have to use SQL at some point in your career. The guide is suitable for anyone working as a developer, system administrator, or a ...
Bobby Iliev
Introduction PestPHP was created by Nuno Maduro who is also one of the Laravel core team members. PestPHP is an open-source PHP Testing framework created with simplicity in mind. PestPHP is being really actively developed and there are already plenty...
Bobby Iliev
Introduction Optimizing your MySQL service is a great way to improve your Laravel application's overall performance. Of course, it is important to follow Laravel Eloquent's best performance practices as described in Jonathan Reinink's course on Larav...
Bobby Iliev
Introduction There are many reasons why you would like to keep a process running even if you close your SSH session. Here are a few examples: Your working day is going to be over soon and you are running a huge database import that's taking a long t...
Bobby Iliev
💡 Free Laravel Tips and Tricks eBook
PublishedThis is an open-source Laravel Tips and Tricks eBook that is a collection of my own notes that I've put together for myself throughout the years. You would more likely than not need many of those tips at some point in your career as a Laravel Develop...
Bobby Iliev
Introduction The Eloquent ORM included with Laravel provides you with an easy way of interacting with your database. This simplifies all CRUD (Create, read, update, and delete) operations and any other database queries. Laravel provides a lot of hand...