
Search In
Please follow these simple step to register your app on facebook
Open Developer account from your Facebook.
Select "Create App" you'll be directed to a page where number of options will be available at the top bar.
One can reach there by just click
Clipboard is just a type of register where you can save some temporary data. you can't store data permanently here so its nice place to store temp data.
For this you have to create a edittext from where you will copy text and then you have to set t
What is Penetration test?
A penetration test, or as you may call it **pentest**, is an attack on a computer system. The intention of this attack is to find security frailty and thus obtain access to it.
Following is the process that leads to gaini
Autoboxing
Autoboxing is converts primitive data type into it's equivalent wrapper type class automatically in Java. E.g: int primitive type is converted to Integer Wrapper class in autoboxing.
Widening
Widening in Java can be defined as conve
To copy structure in MySQL with data you need to execute the following MySQL statements:
use dbname;
create table new_table_name
select * from existing_table_name;
If you require the copy of structure without data then you need to execute the foll
Hello Everyone,
Nowdays I was trying to learn how to handle Big Data, the framework I am currently using is Apache Hadoop. Now I need large amount of data for testing for getting large amount of data I was using apache-flume to download tweets from
Hi,
Here is a code for loading current logged-in user using Bootstrap full in external PHP file.
function user_load_from_bootstrap($uid = NULL) {
define('DRUPAL_ROOT', $_SERVER['DOCUMENT_ROOT']);
$base_url = 'https://'.$_SERVER['HTTP_HOST']; // thi
HTML5 Local Storage(Web Storage) mechanisms provides you the facility to store data much more easy way than cookies. Local storage save the data more secure then cookies, where cookie only can store data up to 5mb, local storage capacity is far large
Problem facing in customization of array adapter
I am want to
1) fetch data from a SQL server 2008
2) display fetched data into a list view.
After successfully I tried to display data with a listview, I fetched two column data that's why I t
How to Insert Data From One Table to Another Table in SQL
step1: Create two tables ContentTable1 Table and ContentTable2 Table
CREATE TABLE ContentTable1
(
ContentId1 int identity(1, 1) not null,
ContentHeading1 nvarchar(100) NULL,
ContentText1
