Friday, October 4, 2013

TRICK TO MAKE UNLIMITED FREE CALLS FROM INTERNET TO MOBILE PHONE

Now a day’s VoIP (Voice Over Internet protocol) is going to change our internet experience by providing free calling facility all over the world by just using internet..

We all love to make free calls from internet..:)
There are lots of websites and web-clients offering internet to internet calling facility..Gtalk is One of them... 




But what if I tell you the trick by which you can make calls from free internet to mobile phones..?
Isn’t it Sound Cool..?

Hmm..To Make Free Calls From your pc To Mobile Phones All You need is a MIC or Headphone and Yahoo Messenger... 


STEP 1: Install Yahoo Messenger..if You don’t have Yahoo Messenger On Your Pc Then Follow This Download Link  And Download The Latest Version.

STEP 2: Sign In to Your Yahoo Messenger By Using Your Yahoo Id And Password.

STEP 3: Configure Your MIC or Headphone In Yahoo Messenger..

STEP 4: Inside Your Yahoo Messenger dial  +18003733411 ..As You Can See In Image Below..






Now A Small window Will Pop-up…






STEP 5: After That An operator greets you with a recorded welcome message along with an advertisement and asks you to select one of the Free411 service. Just hear the services options until they say the last one as “Free Call”. When you hear this, don’t press any number on your keyboard and instead SAY “Free call” loudly on your microphone connected to your PC.
After this voice message is detected by their System, they will run a short advertisement of their sponsor Don’t Press Any Number At That Time..

WAIT UNTIL YOU HEAR A BEEP SOUND after the following message “Please dial the phone number with country code first (i.e “1 for north America Or 91 For India”)


 Now Your Call Will Be Connected And You Can Call 7 Continuous minutes For Free.. 

After Disconnected…Repeat The Same Procedure Again..You Can Able To make Multiple and Unlimited Calls By Using This Trick...you Can Also make International Calls By Using This Trick.. 


For More Tricks Like This..Stay Tuned With Us.. :))
Enjoy.!!!

TRICK TO MAKE UNLIMITED FREE CALLS FROM INTERNET TO MOBILE PHONE

Now a day’s VoIP (Voice Over Internet protocol) is going to change our internet experience by providing free calling facility all over the world by just using internet..

We all love to make free calls from internet..:)
There are lots of websites and web-clients offering internet to internet calling facility..Gtalk is One of them... 




But what if I tell you the trick by which you can make calls from free internet to mobile phones..?
Isn’t it Sound Cool..?

Hmm..To Make Free Calls From your pc To Mobile Phones All You need is a MIC or Headphone and Yahoo Messenger... 


STEP 1: Install Yahoo Messenger..if You don’t have Yahoo Messenger On Your Pc Then Follow This Download Link  And Download The Latest Version.

STEP 2: Sign In to Your Yahoo Messenger By Using Your Yahoo Id And Password.

STEP 3: Configure Your MIC or Headphone In Yahoo Messenger..

STEP 4: Inside Your Yahoo Messenger dial  +18003733411 ..As You Can See In Image Below..






Now A Small window Will Pop-up…






STEP 5: After That An operator greets you with a recorded welcome message along with an advertisement and asks you to select one of the Free411 service. Just hear the services options until they say the last one as “Free Call”. When you hear this, don’t press any number on your keyboard and instead SAY “Free call” loudly on your microphone connected to your PC.
After this voice message is detected by their System, they will run a short advertisement of their sponsor Don’t Press Any Number At That Time..

WAIT UNTIL YOU HEAR A BEEP SOUND after the following message “Please dial the phone number with country code first (i.e “1 for north America Or 91 For India”)


 Now Your Call Will Be Connected And You Can Call 7 Continuous minutes For Free.. 

After Disconnected…Repeat The Same Procedure Again..You Can Able To make Multiple and Unlimited Calls By Using This Trick...you Can Also make International Calls By Using This Trick.. 


For More Tricks Like This..Stay Tuned With Us.. :))
Enjoy.!!!

NUMBER PATTERN PROGRAMS IN C

 Learn Number pattern program in C and  generates new logics and new concept which is better for your FUture. Learn and Enjoy the new Patterns of number in C.

 


Number pattern :1 


 


