Blog


Angular ViewChild and ViewChildren

Angular ViewChild and ViewChildren

This article is focussed on understanding the Usage of @ViewChild and @ViewChildren inside Angular Components. A component can obtain a reference to an element or directive.

ProgrammingTechnologySoftware Engineering
Creating Axios mock requests in Jest

Creating Axios mock requests in Jest

How to create your own reusable axios mock request function for Jest.

JavascriptJestTesting
ES6: What is the difference between Rest and Spread?

ES6: What is the difference between Rest and Spread?

Rest Parameter [ …rest]

JavascriptEs6Rest
Building a Point of Sale system with Node & React

Building a Point of Sale system with Node & React

Build the front and back end of a real-time application with React and Node!

NodejsReact
ES6: Arrow Functions

ES6: Arrow Functions

JavascriptEs6Arrow function
Can you console.log in JSX?

Can you console.log in JSX?

TLDR: Embed the expression

ReactJavascriptJsx
How to Detect a Sequence of Keystrokes in JavaScript

How to Detect a Sequence of Keystrokes in JavaScript

JavascriptCodingProgramming
Creating and attaching an AWS IAM role, with a policy to an EC2 instance using Terraform scripts

Creating and attaching an AWS IAM role, with a policy to an EC2 instance using Terraform scripts

This is an infrastructure as a code, which is equivalent to the AWS CloudFormation, that allows the user to create, update, and version any of the Amazon Web Services (AWS) infrastructure. Terraform…

AwsCloudAws iam
Creating a Spark job using Pyspark and executing it in AWS EMR

Creating a Spark job using Pyspark and executing it in AWS EMR

Spark is considered as one of the data processing engine which is preferable, for usage in a vast range of situations. Data Scientists and application developers integrate Spark into their own…

PythonPyspark
When should I use curly braces { } and parenthesis ( ) in React?

When should I use curly braces { } and parenthesis ( ) in React?

In the beginning of your career when learning React and ES6 JavaScript syntax, it can be confusing when to use curly braces { } and when to use parenthesis ( )

ReactJavascriptEs6