AA free security programme called Google Authenticator helps guard your accounts against password theft. Two-factor authentication, which is available on popular sites including Gmail, Facebook, Twitter, GoDaddy and Instagram, is simple to set up and use. The app (iOS/Android) generates a random code that is used to verify your identity when you log into various […]
Tutorials
How to Read data from local JSON file in Swift?
Introduction We will assume that we want to have a JSON file added inside our project and want to access its data in swift language. Code You can create a JSON file in Xcode by going to File > New File > Empty and giving the file any name (eg. example.json). The file will be […]
How to Migrate Magento Store From Localhost To Server?
After creating your dream Magento store on localhost when its time to move it to production server sometimes people get nervous. Its a piece of cake and we will help you in migrating your Magento store from localhost to production server. Prerequisite 1. Working domain 2. Production ready for Magento Working domain By working domain […]
How to send push notification from server?
What are push notifications? Push notifications are the messages that are pushed to mobile from another platform than the receiving device. Let us consider any mobile app either closed or open. We get some notification from server irrespective of the app is open/closed/minimised. The only condition is that the app should be installed. In such case, […]
How is Session Management done in Android?
In Android, the session management is done using some data storage techniques. This data can be stored in some global variables, database or application’s preferences. But there is an issue with the global variables. The global variables can only retain the data until the application is opened. Once the application gets closed, the global variables […]
Iterate through each element of JSON string in Android and iOS
Introduction We will assume that we are going to take JSON string as input String and we will look into the process to access each element of JSON String in Android and iOS. Android String jsonString = "{\"animal\":\"Lion\", \"bird\":\"Sparrow\"}"; JSONObject jsonObject = new JSONObject(jsonString); Iterator < ? > keys = jsonObject.keys(); while (keys.hasNext()) { String […]
How to Use Actions in Adobe Photoshop?
As a graphics designer, it is very much important to deliver our product with a better UI. We also to do the work in more efficiency and with more speed. But any time we have to do the same task in the repeatedly in Adobe Photoshop. As a human nature, we lose our interest to […]
How to Create Alert Dialog box in Android?
The alert dialog box can be used to display a message in a popup dialog box or display a text field for user input or show any custom view in the dialog box. For the view to be displayed in the popup dialog, the view has to be created programmatically or via XML. Then the […]
How to Create An eBay Sandbox Account?
eBay offers the sandbox setting. An application that carries out all the actions it can in the Production environment because it is a unique environment created only for testing. This enables you to mimic testing environments for applications created with the eBay API. The eBay Sandbox test site allows you to test and understand the […]
How to use GraphQL in PHP?
Have you heard about GraphQL? GraphQL is a modern query language for the API. In another word, we can say it is a modern application layer query language. With the help of GraphQL, we can fetch data from the API calls and it works on the HTTP as REST. It provides the powerful option to […]