iMasters.com - Knowledge for Developers.
Follow Us

Backend

Backend

What’s New in .NET 8: Setting Possible Values ​​with AllowedValuesAttribute

During March/2023, Microsoft made Preview 2 of .NET 8 available, with several improvements involving using Data Annotations. More information can be found in...

Backend

.NET 8 first tests with Preview 1 + JSON deserialization improvements

At the end of February/2023 – Tuesday, 02/21 – Microsoft made available .NET 8 Preview 1, the first release of this new version...

Backend

ERC-721 Smart Contract Tutorial (NFT) with Solidity (part 2)

I recently started an NFT smart contract programming tutorial in Solidity, using the ERC-721 standard here on the blog, and this is the...

Backend

Why I like Go’s error handling

One of the most controversial issues in the Go language is how to handle errors. I remember when I started working with the...

Backend

Malware risks lurk in every direction, with DDoS attacks topping the list

According to a recent Radware report, the global number of DDoS attacks has increased by 150%, while the volume of DDoS attacks increased...

Backend

How Microsoft Cloud is Accelerating AI Transformation in Every Industry

The last quarter put a spotlight on advances in generative AI and the possibilities for its application to deliver more assertive business outcomes....

Backend

What are the best plugins for Bubble in 2023?

Bubble.io is a low-code web development platform that allows anyone to build web apps with no programming knowledge required. One of the platform’s...

Backend

Practical and basic recommendations for building web APIs with ASP.NET Core

REST APIs allow various clients, including browsers, desktop apps, mobile apps, and any device with an internet connection, to communicate with a server....

Backend

Simple Multi-Tenant Setup in Laravel

What is Multi-Tenant? It is an architecture in which a single application instance serves multiple clients. Each customer is called a Tenant. Tenants...

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...