Category Archives: Management
Programmer’s Schedule vs Manager’s Schedule
As Paul Graham states in his article Maker’s Schedule, there are 2 types of schedules. The first one is the manager’s schedule, which is usually planned by hours, and implies regular context switches. The creator’s schedule, on the other hand, should be planned in bigger time frames. Usually, half-a-day chunks would be efficient. It differs …
What is teamlead’s first duty
Sarah Mei «We think awful code is written by awful devs. But in reality, it’s written by reasonable devs in awful circumstances.» (source) So, teamlead is there to improve circumstances.
JIRA: интересные jql-запросы
Незаблокированные таски
1 |
issueFunction not in linkedIssuesOf("status IN (\"In Progress\", \"Open\", \"Paused\", \"Reopened\")", blocks) AND resolution = Unresolved |
Задачи, сделанные на прошлой неделе
1 |
Status changed from "In Progress" by membersOf(femob) during (startofweek(), endofweek()) |
Задачи, включённые в следующие релизы
1 |
fixVersion in unreleasedVersions() AND assignee was in membersOf(femob) ORDER BY createdDate DESC |
Задачи без коммитов
1 |
assignee was currentUser() AND issue.property[development].commits > 0 |
Ссылки: http://www.mumosystems.com/jql-the-most-flexible-way-to-search-jira-14/ http://www.mumosystems.com/jql-the-most-flexible-way-to-search-jira-24/ http://www.mumosystems.com/jql-the-most-flexible-way-to-search-jira-34/ http://www.mumosystems.com/jql-the-most-flexible-way-to-search-jira-44/ http://stackoverflow.com/questions/3918255/jira-searching-issues-by-issue-links https://confluence.atlassian.com/jira/advanced-searching-179442050.html http://stackoverflow.com/questions/12257496/jql-filter-other-query https://scriptrunner.adaptavist.com/latest/jira/custom-jql-functions.html