Tag: Aliases

Typescript Best Practices

I have been extensively using Typescript since the beginning of this year. The reason for this can be attributed to its popularity, as it was ranked 4th in Github’s language rankings for 2022. Additionally, it appears on most job descriptions, with over 801,000 job offers explicitly ...

10 TypeScript Tips and Tricks Every Developer Should Know

TypeScript is a superset of JavaScript that allows developers to write safer and more maintainable code. It provides static typing, type checking, and other advanced features that are not available in vanilla JavaScript. In this article, we will explore some of the most useful TypeScript tips and tr...

Create and Manage Bash Aliases in Linux

Introduction Bash aliases are basically a way for you to run one command as another. For example, aliases are super convenient for creating shorthand commands for longer commands like I have listed in [My Bash Aliases](#my-bash-aliases). Follow the steps in this article to learn how to create all...