What is code push:- CodePush is cloud service that enables React Native & Cordova developers to deploy mobile app update instantly to their users devices. It Works by acting as central repository that developers can publish updates to (JS,HTML,CSS and …
August 2019

What is Vue Js and How to install Vue Js.
What is Vue Js VueJS is an open source progressive JavaScript framework used to develop interactive web interfaces. It is one of the famous frameworks used to simplify web development. VueJS focusses on the view layer. It can be easily integrated into big projects for …

React Native : Unable to build app (Android issue)
Steps: Use latest library versions & gradle dependancy methods ( i.e Use implementation instead of compile ). Use new versions of third party dependancy in android gradle ( i.e api version 28.0.3 instead of 21.0.0 ). Always use new maximum api version.

Chat Using Firebase
What is Firebase? Firebase was founded in 2012 as a real-time architecture for syncing data between apps. It was acquired by Google in 2014. Originally, it was a part of Envolve, a real-time chat integration API. Overtime, the developers realized that the system was being …

Vanilla : Issue with signIn and register button popup not open
Problem :- – After vanilla upgrade signIn and Register,SignOut Link not work so solve for comment code into following file. Solution:- – Changes and Comment Into Following File File Name:- vanilla/applications/dashboad/controllers/class.enteycontroller.php signIn methode:- line:- 888-890 /*if (!$this->Request->isPostBack()) { $this->checkOverride(‘SignIn’, $this->target()); }*/ register methode:- line:- 1249-1251 …

S3 bucket with NodeJS
Here we will learn how to implement S3 bucket in our code. The first thing that we need is to create an account in AWS service. Follow this link in order to create S3 bucket. First we need to install some npm: $ npm install express …

Android native animation
To represent UI with some creative thing we use animation. Animation in the android application is provided by android native itself we just need to modify as per our requirement that which type of animation we need to do on view. We will learn about Transition animation. => View …

Setup AWS EC2 Instance
here are several ways to get started with Amazon EC2. You can use the AWS Management Console, the AWS Command Line Tools (CLI), or AWS SDKs. Step 1: Set up and log into your AWS account Log in to the AWS Management Console and set up your …

Important Moment.js functions for JavaScript
Below are some very important functions that you will need while working with timestamp or date in JavaScript. // returns current timestamp const set_current_timestamp = function() { returnmoment().format(‘X’); }; // converts timestamp to date // pass timestamp in function const getDateFormatFromTimeStamp = function(dt) { returnmoment.unix(dt).format(‘MM/DD/YYYY’); }; …

Adding script pop-up in Xcode
How to Add a Run Script Build Phase in Xcode Step – 1 : Click on Project icon Step – 2 : click on Edit scheme you can add script in run/archive/debug time application Step – 3 : Click on Run DropDown Step – 4 : …