#include<conio.h>
#include<stdio.h>
void main()
{
int i,j,n;
clrscr();
printf("\nEneter the no of lines to be printed: ");

scanf("%d",&n);
 
for(i=0;i<n;i++)
{
for(j=0;j<=i;j++)
{
if(j%2==0)
printf("0");
else
printf("1");
}
printf("\n");
}
getch();
}

 

Number pattern :2 

 


#include<conio.h>
#include<stdio.h>
void main()
{
int i,j,n,k;
clrscr();

printf("\nEnter the no of lines to be printed: ");
 
scanf("%d",&n);
for(i=0;i<n;i++)
{
for(j=n-i;j>0;j--)
{
printf(" "); //THIS IS THE CODE FOR PRINTING THE SPACES.
}
for(k=0;k<=i;k++)
{
if(k%2==0)
printf("0");
else
printf("1");
}
printf("\n");
}
getch();
}
 

Number pattern :3


#include<conio.h>
#include<stdio.h>
void main()
{
int i,j,n;
clrscr();
printf("Enter the number of lines to be printed: ");
scanf("%d",&n);
printf("\n\n");
for(i=1;i<=n;i++)
{
for(j=1;j<=i;j++)
{
printf("%d",j);

}
 
printf("\n");
}
getch();





Number pattern :4


 

#include<conio.h>
#include<stdio.h>
void main()
{
int i,j,n,k;
clrscr();

printf("Enter the number of lines to be printed: ");
 
scanf("%d",&n);
printf("\n\n");
for(i=1;i<=n;i++)
{
for(j=1;j<=n-i;j++)
{
printf(" ");
}
for(k=1;k<=i;k++)
{
printf("%d",k);
}
printf("\n");
}
getch();


Number pattern: 5 




#include<conio.h>
#include<stdio.h>
void main()
{
int i,j,n,k;
clrscr();
printf("Enter the number of lines to be printed: ");
scanf("%d",&n);
printf("\n\n");
for(i=0;i<n;i++)
{
for(j=0;j<(n-i-1);j++)
{
printf(" ");
}
for(k=1;k<=2*i+1;k++)
{
printf("%d",k);
}
printf("\n");
}
getch();



Number pattern:6

 


#include<conio.h>
#include<stdio.h>
void main()
{
int i,j,n,k;
clrscr();
printf("Enter the number of lines to be printed: ");
scanf("%d",&n);
printf("\n\n");

for(i=0;i<n;i++)
 
{
for(j=0;j<(n-i-1);j++)
{
printf(" ");
}
for(k=1;k<=i;k++)
{
printf("%d",k);
}
while(k>0)
{
printf("%d",k);
k--;
}
printf("\n");
}
getch();


Number pattern:7 


 


#include<conio.h>
#include<stdio.h>
void main()
{
int i,j,n,k,num=1;
clrscr();
printf("Enter the number of lines to be printed: ");
scanf("%d",&n);
printf("\n\n");
for(i=0;i<=n;i++)
{
for(j=0;j<(n-i);j++)
{
printf(" ");
}
for(k=1;k<=i;k++)
{
printf("%4d",num++);
}
printf("\n");
}
getch();


Number pattern: 8
 
 


#include<conio.h>
#include<stdio.h>
void main()
{
    int i,j,n,k=1;
    clrscr();
    printf("Enter the number of lines to be printed: ");
    scanf("%d",&n);
    printf("\n\n");
    for(i=0;i<n;i++)
    {
       for(j=0;j<=i;j++)
       {
    if(k%2==1)
printf("1");
 
    else
printf("0");
 
    k++;
       }
       printf("\n");
     }
getch();
}
Number pattern 9
         
#include<conio.h>
#include<stdio.h>
void main()
{
    int i,j,n,k=1,l;
    clrscr();
    printf("Enter the number of lines to be printed: ");
    scanf("%d",&n);
    printf("\n\n");
    for(i=0;i<n;i++)
    {
       for(l=n;l>i+1;l--)
   printf(" ");
       for(j=0;j<=i;j++)
       {
    if(k%2==1)
printf("1");
 
    else
printf("0");
 
    k++;
       }
       printf("\n");
     }
getch();
}
Number pattern :10




 
 
 
 
 
 
#include<conio.h>
#include<stdio.h>
void main()
{
    int i,j,n,k=1;
    clrscr();
    printf("Enter the number of lines to be printed: ");
    scanf("%d",&n);
    printf("\n\n");
    for(i=n;i>0;i--)
    {
       for(j=0;j<n-i;j++)
       {
     printf(" ");
       }
       for(k=i;k>0;k--)
       {
     printf("%d",k);
       }
       printf("\n");
     }
getch();
}
 Number pattern :11

  

 
 
 
 
 
 
#include<conio.h>
#include<stdio.h>
void main()
{
    int i,j,n;
    clrscr();
    printf("Enter the number of lines to be printed: ");
    scanf("%d",&n);
    printf("\n\n");
    for(i=1;i<=n;i++)
    {
       for(j=i;j>0;j--)
       {
     printf("%d ",j);
       }
       printf("\n");
     }
getch();
}
Number pattern 12

 

 
 
 
 
 
 
 
 
 
#include<conio.h>
#include<stdio.h>
void main()
{
   int i,j,k,n,l;
   clrscr();
   printf("\nEnter the no lines to be printed: ");
   scanf("%d",&n);
   printf("\n\n");
   for(i=0;i<n;i++)
   {
      for(j=n-i;j>0;j--)
         printf("  ");
      for(k=i;k>0;k--)
  {
        printf("%d ",k);
  }
      for(l=2;l<=i;l++)
  {
         printf("%d ",l);
  }
      printf("\n");
   }
}
 
Number pattern :13


#include<conio.h>
#include<stdio.h>
void main()
{
int i,j,k,n;
clrscr();
printf("Enter the number of lines to be printed ;");
scanf("%d",&n);
printf("\n\n");
for(i=1;i<=n;i++)
    {
    for(j=1;j<=i;j++)
    {
 printf("%3d",(j*i));
    }
    printf("\n");
    }
for(k=n-1;k>0;k--)
    {
    for(j=1;j<=k;j++)
printf("%3d",(k*j));
printf("\n");
    }
getch();
}
 
 
Number pattern 14

       


#include<conio.h>
#include<stdio.h>
void main()
{
   int i,j,k,n,l;
   clrscr();
   printf("\nEnter the no lines to be printed: ");
   scanf("%d",&n);
   printf("\n\n");
   for(i=0;i<n;i++)
   {
      for(j=n-i;j>0;j--)
  printf("  ");
      for(k=n-i;k<=n;k++)
  {
  printf("%d ",k);
  }
      for(l=n-1;l>=n-i;l--)
  {
   printf("%d ",l);
  }
      printf("\n");
   }
}
 
 
IF any Problem then write in comment !

TRACE YOUR CELLPHONE

TRACE YOUR CELLPHONE 
Why Use Cell Phone Tracing Software
Why use cell phone tracing software? Well, there are times when you wish that you can track the cell phone of your children, your spouse or even your employees for that matter just so you can have a better idea on what they are doing.
If you want to be able to monitor people especially those who are close to you but don’t know how to do this without getting caught then cell phone tracing software is the answer.
How to Trace a Cell Phone 
Like it was mentioned before, one way of tracking someone is through the use of cell phone tracing software. With this software, you will be able to monitor all activities done using the target phone and the best part is that the other party won’t even know about it.
The only problem is that there are plenty of scammers out there who are selling fake cell phone tracing software. If you want to avoid this problem, you should look for cell phone tracing software that has received good feedback from previous customers and one that has a very high reputation.
Which Cell Phone Tracing Software to Use 
One of the best cell phone tracing software out there is Spybubble. Spybubble is designed to monitor and record all cell phone activities of the target phone. This cell phone tracing software has received some pretty good feedbacks from happily satisfied customers and also has a reputation of being quite easy to use and one that actually works.
Spybubble Features:
• Access SMS messages that are sent, received and deleted.
• Records events saved on cell phone.
• Records inbound and outbound calls.
• Access browser history.
• Access to phone book.
• Completely undetectable.
• Can work anywhere in the globe.
Sounds good? Check out Spybubble over the internet.
If you want to monitor someone without getting caught, you need to resort to using cell phone tracing software. This software will give you all the means to monitor a target phone without any hassles.
Spybubble is one of the best cell phone tracing software out there that you might want to consider. It has all the necessary features you need to be able to keep track of someone at all times and what’s more, without any difficulties.
So, what are you waiting for? Learn all there is to know about your loved ones or your workers with ease with the help of Spybubble cell phone tracing software.

HOW TO SPY YOUR GIRLFRIEND MOBILE PHONE WITH A FREE SOFTWARE REMOTLY



TODAY I AM WRITING A VERY INTERESTING POST FOR YOU FRIENDS..WHAT IS THE COST TO HIRE A SPY WHO CAN ABLE TO SPY YOUR GIRLFRIEND 24X7 DAYS..???? ITS AROUND HUNDREDS OF DOLLARS OR MAY BE THOUSANDS OF DOLLARS BUT YOU ARE ON INFOTECHNO, SO EVERYTHING HERE MENTIONED ARE FREE..WOULD YOU BE HAPPY IF I WILL SHOW YOU A TRICK BY WHICH YOU CAN TRACK YOUR GIRLFRIEND,SPOUSE OR ANYONE'S MOBILE PHONE 24 X 7 WHICH IS ABSOLUTELY FREE..THE ONLY THING YOU HAVE TO DO IS SEND A SMS LIKE SENDCALLLOG TO GET THE CALL HISTORY OF YOUR GIRLFRIEND'S PHONE.



SO lets Start The trick...

1)First of all go to android market from your Girlfriend,spouse,friends or anyone's phone which you want to spy.

2)Search for a android application named "Touch My life.."

3)download and install that application on that phone.

4)Trick is Over :)
 

