Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [eclipse.org-eclipsecon-program-committee] ECE 2012 MyFeedback

I totally like the feedback system. However, as the smart ass I am, I explicitly would like to warn about fast conclusions, especially with these low numbers of votes. For geeks: look at the example Java programm attached.
Cheers
Jonas

Am 30.10.2012 18:46, schrieb Benjamin Cabé:
Regarding speaker feedback, attendees are asked to evaluate each
session. The summary report is available at

Awesome! That is enough from my point of view.

Yes that's great indeed!
One thing I think would be useful, even though the number of votes can actually give us hints on that is that it would be great if the FOSSLC folks could count the number of attendees at some point in the middle of each session. A talk with 5x +1 but only 6 participants is probably not any better than one with say 2x +1 but 30 participants.

Another thing, on the evaluation topic: what's the reason why the actual green/white/red physical buckets for putting bulletins is not used anymore? 
I understand that maybe it slows down the change from one room to another at the end of the talk, and it's a logistics overhead, … but drawing a handful of prizes at the end of the conference for ppl who took time for voting _and_ commenting really helps gathering more feedback no?


Benjamin–




_______________________________________________
eclipse.org-eclipsecon-program-committee mailing list
eclipse.org-eclipsecon-program-committee@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/eclipse.org-eclipsecon-program-committee


-- 
Dr. Jonas Helming

Software Engineer / Consultant / General Manager
EclipseSource Munich

Email: jhelming@xxxxxxxxxxxxxxxxx
Web: http://eclipsesource.com/munich
Phone: +49 89 21 555 301 - 1
Fax: +49 89 21 555 301 - 9
Mobile: +49 1703151698

EclipseSource München GmbH
Agnes-Pockels-Bogen 1
80992 München

General Managers: Dr. Jonas Helming, Dr. Maximilian Kögel
Registered Office: Sailerstraße 5, 80809 München, Commercial Register
München, HRB 191789
import java.util.Random;

public class RandomTest {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
			Random random = new Random(15852);
			for (int i = 0; i < 9; i++) {
				System.out.println(random.nextInt(3));
			}

	}

}

Back to the top