Vasiliy Selivanov

  • RSS

Google App Engine

Posted on Tuesday, April 8th, 2008

New google service http://code.google.com/appengine/ Google App Engine lets you run your web applications on Google’s infrastructure. App Engine applications are easy to build, easy to maintain, and easy to scale as your traffic and data storage needs grow. With App Engine, there are no servers to maintain: You just upload your application, and it’s ready [...]

continue reading

Flex SDK coding conventions and best practices

Posted on Friday, April 18th, 2008

Introduction This document lays out the coding standards for writing open-source Flex framework components in ActionScript 3. Adhering to these standards makes the source code look consistent, well-organized, and professional. Some of these standards are completely arbitrary, since there is not always a “best way” to code. Nevertheless, in the interest of consistency, all commits [...]

continue reading

Zmags, Flash object and internal link

Posted on Thursday, March 24th, 2011

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) 1234567import 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 [...]

continue reading

unix best commands

Posted on Monday, July 6th, 2009

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 -

Posted in: Linux.