Technology Subscribe to Technology
Create PDF from HTML using Evo HTML To PDF Using C#
If you want to convert HTML to PDF in .NET, then I bet EVO HTML to PDF is one of the best paid tools available in market. In this you… Read more
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
Use Facebook At Work And Never Get Caught
Using Facebook at work might be a risk for you. But there might be some situations where your friends wants to share their thoughts about their week-end trip or they… Read more
Ways to Access Blocked Sites
Websites like facebook, twitter and other social networking sites are generally blocked in schools, colleges and offices. Using a proxy server used to be the quickest way, but network admins… 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



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 »