One way to extract polling data from Duolingo. Ask each user to write what they want in their comment in the form:
I vote for Tamil.
Then, with the script below, you can extract the vote for each user into a CSV output. If you want to run this and save to a CSV so you can upload it to Google spreadsheets, you can do this (on a mac):
ruby get_poll_results.rb 'https://www.duolingo.com/comments/3938897' > poll_results.csv
where 3938897
is the ID of the thread in question. From there you have each person's answer in first column and each person's vote in the second column. It should be pretty easy to consolidate from there?
Pros:
- Only one vote per user (people can vote-fix by creating multiple users, but that's probably more effort than they'll go through).
Cons:
- Votes are public, not private (does this matter?)
- Only Duolingo members can vote.