Posts

Showing posts from June, 2016

Google Two Factor Authentication Login with PHP

Image
In our previous post , explains you the login system using PHP with PDO connection. Here is an extra feature that can be added to login system for an extra layer of security. It is 2 factor authentication using Google Authenticator App for Android/iPhone. Your account could be at risk of having your password stolen. 2 step verification can protect from misuse of your account if someone have your password, because logging into your account always require a security code(this verification code is uniquely designed for your account, if you opt for verification code, an unique code is sent to your mobile for every 30-60 seconds) in the second step after you enter your password. Read more »

Create an Error Free Application and Build an Amazing Customer Experience with Raygun

Image
Are you building new web or mobile software? What are your goals while implementing your application? There could be many answers, like efficiency, more effective user experience, proper security and authentication, good marketing features and so on. In simple terms, the work we do should ultimately satisfy the end user. So, for any successful application, an end user’s happiness should be the first goal. A customer should never get frustrated with your application, it only costs you time, money and a whole bunch of lost customers. Read more »

Rethink Database for Creating a Realtime Web Application with Node JS

Image
Earlier in realtime, any request for data from the server makes the app slow, unscalable and cumbersome to maintain. RethinkDB mainly focus on this drawback and makes building realtime apps easier. RethinkDB is the first open-source, scalable JSON database built for realtime web. The developer can tell RethinkDB to continuously push updated query results to application in realtime; this reduces the server load and also the time and effort necessary to build scalable realtime apps. Here there is complete steps for installing RethinkDB. This post also explains you to create a reat-time web application using RethinkDB and Node.js Read more »