3
2011
Shared Leadership in Software Project Team
INTRODUCTION Software itself is a complex entity and in order to develop software and managing the team till successful completion of the project requires defined sets of complex actions with interpersonal skills and intelligence. Software project managers are facing a great deal of difficulties in adapting to the ever changing tools and techniques in order to stay attuned with others [1]. To meet those challenges a combination of interpersonal skills are required in a good [...]
22
2011
Management VS Leadership in Software Organizations
Introduction In order to of achieve a predefined goal by an organization, it must not only have enough resources but also the way of using them effectively. Formally a manager, informally a leader has to have the capabilities in him to use his resources such as human, financial, physical and informational. As the management of human resources is always been critical to the success of any organization, that resources are always being given a greater [...]
9
2010
Change the SSH port on RedHat/Cent Os
Changing the SSH port of RedHat or Cent Os is not a tough job. Any administrator can change it by just editing sshd_config file and then reloading the service. Step 1. Edit the sshd_config vi /etc/ssh/sshd_config Step 2. Change the Port No You will find something like #Port 22 Simply change this like Port 2222 Step 3. Save and Exit Step 4. Reload the New Configuration service sshd reload You are done and now you [...]
9
2009
How to install Red5 on Cent Os 5.4
Red5 is open source flash server written in java supports streaming audio/video, recording client streams, shared objects, live stream publishing etc. Here I will describe in details how you can install Red5 on your CentOS. For this you will also need to install Java and Apache Ant. Step 1. Install Java RED5 server depends on Java. CentOS 5.3 comes with OpenJDK 1.6 and install it using yum. yum -y install java-1.6.0-openjdk java-1.6.0-openjdk-devel Step 2. Install [...]
24
2009
Measurement in Software Engineering
1. INTRODUCTION Measurement is one of the key actions behind any quality product not only in software engineering but also in all industries. It is quite challenging for software engineers as software is different from any other products. Measure of a software entity is very important because through measuring we can find the defects in process and also estimate efforts and time. 2. MEASURE IN SOFTWARE ENGINEERING 2.1 What is Measurement According to Fenton, The [...]
11
2009
Learning is a Bridge between Work and Innovation
Literary, Learning is transmitting knowledge from one to another which helps one or a certain group of people enhancing knowledge, productivity, efficiency, skill and innovativeness. In the current competitive world an organization has to be innovative and bring new ideas time to time in order to sustain and maintain a steady growth. All those factors which are achieved by learning are really needed when an organization needs to adopt new technology or process in order [...]
6
2009
Sending Email From Your Spring Application
The Spring Framework provides a helpful utility library for sending email that shields the user from the specifics of the underlying mailing system and is responsible for low level resource handling on behalf of the client. In my last project I have used spring mail functionality to send mail to the user. This is the simplest way so far I have found to send mail from spring application. Let us also assume that there is [...]
23
2008
Itegrating DWR (Direct Web Remoting) with Spring
Hi Springers, I have used DWR (Direct Web Remoting) in my last project which was pretty interesting and I want to share the simplest way of using DWR with spring application. Download the latest version of dwr.jar from here. And put it in the /WEB-INF/lib folder. I have used DWR 2.0.5. Add the following lines in your web.xml <servlet> <servlet-name>dwr-invoker</servlet-name> <display-name>DWR Servlet</display-name> <servlet-class> org.directwebremoting.servlet.DwrServlet </servlet-class> <init-param> <param-name>debug</param-name> <param-value>true</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>dwr-invoker</servlet-name> <url-pattern>/dwr/*</url-pattern> </servlet-mapping> Now [...]
23
2008
Restoring Default Ubuntu Panel
This is for the newbies in the Ubuntu Community. Sometimes we want to configure our panels on Ubuntu to give a nicer look. And the newbies often fail to do that as they want and may want to restore the default panel settings. Restoring the default panel setting on Ubuntu is pretty simple. Just run the following command in the terminal and you will get your default Ubuntu panels back. sudo debconf gnome-panel But this [...]
24
2008
How to Install LAMP (Linux, Apache, MySQL, PHP) on Ubuntu (8.04 / 8.10)
This is for the newbies in the world of Ubuntu. Use the following steps to install LAMP (Linux, Apache, MySQL and PHP) in Ubuntu. Open up the Terminal (Applications > Accessories > Terminal). Run the following command to install Apache $sudo apt-get install apache2 To test Apache open up any web browser and then enter the following into the web address: http://localhost/ Now run the following command in the terminal to install PHP $sudo apt-get [...]

An article by
I am a simple man living in this world working in IT field. I love Music, playing soccer, traveling new places. By profession I am a software engineer and enjoy my job. I love researching on new technologies such as programming languages.