Showing posts with label facebook. Show all posts
Get Notified when someone unfriends you
Unfriend Notify is a simple extension that notifies you when someone unfriends you on facebook.it keeps track of your friend list and notifies you when ther is a change
Disable Facebook Seen option
Here is how to disable the annoying 'seen' option on facebook.just get this chrome addon 'Facebook Unseen'
Sunday, 10 November 2013
Posted by Unknown
Export Facebook Calendar-all your friends birthdays and events
You can export all your friends birthdays and other events from facebook to sync them with google calendar or microsoft live calendar.to do that first visit facebook events page
On the top right corner you would find find today,click the little gear sign beside it and select export
To get all your friends birthdays select Export your friends'birthdays or to get the calendar of events,select upcoming events
Downloading videos from Facebook without any software
Ever wanted to download a video from Facebook?well don't worry today lets see how to download any video from Facebook directly without any plugin,rd party site or softwares.In this trick we are going to use the mobile site of Facebook.Lets get started
- For example i want to download the below video
- the current URL of the page looks like in the below format,starting as usually with a "www."
Make your own Fb chat bot
Ever felt like " godd i wish some one could do the chatting behalf of me!" may the case be a boring person or even to use a fake account yes there is a way,and itz got a lot of potential you can use it for simple purposes like chatting or for more useful and complicated task automations.ok lets get started..
for this we are going to use the WshShell object of windows script host.dont worry if you are not that familiar with it,just stay with me.
- First copy the below code and pate it in your note pad.then click on save as and name it "bot.vbs" and don't forget to change the file type to "all files"
set kc = WScript.CreateObject("WScript.Shell")
WScript.Sleep 9000
kc.SendKeys "hello {:}{)} "
WScript.Sleep 2000
kc.SendKeys "{ENTER}"
WScript.Sleep 7000
kc.SendKeys "how are you?"
WScript.Sleep 2000
kc.SendKeys "{ENTER}"
WScript.Sleep 7000
kc.SendKeys "i{'}m fine{,}thank you {:}D"
WScript.Sleep 2000
kc.SendKeys "{ENTER}"
WScript.Sleep 7000
kc.SendKeys "wassup?"
WScript.Sleep 2000
kc.SendKeys "{ENTER}"
WScript.Sleep 7000
kc.SendKeys "where do you live{?}"
WScript.Sleep 2000
kc.SendKeys "{ENTER}"
WScript.Sleep 7000
kc.SendKeys "oh{,}i{'}m from india"
WScript.Sleep 2000
kc.SendKeys "{ENTER}"
WScript.Sleep 7000
kc.SendKeys "ok{,}bye for now {:}D"
WScript.Sleep 2000
kc.SendKeys "{ENTER}"
- I know its a little bit clumsy,but i'll explain it.ok now all you have to do is double click on the file,and then navigate to your browser and click on the chat box of the person with whom you want your bot to chat.
Explanation:
- The above code is a bit lengthy,so let me take a small piece of code for the purpose of explanation,we'll get back to the original code later.
set kc = WScript.CreateObject("WScript.Shell")
WScript.Sleep 100
kc.Run "notepad.exe"
WScript.Sleep 100
kc.AppActivate "notepad"
WScript.Sleep 1000
kc.SendKeys "hello everyone {!} "
ok,here it goes,
- set kc = WScript.CreateObject("WScript.Shell") - this line is used to create an object of "WScript shell" with a reference name "kc" you can use any name of your desire,but make sure you stick to the name through out the code.
- WScript.Sleep 100 - this is to give a delay off 100 milli seconds,or you can simply say execute the next line of code after 100 milli seconds.and the time shall always be given in terms of milli seconds.1second = 1000 milli seconds.so if you want to give a pause of 3 seconds you must write
- kc.Run "notepad.exe" - this is to start a new notepad you can use this line to start any application
eg: kc.Run "calc" - for calculator
kc.Run "taskmgr" - for task manager
kc.Run "cmd" - for command prompt
here we started a notepad because,we want to test whether our script is working well or not
- kc.AppActivate "notepad" - to make notepad the active window,its simply like clicking on the notepad for the editing cursor to appear
- kc.SendKeys "hello everyone{!}" - to send the keys "hello everyone!" it is like typing the string "hello everyone!" through your keyboard this is the main concept we use in our chat bot.and you must have noticed that the ! mark has been wrapped with two flower brackets or what ever you call them,it is because,special symbols(anything except a-z and 0-9 ) must be in those brackets.and here is a list of other keyboard keys you could use
backspace {BACKSPACE}
enter {ENTER}
escape {ESC}
tab {TAB}
ok now lets just look into our previous code,does it make sense now?i suggest you guys to go through the code once again with the acquired knowledge and try to interpret it,or you can continue reading,
- in the code we did not call up the node pad application,it is because we want the chat bot to enter text into the chat box of our Facebook friend,but not into note pad.
- in the second line,we gave a delay of 9 seconds,it is because in the mean time you could open up your browser and click on the chat (the place where you enter the text).you can even increase the delay if you want,but make sure you you do it within the time
- and after entering the text,we gave a delay of 2 seconds it is because,to make the other person feel like we are typing,you know Facebook shows that " xxxxxx is typing......." thing
- and then after sending the text,we waited for 7 seconds,so that the other person can give a reply.
- to stop it from executing,you have to close the wscript window opened
- You can change the text to what ever you want but remember it is case sensitive and special characters must be enclosed in {},go play with it!
Sunday, 4 August 2013
Posted by Unknown
Create a social networking site in 5minutes
Therez been a social networking fever running down the lane these dayz,almost everyone has been using social networking sites everyday,but wait have you ever wanted to create a social networking site of your own?if the answer is yes,then you are in a right place.Today,i will tell you how you can creat a social networking site of your own in less than 5 minutes of your time.it doesn't require any programming skills or any markup language knowledge.all you need is an email address.so,lets start
- First visit http://www.wall.fm/
- In the text box with title"grab your address",enter the address which you want your site to be hosted at,
Eg: "www.google.com"takes you to google.similarly"www.yoursitename.wall.fm"takes you to your site where "yoursitename"can be any name you want but it should not contain any spaces.
- Then you will be asked to enter other details about your website.
- Now select any theme for your website
- Now select free trial form "ultimate plan"
- Now it shows an confirmation regarding your created site
Note: replace"[yoursite]"with your site domain
- you would have the following available options
there you will have various options like blocking users,etc
- in settings>basic you will get the basic settings option
you can go through various other settings operations available
- You can edit themes by visiting the appearance tab
- You can add or remove pages and menu items(contents of the page or a menu section) by visiting the page menus tab
- Now go to plugins tab>Available plugins>and add instant chat plugin
- And there you go,you have a completly functional social networking site of your own!
Hover Zoom
It is a very good extension for Facebook users who struggle to take a look at a friends profile picture,or someone who uses Wikipedia and has to download and zoom it using a photoveiwer to access the contents.thi extension allows users to zoom photos by just hovering the mouse over them.
For chrome extension,click here
currently it is not available for mozilla,but Thumbnail zoom is a very good alternative
Monday, 5 November 2012
Posted by Unknown
Facebook Nanny!
Facebook is a wonderful tool for communication and social engagement. It can also be a horrible distraction. Facebook Nanny removes the distraction from Facebook while still letting you communicate with the world.
Here's how it works:
1. Whenever you go on Facebook, you only get to spend one minute on the site for each notification that you have. If you don't have notifications, you only get 15 seconds.
2. After that time, your access to Facebook is removed until you receive another notification.
3. You ARE allowed to access messages and your profile at any time, so you can still make posts and chat with your friends.
For google chrome extension click here
For google chrome extension click here
Monday, 29 October 2012
Posted by Unknown
Making your own Facebook chat icon

