Archive for August 2019

Scrum methodology events

1. Sprint Refinement – when a team goes through the backlog, score points, etc. It focuses on a long term goals 2. Scrum Planning – when a team go through the backlog and discuss tickets to be added to oncoming Sprint, assign to developer. It focuses on a short term, goals within next Sprint. 3. […]

Mysql convert timestamp to date

SELECT DATE_FORMAT(FROM_UNIXTIME(yourfield), ‘%e %b %Y’) FROM yourtable;

PHP arrays comparision to Javascript and Java

Associative arrays in PHP = Javascript Objects written as name value pairs = Hash maps in Java