Exclude some posts from WP_Query All over

Add code in functions.php

 

person shubham sharmaaccess_time October 10, 2017launch Read More

Run/install/debug Android applications over Wi-Fi?

See forum post Any way to view Android screen remotely without root? – Post #9. Connect the device via USB and make sure debugging is working. adb tcpip 5555 find the IP address with adb shell netcfg adb connect <DEVICE_IP_ADDRESS>:5555 Disconnect USB and proceed with wireless debugging. adb -s <DEVICE_IP_ADDRESS>:5555 usb to switch back when done. No root […]

person shubham sharmaaccess_time October 4, 2017launch Read More

jQuery: Select to JSON

 

person shubham sharmaaccess_time September 29, 2017launch Read More

Create a Splash Screen with Video in Android

Splash Screen In this quick tutorial we will see how to implement a Video Splash Screen in your app. Splash Screens are normally shown for a few seconds as a progress while the app is ‘booting up’  i.e performing a version check or initialising the Analytics etc. Sometimes the Splash Screen is also used to showcase the app […]

person shubham sharmaaccess_time September 20, 2017launch Read More

PHP API

 

person shubham sharmaaccess_time August 31, 2017launch Read More

Using Apache mod_expires to control browser caching

Apache’s mod_expires module allows settings by file type to control how long browsers cache files. This is useful for ensuring browsers cache image, Javascript and/or CSS files without making additional unecessary requests when loading pages. Making sure mod_expires is enabled mod_expires may not be enabled by default in your Apache install. On a Debian based system (e.g. […]

person shubham sharmaaccess_time August 8, 2017launch Read More

PHP Caching Headers

Make sure a page is never cached with PHP To make sure the page is never cached (or whatever other dynamic content generated from PHP such as images, RSS files etc) add the following to the start of your script:

To set the amount of time to cache If instead you want the output […]

person shubham sharmaaccess_time August 8, 2017launch Read More

Read file from server

 

person shubham sharmaaccess_time July 25, 2017launch Read More