This post is a part 39 of Intel XDK Complete Tutorial post series. From iPhone 5S onwards Apple introduced fingerprint scanner which lets applications verify if the user is the phone owner. In future Apple may allow apps to take raw fingerprints and provide some other information. Now Intel XDK apps can make use of […]
In this tutorial I will show how to detect phone shake with just few lines of JavaScript code. We will be using shake.js library to detect it. This library uses Device Orientation API to function. Example Here is just few lines of code to detect phone shake View Demo <script type="text/javascript" src="https://cdn.rawgit.com/alexgibson/shake.js/master/shake.js"></script> <script> […]
Check out this youtube video to learn how to create a ios adhoc build and test it in your device.
In this tutorial I will provide a method to run cron jobs in PHP that too asynchronous without affecting page load time. This doesn’t require to install any PHP extension or any other kinds of coding horrors. Logic We need two PHP files. The first file checks if scheduled time has passed or just occurred […]
WordPress Cron Jobs are a great way to schedule events which occur at specific interval of time. WordPress cron jobs run when current time is equal or more than the scheduled time of the cron job. WordPress makes this check whenever a HTTP request is sent to WordPress. If the scheduled time has occurred then […]
This post is a part 1 of Premium WordPress Plugins post series. The only way you can get a lots of Twitter followers is by bringing lots of users with similar interests as yours to view your profile. Many of the visitors will start following you. I have created a WordPress plugin which brings real […]
In this tutorial I will provide code to store key/value pair data in a CSV file and access it. If you are familiar with WordPress then you must have used update_option(), get_option() and delete_option() to store key/value pairs, in this tutorial I will provide an implementation of these functions for PHP. In WordPress key/value pairs […]
You can find absolute URL of a menu item’s settings page using just one line of code //First parameter: Slug of the menu item //Second parameter: If true then echo’s the url or if false then returns the URL menu_page_url("qnimate-theme-options", true); This function resides in wp-admin/includes/plugin.php file.
In this tutorial I will show you how to create Facebook style chat bubbles using CSS only. CSS Code for Chat Bubbles Here is how chat bubbles look Here is the CSS code for chat bubbles span { […]
Most Commented