iMasters.com - Knowledge for Developers.
Follow Us
Home Archive 2 Columns

Archive 2 Columns

Phasellus tellus tellus, imperdiet ut imperdiet eu, iaculis a sem Donec vehicula luctus nunc in laoreet

Cloud & Infra

Highway to Heaven: Building a Strong Cloud-Based Business Roadmap

“Everybody else is doing it” isn’t a sufficient reason for your business to make the jump entirely to the public cloud. At the...

Backend

How to spice up Swagger documentation using annotations in ASP .NET Core.

In .NET 6, when we create an ASP.NET Core Web API project by default, we can use or not controllers. We can also...

Data & AI

OpenTelemetry is essential for managing modern applications, but it’s not a silver bullet for IT teams managing hybrid environments

Across industries, IT teams are recognizing the benefits of OpenTelemetry – the observability platform for collecting, processing, and exporting large-scale software telemetry, as...

Backend

Dependency Injection in real life with PHP

Today I will write about this topic because I realize that some software developers have difficulties using dependency injection concepts in real applications....

Data & AI

DeepETA: How Uber Predicts Arrival Times Using Deep Learning

*Authored by Uber Engineering, with Xinyu Hu, Olcay Cirit, Tanmay Binaykiya and Ramit Hora. At Uber, magical customer experiences depend on accurate arrival...

Backend

What is SOLID?

SOLID is an acronym that stands for five principles in object-oriented software design: Single ResponsabilityOpen-ClosedLiskov SubstitutionInterface SegregationDependency Inversion Principle Although Go is not...

Backend

EF Core using AsNoTracking with Identity Resolution

Today we will see the consequences of using AsNoTracking with the Identity Resolution feature available from EF Core 5.0 onwards. I’ve already introduced...

Backend

[Databricks API as an internal service] dbutils — notebook.run, widgets.getArgument, widgets.text and notebook_params

With an increasing demand for greater autonomy in data pipelines, the Databricks data analytics platform has become a popular solution for companies looking...

Frontend

TypeScript: Tuples

For those unfamiliar with Tuples, they represent a simple array-like data structure. The big difference between the two is that in arrays we...

Backend

Event Driven with Laravel Pigeon

Hey guys. Event-driven is a very widespread architecture in microservices because it promotes decoupling between different services. At Convenia, we opted for this...