Vasiliy Selivanov

  • RSS

21 Awesome (But Lesser-Known) Open-Source Applications for Windows

Posted on Sunday, April 13th, 2008

Unless you’ve been hiding under a rock in Madagascar for the last few years, you undoubtedly already know about the All-Star open-source applications for Windows. I’m talking about applications such as Firefox, Thunderbird, GIMP, OpenOffice, and VLC. However, there are hundreds of lesser-known but highly-useful open-source applications available for Windows. A few of my favorites [...]

continue reading

AIRTube Video Downloader Application

Posted on Thursday, April 10th, 2008

Cool little AIR application that allows you to download YouTube FLV videos by simply dragging or pasting in the video’s URL. After the video downloads the application will expand and show you a preview of the video. The file is saved to the desktop as video.flv Follow the steps below once you get it installed: [...]

continue reading

Microsoft’s plans for post-Windows OS revealed

Posted on Wednesday, July 30th, 2008

July 29, 2008 — Microsoft is incubating a componentized non-Windows operating system known as Midori, which is being architected from the ground up to tackle challenges that Redmond has determined cannot be met by simply evolving its existing technology. SD Times has viewed internal Microsoft documents that outline Midori’s proposed design, which is Internet-centric and predicated on [...]

continue reading

Facebook Fb.UI and “An error occurred. Please try again later.”

Posted on Monday, June 13th, 2011

If you tried to make feed posting via javascript

1
2
3
4
5
6
7
FB.ui({
    method: 'feed',
    name: 'Title',
    link: 'http://example.com',
    picture: 'http://example.com/image.jpg',
    description: 'description'
});

but have error message “An error occurred. Please try again later.”.

To solve this just add your application id as app_id parameter

1
2
3
4
5
6
7
8
FB.ui({
    method: 'feed',
    name: 'Title',
    link: 'http://example.com',
    picture: 'http://example.com/image.jpg',
    description: 'description',
    app_id: YOUR_APPLICATION_ID
});

I hope it is help somebody. Write you comments.

Posted in: facebook.

  • cettox

    thank you very much, that simple trick solved my problems dude

  • Kanad

    Solved my problem too! Thank you very much!!

  • Menasan

    god damnit thank you. 

  • Steve

    Didn’t solve mine :(

  • http://www.facebook.com/vitaminxp Dima Kulik

    Thanks. You saved my day. A bunch of days. Thanks. I used it for our eBay Items facebook app here:  https://apps.facebook.com/ebayitems/

  • thank you I have been working on this for hours and didn’t find this suggestion anywhere else….ahhh!