Pages

Friday, December 29, 2006

Thursday, December 28, 2006

Trial in photoShop

I just tried doing something with the photoshop

Wednesday, December 27, 2006

Tuesday, December 26, 2006

Antimatters

Just was reading about the particle physics and came across the antimatter theory which can create a huge amount of energy.

They say when matter and antimatters comes into contact it annihilate each other and they also say there exist a antimatters for every matter. Anti matters are nothing but the particles with opposite charge. An example of which is the positron versus electron. Positron is the antimatter of electron. If our world prefers right-handedness, then the world of antimatter prefers left-handedness

At the Big Bang, equal quantities of matter and antimatter should have been created, and subsequently annihilated each other, leaving nothing but energy. But then nothing like this happened, universe is here and hence we are all alive. Why so?

Lots of experiments is going on to create a antimatter and scientist are successful in creating such matter. If the matter and antimatters are given the high velocity in the same direction and if they come in contact they can create huge energy. This does violates the law of conservation of energy. as energy is emerged out of nothing..

What we all learnt till now was all wrong?


This theory is making me to think lot many things which are applicable to our life also..

As antimatter, we also have one dark and one good face what happens when the life ends. These good and bad in us collide with each other and leaving nothing behind, but the energy. And then what?? Does it really matter what was good and what was bad?

Friday, December 22, 2006

Project completed

The project, I was working on for quite a long was not as much hectic , but still I am feeling a bit relived that I could complete it today and make a release for client. The application pulls data from Webservice. Draws complex diagram. Many more complex stuffs like tracing diagram, manipulating their co-ordinate systems and all other things were involved. After lot of trial and error with Webservice methods, experiments with crossdomain.xml , I could make it work.. So its a happy moment for me :) http://mayur.bais.googlepages.com/WAPDSDiagram.html

Thursday, December 14, 2006

Multilanguage text

By mistake pressed ctrl+F11 instead of pressing just F11 to open a library panel, and a "string" panel opened in front of me. I was not aware of this feature in flash. I knew that we can support Multilanguage text . But was not aware of that they have provided the separate panel also for it. It was a new knowledge for me. We can also see the direct help there.

Wednesday, December 13, 2006

My new project

First time I am trying to do the UI. Have desinged some interface. The link is: http://mayur.bais.googlepages.com/projects

Tuesday, December 12, 2006

what is crossdomain.xml ?

We most of the time needs to load the data from different servers into our flash application. But flash player load data across domains on a permission basis these permission from the server. These persmissions are set by the server in a small xml file called "crossdomain.xml" The sample structure is :
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<allow-access-from domain="*" />
</cross-domain-policy>

Friday, December 8, 2006

A good search engine

http://www.krugle.com/

Soap and flash

I need to use SOAP objects in my projects to retrieve result from webservice got a very very good link http://searchwebservices.techtarget.com/searchWebServices/downloads/what_is_soap.swf Its the presentation done in flash.

Documentation really important

Here (in ignify) ,The project I am dealing with have lots of webservice calls. and hence a quite a good amount of client server communication. The UI is in flash (obviously ) and uses .net webservices. I could partially implement the model-view-control architecture but not fully. The worst part of it was the documentation. when I prepared the document of so called "class diagram document " I was happy and I was really happy in myself that I did some systematic job. But when I sent it across to the seniors, I got a pathetic comments on it. Even when I got it reviewed from different people , I got a comment that , document is very poorly written, No enough of information, the class Names , Method Names and even properties are not properly explained. This is was bad. I need to improve more and more on this.

Wednesday, December 6, 2006

Column Names of data grid

I was really dumb enough to not to realize that there exists a "DataGridColumn" class which lets me to define my column header of datagrid. I was wondering arround to find out how can I have my column Names with space and wasted lots of time.. but here I found the very simple straight forward way: import mx.controls.gridclasses.DataGridColumn; // Add columns to grid. var name_dgc:DataGridColumn = my_dg.addColumn(new DataGridColumn("phasevol")); name_dgc.headerText = "Phase Vol."; var score_dgc:DataGridColumn = my_dg.addColumn(new DataGridColumn("figurenumber")); score_dgc.headerText = "Figure No." ;my_dg.addItem({phasevol:"01", figurenumber:30});

First Post

I Started a blog today. I hope,I will post regularlly Cheers !