Pages

Thursday 23 May 2013

BLOGGER WIDGET :HOW TO ADD SOCIAL PLUGIN FACEBOOK LIKE BUTTON IN BLOGGER

Like and share stuff from other websites with your friends on Facebook.interacting with social plugin your friends.following the steps add your blog/website social plugin
1.login your facebook account and see the bottom of the facebook create page

 2.click the create page after open choose your Facebook Page to build a closer relationship with your audience and customers
3.suppose i am choose the company and  click company enter details next click get started button
4. Add a description and website to improve the ranking of your Page in search and basic information
5.upload your page photo and set facebook address next advertise will be skipped
            ok success your page created.
next go to the face book social plugin click here
choose your button.for  example i am click the like button and fill the details

URL:your face book page url
 note:Send Button (XFBML Only)
choose font,width etc and click get code and show the codes choose the IFRAME code.

copy this code and paste this your blog gadget
       

Monday 20 May 2013

C LANGUAGE INTRODUCTION

The only way to learn a new programming language is by writing programs in it. The first program to write is the same for all languages:
Print the words:hello, world

In C, the program to print ``hello, world'' is
#include
main()
{
printf("hello, world\n");

}
Just how to run this program depends on the system you are using. 

complie the program click the alt+F9.and dispaly errors and warning.errors and warnings must be zero and next run the program click ctrl+F9 to display the output
As a specific example, on the UNIX operating system you must create the program in a file whose name ends in ``.c'', such as hello.c, then compile it with
the command
cc hello.c
If you haven't botched anything, such as omitting a character or misspelling something, the compilation will
proceed silently, and make an executable file called a.out. If you run a.out by typing the command
a.out
it will print
hello, world

