Making Jira better

Our team found that it was not so convenient to have avatars for assigned developers only for Plan mode and not for Work (Rapid board of Jira Agile).

I’d create a question about that issue on Atlassian Answers, but unfortunately the answer was “Unfortunately this is not possible due to the way User Stories are displayed in the system.

I had a thought “why not to tweak it with userscript?” and solution came after:

jira-agile-avatars.user.js

You are welcome with criticism and suggestions.

 

New Chrome console features

You could set the focus on element without pointing it via inspector, there is “inspect” method in console now:

one more helper-method in console is “copy” – to stringify and copy to clipboard:

after such operation you will have document.body element converted into string in your clipboard.

Some inspiration for start playing:

[javascript]
inspect(document.body.firstChild)
inspect(document.querySelector(‘div’))
inspect(document.querySelector(‘.ng-scope’))
inspect($1)

copy($0)
copy(document.querySelectorAll(‘div’)[0])
copy(document.cookie)
[/javascript]

Пишем свой Uploader с нуля на javascript используя FileApi. Часть5. +AngularJS

В этой части хочу рассказать о том, как можно все эти операции с файлами завернуть в AngularJS.

Рекомендую пролистать предыдущие части перед началом разбора этой:

Continue reading

Передача данных между сущностями AngularJS

Один из самых распространенных вопросов по AngularJS – передача данных от одной сущности другой. На самом деле вариантов не так много. Попробуем их все рассмотреть.

Continue reading

FeedTheDevs. For the moral of our developers

Let me introduce you my pet-project FeedTheDevs. It provides easy way to estimate (by voting ) each PullRequest to any github repo. Could be used like developer work evaluation.

Application was created using AngularJS, node.js, PostgreSQL, GitHub API. You can find source code here.

Why “feed”? For got PR you give developer pizza, otherwise you feed him with spoiled tomatoes :)