Now you can able to spy that phone anytime by just sending sms to that phone.

Now give back that phone to your girlfriend..
and whenever you want to spy your girlfriend just send sms from your phone to your Girlfriend phone Which  are mentioned in Touch My Life manage book.

i am mentioning some handy rules below...


1) Write "CALLMEBACK" without Quotes and Send it to your girlfriend's mobile number for a Automatic call back from your girlfriend's phone to your phone.

2)Write "VIBRATENSEC 30" without Quotes and send it to your girlfriend's mobile number to Vibrate your Girlfriend's Phone for 30 seconds..You can also change Values from 30 to anything for the desired Vibrate time.

3)Write "DEFRINGTONE" without Quotes and Send it to your girlfriend's mobile number..this will play the default ringtone on your girlfriend's phone.

4)Write "SENDPHOTO youremail@gmail.com" without Quotes and Send it to your girlfriend's mobile number.it will take the photo of current location of your girlfriend and send it to the email address specified in the SMS as a attachment.it will also send a confirmation message to your number.

5)Write "SENDCALLLOG youremail@gmail.com" without Quotes and Send it to your girlfriend's mobile number ..it will send all the call details like incoming calls,outgoing calls,missed calls to the email address specified in the SMS.

6)Write "SENDCONTACTLIST youremail@gmail.com" without Quotes and Send it to your girlfriend's mobile number ..it will send all the Contact list to the email address specified in the SMS.

