Posts

Showing posts from March, 2013

Scrum Master vs Product Owner

The most common confusion in the 2 roles of Agile-SCRUM is between Scrum Master & Product Owner. The Scrum Master is in charge of making sure the Scrum process is followed. The Product Owner (PO) is the person in charge of making sure the product succeeds in the direction the company wants to go. The PO does this by setting priorities of product backlog items, making sure all needed parties are there for both the sprint planning and sprint review (both are very important). If something occurs and either the scope explodes or decisions need to be made, the PO is the person who gives the answers to the decisions. Product owner act as the feature prioritize(r) and main point of contact between business/customer and IT team. If product not succeed and probably reason is prioritization issue then product owner may be "single wringable neck" person. The Scrum Master is making sure the process gets followed and working through the adaptation of Scrum to your organization. By do...

Orientation change shortcuts for emulator and simulator

Image
Android Emulator: For Mac:     ctrl+fn+F11 to change the landscape to portrait and vice versa. For Windows 7:   left-ctrl+F11 FOr Linux: ctrl+F11 Note: Mac users, you only need to use the fn key if the setting "Use all F1, F2 etc. keys as function keys" (under System Preferences -> Keyboard) is checked. iPhone Simulator: Cmd-Left and Cmd-Right will rotate the virtual phone (simulator).

CSS : dot (.) vs hash (#)

CSS : dot (.) vs hash (#) . => class selector # => id selector so .lblClass { width:20dp; } -> <label class="lblClass"/> #lblID {widh: 10dp;} -> <label id="lblID"/> PS. The # symbol is called an octhrope