ANOTHER EXAMPLE:
An example of simple program in C
#include
int main(void)
{
          printf(“HAI HOW ARE YOU\n”);
          printf(“FINE ”);
          printf(“you know the trick\n”);
          return(0);
 
The previous program will produce the following output on your screen 
 HAI HOW ARE YOU
 FINE you know the trick
 
a C program line begins with # provides an instruction to the C preprocessor
It is executed before the actual compilation is done.
Two most common directives :
#include
#define 
In our example (#include) identifies the header file for standard input and output needed by the printf().
 
Identify the start of the program
Every C program has a main ( )
'main' is a C keyword.  We must not use it for any other variable
 
Identify a segment / body of a program
The start and end of a function
The start and end of the selection or repetition block.
Since the opening brace indicates the start of a segment with the closing brace indicating the end of a segment, there must be just as many opening braces as closing braces  (this is a common mistake of beginners) 
 
Each statement in C needs to be terminated with semicolon (;) 

Each statement in C needs to be terminated with semicolon (;)


Friday 17 May 2013

WHAT IS APN AND INDIA OPERATOR SERVICES APN NAMES

APN means access point name it is gateway between a gprs mobile network and computer network.
A mobile device making a data connection must be configured with an APN to present to the carrier.
INDIA OPERATOR SERVICES APN NAMES BELOW:
APN Settings For India

GPRS APN settings for all Network Providers

APN Settings for GPRS

Aircel APN Settings

Aircel: aircelgprs | Access Number: *99***1#

Airtel APN Settings

Airtel: airtelgprs.com | Access Number: *99#

  Tata Docomo APN Settings

Tata Docomo : tata.docomo.internet | Access Number: *99#

 Idea APN Settings

Idea: internet | Access Number: *99#

 Reliance APN Settings

Reliance: rcomwap | Access Number: *99#

BSNL APN Settings

BSNL 3G: bsnlnet | Access Number: *99#

    Vodafone  APN Settings

Vodafone : www |  Access Number: *99#

MTNL  APN Settings

MTNL 3G Postpaid: mtnl3g

Prepaid : pps3g

Uninor APN Settings
   APN:uninor
 access number:*99#

Wednesday 15 May 2013

HOW TO CHANGE START BUTTON IN WINDOWS XP???

The START button in xp easily change.how to change this button following the steps

1.first you need download the resource hacker it is just 731kb click here
2.install the  resource hacker and click file open button click
3.open the file explorer.exe

4.display the dialog box and click the string table

 open the 37 table and choose the 1033 table.display the language side choose the 578 line
   replace the string anything in start position
    ex:VIBHAV

5.After replace click compile script and go to file menu choose exit option
6.goto run  and type regedit press ok to show the following dialog box

7.go to the path
              HKEY-LOCAL-MACHINE->SOFTWARE->Microsoft->Windows NT->winlogon
and winlogon enter to show the right side double click on shell
8.After clicking the shell to open dialog box and replace the same string on the step4 and extension is .exe
     EX:VIBHAV.exe

9.restart the system button will be changed
                                           

WHAT IS CRYPTOGRAPHY ???

cryptography comes from the greek words for "secret writing". professionals make a distenction between ciphres and codes.
                 A cipher is a character for charecter or bit for bit transformation, without regard to the linguistic straucture of the massege .
                A code replace one word with another word or symbol. codes are not used anymore, although they have a glorius history. the most successiful code ever devised was used by the u.s armer forces during world war 2 in the pacific.
               They simple had navajo indians talking to each other using specific navajo words for molatary
terms.


Encryption methods have historically been divided into two categories.
 1.substitution ciphers
 2.transposition ciphers
SUBSTITUTION CIPHERS:
                  substitution ciphers each letter or group of letters is replaced by another letter or group of letters to disguise it.
one of the oldest known ciphers is the caesar cipher.in this method
a becomes D, b becomes E ,c becomes F..........and z becomes C
EX: attack becomes DWWDFN
      the above example plain text will be given in lower case letters,and cipher text in upper case letters
the next improvement is to have each of the symbol in the plain text say,the 26 letters for simplicity ,map onto some other letter.
 ex:  a   b  c d  e  f  g  h  i  j  k  l  m  n o  p q  r s   t  u  v  w x  y  z
       Q W E R T Y U I O P A S D F G H J K L Z X C V B N M
the general system of symbol-for-symbol substitution is called a monoalphabetic substitution,with the key
being the 26 letterstring corresponding to the alphabet
ex: plaintext is attack would be transformed into the cipher text QZZQEA
TRANSPOSITION CIPHERS:
    We use this method reorder the letters but do not disguish them.
  Ex:the common transposition cipher, is columnar transposition . the cipher is a key word by a word or phase not containing any repeated letters.
Ex:MEGABUCK is the key
          the purpose of the key is the number the columns, column i being under the key letter closet to the alphabet and so on.
        The plain text is written horizontally, in rows, padded to fgl the matain if need be. the cipher text is read out by columns, starting with the column whose key letter is lowest.
                           M  E  G  A     B  U  C  A
                           7    4  5   1     2    8  3   6
                           p    l   e    a     s    e   t    r
                           a    n  s     t     e    r   o   n
                          e    m  i     l      l    i     o   n
                         d    o   l     l      a    r    s   t
                         o    m  y   s      w   i     s  s
                         b    a   n   k      a   c    c   o
                         u    n   t    s      i     x    t   w
                         o   t    w   o     a    b    c   d
 PLAIN TEXT:
                      Please transfer one million dollars to my swiss bank acount six two two
CIPHER TEXT:
                       AFLLSKSOSELAWALATOOSSCTCLNMOMANTESILYNTWRNNTSOWDIAEDOBEOERIRICXB


Monday 13 May 2013

WHAT IS AFFILIATE MARKETING???

affiliate marketing is online marketing.now days most of the items will be sale on the affiliate marketing.some companies/websites are working in the affiliate marketing.this companies give the commission on the each sale of the product.
 uses of the affiliate marketing is.....
1.you will happy because you earned commission
 2.affiliate companies will happy because each item is selling taken the commission
3.the company is happy because they have a new sale
how to work affiliate marketing.......
1.first you need signup in the any affiliate market websites

    i suggest good website world wide affiliate marketing is www.cj.com
    and india users registered the vcomission
2.after signup enter into the websites and choose products you will be sale on advertise.
3.and give HTML/JAVA SCRIPT code or product's banner.
4.this code you will be post on the your website/blog gadget and ad will display on the websites.
                                    or
  google will be give the advertise credit 2000RS first you need credit the 500RS.
sign in the google adwords websites.and you will ad will be shown in the google top pages
registered google adwords click here

Wednesday 8 May 2013

WHAT YOU THE THINK YOUR MIND???

FOLLOW THIS INSTRUCTIONS
1.click this website click here
2.think of a number with two digits
    ex:10
3.next we will the two digit number will be add
  ex:1+0=1
4.next first two digit number and 3rd step number will be subtracted
ex:10-1=9
5.final number is remembered
6.next display the symbols and your number is showing the symbol
7.that symbol will be seeing the result

WHAT IS THE FUNCTIONALITY OF THE GOOGLE DRIVE???

GOOGLE GIVE THE VERY GOOD OPTION IN THE GOOGLE APPLICATIONS.
THAT IS THE GOOGLE DRIVE IS THE BEST APPLICATION
WHAT ARE THE USES IN THE GOOGLE DRIVE??
1.upto free 4GB data will be upload to the drive
2.any documentations and presantations and forms will created.
3.easily created and user friendly optins will be consists in the google drive
4.any forms and document will be created your custom built
5.download your google grive your pc and sync the files automatically
HOW TO GO GOOGLE DRIVE:
FIRST WE WILL ENTER INTO GMAIL ACCOUNT OTHERWISE DIRECTLY CLICK THE google homepage drive option click also click here


many options are presented in the drive some optins are commaon.most useful options are described below
1.click the CREATE and choose the option document untitled document open and enter data save the file.and many options present this document.
2.click the CREATE and choose the option prsentation this will use ppt will be created
3.next will drawing and spread sheets will use very much use options
4.form option  click and you will make the custom built form.
          hai friends this is just brief information you will enter and select optins you will know the good information.
     


                           

Tuesday 7 May 2013

FREE COUPON CODE/ANY ITEM TIP IN EBAY ONLY

FIRST YOU REGISTER IN THE EBAY.IN
AFTER TEN DAYS YOU WILL GET INTO THE COUPON CODE IN THE MAIL
it will access only first come first serve
1.the coupon code will be only come into the mail
ex:min purchse 5o off 55
min purchase 70 off 75
2.any item will given be given very low cost
ex:4 santoor soaps will 19/rs
checking the mail every two days