Adrian Mejia

Adrian Mejia @amejiarosario

About: First do it, then make it better.

Location:
Boston, MA
Joined:
Aug 27, 2018

Adrian Mejia
articles - 11 total

What every programmer should know about Synchronous vs. Asynchronous Code

There are multiple ways of handling concurrency on programming languages. Some languages use various...

Learn More 46 5Jul 1 '19

What are your top ten command lines?

Run the following command list to find out! history | cut -c8- | sort | uniq -c | sort -rn | head -...

Learn More 50 35Jun 20 '19

How to build a Node.js eCommerce website for free

Running an online store that sells digital goods is easier than ever. Thanks to generous free plans f...

Learn More 231 11May 14 '19

How can developers reduce stress

Most professions nowadays involve a certain degree of stress. We have deadlines, last minute change o...

Learn More 41 6Apr 23 '19

Self-balanced Binary Search Trees with AVL in JavaScript

Binary Search Trees (BST) is used for many things that we might not be aware of. For instance: in com...

Learn More 24 1May 30 '19

Tree Data Structures Explained with JavaScript

Tree data structures have many uses, and it's good to have a basic understanding of how they work....

Learn More 158 2May 23 '19

Graph Data Structures Explained in JavaScript

In this post, we are going to explore non-linear data structures like graphs. Also, we'll cover the c...

Learn More 140 3Apr 30 '19

Data Structures in JavaScript: Arrays, HashMaps, and Lists

When we are developing software, we have to store data in memory. However, there are many types of da...

Learn More 254 1Apr 22 '19

8 time complexities that every programmer should know

We are going to learn the top algorithm's running time that every developer should be familiar with....

Learn More 325 5Apr 2 '19

How you can change the world by learning Algorithms

As a developer, you have the power to change the world! You can write programs th...

Learn More 242 5Apr 15 '19

Getting started with Node.js modules: require, exports, imports and beyond

Getting started with Node.js modules: require, exports, imports, and beyond. Modules are a crucial c...

Learn More 17 0Jun 28 '19