Railscamp Melbourne, June 21—24

77 views
Skip to first unread message

Ben Schwarz

unread,
May 14, 2013, 2:10:20 AM5/14/13
to rails-...@googlegroups.com

Ben Schwarz

unread,
May 16, 2013, 10:21:50 PM5/16/13
to rails-...@googlegroups.com
Reminder folks: You have until midnight on Monday to register for Railscamp, so get in the ballot ASAP!

Mike Bailey

unread,
May 16, 2013, 10:45:55 PM5/16/13
to rails-...@googlegroups.com
What process is being used for the ballot draw? 

Has a transparent ballot been considered? Given it's a community event open to anyone I think a transparent process would be good.

- Mike

Sent from my iPhone

On 17/05/2013, at 12:21 PM, Ben Schwarz <ben.s...@gmail.com> wrote:

Reminder folks: You have until midnight on Monday to register for Railscamp, so get in the ballot ASAP!

--
You received this message because you are subscribed to the Google Groups "Ruby or Rails Oceania" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rails-oceani...@googlegroups.com.
To post to this group, send email to rails-...@googlegroups.com.
Visit this group at http://groups.google.com/group/rails-oceania?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Christopher Chow

unread,
May 16, 2013, 11:15:32 PM5/16/13
to rails-...@googlegroups.com
I'm going to guess that the ballot drawing will be done with some sort of simple Ruby script? Be great if that was put up in a gist or repo.

Chris

Tim Lucas

unread,
May 17, 2013, 1:49:43 AM5/17/13
to rails-...@googlegroups.com
On Friday, May 17, 2013 12:45:55 PM UTC+10, Mike Bailey wrote:
What process is being used for the ballot draw? 

Has a transparent ballot been considered? Given it's a community event open to anyone I think a transparent process would be good.

I'm in charge of the ballot, and I'll be trying to make it transparent as practically possible.

The code's open source already:

I'm working on the random allocation script now. I emailed this the other day to the Basecamp we're using to organise the camp:

Aside from those helping to organise the camp, everyone will be in the ballot and randomly allocated from a single run of a yet-to-be-commited Ruby script.

— tim

Ben Hoskings

unread,
May 17, 2013, 1:58:55 AM5/17/13
to rails-...@googlegroups.com
Bah, ruby, who needs it? :)

    UPDATE entrants SET chosen = true WHERE id IN (
      SELECT id FROM entrants ORDER BY random() LIMIT 100
    )


--
You received this message because you are subscribed to the Google Groups "Ruby or Rails Oceania" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rails-oceani...@googlegroups.com.
To post to this group, send email to rails-...@googlegroups.com.
Visit this group at http://groups.google.com/group/rails-oceania?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
Cheers
Ben

Mike Bailey

unread,
May 17, 2013, 2:00:46 AM5/17/13
to rails-...@googlegroups.com
The IETF came up with a cool way of running a selection process.

FWIW, the IETF came up with a cool way of running a selection process
that's protects the organisation against bias (and claims of bias).

It's a really geeky thing to do but pretty cool at the same time. You
decide on a publicly observable source of randomness and publish the
algorithm you'll use using to apply it to the candidates.

I'd be happy to write a script if we wanted to use it.

- Mike

http://www.ietf.org/rfc/rfc2777.txt

Publicly Verifiable Nomcom Random Selection

This document describes a method for making random selections in such
a way that the unbiased nature of the choice is publicly verifiable.

As an example, the selection of the voting members of the IETF
Nominations Committee from the pool of eligible volunteers is used.
Similar techniques would be applicable to other cases.

Warren Seen

unread,
May 17, 2013, 2:04:52 AM5/17/13
to rails-...@googlegroups.com
Randomness as a Service: http://www.random.org/clients/http/

:)

Philip Arndt

unread,
May 17, 2013, 2:08:51 AM5/17/13
to rails-...@googlegroups.com
I think we should *seriously* consider having a police officer draw out names from a barrel which they spin before each selection.

Gus Gollings

unread,
May 17, 2013, 2:56:59 AM5/17/13
to rails-...@googlegroups.com
On 17/05/2013, at 3:58 PM, Ben Hoskings <b...@hoskings.net> wrote:

> Bah, ruby, who needs it? :)
>
> UPDATE entrants SET chosen = true WHERE id IN (
> SELECT id FROM entrants ORDER BY random() LIMIT 100
> )

Ha! That's awesome ;)

I was thinking:

>> entrants.shuffle.first(QUOTA)

BTW, I wonder if ballot is the wrong word? It's not really a vote.

Perhaps a raffle or lottery is more the activity at hand.

Regards,

Gus

Ben Schwarz

unread,
May 17, 2013, 3:01:14 AM5/17/13
to rails-...@googlegroups.com
The site code is already available on my github account — the ballot will be a random script written by Tim & I. 
I'd rather not get into the community reviewing our code or creating further overhead for us. 

… You'll see the code committed on github, I don't think anyone needs to see more than that.

Ben Taylor

unread,
May 17, 2013, 3:00:56 AM5/17/13
to rails-...@googlegroups.com
BTW, I wonder if ballot is the wrong word? It's not really a vote.
In this case, perhaps the one doing the voting is Rails itself. Making this a true Rails Camp.

Although it's using Sinatra… so not Rails. Which fits with my experiences at Rails Camp.

- Ben

fresh...@gmail.com

unread,
May 17, 2013, 3:40:16 AM5/17/13
to rails-...@googlegroups.com
Nah, at Rails Camp it would be something written in Go that compiles to asm.js.
James

Jon Rowe

unread,
May 17, 2013, 3:45:25 AM5/17/13
to rails-...@googlegroups.com
Please… Real RailsCampers use butterflies...

Jon Rowe
-----------------------------

Ben Taylor

unread,
May 17, 2013, 3:45:02 AM5/17/13
to rails-...@googlegroups.com
And then converted to JSFuck? http://www.jsfuck.com/

- Ben

Tim Lucas

unread,
May 17, 2013, 7:50:17 AM5/17/13
to rails-...@googlegroups.com
Mike: neat! Pull request? ;) If not let me know, as I'll just do the simpler and probably sufficient, but decidedly less cool, one-liner SQL. We've plenty else to chew off in the next few weeks…

Mike Bailey

unread,
May 17, 2013, 9:59:34 AM5/17/13
to rails-...@googlegroups.com
I'd be happy to write it over the weekend. Peer review would be appreciated. :-)

- Mike

Sent from my iPhone

On 17/05/2013, at 9:50 PM, Tim Lucas <t.l...@toolmantim.com> wrote:

> Mike: neat! Pull request? ;) If not let me know, as I'll just do the simpler and probably sufficient, but decidedly less cool, one-liner SQL. We've plenty else to chew off in the next few weeks…
>

Tim Lucas

unread,
May 17, 2013, 8:44:29 PM5/17/13
to rails-...@googlegroups.com
On Friday, May 17, 2013 11:59:34 PM UTC+10, Mike Bailey wrote:
I'd be happy to write it over the weekend. Peer review would be appreciated. :-)

Cool, please do! In the mean time I've just finished a simple version of selection script which we can run on Tuesday morning:

Feel to get hold of me (email, twitter DM, github comment) if you have any questions…

— tim

Reply all
Reply to author
Forward
0 new messages