<div dir="ltr">What do you think of <a href="https://github.com/pdurbin/druthers">https://github.com/pdurbin/druthers</a> ? I just pushed it. Here's the readme:<br><br>Druthers: crowdsourced issue ordering<br>=====================================<br><br>If my users had their druthers, what issues would they have me work on?<br><br>Should I ask my users to put their top few issues in order so I know what's most important to them? Yes! Druthers will help you make sense of the data, showing you either simple counts of votes or (better) weighted "points" that each issue has accumulated based on how they've ranked the issues they care about.<br><br>Run `druthers --help` for instructions.<br><br>The included input file (votes.tsv) represents 20 ordered votes on issues numbers ranging from 1 to 100.<br><br>By default, simple counting of votes is shown:<br><br>    $ ./druthers votes.tsv | head -5<br>    5 votes for issue 62<br>    4 votes for issue 55<br>    4 votes for issue 33<br>    4 votes for issue 31<br>    4 votes for issue 69<br><br>You can indicate that your users have put their votes in order (most important first) to get a tally of "points" for each issue:<br><br>    $ ./druthers --ordered votes.tsv | head -5 <br>    63 points for issue 62<br>    52 points for issue 20<br>    48 points for issue 40<br>    47 points for issue 84<br>    47 points for issue 42<br><br>If you're curious why issue 20 has so many more points than 55 you can quickly tell with `grep $ISSUE_NUMBER --color votes.tsv -C20`. The order matters! :)<br><br><br><br></div>