So Guys Above all are only some Handy features of touch my life...You can also view more by going to touch my life application and then its manage rules.. :)

Enjoy..:
)

HOW TO HACK FACEBOOK STATUS BY SMS SPOOFING

How to Hack Facebook Status by SMS Spoofing



1.   Goto the site www.smsglobal.com and click on the Sign Up option..


2.   Now, Fill all detail & its important to fill your valid mobile no. & email because password on it.


3.   After you Successfully completed the registration, you will receivea sms on your number. Just use that password and your Username to login. After you successfully login, you will see a similar page. Click on the ‘Send SMS to Number’ option from the Left pane.


4.   The First Textbox is for Receiver’s number. Just insert the number which is used to update the status or comment on Facebook through mobile. This number is Country specific.



For e.g : In India, its 919232232665.


The 91 is the Country Code and the remaing 9232232665 is the real number.


So just write your Country specific Facebook Number for Facebook Mobile.



5.   The Second Textbox is for Sender’s Number. Just write the Mobile number of the Victim who have Activated Facebook Mobile.

For e.g : Here its, 911234567890. Again, the 91 is for Country Code and the remaining is the Victim’s 10 digit Mobile number.

6.   Leave the Message Template option as it is.

7.   Write the Message you want to write in the Status of Victim’s Profile. Sometimes, it may take around a minute or 2, so just wait and watch.

