Posts

Where They Search The Stuff?

You must know where your product users search the stuff you offer. Some of these places may be: Word of mouth Search engine Newspapers Blogs Experts Famous People Peers TV shows Books B2B / B2C sites Make sure you are there, where you are being searched out.

Where They Hangout?

To target right customers, we must know where the hangout. These are places where a communicated message reaches more potential customers. Some of these places include: Social Networks Business Association (or union) Meetings Events /  Conferences Communities A right marketing strategy can produce better results in places that have more potential customers.

How to Change Your Name on Facebook

Image
If you want to change your name, follow following steps to change your name Facebook. 1. Login to Facebook 2. Go to Account Settings, see image below: 3. On the Open page, click on Edit link, see image: 4. On the form that opens, choose your new First Name and Last Name. Input your password below (yes, Facebook requires your enter your password to change your name). See image: 5. Click on Save Changes, and your name has been changed.

How to Change Relationship Status on Facebook

Image
If you want to change your relationship status on Facebook, follow following steps to change relationship status on Facebook. 1. Login to Facebook 2. Go to Your Profile Home by clicking on your name or picture (see top left) 3. Click Update Info button, see image below: 4. On the opened page, click on Edit button. on Basic Info section. See image below: 5. A Pop-up window will open, chose your relationship status and privacy settings (i.e. who can see you relationship status) and click Save button below. See image below:

How to Create a Facebook Account

Image
Hey! young man, my guess is you have heard from one of your friend or relative about Facebook. And you want to create a Facebook account. But you don't know how to create it. Here I would help you step by step to do so. Facebook is a social networking website that helps you connect with you friends. To create a new facebook account, you just need to follow these steps: 1. Before creating facebook account, you should have your own email address. If you have it, fantastic! If not, go to gmail.com and create a new email address by clicking Sign Up link. 2.  Click here  or go to http://www.facebook.com , once web page is open, at first page (it is called Home Page), you will see a form. The form looks like this: 3. So just fill the form with asked information (name, email, password, gender, date of birth), and click Sign Up button. 4. After you submit the form (by clicking Sign Up button), Facebook company will send you an email at email address you written in form. Read tha...

How to Create Another Facebook Account

If you already have a Facebook account, but for some reason you need to create another Facebook account. There are following point to note, or way to create another account. 1. If you no longer need earlier account, you can delete that account and create new account using same email address you used with your first account. 2. If you want to create another account without deleting previous account. Facebook do not allow to create multiple accounts with same email address. You must have a new email address, if you don't have one, you should create new email address first. And then create another facebook account with new email address. They have done it to stop spam facebook accounts. Although, one can create new email and then new facebook account, but facebook had put this hurdle so that people avoid creating new accounts. Like one person has only one Social Security Number, same way, facebook also treat email as unique number to counts its 'population' i.e. users. Good lu...

When Servlets are Loaded

If you are developing web applications using Java based technologies, JSP or Servlets. You must be familiar with the loading time of Servlets. First lets see whats mean by loading. If you see the Servlet life cycle. Its as follows: 1. First of all init() method is called (this is called loading) 2. For each request, service() method is called. Which process the request and sends response to user. In case of HttpServlet, the service() method delegates the request processing to doGet(...) or doPost(...), depending on type of request. 3. When you undeploy you web app or stop Tomcat from running, destroy() method is called. You see, init() and destroy() are called only once, after you deploy your application. After serving user request, the servlet instance remains in memory to serve other requests. But the question is, when does the init() method is called first time, or when does the servlet loaded? If you do not do any explicit configuration, the servlet is loaded when first request com...