Gonna rise up and find my direction magnetically..

Monday, September 20, 2010

Some of the Designs i created for a virtual environment based chatting software called knock in illustrator

 

Copying of the work without permission is not allowed ;)

Saturday, March 20, 2010

How i earn online

Since last 2-3 years i was thinking how could i earn online because i liked to be called a freelancer and now i'm proud that i can call myself a freelance.
.My brother told me about this site called http://mturk.com ,
it's a initiative by amazon that gave me the confidence that it is genuine .

Within one month i have earned 169$.
You can withdraw your money in Indian rupees , they will send you a citybank cheque which you can Submit in any bank in India .But the work is monotonous and boring and does not require ne technical knowledge , initially i was happy about it because i was not intrested in using my mind all the time :P but now i got bored with mturk and i'm taking a break of 1-2 months from this website .
but i assure you it's worth trying .
 

Wednesday, March 17, 2010

1st post on ActionScript

 Before you jump into learning ActionScipt ,


I suggest you to take a look and try different animation techniques in flash ( http://www.smartwebby.com/Flash/flash_animations.asp#motion_tween ). [Time req . = hardly 20-30 min ]

Now we will jump directly into Actionscript,

Variable declaration in ActionScript :

Syntax :

var name:type = value;

The three parts of variable are :
1. name = it's name .
2. type = it's data type ( int , number , Boolean ) .
3. value = The value stored in the variable . 

Data type is same as the class and the object . 
A class is the definition of data type .
An object is the instance of a class . 

Example :

var count:int = 10 ;
here , count is the object of integer class .

ActionScript is an object oriented programming language . It's Class includes three things ,

1. Properties : These are the variables used in an object .  
2. Methods : They are same as the functions in any other language . These are the actions a object can perform .
3. Events : The things that Actionscript can respond to such as mouse click , button press. 


ActionScript

Actionscript :

It is the scripting language used in Macromedia Flash. It is similar in syntax to JavaScript.


I'm Starting to learn Actionscript 3.0 from the very basic For my clg project . 
So , i'm planning of posting Step by Step tutorial of Actionscript on my blog .

Monday, March 8, 2010

Google getting smart :)

Thursday, October 8, 2009

Data Types and Image Types in matlab

See how images are defined in matlab.
i Made this flowchart to make this simple.