Active Topics

 


Reply
Thread Tools
pelago's Avatar
Posts: 2,121 | Thanked: 1,540 times | Joined on Mar 2008 @ Oxford, UK
#761
I wonder how many of those 5000 members with karma>=10 are actually still active within the maemo/meego scene in general, or have an up-to-date email address registered on maemo.org. In other words, although the turnout is definitely low in numbers, it may not be as low in percentage terms as mentioned above, if many of those 5000 members are not active in general.

Last edited by pelago; 2011-11-25 at 16:58.
 
Posts: 317 | Thanked: 787 times | Joined on Oct 2009 @ Krakow, Poland
#762
What are the rules that will be used to determine which place a particular app is in competition results?

The number of votes is so low that one could easily compute the results manually.

One of possible options is to assign a number (vote points), eg. count of submission in particular category minus place that user voted plus one. For example: in category we have five apps (AppA, AppB, AppC, AppD, AppE).

Suppose user1 voted:
1. AppB (5)
2. AppD (4)

and user2 voted:
1. AppA (5)

and user3 voted:
1. AppD (5)
2. AppA (4)
3. AppB (3)
4. AppC (2)
5. AppE (1)

The results would be:
1. AppD and AppA with 9 vote points
2. AppB with 8 vote points
3. AppC with 2 vote points
4. AppE with 1 vote point

Is that the system that will be used?
 
yaln's Avatar
Posts: 12 | Thanked: 11 times | Joined on Jul 2011 @ UK
#763
Originally Posted by dwaradzyn View Post
What are the rules that will be used to determine which place a particular app is in competition results?
Is it the single transferrable vote system used in the council elections? http://wiki.maemo.org/Community_Coun...ection_process
 
pelago's Avatar
Posts: 2,121 | Thanked: 1,540 times | Joined on Mar 2008 @ Oxford, UK
#764
No, that's not how it works. It's Single Transferable Vote. See http://en.wikipedia.org/wiki/Single_transferable_vote
 

The Following User Says Thank You to pelago For This Useful Post:
Posts: 96 | Thanked: 107 times | Joined on Aug 2011
#765
Maemo elections appear to have used RTSTV. A quick glance at RTSTV selects the top X candidates, but does not then rank them (although maybe I missed it). A simple way to determine the winner is to run the election with 1 seat. The second place winner is then one who is added to the winners in a 2 seat election, etc.

Here's a simple script that does that:

Code:
>/tmp/result
for i in $(seq $(expr $(head -c 2 election.blt) - 1))
do
  openstv-run-election -r CsvReport -s $i RTSTV /tmp/election.blt \
    | awk -F, '/Elected/ { print $1 }' \
    | while read w
        do if ! grep -q "$w" /tmp/result
          then
            echo $w >> /tmp/result
            break
          fi
        done
done
awk 'BEGIN { i = 1; } { print i, $0; i++; }' /tmp/result | sed 's/"//g'
Here are the results for the Network & Communication Category:

1 QNetMan http://competition.meetmeego.org/submissions/28
2 Woodchuck http://competition.meetmeego.org/submissions/84
3 Tweed Suit http://competition.meetmeego.org/submissions/29
4 LinkedUp http://competition.meetmeego.org/submissions/44
5 Panic Button http://competition.meetmeego.org/submissions/11
6 Acid Rain http://competition.meetmeego.org/submissions/34
7 qwassr http://competition.meetmeego.org/submissions/30
8 Plurker http://competition.meetmeego.org/submissions/77
9 qgvdial http://competition.meetmeego.org/submissions/53
 

The Following 3 Users Say Thank You to neal For This Useful Post:
Posts: 96 | Thanked: 107 times | Joined on Aug 2011
#766
Using the above method, here are the results for all elections:

MeeGo Coding Competition Beginners Category
1 MIR Translator http://competition.meetmeego.org/submissions/24
2 Audiobook reader http://competition.meetmeego.org/submissions/27
3 TxPad http://competition.meetmeego.org/submissions/5
4 location2sms http://competition.meetmeego.org/submissions/62
5 LUCID/iron http://competition.meetmeego.org/submissions/4
6 stockona http://competition.meetmeego.org/submissions/25
7 The Math Game http://competition.meetmeego.org/submissions/26

MeeGo Coding Competition Business & Office Category
1 MeePasswords http://competition.meetmeego.org/submissions/68
2 LUCID iron http://competition.meetmeego.org/submissions/4
3 ClipMan http://competition.meetmeego.org/submissions/13
4 MeeToDo http://competition.meetmeego.org/submissions/74
5 Wallet http://competition.meetmeego.org/submissions/18
6 NewsG http://competition.meetmeego.org/submissions/76
7 Quick Milk http://competition.meetmeego.org/submissions/78

MeeGo Coding Competition Desktop & Widgets Category
1 Oculo http://competition.meetmeego.org/submissions/14
2 TodoList Widget http://competition.meetmeego.org/submissions/86
3 Conky Layout Switcher http://competition.meetmeego.org/submissions/6
4 TcpIpKeyboard http://competition.meetmeego.org/submissions/72

MeeGo Coding Competition Fun & Strange Category
1 PGZ Urban Dictionary http://competition.meetmeego.org/submissions/65
2 N900 X-Ray http://competition.meetmeego.org/submissions/22
3 Rockmarble http://competition.meetmeego.org/submissions/55
4 BashORGquotations http://competition.meetmeego.org/submissions/64

