Articles

JavaScript, TypeScript, Angular, Vue, NodeJS, Laravel and more...

in Front End

How to Strongly Type a Set/Dictionary with an Index Signature.

A set or a dictionary is a common structure to store unstructured data for quick access. In JavaScript, using the dynamic notion of being able to assign a member to an object creates a dictionary. Learn how to strongly type a set/dictionary with an index signature in this article ...

in Docker

Kubernetes in Microsoft Azure, Google Cloud, and Amazon Web Services.

Learn how to launch Kubernetes in Microsoft Azure, Google Cloud, and Amazon Web Services in this article by Russ McKendrick. An experienced system administrator who has been working in IT and related industries for over 25 years, and Scott Gallagher, a Microsoft, Linux, Docker, a ...

in Front End

Angular applications done right, using Angular-Cli.

Sometimes it's hard to know how to create a scalable Angular application, especially when dealing with all Angular-Cli commands. It is very common not to know for sure when to use a module, or a component, or when a component is a page/view or even when we need a new routing file ...

in Back End

Laravel Restful API using Docker in three steps (Part III)

In this post series we will see how to build a Laravel Restful application. In addition we will see the basic functionalities of Resources, a pretty easy way to create JSON files. This post was inspired by the book: Hands-On Full Stack Web Development with Angular 6 and Laravel ...

in Back End

Laravel Restful API using Docker in three steps (Part II)

In this post we will see how to use the Eloquent ORM relationships between Models and Tinker to queries some data from database. This post was inspired by the book: Hands-On Full Stack Web Development with Angular 6 and Laravel 5, from Fernando Monteiro, released on July/2018 by ...

in Back End

Laravel Restful API using Docker in three steps (Part I)

In this post series we will see how to build a Laravel Restful application. In addition we will see the basic functionalities of Eloquent ORM, tinker db queries and some relationships between Models. This post was inspired by the book: Hands-On Full Stack Web Development with An ...