Sunday, February 19, 2012

How to Create a Website like Facebook,Myspace,Orkut,etc...


Hi ...

I am going to share Ideas on how to create your own website like FB, Orkut , Myspace , etc .

You can Easily create a social networking site for Personal or commercial use and even you can earn money from it .

The steps are not much complicated if u are good with internet world and heard a little bit of web hosting .

Fine ... Let we start ...

Step 1 :

Buy / Register a Domain name for your site ...

Step 2 :

Buy a web space /  Hosting Space .

Step 3 :

Here comes the most important part ...

To create a Social Networking site , you don't need to know much internet programming but little .

Some folks have already designed a software for us , and what we have to do is just install them in our web space . Thats it ..

I'll share few software that helps us to create a Social networking Site ...

1. Jcow

2. BoonEx

3. Elgg

4. Mahara ePortfolio System

 Not only these but also lots of other software available , but these are famous among them and easy to ease .

If u feel difficulty in installing these software on your server , and if you ready to pay some money , there are some websites which will create and give your Professional social networking sites ...

Like ..

http://www.rsitez.com/

http://www.socialsitecreator.com/

Give a visit to above mentioned sites and softies and have fun ..

For any doubts / Helps / Queries about creating Your Own Social Networks , just feel free to comment here .

I'll help as much as I can ... :) Happy Social Networking :) :P

Wednesday, February 8, 2012

Google Announces Chrome Browser For Android Devices ...

 Google Inc, seeking to get more of its desktop-computer software onto mobile devices, introduced a test version of its Chrome Web browser for the latest Android operating system.

The browser, first unveiled in 2008, will be available on tablets and mobile phones using the company's "Ice Cream Sandwich" Android software, Sundar Pichai, a senior vice president in charge of Chrome and applications, said in a blog posting.

The company aims to improve the speed of mobile browsing by preloading top search results and enabling users to get the same tabs and bookmarks they have on their desktops.

"Chrome for Android is designed from the ground up for mobile devices," Pichai said. The software is "focused on speed and simplicity, but it also features seamless sign-in and sync so you can take your personalized Web browsing experience with you wherever you go, across devices." Google's Android software has taken the lead in the market for smartphone operating system, topping Apple Inc's iPhone and Microsoft Corp's mobile software.

Android handsets accounted for 48 per cent of the US smartphone market in the fourth quarter, while the iPhone had 43 per cent, according to NPD Group Inc. Almost three in five first-time smartphone buyers chose Android, NPD said.

Find Your Laptop or PC Serial Number Easily ...

Cant able to find your laptop or PC's Serial number ... ?


Sticker missing or got erased ... ??

Never Worry ....

Here is an Easy way to find Your Serial ...

Go to CMD or Command window ...

Then Type wmic bios get serialnumber then hit enter .... :)


A Mini Number Guessing Game using C++ ...

#include<iostream.h>
#include<conio.h>
main()
{
clrscr();
cout<<"Please Think a  Number between 0 to 100 in your mind and press enter : ";
getch();
char ug;
int cg=50,high=100,low=0;
clrscr();
while(ug!='=')
{
cout<<"What about : "<<cg;
cin>>ug;
switch(ug)
{
case '<':
{
high=cg-1;
cg=(high+low)/2;
break;
}
case '>':
{
low=cg+1;
cg=(high+low)/2;
break;
}
case '=':
{
cout<<"Your Number is :"<<cg;
break;
}
default:
{
cout<<"Wrong Choice";
}
}
}
getch();
}