MeeGo Coding Competition Games Category
1 Nine Mens Morris Muhle http://competition.meetmeego.org/submissions/51
2 Billiardos http://competition.meetmeego.org/submissions/82
3 Mong http://competition.meetmeego.org/submissions/41
4 PGZ Space Invaders http://competition.meetmeego.org/submissions/10
5 pinball http://competition.meetmeego.org/submissions/9
6 Wordsler http://competition.meetmeego.org/submissions/54
7 Inner Spin http://competition.meetmeego.org/submissions/16
8 Fracciones http://competition.meetmeego.org/submissions/75
9 Nanoparticles http://competition.meetmeego.org/submissions/19
10 Balloon Aliens http://competition.meetmeego.org/submissions/39
11 SchachUhr http://competition.meetmeego.org/submissions/49
12 Ghosts Overboard http://competition.meetmeego.org/submissions/36
13 MNonograms http://competition.meetmeego.org/submissions/46
14 Demine http://competition.meetmeego.org/submissions/79
15 Tap em http://competition.meetmeego.org/submissions/40
16 Tribute http://competition.meetmeego.org/submissions/8
17 Ball Game http://competition.meetmeego.org/submissions/17
18 Swarm Atakk http://competition.meetmeego.org/submissions/85

MeeGo Coding Competition Graphics & Multimedia Category
1 cuteTube-QML http://competition.meetmeego.org/submissions/3
2 FlowPlayer http://competition.meetmeego.org/submissions/56
3 DLNA Player http://competition.meetmeego.org/submissions/20
4 Photographic lightmeter http://competition.meetmeego.org/submissions/12
5 Mieru http://competition.meetmeego.org/submissions/31
6 QSpot http://competition.meetmeego.org/submissions/48
7 Xbmcremote http://competition.meetmeego.org/submissions/50

MeeGo Coding Competition Location & Navigation Category
1 CloudGPS http://competition.meetmeego.org/submissions/81
2 modRana http://competition.meetmeego.org/submissions/80
3 GPS Sport Sniffer http://competition.meetmeego.org/submissions/43
4 Nelisquare http://competition.meetmeego.org/submissions/73
5 Google Places http://competition.meetmeego.org/submissions/71
6 location2sms http://competition.meetmeego.org/submissions/62
7 Bikster http://competition.meetmeego.org/submissions/58
8 FourCircle http://competition.meetmeego.org/submissions/23
9 PGZ Every Trail http://competition.meetmeego.org/submissions/57
10 QMLCompass http://competition.meetmeego.org/submissions/59

MeeGo Coding Competition Network & Communication Category
1 QNetMan http://competition.meetmeego.org/submissions/28
2 Woodchuck http://competition.meetmeego.org/submissions/84
3 Tweed Suit http://competition.meetmeego.org/submissions/29
4 LinkedUp http://competition.meetmeego.org/submissions/44
5 Panic Button http://competition.meetmeego.org/submissions/11
6 Acid Rain http://competition.meetmeego.org/submissions/34
7 qwassr http://competition.meetmeego.org/submissions/30
8 Plurker http://competition.meetmeego.org/submissions/77
9 qgvdial http://competition.meetmeego.org/submissions/53

MeeGo Coding Competition System & Utilities Category
1 Filebox http://competition.meetmeego.org/submissions/66
2 OMWeather http://competition.meetmeego.org/submissions/47
3 MIR Translator http://competition.meetmeego.org/submissions/24
4 KhtEditor http://competition.meetmeego.org/submissions/60
5 QtWeather http://competition.meetmeego.org/submissions/45
6 TxPad http://competition.meetmeego.org/submissions/5
7 Audiobook reader http://competition.meetmeego.org/submissions/27
8 Proximus http://competition.meetmeego.org/submissions/38
9 stockona http://competition.meetmeego.org/submissions/25
10 ItemNoTe http://competition.meetmeego.org/submissions/83
 

The Following 12 Users Say Thank You to neal For This Useful Post:
Helmuth's Avatar
Posts: 1,259 | Thanked: 1,341 times | Joined on Oct 2009 @ Germany
#767
I'm not sure if it is a good idea to publish such a inofficial table. What if the official algorythm works a little bit different?

Think about the disappointment if the ranking next week differs at the official result a little bit in some parts. I would say lets wait before we praise our new King(s).

But thanks for your effort and congratulations to all winners!

And by winners I mean all developers of the contest hence I'm sure they are able to benefit from everything they have learned while participating in this competition. Especially the beginners!
Thank you.

Mh... by whe way... what about creating a small icon, banner or logo for our winners? So a small promotion banner they could use. (1st place at the coding competition 2011 or something like this) Don't know if anybody would like to use this but perhaps...
 

The Following 3 Users Say Thank You to Helmuth For This Useful Post:
Helmuth's Avatar
Posts: 1,259 | Thanked: 1,341 times | Joined on Oct 2009 @ Germany
#768
Mh, and neal... there is something wrong with your results.

The system and utility categorie has 11 participants, not 10 - fun and strange has 5 and not 4 - and at the games we had 21 and in your results are only 18!
 
Posts: 96 | Thanked: 107 times | Joined on Aug 2011
#769
Originally Posted by Helmuth View Post
Mh, and neal... there is something wrong with your results.

The system and utility categorie has 11 participants, not 10 - fun and strange has 5 and not 4 - and at the games we had 21 and in your results are only 18!
I didn't include the last place entry, which is why all categories should have N-1 reported entries, not N. I'm not sure what happened with the games category.
 

The Following User Says Thank You to neal For This Useful Post:
Helmuth's Avatar
Posts: 1,259 | Thanked: 1,341 times | Joined on Oct 2009 @ Germany
#770
Okay, lets wait for the official results. But I guess we can't get them before next week.

Zehjotkah?
 
Reply

Tags
coding, community, competition, contest, development, intel, meego, meetmeego, nokia


 
Forum Jump


All times are GMT. The time now is 10:01.