C# – Serilog

By | 24/01/2024

In this post, we will see how to use Serilog in our .net applications.But first of all, what is Serilog?Serilog is a diagnostic logging library for .NET applications. It is designed to be easy to configure and extend, offering a rich set of sinks (outputs) and enrichers. One of the key features of Serilog is… Read More »

Category: C#

Swift – SQLite

By | 13/12/2023

In this post, we will see how to use SQLite in an iOS project.In detail, we will use SQLite in the same application created in the post: Swift – Core Data. First of all, we have to add SQLite.swift in our project to simplify the process of working with SQLite databases: Go to File ->… Read More »

Python – Management of a MongoDB database

By | 06/12/2023

In this post, we will see how to manage a MongoDB database with Python using pymongo.In detail, we will perform the CRUD operations on a document called ‘User’ defined as follows: We start writing a Docker-compose file to create a docker container, with an instance of MongoDB: If we run it, the following will be… Read More »

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 »