SwiftUI – View That Fits

By | 29/11/2023

In this post, we will see what “View That Fits” is and how to use it in our projects.But first of all, what is “View That Fits”?ViewThatFits is a new view in SwiftUI that was introduced in iOS 16. It allows us to easily create adaptive layouts that can fit different screen sizes. ViewThatFits takes… Read More »

Minimal APIs – Authorization

By | 22/11/2023

In this post, we will see how to implement authorization in Minimal APIs.We will use the same project that we created in the post “Minimal APIs – Minimal APIs with .NET Core” in which, we then added Authentication in this other post “Minimal APIs: Authentication with JWT“.In detail, we want to restrict the Insert, Delete… Read More »

Python – Management of a SQLServer database

By | 15/11/2023

In this post, we will see how Python can seamlessly integrate with SQL Server to perform various tasks, from connecting to the database and executing SQL queries to performing advanced data analysis and visualization.In the past , we have already seen how to connect to SQL Server with python but, it was only an introduction… Read More »

SwiftUI – MapKit

By | 08/11/2023

In this post, we will see a brief introduction to MapKit and how we can use it in our applications.But first of all, what is MapKit?From Apple web site:“MapKit for SwiftUI allows you to build map-centric views and apps across Apple platforms. You can design expressive and highly interactive Maps with minimal code by composing… Read More »

C# – ACID properties in Database Management

By | 01/11/2023

In this post, we will see the ACID properties and how we can implement it using C#.But first of all: what is ACID?ACID is an acronym that stands for Atomicity, Consistency, Isolation, and Durability. It’s a set of properties that databases strive to achieve to guarantee that database transactions are reliable, even in the face… Read More »

Category: C#

Unit Test – Fluent Assertions

By | 18/10/2023

In this post, we will see what “Fluent Assertions” is and how we can use it in our projects.But first of all, what is “Fluent Assertions”?Fluent Assertions is a popular library for writing more expressive and readable unit tests in C#. It provides a fluent, natural language syntax for asserting the behaviour of our code.For… Read More »

Design Patterns – Decorator

By | 11/10/2023

In this post, we will see what the Decorator Pattern is and how we can implement it.But first of all, what is the Decorator Patterns?From Wikipedia:“In object-oriented programming, the decorator pattern is a design pattern that allows behavior to be added to an individual object, dynamically, without affecting the behavior of other objects from the… Read More »

SwiftUI – Grid

By | 04/10/2023

In this post, we will see how to use Grid, the new container view introduced in iOS 16 that allows us to create simple, yet flexible layouts.It is similar to the LazyVGrid and LazyHGrid views but, it is designed to be easier to use for simpler layouts.To create a Grid view, we simply specify the… Read More »