The Infrastructure as Code (IaC) world was shaken in 2023 when Terraform's licensing shift left many feeling uncertain. But fear not, OpenTofu, a valiant fork, has emerged, promising a future built on open-source principles and community collaboration.
Latest News
How to create a Resilient AWS Cloud Architecture with Terraform: A Step-by-Step Guide
Craft high-availability reliable and secure AWS infrastructure using Terraform. Learn to create 4 subnets, 2 public, 2 private, with internet access
How to run docker for development environments
In this post I will show you how to create docker images for your applications. You can find base examples for building your own environment
How to upgrade PHP script from MySQL to MySQLi
Learn step-by-step how to update your PHP scripts from MySQL to MySQLi. Just adding an "i" is not the solution!
How to use PDO with MySQL database
Once the mysql extension is deprecated, it is recommended to use the PDO extension. In this tutorial, I show how to use PDO with MySQL in an easy and clear way
MySQL deprecated? Check out what to do
mysql_* functions, such as mysql_connect and mysql_query, should be avoided. In PHP 7, they no longer exist. Learn about two alternatives here
DotEnv: The perfect place for your PHP project configs
DotEnv is the perfect way to store sensitive configurations. Stored in a secure location, only two lines of code are needed to load them
Composer: the PHP dependencies manager
Composer is the tool to manage dependencies in your PHP application with extreme ease. It downloads and loads libraries automatically with just one command
The N + 1 problem: how to improve performance of SQL queries
The N + 1 problem causes a significant loss of performance. In this article you will learn how to gain more than 13 times the performance with a simple adjustment to solve this issue
How to generate execution logs with PHP
Execution logs are extremely useful for debugging our programs. In this article, I show a complete function for generating execution logs with PHP