brmlab election/voting tools
Find a file
2014-10-13 23:38:59 +02:00
gen-ballot.pl gen-ballot.pl: Dashed line above token to make it easy to tear it away 2014-10-13 23:38:59 +02:00
names-sample.txt Initial version, with gen-ballot.pl 2014-10-08 21:28:38 +02:00
README.md Work with names.txt instead of names-sample.txt 2014-10-13 19:17:22 +02:00
web-ballot.pl web-ballot.pl: Add feature Inspect vote 2014-10-13 20:32:20 +02:00

Initialization

Copy names-sample.txt to names.txt or create your own names.txt. Clobber your ~/votes.txt file.

Generating Ballots

./gen-ballot.pl 15 <names.txt >tokens.txt

Web Ballot CGI Script

Put names.txt and tokens.txt to the same directory as web-ballot.pl and make that directory available for CGI script execution. If this directory is accessible over web, don't forget to remove read permissions for all but the owner.

It should just work; you may need to adjust the votes.txt path currently hardcoded in web-ballot.pl, where the cast votes are recorded.

Counting Votes

This script will show just the final vote for each token:

perl -nle 'chomp; @b = split/,/; $a{$b[0]} = [@b]; END { for (values %a) { print join(",", @$_); } }' ~/votes.txt