Members Full List

If you're going to add your info here, you probably want to add your name to the Short list too.

We're going to try to scrape this data at some point, so it's important to keep the format consistent.

Do something like this (figure we can make it look like YAML and just parse it):

<pre>
unique_id:
  key: value
</pre>

Where key is one of the following fields (feel free to add to this list, but we need to keep consistent)

 name, email, blog, www, irc, aim, msn, gtalk, yahoo, twitter, friendfeed, company, projects

Here's a base template to get you started:

your_identifier:
  name: 
  email: 
  blog: 
  twitter: 
  company: 
  projects:
   - project 1
   - project 2

Let's keep entries alphabetized by last name to make it easier to find people manually.

FullList

Then, all we have to do to scrape it is:

1 require 'rubygems'
2 require 'open-uri'
3 require 'pp'
4 
5 pp YAML::load(open('http://wiki.railsbridge.org/projects/railsbridge/wiki/Full_List?format=txt'))