Posts

Showing posts from December, 2018

PMP Certification Guide

My Cheat-Sheet for PMP - Project Management Professional Hi all,  Recently I have aspired to become a PMP Certified and hope to get it by mid of 2019. While preparing, I though of sharing some of my findings which may be helpful for some to get the idea of what we need to understand before appearing for the PMP examination. In this series of blog posts, I will be posting some more details about PMP's PMBoK guide book intercepts to be prepared for the final day and here we go with the first installment of its own with some keywords or definitions which we need to know as a project manager to make our life more easier in this jumbled world of management: Project:   A temporary endeavour, having definite start and end date, undertaken to create a unique product, service or result. Project Management: The application of skills, knowledge, tools and techniques to project activities to meet the project requirements. Program: A group of inter-related proje...

Titanium Alloy: MVC architechture

Image
Introduction The Alloy framework of Titanium helps us to organize our applications into Model, View and Controller. It also provides the built-in support for Backbonejs and Underscorejs- JavaScript Library. In this framework, the Model contains the data source, View(js) and style(tss) contains the UI part and Controller contains the business logic part of the application. As shown in the above diagram, the controller updates the model and model notifies about every change being made by the controller in the data source with the updated data. With this updated data, the controller then updates the views created in the view part of the application, which when shown to the end user, he/she perform some action on views. These actions are again listened by the controller and reply back with proper operations. So, based on the above explanation, we can define the MVC architecture as follows: Controller It contains all the business logic part of the application.  It can...