Skip to main content

What is a facebook Poke?

Have you ever been poked on Facebook and wondered exactly what it meant? Well, in this article, we will take a look at the meaning of a Facebook poke. It might just mean much more than you think.
Whenever I go on Facebook, I see a little portion of the screen saying that people have poked me. Facebook claims that a poke can be used "to say hello" to your friends. Thus, I see this poke feature on Facebook as a way that my friends are saying, "Hello, I am thinking about you and I miss you."
Thus, I think a poke feels pretty good.
After you receive a poke, you then have the option of poking back. This could be translated as a way of saying, "Thanks for thinking of me. I feel the same way."
However, this is just the surface meaning of a poke on Facebook, but if we dig deeper, we may find that a Facebook poke means much more.
Such was the case with my friend Bob.
Bob recently asked me, "Richard, what does a Facebook poke mean to you?"
I said, "It's an acknowledgment, a friend saying hello."
He claimed that sometimes it can mean much more and proceeded to tell me a story.
Long ago, Bob had been good friends with a girl named Alexandra. Alexandra and Bob often took their relationship passed the friendship level but it never changed into a full blown relationship. Thus, after some time, Alexandra met someone and ended up marrying this man and invited Bob to the wedding.
As it happens when people lead different lives, Bob and Alexandra stopped communicating with each other on a regular basis pretty quickly and then not at all. In fact, they went five years without really talking to one another at all.
And then, Bob received a Facebook poke from Alexandra out of the blue. After not communicating for five years, Alexandra suddenly initiated communication.
Bob wondered about this sudden Facebook poke. Was this just an acknowledgment or was there something more to the story?
Well, it turns out, after Bob checked Alexandra's Facebook profile, she was single again. Bob decided to poke her back and see where things led.
In the end, Bob and Alexandra began dating and now they have plans to marry each other.
Thus, while a Facebook poke is often just an acknowledgment, it can sometimes say a whole lot more!


Source: Ezine Articles
Article on facebook

Comments

Popular posts from this blog

Java Program to calculate the Run Rate per over in a cricket match

import java.io.*; import java.util.*; public class RunRate{     Scanner scan=new Scanner(System.in);     int runs, balls;     float runRate;     public void input(){         try{             System.out.println("Enter Runs Scored: ");             runs=scan.nextInt();             System.out.println("Enter Balls Delivered: ");             balls=scan.nextInt();         }         catch(NumberFormatException e){             System.out.println("Error Code: "+e);             System.exit(0);   ...

Vanilla Javascript each()

JQuery's each() is very useful when iterating through elements. But you don't want to use JQuery in your project you can simply add the following javascript code which works somewhat similar to the JQuery's each function. Here the fnc parameter is the function string which is converted to a valid function call replacing all the $(this) with this /**  * This function binds a particular function to every element with the specified selector. It is somewhat same as JQuery's each() with less functionality  * @param {String|DOMElement} selector  * @param {Function} fnc  */ function each(selector, fnc) {     var elem;     if (typeof selector === "string") {         elem = $_(selector);     } else {         elem = selector;     }     fnc = (fnc.toString().replace("$(this)", "elem") + "();").replace("function () {", "").replac...

Java Program to display Welcome Message

import java.io.*;// I/O package imported. public class Welcome{        //class name is "Welcome"     public Welcome(){      //constructor declaired to print the message.         System.out.println("Welcome to Java Programming Language!");/* System.out.println is used for output. Welcome Message is written within " ".*/     }//display() closes here.     public static void main(String[] args){        //main() is declaired to declair an object in it.         Welcome obj=new Welcome();  //Object "Obj" is bean created.     }//main() closes. }//class "Welcome" ends here. Above program displays the message which is written by you in " ".  In programs "/*" and "*/" are use for multiple line comment(s) and "//" is use for single line comment. Code line "Welc...