Is It Normal To Be Stuck in Programming Problems?
Sometimes programmers get stuck trying to make things work leading to frustration. However, there are tips programmers can use to get out there.
Sometimes programmers get stuck trying to make things work leading to frustration. However, there are tips programmers can use to get out there.
Interested in working as a programmer, but don’t have a degree? In this article we explain why you don’t need a degree to learn how to program.
Many developers have been using Node.js for years without knowing if it single-threaded or multi-threaded. We will explain which one is and why.
Starting in the programming world is never easy, but it can turn into one of the most rewarding things you can do for a living. If you are relatively new or have a couple of years of programming, you probably had an infinite amount of questions, some of them could be along the following lines: … Read more
Personal access tokens are an alternative to authenticate GitHub users without the need of using your password. If you have used a personal access token before, during the process of generating the token you noticed you could set an expiration date. Once the expiration date is past due, the token will no longer be valid … Read more
Looking to improve your skillset as a software engineer is always a good indicator you are passionate about developing software. One common question new developers tend to ask is whether they should commit to master branch their work. I hope this article provides you with meaningful insights into this practice. Master branch often reflects the … Read more
TypeScript has become an excellent alternative to prevent data type definition issues often found when working with JavaScript. Companies are migrating to TypeScript as the default programming language for their Node.js backend. However, developers struggle to set up local debugging configurations when using nodemon. In this article, you will learn how to fix that issue. … Read more
For those who have worked with JavaScript for a while, you will understand there are certain behaviors about the language that makes it seem it works in a certain way, when in reality it doesn’t, such as using == and === equals to check for equality between two different values. Against what many think, JavaScript … Read more
Whether you are coming from a different programming language like C# or you are a brand new programmer learning about JavaScript, you have probably seen different JavaScript codebases using in some cases double equals (==) and in other cases using triple equals (===). Although they seem similar at first, it is important to understand the … Read more
Note: This post is part of Learn How to Use TypeScript With Node.js and Express.js series. Click here to see the first post of the series. Getting Started First things first, we need to create the directory for our application: mkdir express-typescript Time to set up our package.json file where we can define all our … Read more