In some cases after a password change, git starts to throw fatal errors like this one: You might notice that the URL from the error message can be opened in…
Author: <span>selfclosingbug</span>
Easiest method to add X months to a date object in JavaScript is by using Date.prototype.setMonth() method. This method has two parameters, month and day. First parameter represent the number…
Recently I’ve been working on a large Angular project with deeply nested folders and all the import paths were referenced relatively and they looked like this: This imports are too…
This tutorial follows the steps described in Get started with Angular CLI v6, npm, Node.js and Visual Studio Code. It’s an updated version for those that are starting directly with…
Pagination is a usefull component that helps you display page numbers for your data collections. I ended up building my own simple component after spending too much time trying to…
In the previous article I explained how to handle inheritance in the generated Typescript files and, at the end, we saw that the compiler complained about not finding the base…
In this article I will explain how to handle inheritance in generated classes using Typewriter. More details about Typewriter and how to start using it can be found din this…
In this article I will explain how to work with nullable types, more exactly how to tell Typewriter to handle nullable properties found in C# code. More details about Typewriter…
Typewriter is a free extension for Visual Studio that generates TypeScript files from C# code files using TypeScript Templates. https://frhagn.github.io/Typewriter/index.html To make it available in your Visual Studio, go to…
In this tutorial I will explain how to install all the dependencies needed in order to create an Angular 6 project. The tutorial covers the following things: Install Node and…
Leave a Comment