Some Important Points To Remember:-

1.   The Sender’s Number (Facebook Mobile Number) and the Receiver’s Number (Victim’s Number), should be Precedded by the Country Code and then the Number.

2.   WWW.SMSGLOBAL.COM allows only 25 SMS per Registration. So, as long as you have more Mobile Number to receive Password on it, You can keep trying.

3.   This Trick requires the Victim to have Facebook activated on Mobile (Facebook via Mobile). If the Victim has not activated it, the Method is Invain !!


Check for the ‘Info’ Option in Profile of the Person you want to victimize. If the ‘Info’ contains the Phone Number, the Chances are high that he/she may have activated the Facebook Mobile. So, Just Try Your Luck !!!

Or

Just Paste the Following Link in your Address bar to find out Mobile numbers of all the Freiends in your List !!!

Monday, September 30, 2013

'Comedy Nights with Kapil' sets ravaged by fire

Early Wednesday morning, Mumbai's fire brigade were rushed to Film City to douse an apparent blaze. The sets of popular TV show 'Comedy Nights With Kapil', hosted by stand-up comedian Kapil caught fire by an alleged short circuit.



Sonakshi Sinha, who was shooting for a film in a 
neighbouring set, posted this image to her twitter.






While the fire was termed as a “major” one by firefighters, no causalities were reported so far.





The show’s sets have been built at Film City in Goregaon, a western suburb of Mumbai.
A spokesperson for Colors, the channel on which the show airs, said, “It is unfortunate that such an incident has occurred. We are focusing all our efforts on resuming shooting for the show so that we have no disruption and we don’t disappoint our loyal viewers.”




Sunday, September 29, 2013

What a human Life is?

What is a human life?
On the first day God created the dog. God said, "Sit all day by the door of your house and bark at anyone who comes in or walks past. I will give you a life span of twenty years." The dog said, "That's too long to be barking. Give me ten years and I'll give you back the other ten."
So God agreed.

On the second day God created the monkey. God said, "Entertain people, do monkey tricks and make them laugh. I'll give you a twenty-year life span." The monkey said, "Monkey tricks for twenty years? I don't think so. Dog gave you back ten, so that's what I'll do too, okay?"
And God agreed.

On the third day God created the cow. "You must go to the field with the farmer all day long and suffer under the sun, have calves, and give milk to support the farmer. I will give you a life span of sixty years."
The cow said, "That's kind of a tough life you want me to live for sixty years. Let me have twenty and I'll give back the other forty."
And God agreed again.

On the fourth day God created man. God said, "Eat, sleep, play, marry and enjoy your life. I'll give you twenty years."
Man said, "What? Only twenty years? Tell you what, I'll take my twenty, and the forty the cow gave back, and the ten the monkey gave back, and the ten the dog gave back, that makes eighty, okay?"

Okay," said God, "You've got a deal."

So that is why the first twenty years we eat, sleep, play, and enjoy ourselves; the next forty years we slave in the sun to support our family; the next ten years we do monkey tricks to entertain the grandchildren; and the last ten years we sit on the front porch and bark at everyone.

Life has now been explained to you.

Some quotes about Life


Remember the past, plan for the future, but live for today, because yesterday is gone and tomorrow may never come.
Yesterday is history, tomorrow is misery & today is gift, So it is called Present.

Todays News Headlines

Miss Philippines Megan Young crowned Miss World 

2013 in Bali

The 2013 Miss World pageant has been won by Miss Philippines, Megan Young, on the Indonesian island of Bali.
US-born Ms Young, 23, beat 126 other contestants and pledged to be "the best 
Miss World ever".The competition was moved to Bali from the capital, Jakarta, 
because of protests from hardline Muslim groups.Security for Saturday's event was 
high in Bali, a resort island with a majority Hindu population, but no further 
demonstrations were reported.Miss France, Marine Lorphelin, came second in the 
contest and Miss Ghana, Carranzar Naa Okailey Shooter, took third place.Wearing a 
glittering gown, Ms Young, who moved to the Philippines at the age of 10, wept as the 
Miss World sash was put over her shoulder by 2012 winner Miss China.
She told the cheering crowd in Nusa Dua in southern Bali she would "be myself in 
everything I do, to share what I know and to educate people".