November 26, 2011

Generic risks vs. Product specific risks

Generic risks vs. Product specific risks Mostly project managers identify the predictable risks according to their experiences. still few projects come up with new risks which are called product specific risks. Answers of the following checklist can help in identification of special characteristics of a project which may come up as a threat to a […]

The Software Equation

The Software Equation The software equation shown below is dynamic multivariable estimation model. It assumes a specific distribution of effort over the life of the software development project and is derived from productivity data collected for over 4000 projects. E = [LOC x B0.333/P]3 x (1/t4) Where: E – effort in person months or person […]

November 20, 2011

What risks are involved to website development?

What risks are involved to website development? First of all, let me explain that why am i writing on this topic? In fact i used to see many software development houses started and then finally either changed their names or left the industry because of uncertain and unexpected situations in software development phase. The bottom […]

November 4, 2011

C Program that prints the rows of DOS screen with different colors

C Program that prints the rows of DOS screen with different colors: It was a challenging task when i was not sure that which version of C language should i use? I tried TC, TC++, Borland’s, Dev Shed’s. By the way final solution was as recommended Borland C++ with bios.h but thanks to Dev Shed’s […]

October 30, 2011

Float Array Sum Function In Java

Float Array Sum Function In Java: public float sumArr(float[] args) { int sum = 0; for (int j=0; j sum += args[j]; } return sum; }

October 15, 2011

Usehandcursor boolean true not working

Usehandcursor boolean true not working There is another property which need to be used for objects other than buttons to use hand cursor on mouseover. buttonMode : Boolean Specifies the button mode of this sprite.

September 15, 2011

Pspell Extension

http://aspell.net/win32/ Pspell functions allow us to check the spelling of a word and offer suggestions. pspell_add_to_personal — Add the word to a personal wordlist pspell_add_to_session — Add the word to the wordlist in the current session pspell_check — Check a word pspell_clear_session — Clear the current session pspell_config_create — Create a config used to open […]

September 11, 2011

How to get image ratio for resize?

PHP: Hypertext Preprocessor

How to get image ratio for resize? It is an obvious question specially when you have to manipulate an image from small size to large or from large to small. As one of my friend don’t like to invent again a wheel but here we have to understand the manufacturing of a wheel for promising […]