Skip to main content

Posts

Who's got the monkey ?

Today i found a interesting article on how manger should delegate his work. According to my understanding, this theory is highly applicable for software industry because most of the targets are accomplishing using teams.When we work in a team we should know what are the things need to be delegate.And those work must have to delegate.According to this theory problems are considered as monkeys. So everybody wants to know about how to deal with monkeys.

Writing Tips

When we are writing emails some time we may not care much about small things.But it will create difficulties to recipient. As well as it reflects sender. This is a good post on it . It highlights necessity of the good writing.It mention simple example as follows; Compare the following two job applications. The content of the emails are identical – but who would you give the job to? i’ve attached my resume i would be grateful if you could read it and get back to me at your earliest convenience. i have all the experience you are looking for – i’ve worked in a customer-facing environment for three years, i am competent with ms office and i enjoy working as part of a team. thanks for your time Or Dear Sir/Madam, I’ve attached my resume. I would be grateful if you could read it and get back to me at your earliest convenience. I have all the experience you are looking for: * I’ve worked in a customer-facing environment for three years * I am competent with MS office * I...

Silly mistake

Actually i underwent a problem which was very painful. But finally i found the problem. I could able to learn lot from that even thought its a Silly mistake . Basically scenario is as follows; There is a asp page and it pop up another page. Once i click on the parent page and it pop up a child window but it get minimized within a second. Finally got to now there is a text box focus method calling from parent page.:-)

DB4o & .Net

Its new to me..Today i started to work on DB4o and up to now feel better. Learning curve is short and also easy to learn. As a beginner it is better to use DB40 reference as well as http://www.codeproject.com/KB/database/OOP_with_db4o.aspx

First day of Year Twenty Ten

Today's the first day of 2010. There is a question weather we should called this year as twenty ten or two thousand ten ...It is very easy to say as "twenty ten" rather two thousand ten( Twenty Ten ). Anyway its a another new year. So,,, ,...................... Happy New Year..........................

MySQL Stored Procedure Error

In our project we had many many stored procedures and many parameters passes to those sps. But in only one sp it gives error message something like this; "Incorrect number of arguments for PROCEDURE sproc_t_l_Contract_Select_BySearchCriteria; expected 3, got 2” Work long time on this sp but coudnt find it. So i tried to write it again from the begining. In this time it was work perfectly.This problem occurs because of the space between data type and its length. Ex. pName varchar(50) - working pName varchar (50) - Not working But it does not mention syntax error or something.So this error message make us vulnerable.