Valuable Tips for Developer Apprentices

Learning to program is a challenging journey, especially with the continuous evolution of technology. The good news is that it’s not a path you’re expected to traverse without guidance. Here are some valuable tips that can help you transform from an apprentice to a professional developer.

🎯 Immersion: The...

PHP Composer, error: Invalid version string

Recently working with PHP Composer on a project that is based on the Laravel framework, I came across the error: Invalid version string. More precisely when performing the attempt to install a Laravel package that allows me to use models with the logical strategy of Eloquent to access MongoDB databases.

The package...

featured-copyright.webp

Adding the copyright information with the current year in the footer of websites and blogs is important to convey to your audience the information that the content they find is “alive” and updated on this site. It is also interesting to add the year of the beginning of the site, the more information about...

If you are geting the error class not found when executing the command php artisan migrate:rollback in a project with the Laravel framework, this article shows how to solve the error and execute rollback.

Migrations

When working with Migations, the migrations of databases in the Laravel, mainly in the initial...

What is OOP - Object Oriented Programming

Object-Oriented Programming (OOP) is a programming paradigm based on the concept of objects, which can contain data and behavior. In OOP, objects interact with each other by sending messages, and objects can be grouped into classes, which define their shared behavior and data.

OOP was created to improve software...

round-number-featured.webp

I participated in a Business to Business (B2B) project, where I was part of the team that developed the backoffice platform, and another team developed Frontoffice (the e-commerce store). Each part of the platform - Back and Front Office needed to exchange data and it was necessary to establish a numbering rounding...

featured-dados.webp

A quick and straightforward tutorial that demonstrates how to generate random numbers in C language.

You can use the same functions to work with C++.

The motivation came from the need of my programming students, especially from courses not directly linked with computer science, such as those of Electrical Engineering....

featured-pink-dices-on-pink-background.webp

Random numbers are useful for a wide variety of situations, such as generating data encryption keys, simulating and modeling complex phenomena and selecting random samples from larger data sets.

Random numbers have also been used aesthetically, for example, in literature and music and for games and bets.

However, it is...