You might have also tried this trick,but must have got the chat codes something like
"[[250236748380084]] " or the other and start using them today lets see how to make your own chat icons for Facebook
Its a very simple trick.Lets first try sending any of our friends profile picture as a chat icon.
All you have to do is enclose the profile Id of your friend within Double square brackets.
Getting your Friend's Profile ID:


For example,i want to send mark zukerberg's profile picture as a chat icon,so i have to send "[[zuck]]" without quotes and there you have mark's profile picture as an emotion icon

You might say,but i've used only numbers between those square brackets,yes that was because profile Id has been recently updated to name(if you remember facebook asked you to choose a unique name for your profile may be around an year back only) you can also use the profile Id number if you know it.so if you want any chat icon,create a new facebook account,make the required chat icon as profile picture and start using it
NOTE:
some of the chat icons may not work but the above said method sure will :)
Some Facebook Chat Icons:
[[fingerrr]]Meme icons:
You Don’t Say [[357405834291317]]
Yao Ming [[260295577381249]]
Socially Awkward Penguin [[98438140742]]
True Story [[176444735802970]]
Why You No? [[305369779518251]]
What’s This Racket [[403128636369045]]
Philosoraptor [[183671768326457]]
Paranoid Parrot [[276143039126056]]
OMG [[234744756619958]]
Oh Yeah [[271332952936071]]
Oh God Why [[238440539583758]]
Know All [[184073421695209]]
I Lied [[350521391654191]]
Happy Face [[255800484498056]]
No Me Gusta [[149535571834373]]
Troll Face [[190719461034791]]
Cool Story Bro [[302451776482112]]
Disapproval [[358205124200991]]
Challenge Expected [[391579167523258]]
Better then Expected [[256677457745924]]
Are you Serious? [[112680945523951]]
Anti-joke Chicken [[355178957849548]]
LOLOLO [[189637151067601]]
Poker Face [[129627277060203]]
Okay [[100002752520227]]
Feel like a sir! [[168040846586189]]
Mother of god! [[142670085793927]]
Nothing to Do here [[110866125664747]]
Challenge accepted! [[100002727365206]]
Not bad! [[169919399735055]]
Datz true! [[148578318584679]]
Cerial guy [[170815706323196]]
No! [[167359756658519]]
Are you f* kiddin me? [[143220739082110]]
Fuuuuu..... [[145768898802324]]Toons:
[[145768898802324]]
[[334954663181745]]
[[104696320253]]
[[243002845770158]]
[[cookiemonster]]
[[43985111513]
[[PokemonWorld]]
[[196431117116365]]
[[tigger]]
[[ThePowerpuffGirls]]
[[sonic]]
[[hellokitty]]
[[179412035432554]]
[[155393057897143]
[[dora]]
[[326134990738733]]
[[236147243124900]]
[[mariokart]]
[[119960411370345]]
[[barney]]
[[squidward]]
[[166456416741199]]
[[224502284290679]][[488850267812232]] [[488850257812233]] [[488850271145565]] [[488850261145566]] [[488850264478899]] [[488850344478891]] [[488850331145559]] [[488850334478892]] [[488850337812225]] [[488850341145558]]
[[488850434478882]] [[488850424478883]] [[488850427812216]] [[488850421145550]] [[488850431145549]]
[[488850494478876]] [[488850497812209]] [[488850501145542]] [[488850504478875]] [[488850507812208]]
[[488850607812198]] [[488850611145531]] [[488850601145532]] [[488850604478865]] [[488850597812199]]
[[194406367392128]][[194406364058795]][[194406404058791]]
[[194406400725458]][[194406390725459]][[194406520725446]] [[194406524058779]][[194406530725445]][[194406514058780]] [[194406510725447]][[194406640725434]][[194406627392102]] [[194406630725435]][[194406647392100]][[194406644058767]] [[194406774058754]][[194406760725422]][[194406764058755]] [[194406767392088]][[194406770725421]][[194406884058743]]
[[547790791923823]][[547790765257159]][[547790795257156]][[547790808590488]] [[547790758590493]][[547791041923798]][[547791001923802]][[547791038590465]] [[547791051923797]][[547790991923803]][[547791251923777]][[547791201923782]] [[547791241923778]][[547791238590445]][[547791198590449]][[547791505257085]] [[547791431923759]][[547791498590419]][[547791495257086]][[547791435257092]]
[[626933327326247]][[626933277326252]][[626933313992915]][[626933310659582]][[626933273992919]] [[626933470659566]][[626933477326232]][[626933480659565]][[626933473992899]][[626933463992900]] [[626933640659549]][[626933643992882]][[626933603992886]][[626933613992885]][[626933633992883]] [[626933780659535]][[626933777326202]][[626933733992873]][[626933740659539]][[626933783992868]] [[626933930659520]][[626933920659521]][[626933923992854]][[626933863992860]][[626933867326193]]
[[547796498589919]][[547796495256586]][[547796491923253]][[547796485256587]] [[547796478589921]][[547796641923238]][[547796688589900]][[547796681923234]] [[547796638589905]][[547796685256567]][[547796881923214]][[547796905256545]] [[547796851923217]][[547796898589879]][[547796848589884]][[547797095256526]] [[547797105256525]][[547797085256527]][[547797081923194]][[547797101923192]] [[547797298589839]][[547797318589837]][[547797301923172]][[547797315256504]]
You can also request any new chat icons via comments :)






+Facebook.jpg)


.jpg)

.jpg)

















