Category: Software Management

  • How to get self confidence on source code you write?

    Coding is primary task of every developer and we all know very well about it. But why may developers are not much confident about source code they wrote? I do study few developers and fond following reasons. They really don’t know/care what they wrote They don’t like to go into further details of what they wrote. many do copy code…

  • SOFTWARE VERSION SYSTEM

    Every software we use daily has software version and we should also give version number to software we develop everyday. The simplest one is Semantic Versioning.(http://semver.org/) Give software version no in form of MAJOR.MINOR.PATCH MAJOR: Increment it on every major  release MINOR: increment it on every new feature introduction PATCH: increment it in every bug fixes or small…