Swagger – Tips

By | 08/10/2020

In this post, we will see some tips that can help us when we use Swagger.First of all, we open Visual Studio, we create a Web API project and add some files: [BOOK.CS] [BOOKCONTROLLER.CS] If we run the application, this will be the result: Now, we install the Swashbuckle.AspNetCore package, using the command Install-Package Swashbuckle.AspNetCore -Version 5.5.1 in… Read More »

Swift – The word clock

By | 06/10/2020

Finally, I have deployed my app called ”The word clock”.It is a nice word clock for iPhone, where minutes and hours aren’t static but they change their position.This is the first version and it shows only the time.In the next version, I will add other features like alarm and widget. If you want to download… Read More »

React – Fetch data in Class component

By | 30/09/2020

In this post, we will see how to fetch data in a Class component.In the React web site, they advise to use the method componentDidMount() because, “is invoked immediately after a component is mounted (inserted into the tree). Initialization that requires DOM nodes should go here. If you need to load data from a remote… Read More »

SwiftUI – clipShape()

By | 23/09/2020

In this post, we will see how to use clipShape() in order to clip an image controlling its shape.But what is clipShape()?From Apple developer web site:“Sets a clipping shape for a view.Use clipShape(_:style:) to clip the view to the provided shape. By applying a clipping shape to a view, you preserve the parts of the… Read More »

React – Hooks

By | 16/09/2020

In this post, we will see how to use Hooks in React.But, what are Hooks?From React web site:“Hooks are a new addition in React 16.8. They let you use state and other React features without writing a class.“ STATE HOOKS We open Visual Studio Code and we create a file called State.js: [STATE.JS] Now, if we… Read More »

MongoDB – How to install on Windows

By | 09/09/2020

In this post, we will see how to install and configure MongoDB on Windows.But first of all, what is MongoDB?MongoDB is a cross-platform, document oriented database that provides, high performance, high availability, and easy scalability.A MongoDB Database is formed of three main components:DATABASE – the physical container for collectionsCOLLECTION – it is a group of… Read More »

React – Tips

By | 04/09/2020

In this post, we will see three tips that can help us in develop of React applications. CODESANDBOXCodesandbox is an instant IDE and prototyping tool for rapid web development. We can use it to create prototype for example in React, Angular or Vue, from anywhere, on any device without setup and using only a browser.We… Read More »

C# – Logging in .NET Core

By | 01/09/2020

In this post, we will see how to add Logging in the project Api.Orders created in the post: Web API – How to use Polly library with Ocelot.Logging is a built-in feature of ASP.NET Core and .NET Core Work Services and it is provided as part of the Microsoft.Extensions.Logging library. For more information: Microsoft Web… Read More »

Category: C#