React Native – First project using Expo Snack

By | 25/11/2020

In this post, we will see how to create our first React Native project, using Expo Snack. First of all, what is React Native?From Reactive Native web site:“Create native apps for Android and iOS using React.React Native combines the best parts of native development with React, a best-in-class JavaScript library for building user interfaces.You can… Read More »

React – How to add Bootstrap in a project

By | 18/11/2020

In this post, we will see how to add Bootstrap in the project created in the post: React – Fetch data in Class component. First of all, we install the last version of Bootstrap using the command npm install –save bootstrapThen, we delete the code used to define the table’s style in the file in… Read More »

React – Fetch data using Axios

By | 04/11/2020

In this post, we will see how to fetch data in React using a library called Axios, modifying the application created in the post: React – Fetch data in Class component.Axios is a promise based HTTP client for the browser and Node.js and, it makes easy to send asynchronous HTTP requests to REST endpoints and… Read More »

Design Patterns – Singleton

By | 21/10/2020

From Wikipedia:“In software engineering, the singleton pattern is a software design pattern that restricts the instantiation of a class to one ‘single’ instance. This is useful when exactly one object is needed to coordinate actions across the system. The term comes from the mathematical concept of a singleton.“ In this post, we will see how to implement this pattern in a .NET Console application. We… Read More »

Node.js – How to create a REST API

By | 14/10/2020

In this post, we will see how to create a Rest API with Node.js and Express. First of all, what is Express?Express is an open source web framework that helps us to make developing websites, web apps, & API’s much easier.It supports many templating engines and it is very simple to use. In order to… Read More »

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 »