Monthly Archives: August 2009

What I've learned from my mistake.

Last week I made a mistake. I confused the meaning of private/public key and their usage in asymmetric  cryptography algorithms.  I understood my mistake and excused to my colleague with whom I talked. So in the first moment when I … Continue reading

Posted in Experience | Tagged | 2 Comments

The Principle of the Software Monk

Recently I thought on ‘How can I reduce the bugs to minimum ?’
My decision was to execute these steps :
1.  Stop and fix the bug if it is serious or log it for a later inspection .
Note : See … Continue reading

Posted in Software Stories | 1 Comment

Recently I worked on a server side project. And I noticed this snipet below :
public class DBConnection implements Connection {
private DBCConnectionPool pool;
private Connection conn;
public DBCConnection(Connection conn, DBCConnectionPool pool) … Continue reading

Posted in Software Stories | Leave a comment

Software Development and The War on Muda

Recently I read this article by Bill Curtis. I think that this one of the articles which should be read many times because it shows us one of the roots of our problems in software development.

Posted in Read Articles | 2 Comments