How to? Subscribe to How to?
Merging Two Images in .NET
To merge two images what all we need to know is the what would be the final size of image. that is, equivalent to first image or second image or… Read more
How To disable or stop Facebook Photo Facial Recognition
To Disable or Stop Facebook Photo Facial Recognition follow below instruction. Go to your Facebook account’s privacy settings and Click on “Customize settings” as show in image below. Under “Things… Read more
How to Export Facebook Friends Email Addresses in Your Desktop
To import all your facebook friends email addresses in your desktop, you first need to create a Yahoo account. If you already have it, then go to you yahoo mail… Read more
Play video full screen android
In my earlier post i explained how to play you tube videos from your app (http://www.yoursearchbuddy.com/play-you-tube-videos-android-development). Assuming that you are playing your video in videoview (id: videoView1). Here is the… Read more
How to add custom fonts android
By default there are not many options in android for fonts. Thus, if you wish to use your own custom fonts, its very simple. Here is what you need to… Read more
Get current date in Splus/R
Today i will discuss, how to get current date in splus/r and format it to your needs. To get current date do: > today < - Sys.Date() //Display current date... Read more
Create FaceBook like Search Box
To create Facebook like search box, what all we need is css and JavaScript. Include the reference of JQuery in the page Create four arrays to hold the values of… Read more
Allow objects to communicate using events
We can allow objects to communicate using events. We will create an event in one class and let the other class define the event handler for that event. Data that… Read more
Write a class which implements IDisposable interface and provides a finalize method. The finalize method should not get called if the object is disposed
This is an interview question “Write a class which implements IDisposable interface and provides a finalize method. The finalize method should not get called if the object is disposed” class… Read more




Get all facebook social plug-in comments using facebook api
To get all the Facebook social plugin comments using Facebook API execute the following fql query. https://api.facebook.com/method/fql.query?query=select%20post_fbid,%20fromid,%20object_id,%20text,%20time%20from%20comment%20where%20xid%20in%20%28SELECT%20xid%20FROM%20comments_info%20WHERE%20app_id%20=%20%27147980011931026%27%20and%20xid%20=%20%27[YOUR_URL]%27%29&access_token=[YOUR_ACCESS_TOKEN] Put your access token in the URL and escape (HTTP encode) your URL… Read more »