Skip to main content

Posts

Showing posts from December, 2013

My help bubble

I wrote a simple help bubble script for input elements. This how it looks. How to do the same in your product. -------------------------------------------------------------------------------- Fist add this two css classes to your css file. .speech-bubble{     width: 780px;     background: #eff1f1;     border:solid 1px #dadada;     padding: 10px;     color:#686868;     position: absolute; } .speech-pointer {     content: '';     position: absolute;     border-style: solid;     border-width: 15px 15px 15px 0;     border-color: transparent #eff1f1;     display: block;     width: 0;     z-index: 1;     left: -15px;     top: 25px; } -------------------------------------------------------------------------------- Secondly add the following html elements inside your htmls elements. I added those just before the tag closing line. <div class="speech-bubble help-section" id="speech_bubble_container" style="display: none

Raphaël lifecycle node tree

I recently wrote a script to display product life cycle states in a chart. This chart has to be dynamic. The life-cycle state definition is dynamic and can be different from case to case. So the states and there relationship with each other is represented using a JSON file. Following is a part of what I have used with my script. ( The complete JSON is included with the sample given at the end of this post ).  {     "state": [         {             "id":"Development",             "type":"initial" ,             "transition": [                 {                     "target":"Deprecated",                     "event":"Demote"                 }             ]         },          {             "id":"Deprecated",             "type":"end" ,             "transition": []         },         {             "id":"Deprecated2",     

Making of my Fist Game ( Angry Wives )

My Fist Game !!! Finally I was able to finish it. It's been two and half years since I start investing my extra time on this. It all started with a joke. My current working place is a real fun place to work. We usually hangout on teatime and through out any thing we got on each other. We use to sit on a circle and pick a subject and laugh the guts out. Ones we were talking about a particular slow server, we thought about letting the users play a game while it loads. Game like Angry Birds. Then an idea came to modify the Angry Birds game to something like Angry Babes. So instead of this birds there are hot hot girls flying and killing dudes inside building blocks. Then I started wondering, " What if this can be done for real? " "How practical is this?" "Can a single person do this?" I think I have done a research on mobile game purchase statistics, it turns out to be IOS users have more trend over buying stuff than Android users. So IOS wa