Vasiliy Selivanov

  • RSS

Top 30 Tips for Staying Productive and Sane While Working From Home

Posted on Thursday, April 10th, 2008

1. Define your spaces; separate work from home. Have a room dedicated to working. Don’t do it wherever you happen to be. Set aside some space, preferably a room (it doesn’t have to be big) to be your workspace. That way, when you enter it, you know consciously what you’re there to do: go to [...]

continue reading

Microsoft WorldWide Telescope

Posted on Tuesday, June 3rd, 2008

The WorldWide Telescope (WWT) is a Web 2.0 visualization software environment that enables your computer to function as a virtual telescope—bringing together imagery from the best ground and space-based telescopes in the world for a seamless exploration of the universe.   WorldWide Telescope minimum system requirements For PC:   Microsoft® XP SP2 (minimum), Windows® Vista® [...]

continue reading

Do you like google? This google tutorial for you

Posted on Thursday, May 8th, 2008

Check this site www.googletutor.com/ Here is some of the topics: Google Security Tip: Your secret question Google Reader: Sharing With Notes! How to add a Google Alert Quick Gmail Tip: Mute a Conversation Quick Picasa Tip: Changing thumbnail sizes for easy viewing Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share [...]

continue reading

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

Monday, June 13th, 2011 - facebook

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.

continue reading

How to make (sort) gallery/post votings (likes) with Facebook

Tuesday, March 29th, 2011 - facebook, php

I will tell you have to make sorting of photos/posts/links via facebook.

For example you have photo gallery where users could “vote”  (like) for each photo. And you need to make sorting of photos by popularity with Facebook.

So you have, for example, 10 photos with urls:
http://yoursite.com/photo/1, 
http://yoursite.com/photo/2,
..,
http://yoursite.com/photo/10
what users could “like”. And you have pagination of 3 photos per page. So lets start.

continue reading

Zmags, Flash object and internal link

Thursday, March 24th, 2011 - Flash

If you are using Zmags, and what to add internal link (go to some other page) into flash object. You could use this code in flash ( actionscript 3.0)

1
2
3
4
5
6
7
import flash.external.*;
but.addEventListener(MouseEvent.CLICK, function(e:MouseEvent) {
    var curUrl:String =  String( ExternalInterface.call(" function(){ return document.location.href.toString();}"));
    curUrl = curUrl.replace(/\/([0-9]+)$/,'/'+YOUR_PAGE_NUMBER);
    var myURL:URLRequest = new URLRequest(curUrl);
    navigateToURL(myURL,"_self");
});

where YOUR_PAGE_NUMBER – is page number you want to go after click on button with instance name “but”

continue reading

Firefox 4 is available now

Monday, March 21st, 2011 - Firefox

FTP

Windows

Mac OS X

Linux

continue reading

symfony ahDoctrineEasyEmbeddedRelations plugin, IE and Compatibility View Mode

Friday, March 18th, 2011 - IE, jQuery, php, Symfony

I have found interesting bug with symfony ahDoctrineEasyEmbeddedRelations plugin when you use IE Compatibility View Mode. Always save only 2 instance and never more. So lets find why it is happen.

continue reading

Facebook pages will automatically be upgraded

Thursday, March 10th, 2011 - facebook

Facebook pages are getting an updated layout and several new features to help you engage with your fans. Preview your pages and you’ll be given the option to upgrade early. All pages will automatically be upgraded on March 10.

this link http://www.facebook.com/pages/status/ help you upgrade it manualy

continue reading

new symfony site

Thursday, March 10th, 2011 - php

http://symfony.com/

… waiting for 2.0 ;)

continue reading

dynamic google earth or live on google map

Thursday, October 1st, 2009 - Google

Augmenting Aerial Earth Maps with Dynamic Information.

Google Earth will be display movement of vehicles and people in real-time. How? Check video for answers.

continue reading

Adobe CS5 – Flash and Photoshop CS5 preview

Tuesday, September 22nd, 2009 - Adobe, CS5, Flash, Photoshop

Some new information about Adobe CS5

FLASH CS5

Known issues

  • Code Samples panel
  • TLF text
  • XML-based file format
  • Live preview video component
  • Adobe Media Encoder

Screenshots

flash cs5

flash cs5

video

continue reading

unix best commands

Monday, July 6th, 2009 - Linux

check site http://www.commandlinefu.com and you will get list of commands sorted by voting. Fx:

Run the last command as root

1
sudo !!

Serve current directory tree at http://$HOSTNAME:8000/

1
python -m SimpleHTTPServer

change to the previous working directory

1
cd -

continue reading