<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://microformats.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rohit</id>
	<title>Microformats Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://microformats.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rohit"/>
	<link rel="alternate" type="text/html" href="https://microformats.org/wiki/Special:Contributions/Rohit"/>
	<updated>2026-04-19T15:04:43Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.4</generator>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=admin-how-to&amp;diff=45470</id>
		<title>admin-how-to</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=admin-how-to&amp;diff=45470"/>
		<updated>2012-02-06T19:08:22Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* web server restart */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;admin how-to&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is a reference for various tasks that admins may have to perform.&lt;br /&gt;
&lt;br /&gt;
== web server restart ==&lt;br /&gt;
If you're reading this then either the server is up, or the server is down and you're reading a Google Cache copy (thus it's still useful to post this here).&lt;br /&gt;
&lt;br /&gt;
If the web server is down, e.g. someone notes on [[IRC]] or Twitter:&lt;br /&gt;
* &amp;quot;if any of the microformats.org website admins are on, the site is down.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Then:&lt;br /&gt;
&lt;br /&gt;
* ssh into the server&lt;br /&gt;
* check for web server errors (sometimes this can reveal the source of a problem)&lt;br /&gt;
** &amp;lt;code&amp;gt;tail /var/log/httpd/error_log&amp;lt;/code&amp;gt;&lt;br /&gt;
* find the apache install (it might not be where you expect it or it might have moved)&lt;br /&gt;
** &amp;lt;code&amp;gt;locate apache&amp;lt;/code&amp;gt;&lt;br /&gt;
* then using the full path to &amp;quot;apachectl&amp;quot; (rather than just &amp;quot;apachectl&amp;quot; in the command)&lt;br /&gt;
** &amp;lt;code&amp;gt;sudo apachectl -k restart&amp;lt;/code&amp;gt;&lt;br /&gt;
* if you get an error like:&lt;br /&gt;
** &amp;lt;code&amp;gt;(98)Address already in use: make_sock: could not bind to address 0.0.0.0:80&amp;lt;/code&amp;gt;&lt;br /&gt;
* then see if there are any existing stalled restart processes by doing:&lt;br /&gt;
** &amp;lt;code&amp;gt;ps -eaf | grep http&amp;lt;/code&amp;gt;&lt;br /&gt;
* if you see any processes like:&lt;br /&gt;
** &amp;lt;code&amp;gt; 1337 ?        S      0:44 httpd -k restart&amp;lt;/code&amp;gt;&lt;br /&gt;
** &amp;lt;code&amp;gt;31337 ?        S      0:44 httpd -k restart&amp;lt;/code&amp;gt;&lt;br /&gt;
* then kill them using their id (that first number) like:&lt;br /&gt;
** &amp;lt;code&amp;gt;sudo kill -9 1337&amp;lt;/code&amp;gt;&lt;br /&gt;
* if there are too many to do individually, you can also use:&lt;br /&gt;
** &amp;lt;code&amp;gt;sudo killall -9 httpd&amp;lt;/code&amp;gt;&lt;br /&gt;
* re-run the ps command:&lt;br /&gt;
** &amp;lt;code&amp;gt;ps -eaf | grep http&amp;lt;/code&amp;gt;&lt;br /&gt;
* it should be the only thing running with &amp;quot;http&amp;quot; in the name, e.g.&lt;br /&gt;
** &amp;lt;code&amp;gt;25252 pts/0    S+     0:00 grep http&amp;lt;/code&amp;gt;&lt;br /&gt;
* at this point, try restarting the apache server again:&lt;br /&gt;
** &amp;lt;code&amp;gt;sudo apachectl -k restart&amp;lt;/code&amp;gt;&lt;br /&gt;
* and you should see:&lt;br /&gt;
** &amp;lt;code&amp;gt;httpd not running, trying to start&amp;lt;/code&amp;gt;&lt;br /&gt;
* now try browsing to http://microformats.org/ and make sure it loads&lt;br /&gt;
* report back on IRC or Twitter to whoever pointed out that the server was down.&lt;br /&gt;
&lt;br /&gt;
=== semaphore exhaustion ===&lt;br /&gt;
&lt;br /&gt;
This is a much rarer error state: Apache error log stating: &amp;lt;code&amp;gt;[emerg] (28)No space left on device: Couldn't create accept lock (/etc/httpd/run/accept.lock.NNNN) (5)&amp;lt;/code&amp;gt;. Thanks to http://rackerhacker.com/2007/08/24/apache-no-space-left-on-device-couldnt-create-accept-lock/ for the hint.&lt;br /&gt;
&lt;br /&gt;
* If the output of &amp;lt;code&amp;gt;sudo ipcs -s&amp;lt;/code&amp;gt; is lots of lines of dead apache process IDs leaving semaphores behind:&lt;br /&gt;
** &amp;lt;code&amp;gt;sudo sh&amp;lt;/code&amp;gt;&lt;br /&gt;
** &amp;lt;code&amp;gt;for i in `ipcs -s | awk '{print $2}'`; do (ipcrm -s $i); done&amp;lt;/code&amp;gt;&lt;br /&gt;
* you will see two lines of erroneous output:&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;code&amp;gt;ipcrm: invalid id (Semaphore)&amp;lt;/code&amp;gt;&lt;br /&gt;
** &amp;lt;code&amp;gt;ipcrm: invalid id (semid)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
… and then proceed to restart as before.&lt;br /&gt;
&lt;br /&gt;
== server transition testing ==&lt;br /&gt;
Some things to check when transitioning to / setting up a new server.&lt;br /&gt;
&lt;br /&gt;
=== editing your local hosts file ===&lt;br /&gt;
In order to test a new server from your local machine and still have hardcoded URL references work, you may need to manually edit your local machine's hosts file, per:&lt;br /&gt;
&lt;br /&gt;
http://www.howtogeek.com/howto/27350/beginner-geek-how-to-edit-your-hosts-file/&lt;br /&gt;
&lt;br /&gt;
* Add the line: &amp;lt;source lang=text&amp;gt;64.207.154.205 www.microformats.org microformats.org&amp;lt;/source&amp;gt; to the hosts file on your local machine.&lt;br /&gt;
* Do the flush cache tip as described below.&lt;br /&gt;
* Restart your browser&lt;br /&gt;
&lt;br /&gt;
Your browser should now behave *exactly* as if you'd switched actual DNS. &lt;br /&gt;
&lt;br /&gt;
This makes it a very good way to test.&lt;br /&gt;
&lt;br /&gt;
=== DNS flush cache tips ===&lt;br /&gt;
If you're using OSX, you'll probably have to run this to flush the local dns cache:&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;dscacheutil -flushcache&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== current servers being tested ===&lt;br /&gt;
* http://mt.microformats.org/&lt;br /&gt;
&lt;br /&gt;
=== home and blog ===&lt;br /&gt;
* home page: http://microformats.org/&lt;br /&gt;
* blog permalink: ...&lt;br /&gt;
* logging into WordPress: ...&lt;br /&gt;
&lt;br /&gt;
=== wiki ===&lt;br /&gt;
* wiki home: http://microformats.org/wiki/&lt;br /&gt;
* logging in: http://microformats.org/wiki/Special:UserLogin&lt;br /&gt;
* logged in wiki home (should just take you there automatically)&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== irc bots ===&lt;br /&gt;
* does editing a wiki page result in the bot noticing and outputting the diff to irc://irc.freenode.net/microformats ?&lt;br /&gt;
&lt;br /&gt;
=== profiles ===&lt;br /&gt;
* http://microformats.org/profile/hcard&lt;br /&gt;
&lt;br /&gt;
=== media ===&lt;br /&gt;
* audio / video recordings of talks&lt;br /&gt;
* ... need URLs ...&lt;br /&gt;
&lt;br /&gt;
=== mailing list archives ===&lt;br /&gt;
* ...&lt;br /&gt;
=== shorteners ===&lt;br /&gt;
* http://microformats.org/w/hcard should go to http://microformats.org/wiki/hcard&lt;br /&gt;
* http://microformats.org/x/hcard#fn should go to http://microformats.org/profile/hcard#fn&lt;br /&gt;
&lt;br /&gt;
=== other ===&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== attack logs ==&lt;br /&gt;
Note any logs / summaries of attacks. Anything more than a summary should be moved to its own page.&lt;br /&gt;
* 2012-02-01 openlinksw were issue excessive http requests, sufficient to unacceptably increase user access latency. banned an IP.&lt;br /&gt;
* 2010-10-31 Banned demo.OpenLinkSW.com by IP, 63.119.36.50 -Rohit&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
* [[admins]]&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=meetup&amp;diff=40031</id>
		<title>meetup</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=meetup&amp;diff=40031"/>
		<updated>2009-07-28T22:27:30Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* San Francisco */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Weekly Meetups &amp;amp; Dinners&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
{{TOC-right}}&amp;lt;div&amp;gt;http://farm4.static.flickr.com/3216/2836380076_9251390ded_m.jpg&amp;lt;/div&amp;gt; A regular source of microformats [[events]].&lt;br /&gt;
== Weekly Meetup ==&lt;br /&gt;
The community and adoption have grown considerably over the last year, and news of adoptions (and once in a while challenges) come up frequently enough ([http://news.google.com/news?q=microformats&amp;amp;ie=UTF-8&amp;amp;scoring=n at least once a week]) that there are no shortage of new topics to discuss on a weekly basis. See [[weekly-meetup#purpose|purpose]] for more.&lt;br /&gt;
&lt;br /&gt;
[[weekly-meetup#Organize_a_weekly_meetup|Organize a weekly meetup]]!&lt;br /&gt;
&lt;br /&gt;
By making this a regular (every Tuesday) event, people know it is happening regularly and can thus come whichever ones are convenient for them, and not worry about missing any one in particular.&lt;br /&gt;
&lt;br /&gt;
Cities where weekly meetup events are held, sorted alphabetically:&lt;br /&gt;
&lt;br /&gt;
== London ==&lt;br /&gt;
In London, Tuesdays at 7:30pm worked well.&lt;br /&gt;
&lt;br /&gt;
Interested in general for London:&lt;br /&gt;
* [[User:Phae|Frances]]&lt;br /&gt;
* [[User:GeorgeBrock|George Brocklehurst]]&lt;br /&gt;
* [http://twitter.com/ptg/statuses/906735728 Patrick Griffiths]&lt;br /&gt;
* [[User:Spiritquest|Ketan Majmudar ]]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
Possible locations:&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
Past London venues:&lt;br /&gt;
* [http://www.squaremeal.co.uk/restaurants/london/view/81375/Wagamama Wagamama at New Oxford St. &amp;amp; Bloomsbury St.]: [[events/2008-09-02-london-meetup-dinner|2008-09-02]]&lt;br /&gt;
* [http://upcoming.yahoo.com/venue/213236/ The Princess at 76 Paul St.]: [[events/2008-09-09-london-meetup-dinner|2008-09-09]]&lt;br /&gt;
&lt;br /&gt;
== San Francisco ==&lt;br /&gt;
From having informally asked a few folks in the SF area and on IRC it seems Tuesdays at 19:00 (7pm, .79, .08Z, @125) work best, with a rotating venue to keep it interesting.&lt;br /&gt;
&lt;br /&gt;
Additional suggested SF venues (suggester). Add your opinions and more suggestions:&lt;br /&gt;
* Osha Thai on 2nd st.&lt;br /&gt;
* Thirsty Bear&lt;br /&gt;
** +0 ok food, often too crowded for a group to actually get seating, though we did hold a [[events/2007-04-18-web-2-expo-dinner|microformats dinner there last year]] somehow. I think John Allsopp sweet talked the hostess. - [[User:Tantek|Tantek]]&lt;br /&gt;
* Mel's Diner&lt;br /&gt;
** +0 hard to order healthy here, but the food mostly tastes good, and can probably get seating for a decent crowd at 6:30pm - [[User:Tantek|Tantek]]&lt;br /&gt;
* Sugar Cafe&lt;br /&gt;
* Axis Cafe&lt;br /&gt;
* Naan &amp;amp; Curry on O'Farrell &amp;amp; Mason&lt;br /&gt;
* [http://www.yelp.com/biz/a-la-turca-restaurant-san-francisco A La Turca Restaurant]&lt;br /&gt;
* [http://www.henryshunanrestaurant.com/ Henry's Hunan] -- great for large groups in the evenings; the Natoma location in SoMa is open until 9PM.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== past SF venues ===&lt;br /&gt;
Past SF venues. We'll reuse these at some point I'm sure.&lt;br /&gt;
&lt;br /&gt;
'''This section needs updating with dinners that have occurred since 2008-10-28.'''&lt;br /&gt;
&lt;br /&gt;
Please update the following list by looking at [[events-2008]] and more recent [[events]], and add links (even just one more would help!) to dinners starting from the &amp;quot;since&amp;quot; date above, and update that date accordingly so that other contributors know where to continue updating from. Thanks!&lt;br /&gt;
&lt;br /&gt;
* Chaat Cafe: [[events/2008-06-24-weekly-meetup-dinner|2008-06-24]], [[events/2008-07-22-weekly-meetup-dinner|2008-07-22]]&lt;br /&gt;
* Crepes on Cole: [[events/2008-07-01-weekly-meetup-dinner|2008-07-01]]&lt;br /&gt;
* Westfield Food Court: [[events/2008-07-08-weekly-meetup-dinner|2008-07-08]], [[events/2008-08-19-weekly-meetup-dinner|2008-08-19]]&lt;br /&gt;
* South Park (lunch) : [[events/2008-07-15-weekly-meetup-lunch|2008-07-15]], [[events/2008-09-23-sf-weekly-meetup-lunch|2008-09-23]]&lt;br /&gt;
* Chevy's SOMA: [[events/2008-07-29-weekly-meetup-dinner|2008-07-29]]&lt;br /&gt;
* Brickhouse Cafe: [[events/2008-08-05-weekly-meetup-dinner|2008-08-05]]&lt;br /&gt;
* Pancho Villa: [[events/2008-08-12-weekly-meetup-dinner|2008-08-12]]&lt;br /&gt;
* 21st Amendment: [[events/2008-08-26-weekly-meetup-dinner|2008-08-26]],  [[events/2008-09-16-sf-weekly-meetup-dinner|2008-09-16]], [[events/2008-10-28-sf-weekly-meetup-dinner|2008-10-28]]&lt;br /&gt;
* Blondie's Pizza on Powell st: [[events/2008-09-02-weekly-meetup-dinner|2008-09-02]]&lt;br /&gt;
* Metreon Food Court: [[events/2008-09-09-weekly-meetup-dinner|2008-09-09]]&lt;br /&gt;
* Naan &amp;amp; Chutney on Haight st.: [[events/2008-09-30-sf-weekly-meetup-dinner|2008-09-30]]&lt;br /&gt;
* Taylor's Automatic Refresher: [[events/2008-10-14-sf-weekly-meetup-dinner|2008-10-14]]&lt;br /&gt;
* Mehfil: [[events/2008-10-21-sf-weekly-meetup-dinner|2008-10-21]]&lt;br /&gt;
* 3rd Street Grill&lt;br /&gt;
* California Pizza Kitchen on 3rd&lt;br /&gt;
* Crepevine on Church&lt;br /&gt;
&lt;br /&gt;
== Other Cities ==&lt;br /&gt;
Want a microformats meetup in your city? Organize one! Add your city and name to this list. Contact others from your city and [[weekly-meetup#Organize_a_weekly_meetup|organize a meetup]]. Once you do one, add another section for your city above this &amp;quot;Other Cities&amp;quot; section, and list suggested venues, past venues with links to meetup event pages etc.&lt;br /&gt;
&lt;br /&gt;
There has been some interest expressed in organizing dinners in the following cities. Add yourself and/or contact the people listed and make it happen!&lt;br /&gt;
* Austin - [[irc]] Atamido&lt;br /&gt;
* Kansas City - [http://twitter.com/dckc/statuses/1116151301 Dan Connolly]&lt;br /&gt;
* Montreal - [[User:Csarven|Sarven Capadisli]]&lt;br /&gt;
* San Diego - [[User:EdwardOConnor]]&lt;br /&gt;
* San Jose (South Bay) - [[User:Kevin_Marks|Kevin Marks]], Rohit Khare&lt;br /&gt;
* Seattle, WA - [[User:jandrick|Jeremiah Andrick]], Colin Henry, Andy Woods&lt;br /&gt;
&lt;br /&gt;
== Organize a weekly meetup ==&lt;br /&gt;
Anyone can organize a microformats weekly meetup or dinner!&lt;br /&gt;
&lt;br /&gt;
At a minimum, all you need is:&lt;br /&gt;
# '''At least one other person''' that commits to go (so at least you know you'll have a good conversation about microformats with at least one person).&lt;br /&gt;
# '''A location'''&lt;br /&gt;
&lt;br /&gt;
And organizing a weekly meetup requires you to at a minimum:&lt;br /&gt;
# '''Pick a location'''&lt;br /&gt;
# '''Announce it''' (location at 18:30, Tuesday) on various event sites and notification services like Twitter etc.&lt;br /&gt;
&lt;br /&gt;
That's it. If you prefer a step-by-step list of instructions and details, to remove nearly all doubt, here you go:&lt;br /&gt;
# Pick a location&lt;br /&gt;
#* Ask folks on [[IRC]] if they have any suggested locations.&lt;br /&gt;
#* Consider locations that are easy for a variety of people to transit to.&lt;br /&gt;
#* Consider a new location to keep it interesting.&lt;br /&gt;
# Create the Events Pages&lt;br /&gt;
## Create specific event page on microformats.org wiki, follow the form &amp;lt;code&amp;gt;YYYY-MM-DD-weekly-dinner-CITYCODE&amp;lt;/code&amp;gt; — e.g. &amp;lt;samp&amp;gt;2009-01-06-weekly-dinner-sf&amp;lt;/samp&amp;gt; in San Francisco, or &amp;lt;samp&amp;gt;2009-01-06-weekly-dinner-ldn&amp;lt;/samp&amp;gt; in London.&lt;br /&gt;
##* Copy the Weekly Dinner template code ([[weekly-meetup#Event_Template|below]]), and make the following edits: &lt;br /&gt;
##** Update dates and locations in the infobox at the top. &lt;br /&gt;
##** Update the tags list, adding the event specific tag for this event.&lt;br /&gt;
##** Update the URLs for Upcoming, Technorati, Google Blog Search and Flickr. These search on the event tag itself, so need to date portion updated.&lt;br /&gt;
##** Add yourself as an attendee&lt;br /&gt;
##** (For SF weekly meetup dinners, [[MatthewLevine|Matthew Levine]] has created a script to automatically generate wiki page source by parsing the [[hCalendar]] from the related [http://upcoming.org upcoming] event. To use this script, create an upcoming event '''first''', then visit &amp;lt;kbd&amp;gt;http://www.phusikos.com/event.php?upcoming_id=$upcoming_id&amp;lt;/kbd&amp;gt;, e.g. [http://www.phusikos.com/event.php?upcoming_id=2656901 sample conversion link].)&lt;br /&gt;
## Create an [http://upcoming.org upcoming] event, summarizing the event and linking to the new wiki page you just created.&lt;br /&gt;
##* Just after creating the event, Upcoming gives you the option to &amp;quot;upload an official photo or image&amp;quot;, click that link and upload &amp;lt;nowiki&amp;gt;http://farm4.static.flickr.com/3216/2836380076_9251390ded.jpg&amp;lt;/nowiki&amp;gt;, making it the official photo for the event. Thanks to [http://www.flickr.com/photos/cindyli/2836380076 Cindy Li for the cool microformats meetup graphic!].&lt;br /&gt;
##* Add the event to the Microformats, Web2.0, Bay Area Web Geeks, Web Developers, Geek Dinners and Social Network Portability groups.&lt;br /&gt;
##* Update the wiki events page with Upcoming.org event tag (&amp;lt;samp&amp;gt;upcoming:event=00000000&amp;lt;/samp&amp;gt;) you just created. You can copy and paste the previous meetup/dinner summary and change the relevant detail.&lt;br /&gt;
# '''Announce it'''&lt;br /&gt;
#* [http://twitter.com/ Tweet] the upcoming event&lt;br /&gt;
#* On the day of the event, post a reminder in the morning (to Twitter etc.), and again an hour before the event.&lt;br /&gt;
# At the event, take a photo and post it to BrightKite, Flickr etc.&lt;br /&gt;
# Afterwards&lt;br /&gt;
#* Post a thank you note thanking those that attended, invite them to add their content to the wiki.&lt;br /&gt;
#* Update the wiki event page with details of discussions, photographs, blog links and so forth.&lt;br /&gt;
&lt;br /&gt;
===Event Template===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&amp;lt;entry-title&amp;gt;Microformats Weekly Dinner, San Francisco&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
__TOC__&lt;br /&gt;
One of several microformats [[weekly-meetup]] [[events]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;event-page vevent&amp;quot;&amp;gt;&lt;br /&gt;
== Details ==&lt;br /&gt;
;When&lt;br /&gt;
:&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-MM-DDT18:30-0800&amp;lt;/span&amp;gt; to &amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;2009-MM-DDT20:30-0800&amp;lt;/span&amp;gt;&lt;br /&gt;
;Where&lt;br /&gt;
:&amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;TBA&amp;lt;/span&amp;gt;&lt;br /&gt;
;What&lt;br /&gt;
:&amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;Microformats Weekly Meetup Dinner, San Francisco&amp;lt;/span&amp;gt;&lt;br /&gt;
;Web&lt;br /&gt;
:&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/00000000/&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''[http://feeds.technorati.com/events/referer Add this event to your calendar]''' http://www.boogdesign.com/images/buttons/microformat_hcalendar.png&lt;br /&gt;
&lt;br /&gt;
== Weekly Meetup ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;description&amp;quot;&amp;gt;The microformats community has grown and stablized over the past few years, news of adoptions, new ideas and challenges come up frequently enough that there are no shortage of new topics to discuss on a weekly basis.&lt;br /&gt;
&lt;br /&gt;
Come along, meet up with the microformats community in San Francisco &lt;br /&gt;
&lt;br /&gt;
In another city? Check out [[weekly-meetup#Other_Cities|Weekly Meetup: Other Cities]] and help organize one in your own city!&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Tags ==&lt;br /&gt;
Use the following tags on related content (blog posts, photos, [http://twitter.com tweets]):&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
Event author: &lt;br /&gt;
* replace &amp;quot;EVENTSPECIFICTAG&amp;quot; in the below text with a tag unique to the event, i.e. short name of event + (optional location) + (full-year or sequence number), e.g. BarCampBlock2007, FooCampLondon2007, SHDH22, SXSW2008, microformats-dinner-2009-MM-DD - update MM and DD to the Gregorian month and day of the month accordingly).&lt;br /&gt;
* replace &amp;quot;san-francisco&amp;quot; with the city where the event is taking place&lt;br /&gt;
* update the Upcoming.org event machine tag, too.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
tags:&lt;br /&gt;
&amp;lt;kbd class=&amp;quot;tags&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;'''microformats-dinner'''&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats-meetup&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;san-francisco&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;''microformats-dinner-2009-MM-DD''&amp;lt;/span&amp;gt; &amp;lt;!-- This is your event-date-specific tag, update MM and DD to the Gregorian month and day of the month accordingly --&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;''upcoming:event=00000000''&amp;lt;/span&amp;gt; &amp;lt;!-- Add/update this tag when you create the respective upcoming.org event --&amp;gt;&lt;br /&gt;
&amp;lt;/kbd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you use Twitter, mention ''@microformats dinner''' in tweets about the event, and track them on [http://search.twitter.com/search?q=microformats+dinner Twitter Search].&lt;br /&gt;
&lt;br /&gt;
== Attendees ==&lt;br /&gt;
Add yourself alphabetically sorted by family name if you plan on attending or attended this event.&lt;br /&gt;
&lt;br /&gt;
* [[User:YourName|You]]&lt;br /&gt;
* …&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
Topics Discussed:&lt;br /&gt;
&lt;br /&gt;
* …&lt;br /&gt;
&lt;br /&gt;
== Photographs ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Event Author: Update the following URL to use this event's tag --&amp;gt;&lt;br /&gt;
* Search for photographs from this event on Flickr: [http://flickr.com/photos/tags/microformats-dinner-2009-MM-DD Photographs tagged microformats-dinner-2009-MM-DD] or for [http://flickr.com/photos/tags/microformats-dinner all photographs from microformats dinners].&lt;br /&gt;
&lt;br /&gt;
''Add a photograph from this event here''.&lt;br /&gt;
&lt;br /&gt;
== Articles and Blog Posts ==&lt;br /&gt;
Articles and blog posts following up on the meetup. Add a link to your post in the list below:&lt;br /&gt;
&lt;br /&gt;
* …&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Event Author: Update the following URL to use this event's tag --&amp;gt;&lt;br /&gt;
Also, find posts on this meetup on [http://blogsearch.google.co.uk/blogsearch?q=microformats-dinner-2009-MM-DD Google Blog Search] or [http://technorati.com/search/microformats-dinner-2009-MM-DD Technorati].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt; &amp;lt;!-- End of @vevent --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Related Pages==&lt;br /&gt;
{{events-related-pages}}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== purpose ==&lt;br /&gt;
In addition to providing a convenient forum for community members to get together once in a while and talk about the [http://news.google.com/news?q=microformats&amp;amp;ie=UTF-8&amp;amp;scoring=n latest news about microformats], the weekly meetups serve many good ends.&lt;br /&gt;
&lt;br /&gt;
Perhaps most importantly, weekly meetups really help communication and community. People that have met in person usually treat each other nicer online, thus very much help encourage everyone to [[mailing-list#Be_nice|be nice]] in IRC, mailing lists etc.&lt;br /&gt;
&lt;br /&gt;
== FAQ ==&lt;br /&gt;
Perhaps move to [[weekly-meetup-faq]] if this section gets too big.&lt;br /&gt;
&lt;br /&gt;
=== general talk ===&lt;br /&gt;
* Q: Do you just talk in general about microformats?&lt;br /&gt;
* A: As there's been new people at every microformat meetup, there's almost always at least some general talk about microformats.&lt;br /&gt;
&lt;br /&gt;
=== newcomers vs detail ===&lt;br /&gt;
* Q: How do you handle newcomers and at the same time get into detailed stuff? &lt;br /&gt;
* A: Usually there are multiple conversations going, so there's almost always a good conversation to participate in. Also, it helps everyone to talk with newcomers and get fresh perspectives, as well as practiced at effectively communicating [[what-are-microformats|what microformats are]], [[benefits]], [[get-started|how to use]] etc.&lt;br /&gt;
&lt;br /&gt;
=== existing issues ===&lt;br /&gt;
* Q: Do you try to solve some existing issues?&lt;br /&gt;
* A: We have discussed existing issues in some past meetups. Often divisive or controversial topics are much easier to discuss and understand multiple perspectives on in person.  For example, [[User:BenWard|Ben Ward]] and [[User:Tantek|Tantek]] have made some good progress on understanding various perspectives on [[value-excerption-brainstorming]] and are optimistic about making progress on related issues.&lt;br /&gt;
&lt;br /&gt;
=== notes ===&lt;br /&gt;
* Q: Do you take notes?&lt;br /&gt;
* A: Everyone is encouraged to take notes and contribute aspects of conversations, topics etc. on the wiki page for the meetup.&lt;br /&gt;
&lt;br /&gt;
== related ==&lt;br /&gt;
* [[weekly-meetup-brainstorming]] to capture how to make the meet-up more exciting and give more practical use-cases&lt;br /&gt;
* [[events]]&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hcard-contact-autocompletion&amp;diff=39979</id>
		<title>hcard-contact-autocompletion</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hcard-contact-autocompletion&amp;diff=39979"/>
		<updated>2009-07-26T21:31:12Z</updated>

		<summary type="html">&lt;p&gt;Rohit: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;hCard contact autocompletion&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
aka '''microBrother'''&lt;br /&gt;
&lt;br /&gt;
One of several [http://tr.im/ufps projects] at [[events/2009-07-25-dev-camp|microformatsDevCamp]].&lt;br /&gt;
&lt;br /&gt;
== summary ==&lt;br /&gt;
&lt;br /&gt;
The idea is &amp;quot;Caller ID '2.0'&amp;quot;: given a partial hCard and a friends list (twitter following, facebook friend connect, etc.), auto-fill the hCard with additional info from such services.&lt;br /&gt;
&lt;br /&gt;
== participants ==&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Rohit Khare&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Edward O'Connor&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Kevin Burton&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Lauren Scime&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== code ==&lt;br /&gt;
&lt;br /&gt;
* UI / frontend: please link&lt;br /&gt;
* [http://github.com/hober/ufdevcamp-ubro/tree/master flickr backend and integration point]&lt;br /&gt;
* fbconnect backend: [http://mmc.angstro.com/~rk-t/fbc.html fbConnect hCard Export]&lt;br /&gt;
* twitter backend: superceded by hober's script&lt;br /&gt;
** lame 1-liner that checks your 100 most recent flicker following list: ''curl -s -o- http://twitter.com/statuses/friends/rohitkhare.xml | grep -C1 -i &amp;quot;&amp;lt;name&amp;gt;.*Stone.*&amp;lt;/name&amp;gt;&amp;quot;''&lt;br /&gt;
* YQL / backend: please link&lt;br /&gt;
&lt;br /&gt;
== related topics ==&lt;br /&gt;
* [http://www.flickr.com/photos/factoryjoe/tags/nascar Nascar problem]&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
* [[hcard]]&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39977</id>
		<title>events/2009-07-25-dev-camp</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39977"/>
		<updated>2009-07-26T21:20:43Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* projects */  attribution of autocomplete&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;microformatsDevCamp&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;event-page vevent&amp;quot;&amp;gt;&lt;br /&gt;
;When&lt;br /&gt;
:&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-25&amp;lt;/span&amp;gt; from &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;12:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; to &amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-26&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;17:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
;Where&lt;br /&gt;
:&amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;org fn&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;&amp;lt;em style=&amp;quot;border-bottom:dotted 1px&amp;quot; title=&amp;quot;Pier 38 is NOWHERE NEAR Pier 39, just to be clear. Pier 38 is SOUTH of the Bay Bridge.&amp;quot;&amp;gt;Pier 38&amp;lt;/em&amp;gt;, The Embarcadero between Brannan and Townsend&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;CA&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;94107&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;geo&amp;quot;&amp;gt;[http://maps.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;view=map&amp;amp;q=%2BAutomattic,+The+Embarcadero,+San+Francisco,+CA+94107&amp;amp;sll=37.752736,-122.402826&amp;amp;sspn=0.13844,0.217667&amp;amp;gl=us&amp;amp;ie=UTF8&amp;amp;t=h&amp;amp;layer=c&amp;amp;cbll=37.782877,-122.388062&amp;amp;panoid=kB1DhzPP5DYl5pgHBRxdPg&amp;amp;cbp=12,123.84,,0,2.44&amp;amp;ll=37.783053,-122.388044&amp;amp;spn=0,359.996599&amp;amp;z=18 View location at latitude:&amp;lt;span class=&amp;quot;latitude&amp;quot;&amp;gt;37.782769&amp;lt;/span&amp;gt;, longitude:&amp;lt;span class=&amp;quot;longitude&amp;quot;&amp;gt;-122.387837&amp;lt;/span&amp;gt;]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
:'''MUNI''': [http://playfoursquare.com/venue/72202 Brannan] (N,T)&lt;br /&gt;
:'''BART''': Embarcadero station, then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__IB3&amp;amp;s=6992&amp;amp;ts=4506 take MUNI N-Judah inbound] or T-Third inbound to Brannan stop.&lt;br /&gt;
:'''Caltrain''': 4th &amp;amp; King st., then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__OB2&amp;amp;s=5240&amp;amp;ts=7145 take MUNI N-Judah outbound] or T-Third outbound to Brannan stop.&lt;br /&gt;
;What&lt;br /&gt;
:&amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;microformatsDevCamp!&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;The first ever microformatsDevCamp, for authors, designers, publishers, developers, engineers building pages, sites, and tools with microformats.&amp;lt;/span&amp;gt;&lt;br /&gt;
;How much&lt;br /&gt;
:$20 suggested donation (gets you a t-shirt while supplies last). &amp;lt;em style=&amp;quot;display:block&amp;quot;&amp;gt;No one turned away for lack of funds.&amp;lt;/em&amp;gt;&lt;br /&gt;
;URLs&lt;br /&gt;
:&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://microformats.org/wiki/events/2009-07-25-dev-camp&amp;lt;/span&amp;gt;&lt;br /&gt;
:http://upcoming.yahoo.com/event/2888376/&lt;br /&gt;
:http://www.facebook.com/event.php?eid=102571118403&lt;br /&gt;
;short URL&lt;br /&gt;
:http://tr.im/ufdevcamp&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''[http://suda.co.uk/projects/microformats/hcalendar/get-cal.php?uri=http://microformats.org/wiki/events/2009-07-25-dev-camp Add this event to your calendar]''' http://www.boogdesign.com/images/buttons/microformat_hcalendar.png&lt;br /&gt;
&lt;br /&gt;
== Sponsors == &lt;br /&gt;
microformatsDevCamp is made possible thanks to the generosity of our corporate and individual sponsors!&lt;br /&gt;
&lt;br /&gt;
* Venue&lt;br /&gt;
**[http://automattic.com Automattic]&lt;br /&gt;
* Meals&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://spinn3r.com Spinn3r]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://commerce.net CommerceNet]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://visitmix.com/Lab/Oomph Microsoft MIX Online]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://mBLAST.com/ mBLAST]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://steve.ganz.name/ Steve Ganz]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.carlaborsoi.com/ Carla Borsoi]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* Promotion&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://objectadjective.com Object Adjective]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** [http://cindyli.com Cindy Li]&lt;br /&gt;
&lt;br /&gt;
=== Sponsorships ===&lt;br /&gt;
Help sponsor microformatsDevCamp:&lt;br /&gt;
&lt;br /&gt;
* Saturday 25th&lt;br /&gt;
** Lunch - sponsored by [http://spinn3r.com Spinn3r]&lt;br /&gt;
** Dinner - sponsored by [http://commerce.net CommerceNet]&lt;br /&gt;
** Evening Social &amp;amp; Snacks - sponsored by [http://mBLAST.com/ mBLAST]&lt;br /&gt;
*** Beer - sponsored by [http://steve.ganz.name/ Steve Ganz]&lt;br /&gt;
* Sunday 26th&lt;br /&gt;
** Breakfast - sponsored by [http://www.carlaborsoi.com/ Carla Borsoi]&lt;br /&gt;
** Lunch - sponsored by [http://visitmix.com/Lab/Oomph Microsoft MIX Online]&lt;br /&gt;
* More Ideas...&lt;br /&gt;
** Stickers - sponsored by [http://objectadjective.com Object Adjective]&lt;br /&gt;
** Buttons - sponsored by [http://cindyli.com Cindy Li]&lt;br /&gt;
** Coffee&lt;br /&gt;
** Snacks&lt;br /&gt;
** ______?&lt;br /&gt;
&lt;br /&gt;
For meals, we're planning on something simple like bagels+coffee for breakfast (note: Tantek will purchase supplies for Sunday morning); or pizza or &amp;lt;del&amp;gt;indian delivery&amp;lt;/del&amp;gt; ([http://www.mydeedees.com/ Deedees Indian Food!]). We'll arrange for sponsors to pay vendors directly...&lt;br /&gt;
&lt;br /&gt;
== attendees ==&lt;br /&gt;
microformatsDevCamp, like any BarCamp, needs you - Sign up to volunteer, attend, design, code, and build with microformats!&lt;br /&gt;
&lt;br /&gt;
=== volunteers ===&lt;br /&gt;
Like all [http://barcamp.org BarCamps], this event is what it is because of what everyone puts into it. Volunteer to help setup, check people in, get them setup with a name badge, clean up, and help people in general have a good time and get things done.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Cindy Li&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;helping with microformatsDevCamp logo design&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. done!&lt;br /&gt;
** full resolution logo: &amp;lt;span class=&amp;quot;attach&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&amp;lt;/nowiki&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** on Flickr: http://www.flickr.com/photos/cindyli/3726302070/&lt;br /&gt;
** &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;designed and ordered buttons for event.&amp;lt;/span&amp;gt;Done!&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:BeauLebens|Beau Lebens]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;, Automattic, [[http://dentedreality.com.au/ Dented Reality]]. &amp;lt;span class=&lt;br /&gt;
note&amp;quot;&amp;gt;I know my way around the venue, so can help sort out power strips, projectors etc&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== participants ===&lt;br /&gt;
Please register with this [http://spreadsheets.google.com/viewform?formkey=dERvcnQ4SlFsX0ZLQi1KOE8wbk5obUE6MA.. online form].&lt;br /&gt;
&lt;br /&gt;
[http://www.flickr.com/photos/kurafire/3756770573 http://farm3.static.flickr.com/2665/3756770573_e2d1fee886.jpg]&lt;br /&gt;
&lt;br /&gt;
Want to design interfaces or build stuff with microformats and want help doing it? Sign up! Add yourself. Note your site (with [[hCard]] if you have it), interests/projects, and tag yourself as a web '''author''', '''designer''', '''&amp;lt;abbr title=&amp;quot;information architect&amp;quot;&amp;gt;IA&amp;lt;/abbr&amp;gt;''', '''publisher''', '''developer''', '''UI-tester''' - pick at least one.&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://tantek.com Tantek Çelik]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/strong&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt; (user interface interaction)&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://yury.name Yury Lifshits]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.markng.co.uk Mark Ng]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.ics.uci.edu/~rohit Rohit Khare]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.jasonbolton.com Jason Bolton]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;front-end designer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://alpern.org Micah Alpern]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt; (user interface interaction)&amp;lt;/span&amp;gt; (will be there Sunday).&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:EdwardOConnor |Edward O'Connor]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;nickname&amp;quot;&amp;gt;Ted&amp;lt;/span&amp;gt;) - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;author, designer, developer, publisher&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://singpolyma.net Stephen Paul Weber]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/strong&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;publisher&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://feedblog.org Kevin Burton]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/strong&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://jobspice.com Dane Hurtubise]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/strong&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://developer.netflix.com JR Conlin]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer, publisher&amp;lt;/strong&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Chirag Shah&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/strong&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.wezaggle.com Jesse Hammons]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/strong&amp;gt; [http://www.wezaggle.com Zaggle Social Calendar]&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://matthewlevine.com Matthew Levine]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://farukat.es/ Faruk Ateş]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;UX Designer&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://fourkitchens.com/ David Strauss]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;Drupal&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://huyhong.com/ Huy Hong]&amp;lt;/span&amp;gt; - Frontend Developer, UI/UX/UE, UGC nut&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://objectadjective.com Jeremy Anderson]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;UX/UI/ID Designer&amp;lt;/strong&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://objectadjective.com Lauren Scime]&amp;lt;/span&amp;gt; - front end designer / developer&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://blog.oofn.net Chad Weider]&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;front-end&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;back-end&amp;lt;/span&amp;gt;, etc.&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://dustinwhittle.com Dustin Whittle]&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://reidburke.com Reid Burke]&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
#&amp;lt;span class=&amp;quot;vcard attendee&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.myspace.com/ciberch Monica Keller]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/strong&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# (and about 35 more folks,  according to [http://upcoming.yahoo.com/event/2888376/ Upcoming] as of noon Thursday 2009-07-23)&lt;br /&gt;
# ...&lt;br /&gt;
&lt;br /&gt;
==schedule==&lt;br /&gt;
Outline of schedule for the weekend - more details at the DevCamp!&lt;br /&gt;
* Saturday July 25th&lt;br /&gt;
** 11:00 - planners+volunteers onsite for setup&lt;br /&gt;
** 12:00 - registration&lt;br /&gt;
** 13:00 -  lunch - Indian Food from Deedees&lt;br /&gt;
** intro session, what is a devcamp, introductions&lt;br /&gt;
** 13:30 - hack/project brainstorming and proposals&lt;br /&gt;
** day 1 building sessions &lt;br /&gt;
** coffee!&lt;br /&gt;
** 18:10 - [http://www.flickr.com/photos/kurafire/3756770573 group photo]&lt;br /&gt;
** 19:00 - dinner - pizza from Amicis&lt;br /&gt;
** 20:30 - dinner 2.0 - more pizza from Amicis&lt;br /&gt;
** beer, wine, and cupcakes!&lt;br /&gt;
** day 1 [[#projects|projects]] demos and social hour&lt;br /&gt;
** evening open hacking session (DevHouse style) / iteration on hacks/projects&lt;br /&gt;
** day 1 clean up&lt;br /&gt;
** ~midnight+ - day 1 wrap up.&lt;br /&gt;
&lt;br /&gt;
* Sunday July 26th&lt;br /&gt;
** 09:30am - planners+volunteers onsite for setup&lt;br /&gt;
** 10:00am - coffee, breakfast, more demos from day 1&lt;br /&gt;
** day 2 hack/project brainstorming, proposals, signups&lt;br /&gt;
** day 2 working sessions on hacks/projects&lt;br /&gt;
** 12:30pm lunch&lt;br /&gt;
** day 2 working sessions continued&lt;br /&gt;
** second day demos and wrap-up&lt;br /&gt;
** venue clean-up&lt;br /&gt;
** 5pm venue exit&lt;br /&gt;
&lt;br /&gt;
==venue==&lt;br /&gt;
Automattic has very graciously agreed to host microformatsDevCamp. The venue has:&lt;br /&gt;
* wifi&lt;br /&gt;
* power. power outlets, extension cords, power strips&lt;br /&gt;
* 4-5 rooms/meeting areas. &lt;br /&gt;
* 3 projectors&lt;br /&gt;
* 1 whiteboard.&lt;br /&gt;
* sink, water.&lt;br /&gt;
&lt;br /&gt;
As Automattic is donating the venue, as participants it is our responsibility to take excellent care of the venue, leaving it as good or better than we found it.&lt;br /&gt;
&lt;br /&gt;
Some amount of camping overnight at the venue will be possible.&lt;br /&gt;
&lt;br /&gt;
=== nearby food ===&lt;br /&gt;
Suggestions for nearby (easy/quick walking distance) drinks, snacks, food.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Bayside Market&amp;lt;/span&amp;gt; - fresh &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;fruit&amp;lt;/span&amp;gt; and &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;vegetables&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;sandwiches&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;url&amp;quot;&amp;gt;http://www.yelp.com/biz/bayside-market-san-francisco-2&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Crossroads Café&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;coffee&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;espresso&amp;lt;/span&amp;gt; drinks, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;shakes&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;smoothies&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;bagels&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;sandwiches&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;url&amp;quot;&amp;gt;http://www.yelp.com/biz/crossroads-cafe-san-francisco-3&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== tags ==&lt;br /&gt;
Please use the following tags when tagging related content (blog posts, photos, videos):&lt;br /&gt;
&lt;br /&gt;
tags:&lt;br /&gt;
&amp;lt;kbd class=&amp;quot;tags&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;'''#ufdevcamp'''&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;ufdevcampsf&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCampSF&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats-meetup&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp2009&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;The-Embarcadero&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;san-francisco&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;upcoming:event=2888376&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/kbd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Track:&lt;br /&gt;
* [http://search.twitter.com/search?q=ufdevcamp #ufdevcamp on Twitter Search].&lt;br /&gt;
* [http://identi.ca/tag/ufdevcamp #ufdevcamp] tagspace on identi.ca.&lt;br /&gt;
* [http://www.flickr.com/photos/tags/ufdevcamp/ ufdevcamp tag on flickr]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;group&amp;quot;&amp;gt;Groups&amp;lt;/span&amp;gt;:&lt;br /&gt;
* [http://identi.ca/group/microformats !microformats Identi.ca group] (aliases: !mf and !uf). Join and address the whole group. Notices to this group can also be tracked from [http://identi.ca/tag/microformats #microformats]&lt;br /&gt;
&lt;br /&gt;
== notes ==&lt;br /&gt;
topics discussed:&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== hack ideas ==&lt;br /&gt;
Have an idea for a hack/project session? Please read &amp;lt;cite&amp;gt;[http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ What is a DevCamp?]&amp;lt;/cite&amp;gt; and then suggest something or add a &amp;quot;+1&amp;quot; to existing suggestions, and sign your suggestion or opinion with your Username with &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;discussion&amp;quot;&amp;gt;&lt;br /&gt;
* '''microWall''' - make sure to print a screen-shot of every microformat-savvy tool that comes up during the camp, and stick them on the wall. It will be an amazing backdrop for a group photo... [[User:Rohit|Rohit]]&lt;br /&gt;
** +1 [[User:Tantek|Tantek]]&lt;br /&gt;
* '''(Sunday)''' '''CSS3, HTML5 and microformats &amp;quot;Zen Garden&amp;quot;''' - same premise as the CSS Zen Garden of yore, but with a strong emphasis on CSS3 advancements, microformats enrichment and done in HTML5. [[User:KuraFire|Faruk Ateş]]&lt;br /&gt;
* '''CheatSheet Translation''' [[User:Brian|Brian Suda]] This is a request to anyone who is speaks another language. I created the PDF cheatsheet awhile ago http://suda.co.uk/projects/microformats/cheatsheet/ if someone wants to translate it into Spanish, or another language, please let me know. I can send the source InDesign file, or if they send me the translations, I'd be happy to update it myself.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== projects ==&lt;br /&gt;
;short URL for this section&lt;br /&gt;
:http://tr.im/ufps&lt;br /&gt;
Please create a wiki page for any hack/project session you lead or attend and link to it from here.&lt;br /&gt;
* [[hcard-input-interface]] for easy input of user data (creating hCards) by Chad. combined project/session with '''microformats and user sign-up user interface''' - how can importing and subscribing to hCards help make user sign-up easier and thus get more users signed up quicker? by [[User:Tantek|Tantek]]&lt;br /&gt;
* [[self-updating-address-book]] - in the search for an address book/contact list that actually stays up to date, hCard may be the key. [[User:Beaulebens|Beau Lebens]]&lt;br /&gt;
* [[hcard-contact-autocompletion]] (a/k/a “CallerID 2.0”) by [[User:Rohit|rohit]], hober, chirags, lou, lauren, &amp;amp; jesse &lt;br /&gt;
* [[unified-rsvp]] by _________&lt;br /&gt;
* [[hcard-google-bookmarklet]] [[bookmarklet]]. [[User:Singpolyma|Singpolyma]]&lt;br /&gt;
* [[microformat-aggregation]] by [[User:jessehammons|Jesse Hammons]], [[User:yurylifshits|Yury Lifshits]], Andrew McCollum, Dane Hurtibuse, Randy Kerber&lt;br /&gt;
* [[twitter bus card exchange/display]] by [[User:perivision|Christopher]]&lt;br /&gt;
* [[hcard-creator-redesign|hCard Creator redesign]] by Cindy Li&lt;br /&gt;
&lt;br /&gt;
== photographs ==&lt;br /&gt;
* [http://www.flickr.com/photos/kurafire/sets/72157621834778724/ Flickr photo set by Faruk Ateş]&lt;br /&gt;
See all [http://flickr.com/photos/tags/ufdevcamp photos on Flickr tagged ufdevcamp].&lt;br /&gt;
&lt;br /&gt;
== blog posts ==&lt;br /&gt;
Blog posts about the devCamp. Newest first.&lt;br /&gt;
* [http://microformats.org/blog/2009/07/20/microformatsdevcamp-this-weekend/ 2009-07-21 microformats.org: microformatsDevCamp this weekend!]&lt;br /&gt;
* [http://radar.oreilly.com/2009/07/four-short-links-17-july-2009.html O'Reilly Radar: Four short links]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
* [http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ Chris Messina: What is a DevCamp?]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt; &amp;lt;!-- End of @vevent --&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
== Related Pages==&lt;br /&gt;
microformatsDevCamp is one of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
{{events-related-pages}}&lt;br /&gt;
&lt;br /&gt;
== planner to-do ==&lt;br /&gt;
&lt;br /&gt;
=== planners ===&lt;br /&gt;
Want to help organize and plan the first microformatsDevCamp? Sign up and be sure to pick up a planner role (see below).&lt;br /&gt;
* [[User:Tantek|Tantek Çelik]] - '''organizing, venue acquisition, intro and kickoff'''&lt;br /&gt;
* [[User:Rohit|Rohit Khare]] - '''venue acquisition, sponsor wrangler, food'''&lt;br /&gt;
* [[User:EdwardOConnor |Edward O'Connor]] (Ted) - '''volunteer coordinator, setup, welcome desk'''&lt;br /&gt;
* [[User:Pseudowish|Lauren Scime]] - '''t-shirts, other coordination needs tbd'''&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Chris Messina|Chris Messina]]&amp;lt;/span&amp;gt; - '''connector and advisor'''&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== planner roles ===&lt;br /&gt;
Role info / details:&lt;br /&gt;
* '''intro and kickoff''' - run the introductory session and help start the microformatsDevCamp with traditional BarCamp intros/3tags and explanation of the BarCamp format.&lt;br /&gt;
* '''food''' - coordinate / match up sponsors with meals and make sure the meals arrive and are setup for event participants during the event.&lt;br /&gt;
* '''sponsor wrangler''' - for food, t-shirts. per definition given in: http://www.cleverclevergirl.com/?p=10 : &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Drafts a message to send to potential sponsors, follows up leads from others for potential sponsors, collects info, logos (in vector format), and money from sponsors and also sees that receipts (if necessary) are issued at the end. &amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* '''t-shirts''' - get estimate, make sure to order in time for the event. Ben Ward has done some work on this - check with him.&lt;br /&gt;
* '''volunteer coordinator''' - recruit and organize volunteers the day of the event to help out with food, setup&lt;br /&gt;
* '''cleanup''' - enlist help of volunteers and all devCamp participants to help with cleanup&lt;br /&gt;
* '''setup''' - be in charge of setup the day of, coordinate with venue on setup plenty of time *before* the start of the camp! setup: power cords, power strips, calendar grid for sessions, tables and chairs in rooms/meeting areas, projectors&lt;br /&gt;
* '''welcome desk''' - welcome microformatsDevCamp attendees at the entrance of the venue, make sure they get a name tag and instruct them to tag themselves as primarily/secondarily being a web '''author''', '''designer''', '''publisher''', '''developer''', pick at least one. (as they should also do when the sign up on the wiki in the attendees section above!)&lt;br /&gt;
&lt;br /&gt;
===T-shirts===&lt;br /&gt;
* get estimates from vendor(s) for different quantities&lt;br /&gt;
** get vendor contact info from Ben Ward who has already looked into this and found a reliable vendor that can deliver high quality t-shirts in a week or less time.&lt;br /&gt;
** Suggestion: 100 shirts, provide them to individuals who sponsor microformatsDevCamp with a $20 or more donation to help pay for t-shirts and snacks/food (if any funds from covering t-shirts are remaining). [[User:Tantek|Tantek]] 17:40, 17 July 2009 (UTC)&lt;br /&gt;
* make/reuse design (get original t-shirt design details from Dan Cederholm)&lt;br /&gt;
* order/print - make sure folks who donated at the [[events/2009-06-26-microformats-4th-bday|4th bday party]] get their shirts&lt;br /&gt;
&lt;br /&gt;
* '''T-shirts are ordered!''' Printer is [http://www.screenprintguy.com The Screen Print Guy] located out on 23rd Ave. Will be available for pickup by Friday July 24th. (This is great! [[User:Tantek|Tantek]] 01:03, 21 July 2009 (UTC))&lt;br /&gt;
** Total # of shirts ordered: 100. Size breakdown: Men's: 10 small, 30 medium, 25 large. Women's: 10 small, 15 medium, 10 large.&lt;br /&gt;
** Total cost: $918.00 (would have been cheaper but they had a surcharge for the rush order). I have charged 50% of the cost already to place the order. Other 50% due at time of pickup.&lt;br /&gt;
&lt;br /&gt;
Note that, including cash donations from the 4th birthday party, we have pledges for ~$1850 to budget with as of 2009-7-24 [[User:Rohit|Rohit]]&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39859</id>
		<title>events/2009-07-25-dev-camp</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39859"/>
		<updated>2009-07-25T18:53:13Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* attendees */ google doc link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;microformatsDevCamp&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;event-page vevent&amp;quot;&amp;gt;&lt;br /&gt;
;When&lt;br /&gt;
:&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-25&amp;lt;/span&amp;gt; from &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;12:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; to &amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-26&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;17:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
;Where&lt;br /&gt;
:&amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;org fn&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;&amp;lt;em style=&amp;quot;border-bottom:dotted 1px&amp;quot; title=&amp;quot;Pier 38 is NOWHERE NEAR Pier 39, just to be clear. Pier 38 is SOUTH of the Bay Bridge.&amp;quot;&amp;gt;Pier 38&amp;lt;/em&amp;gt;, The Embarcadero between Brannan and Townsend&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;CA&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;94107&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;geo&amp;quot;&amp;gt;[http://maps.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;view=map&amp;amp;q=%2BAutomattic,+The+Embarcadero,+San+Francisco,+CA+94107&amp;amp;sll=37.752736,-122.402826&amp;amp;sspn=0.13844,0.217667&amp;amp;gl=us&amp;amp;ie=UTF8&amp;amp;t=h&amp;amp;layer=c&amp;amp;cbll=37.782877,-122.388062&amp;amp;panoid=kB1DhzPP5DYl5pgHBRxdPg&amp;amp;cbp=12,123.84,,0,2.44&amp;amp;ll=37.783053,-122.388044&amp;amp;spn=0,359.996599&amp;amp;z=18 View location at latitude:&amp;lt;span class=&amp;quot;latitude&amp;quot;&amp;gt;37.782769&amp;lt;/span&amp;gt;, longitude:&amp;lt;span class=&amp;quot;longitude&amp;quot;&amp;gt;-122.387837&amp;lt;/span&amp;gt;]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
:'''MUNI''': [http://playfoursquare.com/venue/72202 Brannan] (N,T)&lt;br /&gt;
:'''BART''': Embarcadero station, then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__IB3&amp;amp;s=6992&amp;amp;ts=4506 take MUNI N-Judah inbound] or T-Third inbound to Brannan stop.&lt;br /&gt;
:'''Caltrain''': 4th &amp;amp; King st., then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__OB2&amp;amp;s=5240&amp;amp;ts=7145 take MUNI N-Judah outbound] or T-Third outbound to Brannan stop.&lt;br /&gt;
;What&lt;br /&gt;
:&amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;microformatsDevCamp!&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;The first ever microformatsDevCamp, for authors, designers, publishers, developers, engineers building pages, sites, and tools with microformats.&amp;lt;/span&amp;gt;&lt;br /&gt;
;How much&lt;br /&gt;
:$20 suggested donation (gets you a t-shirt while supplies last). &amp;lt;em style=&amp;quot;display:block&amp;quot;&amp;gt;No one turned away for lack of funds.&amp;lt;/em&amp;gt;&lt;br /&gt;
;URLs&lt;br /&gt;
:&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://microformats.org/wiki/events/2009-07-25-dev-camp&amp;lt;/span&amp;gt;&lt;br /&gt;
:http://upcoming.yahoo.com/event/2888376/&lt;br /&gt;
:http://www.facebook.com/event.php?eid=102571118403&lt;br /&gt;
;short URL&lt;br /&gt;
:http://tr.im/ufdevcamp&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''[http://suda.co.uk/projects/microformats/hcalendar/get-cal.php?uri=http://microformats.org/wiki/events/2009-07-25-dev-camp Add this event to your calendar]''' http://www.boogdesign.com/images/buttons/microformat_hcalendar.png&lt;br /&gt;
&lt;br /&gt;
== Sponsors == &lt;br /&gt;
microformatsDevCamp is made possible thanks to the generosity of our corporate and individual sponsors!&lt;br /&gt;
&lt;br /&gt;
* Venue&lt;br /&gt;
**[http://automattic.com Automattic]&lt;br /&gt;
* Meals&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://spinn3r.com Spinn3r]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://commerce.net CommerceNet]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://visitmix.com/Lab/Oomph Microsoft MIX Online]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://mBLAST.com/ mBLAST]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://steve.ganz.name/ Steve Ganz]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.carlaborsoi.com/ Carla Borsoi]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* Promotion&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://objectadjective.com Object Adjective]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://cindyli.com Cindy Li]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sponsorships ===&lt;br /&gt;
Help sponsor microformatsDevCamp:&lt;br /&gt;
&lt;br /&gt;
* Saturday 25th&lt;br /&gt;
** Lunch - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://spinn3r.com Spinn3r]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; &lt;br /&gt;
** Dinner - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://commerce.net CommerceNet]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Evening Social &amp;amp; Snacks - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://mBLAST.com/ mBLAST]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*** Beer - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://steve.ganz.name/ Steve Ganz]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* Sunday 26th&lt;br /&gt;
** Breakfast - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.carlaborsoi.com/ Carla Borsoi]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Lunch - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://visitmix.com/Lab/Oomph Microsoft MIX Online]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* More Ideas...&lt;br /&gt;
** Stickers - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://objectadjective.com Object Adjective]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Buttons - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://cindyli.com Cindy Li]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Coffee&lt;br /&gt;
** Snacks&lt;br /&gt;
** ______?&lt;br /&gt;
&lt;br /&gt;
For meals, we're planning on something simple like bagels+coffee for breakfast (note: Tantek will purchase supplies for Sunday morning); or pizza or &amp;lt;del&amp;gt;indian delivery&amp;lt;/del&amp;gt; ([http://www.mydeedees.com/ Deedees Indian Food!]). We'll arrange for sponsors to pay vendors directly...&lt;br /&gt;
&lt;br /&gt;
== attendees ==&lt;br /&gt;
microformatsDevCamp, like any BarCamp, needs you - Sign up to volunteer, attend, design, code, and build with microformats!&lt;br /&gt;
&lt;br /&gt;
=== volunteers ===&lt;br /&gt;
Like all [http://barcamp.org BarCamps], this event is what it is because of what everyone puts into it. Volunteer to help setup, check people in, get them setup with a name badge, clean up, and help people in general have a good time and get things done.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Cindy Li&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;helping with microformatsDevCamp logo design&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. done!&lt;br /&gt;
** full resolution logo: &amp;lt;span class=&amp;quot;attach&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&amp;lt;/nowiki&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** on Flickr: http://www.flickr.com/photos/cindyli/3726302070/&lt;br /&gt;
** &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;designed and ordered buttons for event.&amp;lt;/span&amp;gt;Done!&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:BeauLebens|Beau Lebens]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;, Automattic, [[http://dentedreality.com.au/ Dented Reality]]. &amp;lt;span class=&lt;br /&gt;
note&amp;quot;&amp;gt;I know my way around the venue, so can help sort out power strips, projectors etc&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== participants ===&lt;br /&gt;
&lt;br /&gt;
Please register with this [http://spreadsheets.google.com/viewform?formkey=dERvcnQ4SlFsX0ZLQi1KOE8wbk5obUE6MA.. online form].&lt;br /&gt;
&lt;br /&gt;
Want to design interfaces or build stuff with microformats and want help doing it? Sign up! Add yourself. Note your site (with [[hCard]] if you have it), interests/projects, and tag yourself as a web '''author''', '''designer''', '''&amp;lt;abbr title=&amp;quot;information architect&amp;quot;&amp;gt;IA&amp;lt;/abbr&amp;gt;''', '''publisher''', '''developer''', '''UI-tester''' - pick at least one.&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://tantek.com Tantek Çelik]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/strong&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt; (user interface interaction)&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://yury.name Yury Lifshits]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.markng.co.uk Mark Ng]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.ics.uci.edu/~rohit Rohit Khare]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.jasonbolton.com Jason Bolton]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;front-end designer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://alpern.org Micah Alpern]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt; (user interface interaction)&amp;lt;/span&amp;gt; (will be there Sunday).&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:EdwardOConnor |Edward O'Connor]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;nickname&amp;quot;&amp;gt;Ted&amp;lt;/span&amp;gt;) - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;author, designer, developer, publisher&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://singpolyma.net Stephen Paul Weber]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/strong&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;publisher&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://spinn3r.com Kevin Burton]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/strong&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://jobspice.com Dane Hurtubise]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/strong&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://developer.netflix.com JR Conlin]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer, publisher&amp;lt;/strong&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Chirag Shah&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/strong&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://matthewlevine.com Matthew Levine]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# (and about 35 more folks,  according to [http://upcoming.yahoo.com/event/2888376/ Upcoming] as of noon Thursday 2009-7-23)&lt;br /&gt;
# ...&lt;br /&gt;
&lt;br /&gt;
==schedule==&lt;br /&gt;
Outline of schedule for the weekend - more details at the DevCamp!&lt;br /&gt;
* Saturday July 25th&lt;br /&gt;
** 11:00am - planners+volunteers onsite for setup&lt;br /&gt;
** 12:00pm - registration, lunch&lt;br /&gt;
** intro session, what is a devcamp, introductions&lt;br /&gt;
** hack/project brainstorming and proposals&lt;br /&gt;
** day 1 building sessions &lt;br /&gt;
** dinner&lt;br /&gt;
** day 1 demos and social hour&lt;br /&gt;
** evening open hacking session (like DevHouse) / iteration on hacks/projects&lt;br /&gt;
&lt;br /&gt;
* Sunday July 26th&lt;br /&gt;
** 10:00am - breakfast&lt;br /&gt;
** day 2 working sessions on hacks/projects&lt;br /&gt;
** 12:30pm lunch&lt;br /&gt;
** day 2 working sessions continued&lt;br /&gt;
** second day demos and wrap-up&lt;br /&gt;
** venue clean-up&lt;br /&gt;
** 5pm venue exit&lt;br /&gt;
&lt;br /&gt;
==venue==&lt;br /&gt;
Automattic has very graciously agreed to host microformatsDevCamp. The venue has:&lt;br /&gt;
* wifi&lt;br /&gt;
* power. power outlets, extension cords, power strips&lt;br /&gt;
* 4-5 rooms/meeting areas. &lt;br /&gt;
* 3 projectors&lt;br /&gt;
* 1 whiteboard.&lt;br /&gt;
* sink, water.&lt;br /&gt;
&lt;br /&gt;
As Automattic is donating the venue, as participants it is our responsibility to take excellent care of the venue, leaving it as good or better than we found it.&lt;br /&gt;
&lt;br /&gt;
Some amount of camping overnight at the venue will be possible.&lt;br /&gt;
&lt;br /&gt;
=== nearby food ===&lt;br /&gt;
Suggestions for nearby (easy/quick walking distance) drinks, snacks, food.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Bayside Market&amp;lt;/span&amp;gt; - fresh &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;fruit&amp;lt;/span&amp;gt; and &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;vegetables&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;sandwiches&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;url&amp;quot;&amp;gt;http://www.yelp.com/biz/bayside-market-san-francisco-2&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Crossroads Cafe&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;coffee&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;espresso&amp;lt;/span&amp;gt; drinks, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;shakes&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;smoothies&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;bagels&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;sandwiches&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;url&amp;quot;&amp;gt;http://www.yelp.com/biz/crossroads-cafe-san-francisco-3&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== tags ==&lt;br /&gt;
Please use the following tags when tagging related content (blog posts, photos, videos):&lt;br /&gt;
&lt;br /&gt;
tags:&lt;br /&gt;
&amp;lt;kbd class=&amp;quot;tags&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;'''#ufdevcamp'''&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;ufdevcampsf&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCampSF&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats-meetup&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp2009&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;The-Embarcadero&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;san-francisco&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;upcoming:event=2888376&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/kbd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Track:&lt;br /&gt;
* [http://search.twitter.com/search?q=ufdevcamp #ufdevcamp on Twitter Search].&lt;br /&gt;
* [http://identi.ca/tag/ufdevcamp #ufdevcamp] tagspace on identi.ca.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;group&amp;quot;&amp;gt;Groups&amp;lt;/span&amp;gt;:&lt;br /&gt;
* [http://identi.ca/group/microformats !microformats Identi.ca group] (aliases: !mf and !uf). Join and address the whole group. Notices to this group can also be tracked from [http://identi.ca/tag/microformats #microformats]&lt;br /&gt;
&lt;br /&gt;
== notes ==&lt;br /&gt;
topics discussed:&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== hack ideas ==&lt;br /&gt;
Have an idea for a hack/project session? Please read &amp;lt;cite&amp;gt;[http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ What is a DevCamp?]&amp;lt;/cite&amp;gt; and then suggest something or add a &amp;quot;+1&amp;quot; to existing suggestions, and sign your suggestion or opinion with your Username with &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;discussion&amp;quot;&amp;gt;&lt;br /&gt;
* '''microformats and user sign-up user interface''' - how can importing and subscribing to hCards help make user sign-up easier and thus get more users signed up quicker? [[User:Tantek|Tantek]]&lt;br /&gt;
* '''using hCard to build a self-updating address book''' - in the search for an address book/contact list that actually stays up to date, hCard may be the key. [[User:Beaulebens|Beau Lebens]]&lt;br /&gt;
** +1 [[User:Tantek|Tantek]]&lt;br /&gt;
* '''microWall''' - make sure to print a screen-shot of every microformat-savvy tool that comes up during the camp, and stick them on the wall. It will be an amazing backdrop for a group photo... [[User:Rohit|Rohit]]&lt;br /&gt;
** +1 [[User:Tantek|Tantek]]&lt;br /&gt;
* ...&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== projects ==&lt;br /&gt;
Please create a wiki page for any hack/project session you lead or attend and link to it from here.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== photographs ==&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== blog posts ==&lt;br /&gt;
Blog posts about the devCamp. Newest first.&lt;br /&gt;
* [http://microformats.org/blog/2009/07/20/microformatsdevcamp-this-weekend/ 2009-07-21 microformats.org: microformatsDevCamp this weekend!]&lt;br /&gt;
* [http://radar.oreilly.com/2009/07/four-short-links-17-july-2009.html O'Reilly Radar: Four short links]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
* [http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ Chris Messina: What is a DevCamp?]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt; &amp;lt;!-- End of @vevent --&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
== Related Pages==&lt;br /&gt;
microformatsDevCamp is one of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
{{events-related-pages}}&lt;br /&gt;
&lt;br /&gt;
== planner to-do ==&lt;br /&gt;
&lt;br /&gt;
=== planners ===&lt;br /&gt;
Want to help organize and plan the first microformatsDevCamp? Sign up and be sure to pick up a planner role (see below).&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Tantek|Tantek Çelik]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''organizing, venue acquisition, intro and kickoff'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Rohit|Rohit Khare]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''venue acquisition, sponsor wrangler, food'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:EdwardOConnor |Edward O'Connor]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;nickname&amp;quot;&amp;gt;Ted&amp;lt;/span&amp;gt;) - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''volunteer coordinator, setup, welcome desk'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Pseudowish|Lauren Scime]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''t-shirts, other coordination needs tbd'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Chris Messina|Chris Messina]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''connector and advisor'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== planner roles ===&lt;br /&gt;
Role info / details:&lt;br /&gt;
* '''intro and kickoff''' - run the introductory session and help start the microformatsDevCamp with traditional BarCamp intros/3tags and explanation of the BarCamp format.&lt;br /&gt;
* '''food''' - coordinate / match up sponsors with meals and make sure the meals arrive and are setup for event participants during the event.&lt;br /&gt;
* '''sponsor wrangler''' - for food, t-shirts. per definition given in: http://www.cleverclevergirl.com/?p=10 : &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Drafts a message to send to potential sponsors, follows up leads from others for potential sponsors, collects info, logos (in vector format), and money from sponsors and also sees that receipts (if necessary) are issued at the end. &amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* '''t-shirts''' - get estimate, make sure to order in time for the event. Ben Ward has done some work on this - check with him.&lt;br /&gt;
* '''volunteer coordinator''' - recruit and organize volunteers the day of the event to help out with food, setup&lt;br /&gt;
* '''cleanup''' - enlist help of volunteers and all devCamp participants to help with cleanup&lt;br /&gt;
* '''setup''' - be in charge of setup the day of, coordinate with venue on setup plenty of time *before* the start of the camp! setup: power cords, power strips, calendar grid for sessions, tables and chairs in rooms/meeting areas, projectors&lt;br /&gt;
* '''welcome desk''' - welcome microformatsDevCamp attendees at the entrance of the venue, make sure they get a name tag and instruct them to tag themselves as primarily/secondarily being a web '''author''', '''designer''', '''publisher''', '''developer''', pick at least one. (as they should also do when the sign up on the wiki in the attendees section above!)&lt;br /&gt;
&lt;br /&gt;
===T-shirts===&lt;br /&gt;
* get estimates from vendor(s) for different quantities&lt;br /&gt;
** get vendor contact info from Ben Ward who has already looked into this and found a reliable vendor that can deliver high quality t-shirts in a week or less time.&lt;br /&gt;
** Suggestion: 100 shirts, provide them to individuals who sponsor microformatsDevCamp with a $20 or more donation to help pay for t-shirts and snacks/food (if any funds from covering t-shirts are remaining). [[User:Tantek|Tantek]] 17:40, 17 July 2009 (UTC)&lt;br /&gt;
* make/reuse design (get original t-shirt design details from Dan Cederholm)&lt;br /&gt;
* order/print - make sure folks who donated at the [[events/2009-06-26-microformats-4th-bday|4th bday party]] get their shirts&lt;br /&gt;
&lt;br /&gt;
* '''T-shirts are ordered!''' Printer is [http://www.screenprintguy.com The Screen Print Guy] located out on 23rd Ave. Will be available for pickup by Friday July 24th. (This is great! [[User:Tantek|Tantek]] 01:03, 21 July 2009 (UTC))&lt;br /&gt;
** Total # of shirts ordered: 100. Size breakdown: Men's: 10 small, 30 medium, 25 large. Women's: 10 small, 15 medium, 10 large.&lt;br /&gt;
** Total cost: $918.00 (would have been cheaper but they had a surcharge for the rush order). I have charged 50% of the cost already to place the order. Other 50% due at time of pickup.&lt;br /&gt;
&lt;br /&gt;
Note that, including cash donations from the 4th birthday party, we have pledges for ~$1850 to budget with as of 2009-7-24 [[User:Rohit|Rohit]]&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39839</id>
		<title>events/2009-07-25-dev-camp</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39839"/>
		<updated>2009-07-24T20:31:06Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* T-shirts */  new sponsors&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;microformatsDevCamp&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;event-page vevent&amp;quot;&amp;gt;&lt;br /&gt;
;When&lt;br /&gt;
:&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-25&amp;lt;/span&amp;gt; from &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;12:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; to &amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-26&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;17:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
;Where&lt;br /&gt;
:&amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;org fn&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;&amp;lt;em style=&amp;quot;border-bottom:dotted 1px&amp;quot; title=&amp;quot;Pier 38 is NOWHERE NEAR Pier 39, just to be clear. Pier 38 is SOUTH of the Bay Bridge.&amp;quot;&amp;gt;Pier 38&amp;lt;/em&amp;gt;, The Embarcadero between Brannan and Townsend&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;CA&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;94107&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;geo&amp;quot;&amp;gt;[http://maps.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;view=map&amp;amp;q=%2BAutomattic,+The+Embarcadero,+San+Francisco,+CA+94107&amp;amp;sll=37.752736,-122.402826&amp;amp;sspn=0.13844,0.217667&amp;amp;gl=us&amp;amp;ie=UTF8&amp;amp;t=h&amp;amp;layer=c&amp;amp;cbll=37.782877,-122.388062&amp;amp;panoid=kB1DhzPP5DYl5pgHBRxdPg&amp;amp;cbp=12,123.84,,0,2.44&amp;amp;ll=37.783053,-122.388044&amp;amp;spn=0,359.996599&amp;amp;z=18 View location at latitude:&amp;lt;span class=&amp;quot;latitude&amp;quot;&amp;gt;37.782769&amp;lt;/span&amp;gt;, longitude:&amp;lt;span class=&amp;quot;longitude&amp;quot;&amp;gt;-122.387837&amp;lt;/span&amp;gt;]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
:'''MUNI''': [http://playfoursquare.com/venue/72202 Brannan] (N,T)&lt;br /&gt;
:'''BART''': Embarcadero station, then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__IB3&amp;amp;s=6992&amp;amp;ts=4506 take MUNI N-Judah inbound] or T-Third inbound to Brannan stop.&lt;br /&gt;
:'''Caltrain''': 4th &amp;amp; King st., then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__OB2&amp;amp;s=5240&amp;amp;ts=7145 take MUNI N-Judah outbound] or T-Third outbound to Brannan stop.&lt;br /&gt;
;What&lt;br /&gt;
:&amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;microformatsDevCamp!&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;The first ever microformatsDevCamp, for authors, designers, publishers, developers, engineers building pages, sites, and tools with microformats.&amp;lt;/span&amp;gt;&lt;br /&gt;
;How much&lt;br /&gt;
:$20 suggested donation (gets you a t-shirt while supplies last). &amp;lt;em style=&amp;quot;display:block&amp;quot;&amp;gt;No one turned away for lack of funds.&amp;lt;/em&amp;gt;&lt;br /&gt;
;URLs&lt;br /&gt;
:&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://microformats.org/wiki/events/2009-07-25-dev-camp&amp;lt;/span&amp;gt;&lt;br /&gt;
:http://upcoming.yahoo.com/event/2888376/&lt;br /&gt;
:http://www.facebook.com/event.php?eid=102571118403&lt;br /&gt;
;short URL&lt;br /&gt;
:http://tr.im/ufdevcamp&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''[http://suda.co.uk/projects/microformats/hcalendar/get-cal.php?uri=http://microformats.org/wiki/events/2009-07-25-dev-camp Add this event to your calendar]''' http://www.boogdesign.com/images/buttons/microformat_hcalendar.png&lt;br /&gt;
&lt;br /&gt;
== Sponsors == &lt;br /&gt;
microformatsDevCamp is made possible thanks to the generosity of our corporate and individual sponsors!&lt;br /&gt;
&lt;br /&gt;
* Venue&lt;br /&gt;
**[http://automattic.com Automattic]&lt;br /&gt;
* Meals&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://spinn3r.com Spinn3r]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://commerce.net CommerceNet]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://visitmix.com/Lab/Oomph Microsoft MIX Online]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://mBLAST.com/ mBLAST]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://steve.ganz.name/ Steve Ganz]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.carlaborsoi.com/ Carla Borsoi]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* Promotion&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://objectadjective.com Object Adjective]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://cindyli.com Cindy Li]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sponsorships ===&lt;br /&gt;
Help sponsor microformatsDevCamp:&lt;br /&gt;
&lt;br /&gt;
* Saturday 25th&lt;br /&gt;
** Lunch - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://spinn3r.com Spinn3r]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; &lt;br /&gt;
** Dinner - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://commerce.net CommerceNet]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Evening Social &amp;amp; Snacks - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://mBLAST.com/ mBLAST]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*** Beer - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://steve.ganz.name/ Steve Ganz]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* Sunday 26th&lt;br /&gt;
** Breakfast - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.carlaborsoi.com/ Carla Borsoi]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Lunch - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://visitmix.com/Lab/Oomph Microsoft MIX Online]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* More Ideas...&lt;br /&gt;
** Stickers - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://objectadjective.com Object Adjective]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Buttons - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://cindyli.com Cindy Li]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Coffee&lt;br /&gt;
** Snacks&lt;br /&gt;
** T-shirts&lt;br /&gt;
** ______?&lt;br /&gt;
&lt;br /&gt;
For meals, we're planning on something simple like bagels+coffee for breakfast (note: Tantek will purchase supplies for Sunday morning); or pizza or &amp;lt;del&amp;gt;indian delivery&amp;lt;/del&amp;gt; ([http://www.mydeedees.com/ Deedees Indian Food!]). We'll arrange for sponsors to pay vendors directly...&lt;br /&gt;
&lt;br /&gt;
== attendees ==&lt;br /&gt;
microformatsDevCamp, like any BarCamp, needs you! &lt;br /&gt;
&lt;br /&gt;
Sign up to volunteer, attend, design, code, and build with microformats!&lt;br /&gt;
&lt;br /&gt;
=== planners ===&lt;br /&gt;
Want to help organize and plan the first microformatsDevCamp? Sign up and be sure to pick up a planner role (see below).&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Tantek|Tantek Çelik]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''organizing, venue acquisition, intro and kickoff'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Rohit|Rohit Khare]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''venue acquisition, sponsor wrangler, food'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:EdwardOConnor |Edward O'Connor]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;nickname&amp;quot;&amp;gt;Ted&amp;lt;/span&amp;gt;) - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''volunteer coordinator, cleanup'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Pseudowish|Lauren Scime]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''t-shirts, other coordination needs tbd'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Chris Messina|Chris Messina]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''connector and advisor'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
Planners: please see and keep up with the [[#planner_to-do]] section!&lt;br /&gt;
&lt;br /&gt;
=== volunteers ===&lt;br /&gt;
Like all [http://barcamp.org BarCamps], this event is what it is because of what everyone puts into it. Volunteer to help setup, check people in, get them setup with a name badge, clean up, and help people in general have a good time and get things done.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Cindy Li&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;helping with microformatsDevCamp logo design&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. done!&lt;br /&gt;
** full resolution logo: &amp;lt;span class=&amp;quot;attach&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&amp;lt;/nowiki&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** on Flickr: http://www.flickr.com/photos/cindyli/3726302070/&lt;br /&gt;
** &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;designed and ordered buttons for event.&amp;lt;/span&amp;gt;Done!&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:BeauLebens|Beau Lebens]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;, Automattic, [[http://dentedreality.com.au/ Dented Reality]]. &amp;lt;span class=&lt;br /&gt;
note&amp;quot;&amp;gt;I know my way around the venue, so can help sort out power strips, projectors etc&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== participants ===&lt;br /&gt;
Want to design interfaces or build stuff with microformats and want help doing it? Sign up! Add yourself. Note your site (with [[hCard]] if you have it), interests/projects, and tag yourself as a web '''author''', '''designer''', '''publisher''', '''developer''' - pick at least one.&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://tantek.com Tantek Çelik]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/strong&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt; (user interface interaction)&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://yury.name Yury Lifshits]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.markng.co.uk Mark Ng]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.ics.uci.edu/~rohit Rohit Khare]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.jasonbolton.com Jason Bolton]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;front-end designer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://alpern.org Micah Alpern]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt; (user interface interaction)&amp;lt;/span&amp;gt; (will be there Sunday).&lt;br /&gt;
# (and about 35 more folks,  according to [http://upcoming.yahoo.com/event/2888376/ Upcoming] as of noon Thursday 2009-7-23)&lt;br /&gt;
# ...&lt;br /&gt;
&lt;br /&gt;
==venue==&lt;br /&gt;
Automattic has very graciously agreed to host microformatsDevCamp. The venue has:&lt;br /&gt;
* wifi&lt;br /&gt;
* power. power outlets, extension cords, power strips&lt;br /&gt;
* 4-5 rooms/meeting areas. &lt;br /&gt;
* 3 projectors&lt;br /&gt;
* 1 whiteboard.&lt;br /&gt;
* sink, water.&lt;br /&gt;
&lt;br /&gt;
As Automattic is donating the venue, as participants it is our responsibility to take excellent care of the venue, leaving it as good or better than we found it.&lt;br /&gt;
&lt;br /&gt;
Some amount of camping overnight at the venue will be possible.&lt;br /&gt;
&lt;br /&gt;
=== nearby food ===&lt;br /&gt;
Suggestions for nearby (easy/quick walking distance) drinks, snacks, food.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Bayside Market&amp;lt;/span&amp;gt; - fresh &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;fruit&amp;lt;/span&amp;gt; and &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;vegetables&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;sandwiches&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;url&amp;quot;&amp;gt;http://www.yelp.com/biz/bayside-market-san-francisco-2&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Crossroads Cafe&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;coffee&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;espresso&amp;lt;/span&amp;gt; drinks, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;shakes&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;smoothies&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;bagels&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;sandwiches&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;url&amp;quot;&amp;gt;http://www.yelp.com/biz/crossroads-cafe-san-francisco-3&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== tags ==&lt;br /&gt;
Please use the following tags when tagging related content (blog posts, photos, videos):&lt;br /&gt;
&lt;br /&gt;
tags:&lt;br /&gt;
&amp;lt;kbd class=&amp;quot;tags&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;'''#ufdevcamp'''&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;ufdevcampsf&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCampSF&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats-meetup&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp2009&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;The-Embarcadero&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;san-francisco&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;upcoming:event=2888376&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/kbd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Track:&lt;br /&gt;
* [http://search.twitter.com/search?q=ufdevcamp #ufdevcamp on Twitter Search].&lt;br /&gt;
* [http://identi.ca/tag/ufdevcamp #ufdevcamp] tagspace on identi.ca.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;group&amp;quot;&amp;gt;Groups&amp;lt;/span&amp;gt;:&lt;br /&gt;
* [http://identi.ca/group/microformats !microformats Identi.ca group] (aliases: !mf and !uf). Join and address the whole group. Notices to this group can also be tracked from [http://identi.ca/tag/microformats #microformats]&lt;br /&gt;
&lt;br /&gt;
== notes ==&lt;br /&gt;
topics discussed:&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== session ideas ==&lt;br /&gt;
Have an idea for a session? Please read &amp;lt;cite&amp;gt;[http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ What is a DevCamp?]&amp;lt;/cite&amp;gt; and then suggest something or add a &amp;quot;+1&amp;quot; to existing suggestions, and sign your suggestion or opinion with your Username with &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* '''microformats and user sign-up user interface''' - how can importing and subscribing to hCards help make user sign-up easier and thus get more users signed up quicker? [[User:Tantek|Tantek]]&lt;br /&gt;
* '''using hCard to build a self-updating address book''' - in the search for an address book/contact list that actually stays up to date, hCard may be the key. [[User:Beaulebens|Beau Lebens]]&lt;br /&gt;
* '''microWall'' - make sure to print a screen-shot of every microformat-savvy tool that comes up during the camp, and stick them on the wall. It will be an amazing backdrop for a group photo... [[User:Rohit|Rohit]]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== sessions ==&lt;br /&gt;
Please create a wiki page for any session you lead or attend and link to it from here.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== photographs ==&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== blog posts ==&lt;br /&gt;
Blog posts about the devCamp. Newest first.&lt;br /&gt;
* [http://microformats.org/blog/2009/07/20/microformatsdevcamp-this-weekend/ 2009-07-21 microformats.org: microformatsDevCamp this weekend!]&lt;br /&gt;
* [http://radar.oreilly.com/2009/07/four-short-links-17-july-2009.html O'Reilly Radar: Four short links]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
* [http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ Chris Messina: What is a DevCamp?]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt; &amp;lt;!-- End of @vevent --&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
== Related Pages==&lt;br /&gt;
microformatsDevCamp is one of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
{{events-related-pages}}&lt;br /&gt;
&lt;br /&gt;
== planner to-do ==&lt;br /&gt;
&lt;br /&gt;
=== planner roles ===&lt;br /&gt;
We need the following roles and responsibilities to be picked up by planners!&lt;br /&gt;
* '''setup''' - be in charge of setup the day of, coordinate with venue on setup plenty of time *before* the start of the camp! setup: power cords, power strips, calendar grid for sessions, tables and chairs in rooms/meeting areas, projectors&lt;br /&gt;
* '''welcome desk''' - welcome microformatsDevCamp attendees at the entrance of the venue, make sure they get a name tag and instruct them to tag themselves as primarily/secondarily being a web '''author''', '''designer''', '''publisher''', '''developer''', pick at least one. (as they should also do when the sign up on the wiki in the attendees section above!)&lt;br /&gt;
&lt;br /&gt;
If you're a planner, please pick up and move one or more of these roles/responsibilities to your name above. Thanks!&lt;br /&gt;
&lt;br /&gt;
Role info / details:&lt;br /&gt;
* '''intro and kickoff''' - run the introductory session and help start the microformatsDevCamp with traditional BarCamp intros/3tags and explanation of the BarCamp format.&lt;br /&gt;
* '''food''' - coordinate / match up sponsors with meals and make sure the meals arrive and are setup for event participants during the event.&lt;br /&gt;
* '''sponsor wrangler''' - for food, t-shirts. per definition given in: http://www.cleverclevergirl.com/?p=10 : &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Drafts a message to send to potential sponsors, follows up leads from others for potential sponsors, collects info, logos (in vector format), and money from sponsors and also sees that receipts (if necessary) are issued at the end. &amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* '''t-shirts''' - get estimate, make sure to order in time for the event. Ben Ward has done some work on this - check with him.&lt;br /&gt;
* '''volunteer coordinator''' - recruit and organize volunteers the day of the event to help out with food, setup&lt;br /&gt;
* '''cleanup''' - enlist help of volunteers and all devCamp participants to help with cleanup&lt;br /&gt;
&lt;br /&gt;
===T-shirts===&lt;br /&gt;
* get estimates from vendor(s) for different quantities&lt;br /&gt;
** get vendor contact info from Ben Ward who has already looked into this and found a reliable vendor that can deliver high quality t-shirts in a week or less time.&lt;br /&gt;
** Suggestion: 100 shirts, provide them to individuals who sponsor microformatsDevCamp with a $20 or more donation to help pay for t-shirts and snacks/food (if any funds from covering t-shirts are remaining). [[User:Tantek|Tantek]] 17:40, 17 July 2009 (UTC)&lt;br /&gt;
* make/reuse design (get original t-shirt design details from Dan Cederholm)&lt;br /&gt;
* order/print - make sure folks who donated at the [[events/2009-06-26-microformats-4th-bday|4th bday party]] get their shirts&lt;br /&gt;
&lt;br /&gt;
* '''T-shirts are ordered!''' Printer is [http://www.screenprintguy.com The Screen Print Guy] located out on 23rd Ave. Will be available for pickup by Friday July 24th. (This is great! [[User:Tantek|Tantek]] 01:03, 21 July 2009 (UTC))&lt;br /&gt;
** Total # of shirts ordered: 100. Size breakdown: Men's: 10 small, 30 medium, 25 large. Women's: 10 small, 15 medium, 10 large.&lt;br /&gt;
** Total cost: $918.00 (would have been cheaper but they had a surcharge for the rush order). I have charged 50% of the cost already to place the order. Other 50% due at time of pickup.&lt;br /&gt;
&lt;br /&gt;
Note that, including cash donations from the 4th birthday party, we have pledges for ~$1850 to budget with as of 2009-7-24 [[User:Rohit|Rohit]]&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39838</id>
		<title>events/2009-07-25-dev-camp</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39838"/>
		<updated>2009-07-24T20:29:21Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* Sponsors */  new sponsor!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;microformatsDevCamp&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;event-page vevent&amp;quot;&amp;gt;&lt;br /&gt;
;When&lt;br /&gt;
:&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-25&amp;lt;/span&amp;gt; from &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;12:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; to &amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-26&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;17:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
;Where&lt;br /&gt;
:&amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;org fn&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;&amp;lt;em style=&amp;quot;border-bottom:dotted 1px&amp;quot; title=&amp;quot;Pier 38 is NOWHERE NEAR Pier 39, just to be clear. Pier 38 is SOUTH of the Bay Bridge.&amp;quot;&amp;gt;Pier 38&amp;lt;/em&amp;gt;, The Embarcadero between Brannan and Townsend&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;CA&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;94107&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;geo&amp;quot;&amp;gt;[http://maps.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;view=map&amp;amp;q=%2BAutomattic,+The+Embarcadero,+San+Francisco,+CA+94107&amp;amp;sll=37.752736,-122.402826&amp;amp;sspn=0.13844,0.217667&amp;amp;gl=us&amp;amp;ie=UTF8&amp;amp;t=h&amp;amp;layer=c&amp;amp;cbll=37.782877,-122.388062&amp;amp;panoid=kB1DhzPP5DYl5pgHBRxdPg&amp;amp;cbp=12,123.84,,0,2.44&amp;amp;ll=37.783053,-122.388044&amp;amp;spn=0,359.996599&amp;amp;z=18 View location at latitude:&amp;lt;span class=&amp;quot;latitude&amp;quot;&amp;gt;37.782769&amp;lt;/span&amp;gt;, longitude:&amp;lt;span class=&amp;quot;longitude&amp;quot;&amp;gt;-122.387837&amp;lt;/span&amp;gt;]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
:'''MUNI''': [http://playfoursquare.com/venue/72202 Brannan] (N,T)&lt;br /&gt;
:'''BART''': Embarcadero station, then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__IB3&amp;amp;s=6992&amp;amp;ts=4506 take MUNI N-Judah inbound] or T-Third inbound to Brannan stop.&lt;br /&gt;
:'''Caltrain''': 4th &amp;amp; King st., then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__OB2&amp;amp;s=5240&amp;amp;ts=7145 take MUNI N-Judah outbound] or T-Third outbound to Brannan stop.&lt;br /&gt;
;What&lt;br /&gt;
:&amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;microformatsDevCamp!&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;The first ever microformatsDevCamp, for authors, designers, publishers, developers, engineers building pages, sites, and tools with microformats.&amp;lt;/span&amp;gt;&lt;br /&gt;
;How much&lt;br /&gt;
:$20 suggested donation (gets you a t-shirt while supplies last). &amp;lt;em style=&amp;quot;display:block&amp;quot;&amp;gt;No one turned away for lack of funds.&amp;lt;/em&amp;gt;&lt;br /&gt;
;URLs&lt;br /&gt;
:&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://microformats.org/wiki/events/2009-07-25-dev-camp&amp;lt;/span&amp;gt;&lt;br /&gt;
:http://upcoming.yahoo.com/event/2888376/&lt;br /&gt;
:http://www.facebook.com/event.php?eid=102571118403&lt;br /&gt;
;short URL&lt;br /&gt;
:http://tr.im/ufdevcamp&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''[http://suda.co.uk/projects/microformats/hcalendar/get-cal.php?uri=http://microformats.org/wiki/events/2009-07-25-dev-camp Add this event to your calendar]''' http://www.boogdesign.com/images/buttons/microformat_hcalendar.png&lt;br /&gt;
&lt;br /&gt;
== Sponsors == &lt;br /&gt;
microformatsDevCamp is made possible thanks to the generosity of our corporate and individual sponsors!&lt;br /&gt;
&lt;br /&gt;
* Venue&lt;br /&gt;
**[http://automattic.com Automattic]&lt;br /&gt;
* Meals&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://spinn3r.com Spinn3r]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://commerce.net CommerceNet]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://visitmix.com/Lab/Oomph Microsoft MIX Online]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://mBLAST.com/ mBLAST]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://steve.ganz.name/ Steve Ganz]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.carlaborsoi.com/ Carla Borsoi]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* Promotion&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://objectadjective.com Object Adjective]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://cindyli.com Cindy Li]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sponsorships ===&lt;br /&gt;
Help sponsor microformatsDevCamp:&lt;br /&gt;
&lt;br /&gt;
* Saturday 25th&lt;br /&gt;
** Lunch - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://spinn3r.com Spinn3r]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; &lt;br /&gt;
** Dinner - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://commerce.net CommerceNet]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Evening Social &amp;amp; Snacks - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://mBLAST.com/ mBLAST]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*** Beer - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://steve.ganz.name/ Steve Ganz]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* Sunday 26th&lt;br /&gt;
** Breakfast - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.carlaborsoi.com/ Carla Borsoi]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Lunch - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://visitmix.com/Lab/Oomph Microsoft MIX Online]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* More Ideas...&lt;br /&gt;
** Stickers - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://objectadjective.com Object Adjective]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Buttons - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://cindyli.com Cindy Li]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Coffee&lt;br /&gt;
** Snacks&lt;br /&gt;
** T-shirts&lt;br /&gt;
** ______?&lt;br /&gt;
&lt;br /&gt;
For meals, we're planning on something simple like bagels+coffee for breakfast (note: Tantek will purchase supplies for Sunday morning); or pizza or &amp;lt;del&amp;gt;indian delivery&amp;lt;/del&amp;gt; ([http://www.mydeedees.com/ Deedees Indian Food!]). We'll arrange for sponsors to pay vendors directly...&lt;br /&gt;
&lt;br /&gt;
== attendees ==&lt;br /&gt;
microformatsDevCamp, like any BarCamp, needs you! &lt;br /&gt;
&lt;br /&gt;
Sign up to volunteer, attend, design, code, and build with microformats!&lt;br /&gt;
&lt;br /&gt;
=== planners ===&lt;br /&gt;
Want to help organize and plan the first microformatsDevCamp? Sign up and be sure to pick up a planner role (see below).&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Tantek|Tantek Çelik]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''organizing, venue acquisition, intro and kickoff'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Rohit|Rohit Khare]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''venue acquisition, sponsor wrangler, food'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:EdwardOConnor |Edward O'Connor]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;nickname&amp;quot;&amp;gt;Ted&amp;lt;/span&amp;gt;) - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''volunteer coordinator, cleanup'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Pseudowish|Lauren Scime]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''t-shirts, other coordination needs tbd'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Chris Messina|Chris Messina]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''connector and advisor'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
Planners: please see and keep up with the [[#planner_to-do]] section!&lt;br /&gt;
&lt;br /&gt;
=== volunteers ===&lt;br /&gt;
Like all [http://barcamp.org BarCamps], this event is what it is because of what everyone puts into it. Volunteer to help setup, check people in, get them setup with a name badge, clean up, and help people in general have a good time and get things done.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Cindy Li&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;helping with microformatsDevCamp logo design&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. done!&lt;br /&gt;
** full resolution logo: &amp;lt;span class=&amp;quot;attach&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&amp;lt;/nowiki&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** on Flickr: http://www.flickr.com/photos/cindyli/3726302070/&lt;br /&gt;
** &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;designed and ordered buttons for event.&amp;lt;/span&amp;gt;Done!&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:BeauLebens|Beau Lebens]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;, Automattic, [[http://dentedreality.com.au/ Dented Reality]]. &amp;lt;span class=&lt;br /&gt;
note&amp;quot;&amp;gt;I know my way around the venue, so can help sort out power strips, projectors etc&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== participants ===&lt;br /&gt;
Want to design interfaces or build stuff with microformats and want help doing it? Sign up! Add yourself. Note your site (with [[hCard]] if you have it), interests/projects, and tag yourself as a web '''author''', '''designer''', '''publisher''', '''developer''' - pick at least one.&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://tantek.com Tantek Çelik]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/strong&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt; (user interface interaction)&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://yury.name Yury Lifshits]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.markng.co.uk Mark Ng]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.ics.uci.edu/~rohit Rohit Khare]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.jasonbolton.com Jason Bolton]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;front-end designer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://alpern.org Micah Alpern]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt; (user interface interaction)&amp;lt;/span&amp;gt; (will be there Sunday).&lt;br /&gt;
# (and about 35 more folks,  according to [http://upcoming.yahoo.com/event/2888376/ Upcoming] as of noon Thursday 2009-7-23)&lt;br /&gt;
# ...&lt;br /&gt;
&lt;br /&gt;
==venue==&lt;br /&gt;
Automattic has very graciously agreed to host microformatsDevCamp. The venue has:&lt;br /&gt;
* wifi&lt;br /&gt;
* power. power outlets, extension cords, power strips&lt;br /&gt;
* 4-5 rooms/meeting areas. &lt;br /&gt;
* 3 projectors&lt;br /&gt;
* 1 whiteboard.&lt;br /&gt;
* sink, water.&lt;br /&gt;
&lt;br /&gt;
As Automattic is donating the venue, as participants it is our responsibility to take excellent care of the venue, leaving it as good or better than we found it.&lt;br /&gt;
&lt;br /&gt;
Some amount of camping overnight at the venue will be possible.&lt;br /&gt;
&lt;br /&gt;
=== nearby food ===&lt;br /&gt;
Suggestions for nearby (easy/quick walking distance) drinks, snacks, food.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Bayside Market&amp;lt;/span&amp;gt; - fresh &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;fruit&amp;lt;/span&amp;gt; and &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;vegetables&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;sandwiches&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;url&amp;quot;&amp;gt;http://www.yelp.com/biz/bayside-market-san-francisco-2&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Crossroads Cafe&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;coffee&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;espresso&amp;lt;/span&amp;gt; drinks, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;shakes&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;smoothies&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;bagels&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;sandwiches&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;url&amp;quot;&amp;gt;http://www.yelp.com/biz/crossroads-cafe-san-francisco-3&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== tags ==&lt;br /&gt;
Please use the following tags when tagging related content (blog posts, photos, videos):&lt;br /&gt;
&lt;br /&gt;
tags:&lt;br /&gt;
&amp;lt;kbd class=&amp;quot;tags&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;'''#ufdevcamp'''&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;ufdevcampsf&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCampSF&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats-meetup&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp2009&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;The-Embarcadero&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;san-francisco&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;upcoming:event=2888376&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/kbd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Track:&lt;br /&gt;
* [http://search.twitter.com/search?q=ufdevcamp #ufdevcamp on Twitter Search].&lt;br /&gt;
* [http://identi.ca/tag/ufdevcamp #ufdevcamp] tagspace on identi.ca.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;group&amp;quot;&amp;gt;Groups&amp;lt;/span&amp;gt;:&lt;br /&gt;
* [http://identi.ca/group/microformats !microformats Identi.ca group] (aliases: !mf and !uf). Join and address the whole group. Notices to this group can also be tracked from [http://identi.ca/tag/microformats #microformats]&lt;br /&gt;
&lt;br /&gt;
== notes ==&lt;br /&gt;
topics discussed:&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== session ideas ==&lt;br /&gt;
Have an idea for a session? Please read &amp;lt;cite&amp;gt;[http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ What is a DevCamp?]&amp;lt;/cite&amp;gt; and then suggest something or add a &amp;quot;+1&amp;quot; to existing suggestions, and sign your suggestion or opinion with your Username with &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* '''microformats and user sign-up user interface''' - how can importing and subscribing to hCards help make user sign-up easier and thus get more users signed up quicker? [[User:Tantek|Tantek]]&lt;br /&gt;
* '''using hCard to build a self-updating address book''' - in the search for an address book/contact list that actually stays up to date, hCard may be the key. [[User:Beaulebens|Beau Lebens]]&lt;br /&gt;
* '''microWall'' - make sure to print a screen-shot of every microformat-savvy tool that comes up during the camp, and stick them on the wall. It will be an amazing backdrop for a group photo... [[User:Rohit|Rohit]]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== sessions ==&lt;br /&gt;
Please create a wiki page for any session you lead or attend and link to it from here.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== photographs ==&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== blog posts ==&lt;br /&gt;
Blog posts about the devCamp. Newest first.&lt;br /&gt;
* [http://microformats.org/blog/2009/07/20/microformatsdevcamp-this-weekend/ 2009-07-21 microformats.org: microformatsDevCamp this weekend!]&lt;br /&gt;
* [http://radar.oreilly.com/2009/07/four-short-links-17-july-2009.html O'Reilly Radar: Four short links]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
* [http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ Chris Messina: What is a DevCamp?]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt; &amp;lt;!-- End of @vevent --&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
== Related Pages==&lt;br /&gt;
microformatsDevCamp is one of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
{{events-related-pages}}&lt;br /&gt;
&lt;br /&gt;
== planner to-do ==&lt;br /&gt;
&lt;br /&gt;
=== planner roles ===&lt;br /&gt;
We need the following roles and responsibilities to be picked up by planners!&lt;br /&gt;
* '''setup''' - be in charge of setup the day of, coordinate with venue on setup plenty of time *before* the start of the camp! setup: power cords, power strips, calendar grid for sessions, tables and chairs in rooms/meeting areas, projectors&lt;br /&gt;
* '''welcome desk''' - welcome microformatsDevCamp attendees at the entrance of the venue, make sure they get a name tag and instruct them to tag themselves as primarily/secondarily being a web '''author''', '''designer''', '''publisher''', '''developer''', pick at least one. (as they should also do when the sign up on the wiki in the attendees section above!)&lt;br /&gt;
&lt;br /&gt;
If you're a planner, please pick up and move one or more of these roles/responsibilities to your name above. Thanks!&lt;br /&gt;
&lt;br /&gt;
Role info / details:&lt;br /&gt;
* '''intro and kickoff''' - run the introductory session and help start the microformatsDevCamp with traditional BarCamp intros/3tags and explanation of the BarCamp format.&lt;br /&gt;
* '''food''' - coordinate / match up sponsors with meals and make sure the meals arrive and are setup for event participants during the event.&lt;br /&gt;
* '''sponsor wrangler''' - for food, t-shirts. per definition given in: http://www.cleverclevergirl.com/?p=10 : &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Drafts a message to send to potential sponsors, follows up leads from others for potential sponsors, collects info, logos (in vector format), and money from sponsors and also sees that receipts (if necessary) are issued at the end. &amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* '''t-shirts''' - get estimate, make sure to order in time for the event. Ben Ward has done some work on this - check with him.&lt;br /&gt;
* '''volunteer coordinator''' - recruit and organize volunteers the day of the event to help out with food, setup&lt;br /&gt;
* '''cleanup''' - enlist help of volunteers and all devCamp participants to help with cleanup&lt;br /&gt;
&lt;br /&gt;
===T-shirts===&lt;br /&gt;
* get estimates from vendor(s) for different quantities&lt;br /&gt;
** get vendor contact info from Ben Ward who has already looked into this and found a reliable vendor that can deliver high quality t-shirts in a week or less time.&lt;br /&gt;
** Suggestion: 100 shirts, provide them to individuals who sponsor microformatsDevCamp with a $20 or more donation to help pay for t-shirts and snacks/food (if any funds from covering t-shirts are remaining). [[User:Tantek|Tantek]] 17:40, 17 July 2009 (UTC)&lt;br /&gt;
* make/reuse design (get original t-shirt design details from Dan Cederholm)&lt;br /&gt;
* order/print - make sure folks who donated at the [[events/2009-06-26-microformats-4th-bday|4th bday party]] get their shirts&lt;br /&gt;
&lt;br /&gt;
* '''T-shirts are ordered!''' Printer is [http://www.screenprintguy.com The Screen Print Guy] located out on 23rd Ave. Will be available for pickup by Friday July 24th. (This is great! [[User:Tantek|Tantek]] 01:03, 21 July 2009 (UTC))&lt;br /&gt;
** Total # of shirts ordered: 100. Size breakdown: Men's: 10 small, 30 medium, 25 large. Women's: 10 small, 15 medium, 10 large.&lt;br /&gt;
** Total cost: $918.00 (would have been cheaper but they had a surcharge for the rush order). I have charged 50% of the cost already to place the order. Other 50% due at time of pickup.&lt;br /&gt;
&lt;br /&gt;
Note that, including cash donations from the 4th birthday party, we have pledges for ~$1450 to budget with as of 2009-7-23 [[User:Rohit|Rohit]]&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39833</id>
		<title>events/2009-07-25-dev-camp</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39833"/>
		<updated>2009-07-24T03:59:32Z</updated>

		<summary type="html">&lt;p&gt;Rohit: consolidated all sponsorship info&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;microformatsDevCamp&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;event-page vevent&amp;quot;&amp;gt;&lt;br /&gt;
;When&lt;br /&gt;
:&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-25&amp;lt;/span&amp;gt; from &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;12:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; to &amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-26&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;17:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
;Where&lt;br /&gt;
:&amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;org fn&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;&amp;lt;em style=&amp;quot;border-bottom:dotted 1px&amp;quot; title=&amp;quot;Pier 38 is NOWHERE NEAR Pier 39, just to be clear. Pier 38 is SOUTH of the Bay Bridge.&amp;quot;&amp;gt;Pier 38&amp;lt;/em&amp;gt;, The Embarcadero between Brannan and Townsend&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;CA&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;94107&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;geo&amp;quot;&amp;gt;[http://maps.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;view=map&amp;amp;q=%2BAutomattic,+The+Embarcadero,+San+Francisco,+CA+94107&amp;amp;sll=37.752736,-122.402826&amp;amp;sspn=0.13844,0.217667&amp;amp;gl=us&amp;amp;ie=UTF8&amp;amp;t=h&amp;amp;layer=c&amp;amp;cbll=37.782877,-122.388062&amp;amp;panoid=kB1DhzPP5DYl5pgHBRxdPg&amp;amp;cbp=12,123.84,,0,2.44&amp;amp;ll=37.783053,-122.388044&amp;amp;spn=0,359.996599&amp;amp;z=18 View location at latitude:&amp;lt;span class=&amp;quot;latitude&amp;quot;&amp;gt;37.782769&amp;lt;/span&amp;gt;, longitude:&amp;lt;span class=&amp;quot;longitude&amp;quot;&amp;gt;-122.387837&amp;lt;/span&amp;gt;]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
:'''MUNI''': [http://playfoursquare.com/venue/72202 Brannan] (N,T)&lt;br /&gt;
:'''BART''': Embarcadero station, then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__IB3&amp;amp;s=6992&amp;amp;ts=4506 take MUNI N-Judah inbound] or T-Third inbound to Brannan stop.&lt;br /&gt;
:'''Caltrain''': 4th &amp;amp; King st., then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__OB2&amp;amp;s=5240&amp;amp;ts=7145 take MUNI N-Judah outbound] or T-Third outbound to Brannan stop.&lt;br /&gt;
;What&lt;br /&gt;
:&amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;microformatsDevCamp!&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;The first ever microformatsDevCamp, for authors, designers, publishers, developers, engineers building pages, sites, and tools with microformats.&amp;lt;/span&amp;gt;&lt;br /&gt;
;How much&lt;br /&gt;
:$20 suggested donation (gets you a t-shirt while supplies last). &amp;lt;em style=&amp;quot;display:block&amp;quot;&amp;gt;No one turned away for lack of funds.&amp;lt;/em&amp;gt;&lt;br /&gt;
;URLs&lt;br /&gt;
:&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://microformats.org/wiki/events/2009-07-25-dev-camp&amp;lt;/span&amp;gt;&lt;br /&gt;
:http://upcoming.yahoo.com/event/2888376/&lt;br /&gt;
:http://www.facebook.com/event.php?eid=102571118403&lt;br /&gt;
;short URL&lt;br /&gt;
:http://tr.im/ufdevcamp&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''[http://suda.co.uk/projects/microformats/hcalendar/get-cal.php?uri=http://microformats.org/wiki/events/2009-07-25-dev-camp Add this event to your calendar]''' http://www.boogdesign.com/images/buttons/microformat_hcalendar.png&lt;br /&gt;
&lt;br /&gt;
== Sponsors == &lt;br /&gt;
microformatsDevCamp is made possible thanks to the generosity of our corporate and individual sponsors!&lt;br /&gt;
&lt;br /&gt;
* Venue&lt;br /&gt;
**[http://automattic.com Automattic]&lt;br /&gt;
* Meals&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://spinn3r.com Spinn3r]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://commerce.net CommerceNet]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://visitmix.com/Lab/Oomph Microsoft MIX Online]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://steve.ganz.name/ Steve Ganz]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.carlaborsoi.com/ Carla Borsoi]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* Promotion&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://objectadjective.com Object Adjective]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://cindyli.com Cindy Li]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sponsorships ===&lt;br /&gt;
Help sponsor microformatsDevCamp:&lt;br /&gt;
&lt;br /&gt;
* Saturday 25th&lt;br /&gt;
** Lunch - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://spinn3r.com Spinn3r]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; &lt;br /&gt;
** Dinner - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://commerce.net CommerceNet]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Social Event - sponsored by ________&lt;br /&gt;
*** Beer - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://steve.ganz.name/ Steve Ganz]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Late Night Snacks - sponsored by ________&lt;br /&gt;
* Sunday 26th&lt;br /&gt;
** Breakfast - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.carlaborsoi.com/ Carla Borsoi]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Lunch - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://visitmix.com/Lab/Oomph Microsoft MIX Online]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* More Ideas...&lt;br /&gt;
** Stickers - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://objectadjective.com Object Adjective]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Buttons - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://cindyli.com Cindy Li]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Coffee&lt;br /&gt;
** Snacks&lt;br /&gt;
** T-shirts&lt;br /&gt;
** ______?&lt;br /&gt;
&lt;br /&gt;
For meals, we're planning on something simple like bagels+coffee for breakfast (note: Tantek will purchase supplies for Sunday morning); or pizza or &amp;lt;del&amp;gt;indian delivery&amp;lt;/del&amp;gt; ([http://www.mydeedees.com/ Deedees Indian Food!]). We'll arrange for sponsors to pay vendors directly...&lt;br /&gt;
&lt;br /&gt;
== attendees ==&lt;br /&gt;
microformatsDevCamp, like any BarCamp, needs you! &lt;br /&gt;
&lt;br /&gt;
Sign up to volunteer, attend, design, code, and build with microformats!&lt;br /&gt;
&lt;br /&gt;
=== planners ===&lt;br /&gt;
Want to help organize and plan the first microformatsDevCamp? Sign up and be sure to pick up a planner role (see below).&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Tantek|Tantek Çelik]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''organizing, venue acquisition, intro and kickoff'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Rohit|Rohit Khare]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''venue acquisition, sponsor wrangler, food'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:EdwardOConnor |Edward O'Connor]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;nickname&amp;quot;&amp;gt;Ted&amp;lt;/span&amp;gt;) - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''volunteer coordinator, cleanup'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Pseudowish|Lauren Scime]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''t-shirts, other coordination needs tbd'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Chris Messina|Chris Messina]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''connector and advisor'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
Planners: please see and keep up with the [[#planner_to-do]] section!&lt;br /&gt;
&lt;br /&gt;
=== volunteers ===&lt;br /&gt;
Like all [http://barcamp.org BarCamps], this event is what it is because of what everyone puts into it. Volunteer to help setup, check people in, get them setup with a name badge, clean up, and help people in general have a good time and get things done.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Cindy Li&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;helping with microformatsDevCamp logo design&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. done!&lt;br /&gt;
** full resolution logo: &amp;lt;span class=&amp;quot;attach&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&amp;lt;/nowiki&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** on Flickr: http://www.flickr.com/photos/cindyli/3726302070/&lt;br /&gt;
** &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;designed and ordered buttons for event.&amp;lt;/span&amp;gt;Done!&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:BeauLebens|Beau Lebens]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;, Automattic, [[http://dentedreality.com.au/ Dented Reality]]. &amp;lt;span class=&lt;br /&gt;
note&amp;quot;&amp;gt;I know my way around the venue, so can help sort out power strips, projectors etc&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== participants ===&lt;br /&gt;
Want to design interfaces or build stuff with microformats and want help doing it? Sign up! Add yourself. Note your site (with [[hCard]] if you have it), interests/projects, and tag yourself as a web '''author''', '''designer''', '''publisher''', '''developer''' - pick at least one.&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://tantek.com Tantek Çelik]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/strong&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt; (user interface interaction)&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://yury.name Yury Lifshits]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.markng.co.uk Mark Ng]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.ics.uci.edu/~rohit Rohit Khare]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://alpern.org Micah Alpern]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt; (user interface interaction)&amp;lt;/span&amp;gt; (will be there Sunday).&lt;br /&gt;
# (and about 35 more folks,  according to [http://upcoming.yahoo.com/event/2888376/ Upcoming] as of noon Thursday 2009-7-23)&lt;br /&gt;
# ...&lt;br /&gt;
&lt;br /&gt;
==venue==&lt;br /&gt;
Automattic has very graciously agreed to host microformatsDevCamp. The venue has:&lt;br /&gt;
* wifi&lt;br /&gt;
* power. power outlets, extension cords, power strips&lt;br /&gt;
* 4-5 rooms/meeting areas. &lt;br /&gt;
* 3 projectors&lt;br /&gt;
* 1 whiteboard.&lt;br /&gt;
* sink, water.&lt;br /&gt;
&lt;br /&gt;
As Automattic is donating the venue, as participants it is our responsibility to take excellent care of the venue, leaving it as good or better than we found it.&lt;br /&gt;
&lt;br /&gt;
Some amount of camping overnight at the venue will be possible.&lt;br /&gt;
&lt;br /&gt;
=== nearby food ===&lt;br /&gt;
Suggestions for nearby (easy/quick walking distance) drinks, snacks, food.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Bayside Market&amp;lt;/span&amp;gt; - fresh &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;fruit&amp;lt;/span&amp;gt; and &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;vegetables&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;sandwiches&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;url&amp;quot;&amp;gt;http://www.yelp.com/biz/bayside-market-san-francisco-2&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Crossroads Cafe&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;coffee&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;espresso&amp;lt;/span&amp;gt; drinks, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;shakes&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;smoothies&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;bagels&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;sandwiches&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;url&amp;quot;&amp;gt;http://www.yelp.com/biz/crossroads-cafe-san-francisco-3&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== tags ==&lt;br /&gt;
Please use the following tags when tagging related content (blog posts, photos, videos):&lt;br /&gt;
&lt;br /&gt;
tags:&lt;br /&gt;
&amp;lt;kbd class=&amp;quot;tags&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;'''#ufdevcamp'''&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;ufdevcampsf&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCampSF&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats-meetup&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp2009&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;The-Embarcadero&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;san-francisco&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;upcoming:event=2888376&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/kbd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Track:&lt;br /&gt;
* [http://search.twitter.com/search?q=ufdevcamp #ufdevcamp on Twitter Search].&lt;br /&gt;
* [http://identi.ca/tag/ufdevcamp #ufdevcamp] tagspace on identi.ca.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;group&amp;quot;&amp;gt;Groups&amp;lt;/span&amp;gt;:&lt;br /&gt;
* [http://identi.ca/group/microformats !microformats Identi.ca group] (aliases: !mf and !uf). Join and address the whole group. Notices to this group can also be tracked from [http://identi.ca/tag/microformats #microformats]&lt;br /&gt;
&lt;br /&gt;
== notes ==&lt;br /&gt;
topics discussed:&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== session ideas ==&lt;br /&gt;
Have an idea for a session? Please read &amp;lt;cite&amp;gt;[http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ What is a DevCamp?]&amp;lt;/cite&amp;gt; and then suggest something or add a &amp;quot;+1&amp;quot; to existing suggestions, and sign your suggestion or opinion with your Username with &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* '''microformats and user sign-up user interface''' - how can importing and subscribing to hCards help make user sign-up easier and thus get more users signed up quicker? [[User:Tantek|Tantek]]&lt;br /&gt;
* '''using hCard to build a self-updating address book''' - in the search for an address book/contact list that actually stays up to date, hCard may be the key. [[User:Beaulebens|Beau Lebens]]&lt;br /&gt;
* '''microWall'' - make sure to print a screen-shot of every microformat-savvy tool that comes up during the camp, and stick them on the wall. It will be an amazing backdrop for a group photo... [[User:Rohit|Rohit]]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== sessions ==&lt;br /&gt;
Please create a wiki page for any session you lead or attend and link to it from here.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== photographs ==&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== blog posts ==&lt;br /&gt;
Blog posts about the devCamp. Newest first.&lt;br /&gt;
* [http://microformats.org/blog/2009/07/20/microformatsdevcamp-this-weekend/ 2009-07-21 microformats.org: microformatsDevCamp this weekend!]&lt;br /&gt;
* [http://radar.oreilly.com/2009/07/four-short-links-17-july-2009.html O'Reilly Radar: Four short links]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
* [http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ Chris Messina: What is a DevCamp?]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt; &amp;lt;!-- End of @vevent --&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
== Related Pages==&lt;br /&gt;
microformatsDevCamp is one of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
{{events-related-pages}}&lt;br /&gt;
&lt;br /&gt;
== planner to-do ==&lt;br /&gt;
&lt;br /&gt;
=== planner roles ===&lt;br /&gt;
We need the following roles and responsibilities to be picked up by planners!&lt;br /&gt;
* '''setup''' - be in charge of setup the day of, coordinate with venue on setup plenty of time *before* the start of the camp! setup: power cords, power strips, calendar grid for sessions, tables and chairs in rooms/meeting areas, projectors&lt;br /&gt;
* '''welcome desk''' - welcome microformatsDevCamp attendees at the entrance of the venue, make sure they get a name tag and instruct them to tag themselves as primarily/secondarily being a web '''author''', '''designer''', '''publisher''', '''developer''', pick at least one. (as they should also do when the sign up on the wiki in the attendees section above!)&lt;br /&gt;
&lt;br /&gt;
If you're a planner, please pick up and move one or more of these roles/responsibilities to your name above. Thanks!&lt;br /&gt;
&lt;br /&gt;
Role info / details:&lt;br /&gt;
* '''intro and kickoff''' - run the introductory session and help start the microformatsDevCamp with traditional BarCamp intros/3tags and explanation of the BarCamp format.&lt;br /&gt;
* '''food''' - coordinate / match up sponsors with meals and make sure the meals arrive and are setup for event participants during the event.&lt;br /&gt;
* '''sponsor wrangler''' - for food, t-shirts. per definition given in: http://www.cleverclevergirl.com/?p=10 : &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Drafts a message to send to potential sponsors, follows up leads from others for potential sponsors, collects info, logos (in vector format), and money from sponsors and also sees that receipts (if necessary) are issued at the end. &amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* '''t-shirts''' - get estimate, make sure to order in time for the event. Ben Ward has done some work on this - check with him.&lt;br /&gt;
* '''volunteer coordinator''' - recruit and organize volunteers the day of the event to help out with food, setup&lt;br /&gt;
* '''cleanup''' - enlist help of volunteers and all devCamp participants to help with cleanup&lt;br /&gt;
&lt;br /&gt;
===T-shirts===&lt;br /&gt;
* get estimates from vendor(s) for different quantities&lt;br /&gt;
** get vendor contact info from Ben Ward who has already looked into this and found a reliable vendor that can deliver high quality t-shirts in a week or less time.&lt;br /&gt;
** Suggestion: 100 shirts, provide them to individuals who sponsor microformatsDevCamp with a $20 or more donation to help pay for t-shirts and snacks/food (if any funds from covering t-shirts are remaining). [[User:Tantek|Tantek]] 17:40, 17 July 2009 (UTC)&lt;br /&gt;
* make/reuse design (get original t-shirt design details from Dan Cederholm)&lt;br /&gt;
* order/print - make sure folks who donated at the [[events/2009-06-26-microformats-4th-bday|4th bday party]] get their shirts&lt;br /&gt;
&lt;br /&gt;
* '''T-shirts are ordered!''' Printer is [http://www.screenprintguy.com The Screen Print Guy] located out on 23rd Ave. Will be available for pickup by Friday July 24th. (This is great! [[User:Tantek|Tantek]] 01:03, 21 July 2009 (UTC))&lt;br /&gt;
** Total # of shirts ordered: 100. Size breakdown: Men's: 10 small, 30 medium, 25 large. Women's: 10 small, 15 medium, 10 large.&lt;br /&gt;
** Total cost: $918.00 (would have been cheaper but they had a surcharge for the rush order). I have charged 50% of the cost already to place the order. Other 50% due at time of pickup.&lt;br /&gt;
&lt;br /&gt;
Note that, including cash donations from the 4th birthday party, we have pledges for ~$1450 to budget with as of 2009-7-23 [[User:Rohit|Rohit]]&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39832</id>
		<title>events/2009-07-25-dev-camp</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39832"/>
		<updated>2009-07-24T03:49:33Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* Sponsorships */  talking to caterers&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;microformatsDevCamp&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;event-page vevent&amp;quot;&amp;gt;&lt;br /&gt;
;When&lt;br /&gt;
:&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-25&amp;lt;/span&amp;gt; from &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;12:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; to &amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-26&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;17:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
;Where&lt;br /&gt;
:&amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;org fn&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;&amp;lt;em style=&amp;quot;border-bottom:dotted 1px&amp;quot; title=&amp;quot;Pier 38 is NOWHERE NEAR Pier 39, just to be clear. Pier 38 is SOUTH of the Bay Bridge.&amp;quot;&amp;gt;Pier 38&amp;lt;/em&amp;gt;, The Embarcadero between Brannan and Townsend&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;CA&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;94107&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;geo&amp;quot;&amp;gt;[http://maps.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;view=map&amp;amp;q=%2BAutomattic,+The+Embarcadero,+San+Francisco,+CA+94107&amp;amp;sll=37.752736,-122.402826&amp;amp;sspn=0.13844,0.217667&amp;amp;gl=us&amp;amp;ie=UTF8&amp;amp;t=h&amp;amp;layer=c&amp;amp;cbll=37.782877,-122.388062&amp;amp;panoid=kB1DhzPP5DYl5pgHBRxdPg&amp;amp;cbp=12,123.84,,0,2.44&amp;amp;ll=37.783053,-122.388044&amp;amp;spn=0,359.996599&amp;amp;z=18 View location at latitude:&amp;lt;span class=&amp;quot;latitude&amp;quot;&amp;gt;37.782769&amp;lt;/span&amp;gt;, longitude:&amp;lt;span class=&amp;quot;longitude&amp;quot;&amp;gt;-122.387837&amp;lt;/span&amp;gt;]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
:'''MUNI''': [http://playfoursquare.com/venue/72202 Brannan] (N,T)&lt;br /&gt;
:'''BART''': Embarcadero station, then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__IB3&amp;amp;s=6992&amp;amp;ts=4506 take MUNI N-Judah inbound] or T-Third inbound to Brannan stop.&lt;br /&gt;
:'''Caltrain''': 4th &amp;amp; King st., then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__OB2&amp;amp;s=5240&amp;amp;ts=7145 take MUNI N-Judah outbound] or T-Third outbound to Brannan stop.&lt;br /&gt;
;What&lt;br /&gt;
:&amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;microformatsDevCamp!&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;The first ever microformatsDevCamp, for authors, designers, publishers, developers, engineers building pages, sites, and tools with microformats.&amp;lt;/span&amp;gt;&lt;br /&gt;
;How much&lt;br /&gt;
:$20 suggested donation (gets you a t-shirt while supplies last). &amp;lt;em style=&amp;quot;display:block&amp;quot;&amp;gt;No one turned away for lack of funds.&amp;lt;/em&amp;gt;&lt;br /&gt;
;URLs&lt;br /&gt;
:&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://microformats.org/wiki/events/2009-07-25-dev-camp&amp;lt;/span&amp;gt;&lt;br /&gt;
:http://upcoming.yahoo.com/event/2888376/&lt;br /&gt;
:http://www.facebook.com/event.php?eid=102571118403&lt;br /&gt;
;short URL&lt;br /&gt;
:http://tr.im/ufdevcamp&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''[http://suda.co.uk/projects/microformats/hcalendar/get-cal.php?uri=http://microformats.org/wiki/events/2009-07-25-dev-camp Add this event to your calendar]''' http://www.boogdesign.com/images/buttons/microformat_hcalendar.png&lt;br /&gt;
&lt;br /&gt;
== Sponsors == &lt;br /&gt;
microformatsDevCamp is made possible thanks to the generosity of our corporate and individual sponsors!&lt;br /&gt;
&lt;br /&gt;
* Venue&lt;br /&gt;
**[http://automattic.com Automattic]&lt;br /&gt;
* Meals&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://spinn3r.com Spinn3r]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://commerce.net CommerceNet]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://visitmix.com/Lab/Oomph Microsoft MIX Online]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://steve.ganz.name/ Steve Ganz]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.carlaborsoi.com/ Carla Borsoi]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* Promotion&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://objectadjective.com Object Adjective]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://cindyli.com Cindy Li]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sponsorships ===&lt;br /&gt;
Help sponsor microformatsDevCamp:&lt;br /&gt;
&lt;br /&gt;
* Saturday 25th&lt;br /&gt;
** Lunch - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://spinn3r.com Spinn3r]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; &lt;br /&gt;
** Dinner - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://commerce.net CommerceNet]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Social Event - sponsored by ________&lt;br /&gt;
*** Beer - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://steve.ganz.name/ Steve Ganz]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Late Night Snacks - sponsored by ________&lt;br /&gt;
* Sunday 26th&lt;br /&gt;
** Breakfast - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.carlaborsoi.com/ Carla Borsoi]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Lunch - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://visitmix.com/Lab/Oomph Microsoft MIX Online]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* More Ideas...&lt;br /&gt;
** Stickers - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://objectadjective.com Object Adjective]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Buttons - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://cindyli.com Cindy Li]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Coffee&lt;br /&gt;
** Snacks&lt;br /&gt;
** T-shirts&lt;br /&gt;
** ______?&lt;br /&gt;
&lt;br /&gt;
For meals, we're planning on something simple like bagels+coffee for breakfast; or pizza or &amp;lt;del&amp;gt;indian delivery&amp;lt;/del&amp;gt; ([http://www.mydeedees.com/ Deedees Indian Food!]). We'll arrange for sponsors to pay vendors directly.&lt;br /&gt;
&lt;br /&gt;
== attendees ==&lt;br /&gt;
microformatsDevCamp, like any BarCamp, needs you! &lt;br /&gt;
&lt;br /&gt;
Sign up to volunteer, attend, design, code, and build with microformats!&lt;br /&gt;
&lt;br /&gt;
=== planners ===&lt;br /&gt;
Want to help organize and plan the first microformatsDevCamp? Sign up and be sure to pick up a planner role (see below).&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Tantek|Tantek Çelik]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''organizing, venue acquisition, intro and kickoff'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Rohit|Rohit Khare]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''venue acquisition, sponsor wrangler, food'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:EdwardOConnor |Edward O'Connor]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;nickname&amp;quot;&amp;gt;Ted&amp;lt;/span&amp;gt;) - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''volunteer coordinator, cleanup'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Pseudowish|Lauren Scime]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''t-shirts, other coordination needs tbd'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Chris Messina|Chris Messina]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''connector and advisor'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
Planners: please see and keep up with the [[#planner_to-do]] section!&lt;br /&gt;
&lt;br /&gt;
=== volunteers ===&lt;br /&gt;
Like all [http://barcamp.org BarCamps], this event is what it is because of what everyone puts into it. Volunteer to help setup, check people in, get them setup with a name badge, clean up, and help people in general have a good time and get things done.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Cindy Li&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;helping with microformatsDevCamp logo design&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. done!&lt;br /&gt;
** full resolution logo: &amp;lt;span class=&amp;quot;attach&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&amp;lt;/nowiki&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** on Flickr: http://www.flickr.com/photos/cindyli/3726302070/&lt;br /&gt;
** &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;designed and ordered buttons for event.&amp;lt;/span&amp;gt;Done!&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:BeauLebens|Beau Lebens]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;, Automattic, [[http://dentedreality.com.au/ Dented Reality]]. &amp;lt;span class=&lt;br /&gt;
note&amp;quot;&amp;gt;I know my way around the venue, so can help sort out power strips, projectors etc&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== participants ===&lt;br /&gt;
Want to design interfaces or build stuff with microformats and want help doing it? Sign up! Add yourself. Note your site (with [[hCard]] if you have it), interests/projects, and tag yourself as a web '''author''', '''designer''', '''publisher''', '''developer''' - pick at least one.&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://tantek.com Tantek Çelik]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/strong&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt; (user interface interaction)&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://yury.name Yury Lifshits]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.markng.co.uk Mark Ng]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.ics.uci.edu/~rohit Rohit Khare]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://alpern.org Micah Alpern]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt; (user interface interaction)&amp;lt;/span&amp;gt; (will be there Sunday).&lt;br /&gt;
# (and about 35 more folks,  according to [http://upcoming.yahoo.com/event/2888376/ Upcoming] as of noon Thursday 2009-7-23)&lt;br /&gt;
# ...&lt;br /&gt;
&lt;br /&gt;
==venue==&lt;br /&gt;
Automattic has very graciously agreed to host microformatsDevCamp. The venue has:&lt;br /&gt;
* wifi&lt;br /&gt;
* power. power outlets, extension cords, power strips&lt;br /&gt;
* 4-5 rooms/meeting areas. &lt;br /&gt;
* 3 projectors&lt;br /&gt;
* 1 whiteboard.&lt;br /&gt;
* sink, water.&lt;br /&gt;
&lt;br /&gt;
As Automattic is donating the venue, as participants it is our responsibility to take excellent care of the venue, leaving it as good or better than we found it.&lt;br /&gt;
&lt;br /&gt;
Some amount of camping overnight at the venue will be possible.&lt;br /&gt;
&lt;br /&gt;
=== nearby food ===&lt;br /&gt;
Suggestions for nearby (easy/quick walking distance) drinks, snacks, food.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Bayside Market&amp;lt;/span&amp;gt; - fresh &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;fruit&amp;lt;/span&amp;gt; and &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;vegetables&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;sandwiches&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;url&amp;quot;&amp;gt;http://www.yelp.com/biz/bayside-market-san-francisco-2&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Crossroads Cafe&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;coffee&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;espresso&amp;lt;/span&amp;gt; drinks, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;shakes&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;smoothies&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;bagels&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;sandwiches&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;url&amp;quot;&amp;gt;http://www.yelp.com/biz/crossroads-cafe-san-francisco-3&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== tags ==&lt;br /&gt;
Please use the following tags when tagging related content (blog posts, photos, videos):&lt;br /&gt;
&lt;br /&gt;
tags:&lt;br /&gt;
&amp;lt;kbd class=&amp;quot;tags&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;'''#ufdevcamp'''&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;ufdevcampsf&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCampSF&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats-meetup&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp2009&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;The-Embarcadero&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;san-francisco&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;upcoming:event=2888376&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/kbd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Track:&lt;br /&gt;
* [http://search.twitter.com/search?q=ufdevcamp #ufdevcamp on Twitter Search].&lt;br /&gt;
* [http://identi.ca/tag/ufdevcamp #ufdevcamp] tagspace on identi.ca.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;group&amp;quot;&amp;gt;Groups&amp;lt;/span&amp;gt;:&lt;br /&gt;
* [http://identi.ca/group/microformats !microformats Identi.ca group] (aliases: !mf and !uf). Join and address the whole group. Notices to this group can also be tracked from [http://identi.ca/tag/microformats #microformats]&lt;br /&gt;
&lt;br /&gt;
== notes ==&lt;br /&gt;
topics discussed:&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== session ideas ==&lt;br /&gt;
Have an idea for a session? Please read &amp;lt;cite&amp;gt;[http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ What is a DevCamp?]&amp;lt;/cite&amp;gt; and then suggest something or add a &amp;quot;+1&amp;quot; to existing suggestions, and sign your suggestion or opinion with your Username with &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* '''microformats and user sign-up user interface''' - how can importing and subscribing to hCards help make user sign-up easier and thus get more users signed up quicker? [[User:Tantek|Tantek]]&lt;br /&gt;
* '''using hCard to build a self-updating address book''' - in the search for an address book/contact list that actually stays up to date, hCard may be the key. [[User:Beaulebens|Beau Lebens]]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== sessions ==&lt;br /&gt;
Please create a wiki page for any session you lead or attend and link to it from here.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== photographs ==&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== blog posts ==&lt;br /&gt;
Blog posts about the devCamp. Newest first.&lt;br /&gt;
* [http://microformats.org/blog/2009/07/20/microformatsdevcamp-this-weekend/ 2009-07-21 microformats.org: microformatsDevCamp this weekend!]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
* [http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ Chris Messina: What is a DevCamp?]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt; &amp;lt;!-- End of @vevent --&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
== Related Pages==&lt;br /&gt;
microformatsDevCamp is one of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
{{events-related-pages}}&lt;br /&gt;
&lt;br /&gt;
== planner to-do ==&lt;br /&gt;
&lt;br /&gt;
=== planner roles ===&lt;br /&gt;
We need the following roles and responsibilities to be picked up by planners!&lt;br /&gt;
* '''setup''' - be in charge of setup the day of, coordinate with venue on setup plenty of time *before* the start of the camp! setup: power cords, power strips, calendar grid for sessions, tables and chairs in rooms/meeting areas, projectors&lt;br /&gt;
* '''welcome desk''' - welcome microformatsDevCamp attendees at the entrance of the venue, make sure they get a name tag and instruct them to tag themselves as primarily/secondarily being a web '''author''', '''designer''', '''publisher''', '''developer''', pick at least one. (as they should also do when the sign up on the wiki in the attendees section above!)&lt;br /&gt;
&lt;br /&gt;
If you're a planner, please pick up and move one or more of these roles/responsibilities to your name above. Thanks!&lt;br /&gt;
&lt;br /&gt;
Role info / details:&lt;br /&gt;
* '''intro and kickoff''' - run the introductory session and help start the microformatsDevCamp with traditional BarCamp intros/3tags and explanation of the BarCamp format.&lt;br /&gt;
* '''food''' - coordinate / match up sponsors with meals and make sure the meals arrive and are setup for event participants during the event.&lt;br /&gt;
* '''sponsor wrangler''' - for food, t-shirts. per definition given in: http://www.cleverclevergirl.com/?p=10 : &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Drafts a message to send to potential sponsors, follows up leads from others for potential sponsors, collects info, logos (in vector format), and money from sponsors and also sees that receipts (if necessary) are issued at the end. &amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* '''t-shirts''' - get estimate, make sure to order in time for the event. Ben Ward has done some work on this - check with him.&lt;br /&gt;
* '''volunteer coordinator''' - recruit and organize volunteers the day of the event to help out with food, setup&lt;br /&gt;
* '''cleanup''' - enlist help of volunteers and all devCamp participants to help with cleanup&lt;br /&gt;
&lt;br /&gt;
===Sponsor planning ===&lt;br /&gt;
We need to:&lt;br /&gt;
* collected some donations for microformatsDevCamp at [[events/2009-06-26-microformats-4th-bday|4th bday party]]&lt;br /&gt;
** $109 - to go towards t-shirt or maybe snacks.&lt;br /&gt;
&lt;br /&gt;
* Figure out rough budget&lt;br /&gt;
** meals - get sponsors to host/pay for meals directly if possible. details of meal sponsorships here, including who is going to go get the food and deliver it etc.&lt;br /&gt;
*** Saturday&lt;br /&gt;
**** lunch: bring your own brownbag? unless we get a sponsor.&lt;br /&gt;
**** dinner: CommerceNet. Rohit is handling getting the food&lt;br /&gt;
*** Sunday&lt;br /&gt;
**** breakfast: Carla Borsoi. Tantek is handling ordering/picking-up breakfast foods (max $150) and getting reimbursed. &lt;br /&gt;
**** lunch: bring your own brownbag? unless we get a sponsor.&lt;br /&gt;
** tshirts - need total from below and breakdown of how sponsors / donations are going to cover it.&lt;br /&gt;
&lt;br /&gt;
* Remaining key items that need sponsorships&lt;br /&gt;
** meals&lt;br /&gt;
*** Saturday&lt;br /&gt;
**** lunch: _____________&lt;br /&gt;
**** social event: ________ &lt;br /&gt;
*** Sunday&lt;br /&gt;
**** lunch: _____________&lt;br /&gt;
&lt;br /&gt;
===Food and drink===&lt;br /&gt;
We're looking for sponsors for microformatsDevCamp meals!&lt;br /&gt;
&lt;br /&gt;
Something simple like bagels+coffee for breakfast, and pizza or indian delivery usually works well.&lt;br /&gt;
&lt;br /&gt;
See the [[#sponsors]] section for what is available to sponsor.&lt;br /&gt;
&lt;br /&gt;
===T-shirts===&lt;br /&gt;
* get estimates from vendor(s) for different quantities&lt;br /&gt;
** get vendor contact info from Ben Ward who has already looked into this and found a reliable vendor that can deliver high quality t-shirts in a week or less time.&lt;br /&gt;
** Suggestion: 100 shirts, provide them to individuals who sponsor microformatsDevCamp with a $20 or more donation to help pay for t-shirts and snacks/food (if any funds from covering t-shirts are remaining). [[User:Tantek|Tantek]] 17:40, 17 July 2009 (UTC)&lt;br /&gt;
* make/reuse design (get original t-shirt design details from Dan Cederholm)&lt;br /&gt;
* order/print - make sure folks who donated at the [[events/2009-06-26-microformats-4th-bday|4th bday party]] get their shirts&lt;br /&gt;
&lt;br /&gt;
* '''T-shirts are ordered!''' Printer is [http://www.screenprintguy.com The Screen Print Guy] located out on 23rd Ave. Will be available for pickup by Friday July 24th. (This is great! [[User:Tantek|Tantek]] 01:03, 21 July 2009 (UTC))&lt;br /&gt;
** Total cost: $918.00 (would have been cheaper but they had a surcharge for the rush order). I have charged 50% of the cost already to place the order. Other 50% due at time of pickup.&lt;br /&gt;
*** do we have a sponsorship breakdown? --01:03, 21 July 2009 (UTC). e.g.&lt;br /&gt;
*** $109 cash donations from 4th bday party&lt;br /&gt;
*** $??? remaining Object Adjective sponsorship from 4th bday party&lt;br /&gt;
*** $??? remaining needed to cover t-shirts cost.&lt;br /&gt;
** Total # of shirts ordered: 100. Size breakdown: Men's: 10 small, 30 medium, 25 large. Women's: 10 small, 15 medium, 10 large.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39831</id>
		<title>events/2009-07-25-dev-camp</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39831"/>
		<updated>2009-07-23T22:12:48Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* Sponsors */  added microsoft&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;microformatsDevCamp&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;event-page vevent&amp;quot;&amp;gt;&lt;br /&gt;
;When&lt;br /&gt;
:&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-25&amp;lt;/span&amp;gt; from &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;12:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; to &amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-26&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;17:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
;Where&lt;br /&gt;
:&amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;org fn&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;&amp;lt;em style=&amp;quot;border-bottom:dotted 1px&amp;quot; title=&amp;quot;Pier 38 is NOWHERE NEAR Pier 39, just to be clear. Pier 38 is SOUTH of the Bay Bridge.&amp;quot;&amp;gt;Pier 38&amp;lt;/em&amp;gt;, The Embarcadero between Brannan and Townsend&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;CA&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;94107&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;geo&amp;quot;&amp;gt;[http://maps.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;view=map&amp;amp;q=%2BAutomattic,+The+Embarcadero,+San+Francisco,+CA+94107&amp;amp;sll=37.752736,-122.402826&amp;amp;sspn=0.13844,0.217667&amp;amp;gl=us&amp;amp;ie=UTF8&amp;amp;t=h&amp;amp;layer=c&amp;amp;cbll=37.782877,-122.388062&amp;amp;panoid=kB1DhzPP5DYl5pgHBRxdPg&amp;amp;cbp=12,123.84,,0,2.44&amp;amp;ll=37.783053,-122.388044&amp;amp;spn=0,359.996599&amp;amp;z=18 View location at latitude:&amp;lt;span class=&amp;quot;latitude&amp;quot;&amp;gt;37.782769&amp;lt;/span&amp;gt;, longitude:&amp;lt;span class=&amp;quot;longitude&amp;quot;&amp;gt;-122.387837&amp;lt;/span&amp;gt;]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
:'''MUNI''': [http://playfoursquare.com/venue/72202 Brannan] (N,T)&lt;br /&gt;
:'''BART''': Embarcadero station, then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__IB3&amp;amp;s=6992&amp;amp;ts=4506 take MUNI N-Judah inbound] or T-Third inbound to Brannan stop.&lt;br /&gt;
:'''Caltrain''': 4th &amp;amp; King st., then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__OB2&amp;amp;s=5240&amp;amp;ts=7145 take MUNI N-Judah outbound] or T-Third outbound to Brannan stop.&lt;br /&gt;
;What&lt;br /&gt;
:&amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;microformatsDevCamp!&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;The first ever microformatsDevCamp, for authors, designers, publishers, developers, engineers building pages, sites, and tools with microformats.&amp;lt;/span&amp;gt;&lt;br /&gt;
;How much&lt;br /&gt;
:$20 suggested donation (gets you a t-shirt while supplies last). &amp;lt;em style=&amp;quot;display:block&amp;quot;&amp;gt;No one turned away for lack of funds.&amp;lt;/em&amp;gt;&lt;br /&gt;
;URLs&lt;br /&gt;
:&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://microformats.org/wiki/events/2009-07-25-dev-camp&amp;lt;/span&amp;gt;&lt;br /&gt;
:http://upcoming.yahoo.com/event/2888376/&lt;br /&gt;
:http://www.facebook.com/event.php?eid=102571118403&lt;br /&gt;
;short URL&lt;br /&gt;
:http://tr.im/ufdevcamp&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''[http://suda.co.uk/projects/microformats/hcalendar/get-cal.php?uri=http://microformats.org/wiki/events/2009-07-25-dev-camp Add this event to your calendar]''' http://www.boogdesign.com/images/buttons/microformat_hcalendar.png&lt;br /&gt;
&lt;br /&gt;
== Sponsors == &lt;br /&gt;
microformatsDevCamp is made possible thanks to the generosity of our corporate and individual sponsors!&lt;br /&gt;
&lt;br /&gt;
* Venue&lt;br /&gt;
**[http://automattic.com Automattic]&lt;br /&gt;
* Meals&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://spinn3r.com Spinn3r]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://commerce.net CommerceNet]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://visitmix.com/Lab/Oomph Microsoft MIX Online]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://steve.ganz.name/ Steve Ganz]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.carlaborsoi.com/ Carla Borsoi]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* Promotion&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://objectadjective.com Object Adjective]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://cindyli.com Cindy Li]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sponsorships ===&lt;br /&gt;
Help sponsor microformatsDevCamp:&lt;br /&gt;
&lt;br /&gt;
* Saturday 25th&lt;br /&gt;
** Lunch - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://spinn3r.com Spinn3r]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; &lt;br /&gt;
** Dinner - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://commerce.net CommerceNet]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Social Event - sponsored by ________&lt;br /&gt;
*** Beer - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://steve.ganz.name/ Steve Ganz]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Late Night Snacks - sponsored by ________&lt;br /&gt;
* Sunday 26th&lt;br /&gt;
** Breakfast - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.carlaborsoi.com/ Carla Borsoi]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Lunch - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://visitmix.com/Lab/Oomph Microsoft MIX Online]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* More Ideas...&lt;br /&gt;
** Stickers - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://objectadjective.com Object Adjective]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Buttons - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://cindyli.com Cindy Li]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Coffee&lt;br /&gt;
** Snacks&lt;br /&gt;
** T-shirts&lt;br /&gt;
** ______?&lt;br /&gt;
&lt;br /&gt;
For meals, we're planning on something simple like bagels+coffee for breakfast; or pizza or indian delivery later on. We'll arrange for sponsors to pay vendors directly.&lt;br /&gt;
&lt;br /&gt;
== attendees ==&lt;br /&gt;
microformatsDevCamp, like any BarCamp, needs you! &lt;br /&gt;
&lt;br /&gt;
Sign up to volunteer, attend, design, code, and build with microformats!&lt;br /&gt;
&lt;br /&gt;
=== planners ===&lt;br /&gt;
Want to help organize and plan the first microformatsDevCamp? Sign up and be sure to pick up a planner role (see below).&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Tantek|Tantek Çelik]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''organizing, venue acquisition, intro and kickoff'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Rohit|Rohit Khare]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''venue acquisition, sponsor wrangler, food'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:EdwardOConnor |Edward O'Connor]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;nickname&amp;quot;&amp;gt;Ted&amp;lt;/span&amp;gt;) - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''volunteer coordinator, cleanup'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Pseudowish|Lauren Scime]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''t-shirts, other coordination needs tbd'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Chris Messina|Chris Messina]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''connector and advisor'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
Planners: please see and keep up with the [[#planner_to-do]] section!&lt;br /&gt;
&lt;br /&gt;
=== volunteers ===&lt;br /&gt;
Like all [http://barcamp.org BarCamps], this event is what it is because of what everyone puts into it. Volunteer to help setup, check people in, get them setup with a name badge, clean up, and help people in general have a good time and get things done.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Cindy Li&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;helping with microformatsDevCamp logo design&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. done!&lt;br /&gt;
** full resolution logo: &amp;lt;span class=&amp;quot;attach&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&amp;lt;/nowiki&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** on Flickr: http://www.flickr.com/photos/cindyli/3726302070/&lt;br /&gt;
** &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;designed and ordered buttons for event.&amp;lt;/span&amp;gt;Done!&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:BeauLebens|Beau Lebens]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;, Automattic, [[http://dentedreality.com.au/ Dented Reality]]. &amp;lt;span class=&lt;br /&gt;
note&amp;quot;&amp;gt;I know my way around the venue, so can help sort out power strips, projectors etc&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== participants ===&lt;br /&gt;
Want to design interfaces or build stuff with microformats and want help doing it? Sign up! Add yourself. Note your site (with [[hCard]] if you have it), interests/projects, and tag yourself as a web '''author''', '''designer''', '''publisher''', '''developer''' - pick at least one.&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://tantek.com Tantek Çelik]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/strong&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt; (user interface interaction)&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://yury.name Yury Lifshits]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.markng.co.uk Mark Ng]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.ics.uci.edu/~rohit Rohit Khare]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://alpern.org Micah Alpern]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt; (user interface interaction)&amp;lt;/span&amp;gt; (will be there Sunday).&lt;br /&gt;
# (and about 35 more folks,  according to [http://upcoming.yahoo.com/event/2888376/ Upcoming] as of noon Thursday 2009-7-23)&lt;br /&gt;
# ...&lt;br /&gt;
&lt;br /&gt;
==venue==&lt;br /&gt;
Automattic has very graciously agreed to host microformatsDevCamp. The venue has:&lt;br /&gt;
* wifi&lt;br /&gt;
* power. power outlets, extension cords, power strips&lt;br /&gt;
* 4-5 rooms/meeting areas. &lt;br /&gt;
* 3 projectors&lt;br /&gt;
* 1 whiteboard.&lt;br /&gt;
* sink, water.&lt;br /&gt;
&lt;br /&gt;
As Automattic is donating the venue, as participants it is our responsibility to take excellent care of the venue, leaving it as good or better than we found it.&lt;br /&gt;
&lt;br /&gt;
Some amount of camping overnight at the venue will be possible.&lt;br /&gt;
&lt;br /&gt;
=== nearby food ===&lt;br /&gt;
Suggestions for nearby (easy/quick walking distance) drinks, snacks, food.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Bayside Market&amp;lt;/span&amp;gt; - fresh &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;fruit&amp;lt;/span&amp;gt; and &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;vegetables&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;sandwiches&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;url&amp;quot;&amp;gt;http://www.yelp.com/biz/bayside-market-san-francisco-2&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Crossroads Cafe&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;coffee&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;espresso&amp;lt;/span&amp;gt; drinks, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;shakes&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;smoothies&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;bagels&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;sandwiches&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;url&amp;quot;&amp;gt;http://www.yelp.com/biz/crossroads-cafe-san-francisco-3&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== tags ==&lt;br /&gt;
Please use the following tags when tagging related content (blog posts, photos, videos):&lt;br /&gt;
&lt;br /&gt;
tags:&lt;br /&gt;
&amp;lt;kbd class=&amp;quot;tags&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;'''#ufdevcamp'''&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;ufdevcampsf&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCampSF&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats-meetup&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp2009&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;The-Embarcadero&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;san-francisco&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;upcoming:event=2888376&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/kbd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Track:&lt;br /&gt;
* [http://search.twitter.com/search?q=ufdevcamp #ufdevcamp on Twitter Search].&lt;br /&gt;
* [http://identi.ca/tag/ufdevcamp #ufdevcamp] tagspace on identi.ca.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;group&amp;quot;&amp;gt;Groups&amp;lt;/span&amp;gt;:&lt;br /&gt;
* [http://identi.ca/group/microformats !microformats Identi.ca group] (aliases: !mf and !uf). Join and address the whole group. Notices to this group can also be tracked from [http://identi.ca/tag/microformats #microformats]&lt;br /&gt;
&lt;br /&gt;
== notes ==&lt;br /&gt;
topics discussed:&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== session ideas ==&lt;br /&gt;
Have an idea for a session? Please read &amp;lt;cite&amp;gt;[http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ What is a DevCamp?]&amp;lt;/cite&amp;gt; and then suggest something or add a &amp;quot;+1&amp;quot; to existing suggestions, and sign your suggestion or opinion with your Username with &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* '''microformats and user sign-up user interface''' - how can importing and subscribing to hCards help make user sign-up easier and thus get more users signed up quicker? [[User:Tantek|Tantek]]&lt;br /&gt;
* '''using hCard to build a self-updating address book''' - in the search for an address book/contact list that actually stays up to date, hCard may be the key. [[User:Beaulebens|Beau Lebens]]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== sessions ==&lt;br /&gt;
Please create a wiki page for any session you lead or attend and link to it from here.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== photographs ==&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== blog posts ==&lt;br /&gt;
Blog posts about the devCamp. Newest first.&lt;br /&gt;
* [http://microformats.org/blog/2009/07/20/microformatsdevcamp-this-weekend/ 2009-07-21 microformats.org: microformatsDevCamp this weekend!]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
* [http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ Chris Messina: What is a DevCamp?]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt; &amp;lt;!-- End of @vevent --&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
== Related Pages==&lt;br /&gt;
microformatsDevCamp is one of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
{{events-related-pages}}&lt;br /&gt;
&lt;br /&gt;
== planner to-do ==&lt;br /&gt;
&lt;br /&gt;
=== planner roles ===&lt;br /&gt;
We need the following roles and responsibilities to be picked up by planners!&lt;br /&gt;
* '''setup''' - be in charge of setup the day of, coordinate with venue on setup plenty of time *before* the start of the camp! setup: power cords, power strips, calendar grid for sessions, tables and chairs in rooms/meeting areas, projectors&lt;br /&gt;
* '''welcome desk''' - welcome microformatsDevCamp attendees at the entrance of the venue, make sure they get a name tag and instruct them to tag themselves as primarily/secondarily being a web '''author''', '''designer''', '''publisher''', '''developer''', pick at least one. (as they should also do when the sign up on the wiki in the attendees section above!)&lt;br /&gt;
&lt;br /&gt;
If you're a planner, please pick up and move one or more of these roles/responsibilities to your name above. Thanks!&lt;br /&gt;
&lt;br /&gt;
Role info / details:&lt;br /&gt;
* '''intro and kickoff''' - run the introductory session and help start the microformatsDevCamp with traditional BarCamp intros/3tags and explanation of the BarCamp format.&lt;br /&gt;
* '''food''' - coordinate / match up sponsors with meals and make sure the meals arrive and are setup for event participants during the event.&lt;br /&gt;
* '''sponsor wrangler''' - for food, t-shirts. per definition given in: http://www.cleverclevergirl.com/?p=10 : &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Drafts a message to send to potential sponsors, follows up leads from others for potential sponsors, collects info, logos (in vector format), and money from sponsors and also sees that receipts (if necessary) are issued at the end. &amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* '''t-shirts''' - get estimate, make sure to order in time for the event. Ben Ward has done some work on this - check with him.&lt;br /&gt;
* '''volunteer coordinator''' - recruit and organize volunteers the day of the event to help out with food, setup&lt;br /&gt;
* '''cleanup''' - enlist help of volunteers and all devCamp participants to help with cleanup&lt;br /&gt;
&lt;br /&gt;
===Sponsor planning ===&lt;br /&gt;
We need to:&lt;br /&gt;
* collected some donations for microformatsDevCamp at [[events/2009-06-26-microformats-4th-bday|4th bday party]]&lt;br /&gt;
** $109 - to go towards t-shirt or maybe snacks.&lt;br /&gt;
&lt;br /&gt;
* Figure out rough budget&lt;br /&gt;
** meals - get sponsors to host/pay for meals directly if possible. details of meal sponsorships here, including who is going to go get the food and deliver it etc.&lt;br /&gt;
*** Saturday&lt;br /&gt;
**** lunch: bring your own brownbag? unless we get a sponsor.&lt;br /&gt;
**** dinner: CommerceNet. Rohit is handling getting the food&lt;br /&gt;
*** Sunday&lt;br /&gt;
**** breakfast: Carla Borsoi. Tantek is handling ordering/picking-up breakfast foods (max $150) and getting reimbursed. &lt;br /&gt;
**** lunch: bring your own brownbag? unless we get a sponsor.&lt;br /&gt;
** tshirts - need total from below and breakdown of how sponsors / donations are going to cover it.&lt;br /&gt;
&lt;br /&gt;
* Remaining key items that need sponsorships&lt;br /&gt;
** meals&lt;br /&gt;
*** Saturday&lt;br /&gt;
**** lunch: _____________&lt;br /&gt;
**** social event: ________ &lt;br /&gt;
*** Sunday&lt;br /&gt;
**** lunch: _____________&lt;br /&gt;
&lt;br /&gt;
===Food and drink===&lt;br /&gt;
We're looking for sponsors for microformatsDevCamp meals!&lt;br /&gt;
&lt;br /&gt;
Something simple like bagels+coffee for breakfast, and pizza or indian delivery usually works well.&lt;br /&gt;
&lt;br /&gt;
See the [[#sponsors]] section for what is available to sponsor.&lt;br /&gt;
&lt;br /&gt;
===T-shirts===&lt;br /&gt;
* get estimates from vendor(s) for different quantities&lt;br /&gt;
** get vendor contact info from Ben Ward who has already looked into this and found a reliable vendor that can deliver high quality t-shirts in a week or less time.&lt;br /&gt;
** Suggestion: 100 shirts, provide them to individuals who sponsor microformatsDevCamp with a $20 or more donation to help pay for t-shirts and snacks/food (if any funds from covering t-shirts are remaining). [[User:Tantek|Tantek]] 17:40, 17 July 2009 (UTC)&lt;br /&gt;
* make/reuse design (get original t-shirt design details from Dan Cederholm)&lt;br /&gt;
* order/print - make sure folks who donated at the [[events/2009-06-26-microformats-4th-bday|4th bday party]] get their shirts&lt;br /&gt;
&lt;br /&gt;
* '''T-shirts are ordered!''' Printer is [http://www.screenprintguy.com The Screen Print Guy] located out on 23rd Ave. Will be available for pickup by Friday July 24th. (This is great! [[User:Tantek|Tantek]] 01:03, 21 July 2009 (UTC))&lt;br /&gt;
** Total cost: $918.00 (would have been cheaper but they had a surcharge for the rush order). I have charged 50% of the cost already to place the order. Other 50% due at time of pickup.&lt;br /&gt;
*** do we have a sponsorship breakdown? --01:03, 21 July 2009 (UTC). e.g.&lt;br /&gt;
*** $109 cash donations from 4th bday party&lt;br /&gt;
*** $??? remaining Object Adjective sponsorship from 4th bday party&lt;br /&gt;
*** $??? remaining needed to cover t-shirts cost.&lt;br /&gt;
** Total # of shirts ordered: 100. Size breakdown: Men's: 10 small, 30 medium, 25 large. Women's: 10 small, 15 medium, 10 large.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39830</id>
		<title>events/2009-07-25-dev-camp</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39830"/>
		<updated>2009-07-23T19:50:15Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* participants */  - upcoming total added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;microformatsDevCamp&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;event-page vevent&amp;quot;&amp;gt;&lt;br /&gt;
;When&lt;br /&gt;
:&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-25&amp;lt;/span&amp;gt; from &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;12:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; to &amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-26&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;17:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
;Where&lt;br /&gt;
:&amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;org fn&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;&amp;lt;em style=&amp;quot;border-bottom:dotted 1px&amp;quot; title=&amp;quot;Pier 38 is NOWHERE NEAR Pier 39, just to be clear. Pier 38 is SOUTH of the Bay Bridge.&amp;quot;&amp;gt;Pier 38&amp;lt;/em&amp;gt;, The Embarcadero between Brannan and Townsend&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;CA&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;94107&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;geo&amp;quot;&amp;gt;[http://maps.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;view=map&amp;amp;q=%2BAutomattic,+The+Embarcadero,+San+Francisco,+CA+94107&amp;amp;sll=37.752736,-122.402826&amp;amp;sspn=0.13844,0.217667&amp;amp;gl=us&amp;amp;ie=UTF8&amp;amp;t=h&amp;amp;layer=c&amp;amp;cbll=37.782877,-122.388062&amp;amp;panoid=kB1DhzPP5DYl5pgHBRxdPg&amp;amp;cbp=12,123.84,,0,2.44&amp;amp;ll=37.783053,-122.388044&amp;amp;spn=0,359.996599&amp;amp;z=18 View location at latitude:&amp;lt;span class=&amp;quot;latitude&amp;quot;&amp;gt;37.782769&amp;lt;/span&amp;gt;, longitude:&amp;lt;span class=&amp;quot;longitude&amp;quot;&amp;gt;-122.387837&amp;lt;/span&amp;gt;]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
:'''MUNI''': [http://playfoursquare.com/venue/72202 Brannan] (N,T)&lt;br /&gt;
:'''BART''': Embarcadero station, then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__IB3&amp;amp;s=6992&amp;amp;ts=4506 take MUNI N-Judah inbound] or T-Third inbound to Brannan stop.&lt;br /&gt;
:'''Caltrain''': 4th &amp;amp; King st., then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__OB2&amp;amp;s=5240&amp;amp;ts=7145 take MUNI N-Judah outbound] or T-Third outbound to Brannan stop.&lt;br /&gt;
;What&lt;br /&gt;
:&amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;microformatsDevCamp!&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;The first ever microformatsDevCamp, for authors, designers, publishers, developers, engineers building pages, sites, and tools with microformats.&amp;lt;/span&amp;gt;&lt;br /&gt;
;How much&lt;br /&gt;
:$20 suggested donation (gets you a t-shirt while supplies last). &amp;lt;em style=&amp;quot;display:block&amp;quot;&amp;gt;No one turned away for lack of funds.&amp;lt;/em&amp;gt;&lt;br /&gt;
;URLs&lt;br /&gt;
:&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://microformats.org/wiki/events/2009-07-25-dev-camp&amp;lt;/span&amp;gt;&lt;br /&gt;
:http://upcoming.yahoo.com/event/2888376/&lt;br /&gt;
:http://www.facebook.com/event.php?eid=102571118403&lt;br /&gt;
;short URL&lt;br /&gt;
:http://tr.im/ufdevcamp&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''[http://suda.co.uk/projects/microformats/hcalendar/get-cal.php?uri=http://microformats.org/wiki/events/2009-07-25-dev-camp Add this event to your calendar]''' http://www.boogdesign.com/images/buttons/microformat_hcalendar.png&lt;br /&gt;
&lt;br /&gt;
== Sponsors == &lt;br /&gt;
microformatsDevCamp is made possible thanks to the generosity of our corporate and individual sponsors!&lt;br /&gt;
&lt;br /&gt;
* Venue&lt;br /&gt;
**[http://automattic.com Automattic]&lt;br /&gt;
* Meals&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://spinn3r.com Spinn3r]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://commerce.net CommerceNet]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://steve.ganz.name/ Steve Ganz]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.carlaborsoi.com/ Carla Borsoi]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* Promotion&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://objectadjective.com Object Adjective]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://cindyli.com Cindy Li]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sponsorships ===&lt;br /&gt;
Help sponsor microformatsDevCamp:&lt;br /&gt;
&lt;br /&gt;
* Saturday 25th&lt;br /&gt;
** Lunch - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://spinn3r.com Spinn3r]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; &lt;br /&gt;
** Dinner - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://commerce.net CommerceNet]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Social Event - sponsored by ________&lt;br /&gt;
*** Beer - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://steve.ganz.name/ Steve Ganz]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Late Night Snacks - sponsored by ________&lt;br /&gt;
* Sunday 26th&lt;br /&gt;
** Breakfast - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.carlaborsoi.com/ Carla Borsoi]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Lunch - sponsored by ________&lt;br /&gt;
* More Ideas...&lt;br /&gt;
** Stickers - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://objectadjective.com Object Adjective]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Buttons - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://cindyli.com Cindy Li]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Coffee&lt;br /&gt;
** Snacks&lt;br /&gt;
** T-shirts&lt;br /&gt;
** ______?&lt;br /&gt;
&lt;br /&gt;
For meals, we're planning on something simple like bagels+coffee for breakfast; or pizza or indian delivery later on. We'll arrange for sponsors to pay vendors directly.&lt;br /&gt;
&lt;br /&gt;
== attendees ==&lt;br /&gt;
microformatsDevCamp, like any BarCamp, needs you! &lt;br /&gt;
&lt;br /&gt;
Sign up to volunteer, attend, design, code, and build with microformats!&lt;br /&gt;
&lt;br /&gt;
=== planners ===&lt;br /&gt;
Want to help organize and plan the first microformatsDevCamp? Sign up and be sure to pick up a planner role (see below).&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Tantek|Tantek Çelik]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''organizing, venue acquisition, intro and kickoff'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Rohit|Rohit Khare]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''venue acquisition, sponsor wrangler, food'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:EdwardOConnor |Edward O'Connor]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;nickname&amp;quot;&amp;gt;Ted&amp;lt;/span&amp;gt;) - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''volunteer coordinator, cleanup'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Pseudowish|Lauren Scime]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''t-shirts, other coordination needs tbd'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Chris Messina|Chris Messina]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''connector and advisor'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
Planners: please see and keep up with the [[#planner_to-do]] section!&lt;br /&gt;
&lt;br /&gt;
=== volunteers ===&lt;br /&gt;
Like all [http://barcamp.org BarCamps], this event is what it is because of what everyone puts into it. Volunteer to help setup, check people in, get them setup with a name badge, clean up, and help people in general have a good time and get things done.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Cindy Li&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;helping with microformatsDevCamp logo design&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. done!&lt;br /&gt;
** full resolution logo: &amp;lt;span class=&amp;quot;attach&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&amp;lt;/nowiki&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** on Flickr: http://www.flickr.com/photos/cindyli/3726302070/&lt;br /&gt;
** &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;designed and ordered buttons for event.&amp;lt;/span&amp;gt;Done!&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:BeauLebens|Beau Lebens]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;, Automattic, [[http://dentedreality.com.au/ Dented Reality]]. &amp;lt;span class=&lt;br /&gt;
note&amp;quot;&amp;gt;I know my way around the venue, so can help sort out power strips, projectors etc&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== participants ===&lt;br /&gt;
Want to design interfaces or build stuff with microformats and want help doing it? Sign up! Add yourself. Note your site (with [[hCard]] if you have it), interests/projects, and tag yourself as a web '''author''', '''designer''', '''publisher''', '''developer''' - pick at least one.&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://tantek.com Tantek Çelik]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/strong&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt; (user interface interaction)&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://yury.name Yury Lifshits]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.markng.co.uk Mark Ng]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.ics.uci.edu/~rohit Rohit Khare]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://alpern.org Micah Alpern]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt; (user interface interaction)&amp;lt;/span&amp;gt; (will be there Sunday).&lt;br /&gt;
# (and about 35 more folks,  according to [http://upcoming.yahoo.com/event/2888376/ Upcoming] as of noon Thursday 2009-7-23)&lt;br /&gt;
# ...&lt;br /&gt;
&lt;br /&gt;
==venue==&lt;br /&gt;
Automattic has very graciously agreed to host microformatsDevCamp. The venue has:&lt;br /&gt;
* wifi&lt;br /&gt;
* power. power outlets, extension cords, power strips&lt;br /&gt;
* 4-5 rooms/meeting areas. &lt;br /&gt;
* 3 projectors&lt;br /&gt;
* 1 whiteboard.&lt;br /&gt;
* sink, water.&lt;br /&gt;
&lt;br /&gt;
As Automattic is donating the venue, as participants it is our responsibility to take excellent care of the venue, leaving it as good or better than we found it.&lt;br /&gt;
&lt;br /&gt;
Some amount of camping overnight at the venue will be possible.&lt;br /&gt;
&lt;br /&gt;
=== nearby food ===&lt;br /&gt;
Suggestions for nearby (easy/quick walking distance) drinks, snacks, food.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Bayside Market&amp;lt;/span&amp;gt; - fresh &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;fruit&amp;lt;/span&amp;gt; and &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;vegetables&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;sandwiches&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;url&amp;quot;&amp;gt;http://www.yelp.com/biz/bayside-market-san-francisco-2&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Crossroads Cafe&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;coffee&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;espresso&amp;lt;/span&amp;gt; drinks, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;shakes&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;smoothies&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;bagels&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;sandwiches&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;url&amp;quot;&amp;gt;http://www.yelp.com/biz/crossroads-cafe-san-francisco-3&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== tags ==&lt;br /&gt;
Please use the following tags when tagging related content (blog posts, photos, videos):&lt;br /&gt;
&lt;br /&gt;
tags:&lt;br /&gt;
&amp;lt;kbd class=&amp;quot;tags&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;'''#ufdevcamp'''&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;ufdevcampsf&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCampSF&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats-meetup&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp2009&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;The-Embarcadero&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;san-francisco&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;upcoming:event=2888376&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/kbd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Track:&lt;br /&gt;
* [http://search.twitter.com/search?q=ufdevcamp #ufdevcamp on Twitter Search].&lt;br /&gt;
* [http://identi.ca/tag/ufdevcamp #ufdevcamp] tagspace on identi.ca.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;group&amp;quot;&amp;gt;Groups&amp;lt;/span&amp;gt;:&lt;br /&gt;
* [http://identi.ca/group/microformats !microformats Identi.ca group] (aliases: !mf and !uf). Join and address the whole group. Notices to this group can also be tracked from [http://identi.ca/tag/microformats #microformats]&lt;br /&gt;
&lt;br /&gt;
== notes ==&lt;br /&gt;
topics discussed:&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== session ideas ==&lt;br /&gt;
Have an idea for a session? Please read &amp;lt;cite&amp;gt;[http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ What is a DevCamp?]&amp;lt;/cite&amp;gt; and then suggest something or add a &amp;quot;+1&amp;quot; to existing suggestions, and sign your suggestion or opinion with your Username with &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* '''microformats and user sign-up user interface''' - how can importing and subscribing to hCards help make user sign-up easier and thus get more users signed up quicker? [[User:Tantek|Tantek]]&lt;br /&gt;
* '''using hCard to build a self-updating address book''' - in the search for an address book/contact list that actually stays up to date, hCard may be the key. [[User:Beaulebens|Beau Lebens]]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== sessions ==&lt;br /&gt;
Please create a wiki page for any session you lead or attend and link to it from here.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== photographs ==&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== blog posts ==&lt;br /&gt;
Blog posts about the devCamp. Newest first.&lt;br /&gt;
* [http://microformats.org/blog/2009/07/20/microformatsdevcamp-this-weekend/ 2009-07-21 microformats.org: microformatsDevCamp this weekend!]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
* [http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ Chris Messina: What is a DevCamp?]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt; &amp;lt;!-- End of @vevent --&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
== Related Pages==&lt;br /&gt;
microformatsDevCamp is one of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
{{events-related-pages}}&lt;br /&gt;
&lt;br /&gt;
== planner to-do ==&lt;br /&gt;
&lt;br /&gt;
=== planner roles ===&lt;br /&gt;
We need the following roles and responsibilities to be picked up by planners!&lt;br /&gt;
* '''setup''' - be in charge of setup the day of, coordinate with venue on setup plenty of time *before* the start of the camp! setup: power cords, power strips, calendar grid for sessions, tables and chairs in rooms/meeting areas, projectors&lt;br /&gt;
* '''welcome desk''' - welcome microformatsDevCamp attendees at the entrance of the venue, make sure they get a name tag and instruct them to tag themselves as primarily/secondarily being a web '''author''', '''designer''', '''publisher''', '''developer''', pick at least one. (as they should also do when the sign up on the wiki in the attendees section above!)&lt;br /&gt;
&lt;br /&gt;
If you're a planner, please pick up and move one or more of these roles/responsibilities to your name above. Thanks!&lt;br /&gt;
&lt;br /&gt;
Role info / details:&lt;br /&gt;
* '''intro and kickoff''' - run the introductory session and help start the microformatsDevCamp with traditional BarCamp intros/3tags and explanation of the BarCamp format.&lt;br /&gt;
* '''food''' - coordinate / match up sponsors with meals and make sure the meals arrive and are setup for event participants during the event.&lt;br /&gt;
* '''sponsor wrangler''' - for food, t-shirts. per definition given in: http://www.cleverclevergirl.com/?p=10 : &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Drafts a message to send to potential sponsors, follows up leads from others for potential sponsors, collects info, logos (in vector format), and money from sponsors and also sees that receipts (if necessary) are issued at the end. &amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* '''t-shirts''' - get estimate, make sure to order in time for the event. Ben Ward has done some work on this - check with him.&lt;br /&gt;
* '''volunteer coordinator''' - recruit and organize volunteers the day of the event to help out with food, setup&lt;br /&gt;
* '''cleanup''' - enlist help of volunteers and all devCamp participants to help with cleanup&lt;br /&gt;
&lt;br /&gt;
===Sponsor planning ===&lt;br /&gt;
We need to:&lt;br /&gt;
* collected some donations for microformatsDevCamp at [[events/2009-06-26-microformats-4th-bday|4th bday party]]&lt;br /&gt;
** $109 - to go towards t-shirt or maybe snacks.&lt;br /&gt;
&lt;br /&gt;
* Figure out rough budget&lt;br /&gt;
** meals - get sponsors to host/pay for meals directly if possible. details of meal sponsorships here, including who is going to go get the food and deliver it etc.&lt;br /&gt;
*** Saturday&lt;br /&gt;
**** lunch: bring your own brownbag? unless we get a sponsor.&lt;br /&gt;
**** dinner: CommerceNet. Rohit is handling getting the food&lt;br /&gt;
*** Sunday&lt;br /&gt;
**** breakfast: Carla Borsoi. Tantek is handling ordering/picking-up breakfast foods (max $150) and getting reimbursed. &lt;br /&gt;
**** lunch: bring your own brownbag? unless we get a sponsor.&lt;br /&gt;
** tshirts - need total from below and breakdown of how sponsors / donations are going to cover it.&lt;br /&gt;
&lt;br /&gt;
* Remaining key items that need sponsorships&lt;br /&gt;
** meals&lt;br /&gt;
*** Saturday&lt;br /&gt;
**** lunch: _____________&lt;br /&gt;
**** social event: ________ &lt;br /&gt;
*** Sunday&lt;br /&gt;
**** lunch: _____________&lt;br /&gt;
&lt;br /&gt;
===Food and drink===&lt;br /&gt;
We're looking for sponsors for microformatsDevCamp meals!&lt;br /&gt;
&lt;br /&gt;
Something simple like bagels+coffee for breakfast, and pizza or indian delivery usually works well.&lt;br /&gt;
&lt;br /&gt;
See the [[#sponsors]] section for what is available to sponsor.&lt;br /&gt;
&lt;br /&gt;
===T-shirts===&lt;br /&gt;
* get estimates from vendor(s) for different quantities&lt;br /&gt;
** get vendor contact info from Ben Ward who has already looked into this and found a reliable vendor that can deliver high quality t-shirts in a week or less time.&lt;br /&gt;
** Suggestion: 100 shirts, provide them to individuals who sponsor microformatsDevCamp with a $20 or more donation to help pay for t-shirts and snacks/food (if any funds from covering t-shirts are remaining). [[User:Tantek|Tantek]] 17:40, 17 July 2009 (UTC)&lt;br /&gt;
* make/reuse design (get original t-shirt design details from Dan Cederholm)&lt;br /&gt;
* order/print - make sure folks who donated at the [[events/2009-06-26-microformats-4th-bday|4th bday party]] get their shirts&lt;br /&gt;
&lt;br /&gt;
* '''T-shirts are ordered!''' Printer is [http://www.screenprintguy.com The Screen Print Guy] located out on 23rd Ave. Will be available for pickup by Friday July 24th. (This is great! [[User:Tantek|Tantek]] 01:03, 21 July 2009 (UTC))&lt;br /&gt;
** Total cost: $918.00 (would have been cheaper but they had a surcharge for the rush order). I have charged 50% of the cost already to place the order. Other 50% due at time of pickup.&lt;br /&gt;
*** do we have a sponsorship breakdown? --01:03, 21 July 2009 (UTC). e.g.&lt;br /&gt;
*** $109 cash donations from 4th bday party&lt;br /&gt;
*** $??? remaining Object Adjective sponsorship from 4th bday party&lt;br /&gt;
*** $??? remaining needed to cover t-shirts cost.&lt;br /&gt;
** Total # of shirts ordered: 100. Size breakdown: Men's: 10 small, 30 medium, 25 large. Women's: 10 small, 15 medium, 10 large.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39829</id>
		<title>events/2009-07-25-dev-camp</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39829"/>
		<updated>2009-07-23T19:47:19Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* sponsors */ reformatted, links to individuals&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;microformatsDevCamp&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;event-page vevent&amp;quot;&amp;gt;&lt;br /&gt;
;When&lt;br /&gt;
:&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-25&amp;lt;/span&amp;gt; from &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;12:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; to &amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-26&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;17:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
;Where&lt;br /&gt;
:&amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;org fn&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;&amp;lt;em style=&amp;quot;border-bottom:dotted 1px&amp;quot; title=&amp;quot;Pier 38 is NOWHERE NEAR Pier 39, just to be clear. Pier 38 is SOUTH of the Bay Bridge.&amp;quot;&amp;gt;Pier 38&amp;lt;/em&amp;gt;, The Embarcadero between Brannan and Townsend&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;CA&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;94107&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;geo&amp;quot;&amp;gt;[http://maps.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;view=map&amp;amp;q=%2BAutomattic,+The+Embarcadero,+San+Francisco,+CA+94107&amp;amp;sll=37.752736,-122.402826&amp;amp;sspn=0.13844,0.217667&amp;amp;gl=us&amp;amp;ie=UTF8&amp;amp;t=h&amp;amp;layer=c&amp;amp;cbll=37.782877,-122.388062&amp;amp;panoid=kB1DhzPP5DYl5pgHBRxdPg&amp;amp;cbp=12,123.84,,0,2.44&amp;amp;ll=37.783053,-122.388044&amp;amp;spn=0,359.996599&amp;amp;z=18 View location at latitude:&amp;lt;span class=&amp;quot;latitude&amp;quot;&amp;gt;37.782769&amp;lt;/span&amp;gt;, longitude:&amp;lt;span class=&amp;quot;longitude&amp;quot;&amp;gt;-122.387837&amp;lt;/span&amp;gt;]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
:'''MUNI''': [http://playfoursquare.com/venue/72202 Brannan] (N,T)&lt;br /&gt;
:'''BART''': Embarcadero station, then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__IB3&amp;amp;s=6992&amp;amp;ts=4506 take MUNI N-Judah inbound] or T-Third inbound to Brannan stop.&lt;br /&gt;
:'''Caltrain''': 4th &amp;amp; King st., then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__OB2&amp;amp;s=5240&amp;amp;ts=7145 take MUNI N-Judah outbound] or T-Third outbound to Brannan stop.&lt;br /&gt;
;What&lt;br /&gt;
:&amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;microformatsDevCamp!&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;The first ever microformatsDevCamp, for authors, designers, publishers, developers, engineers building pages, sites, and tools with microformats.&amp;lt;/span&amp;gt;&lt;br /&gt;
;How much&lt;br /&gt;
:$20 suggested donation (gets you a t-shirt while supplies last). &amp;lt;em style=&amp;quot;display:block&amp;quot;&amp;gt;No one turned away for lack of funds.&amp;lt;/em&amp;gt;&lt;br /&gt;
;URLs&lt;br /&gt;
:&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://microformats.org/wiki/events/2009-07-25-dev-camp&amp;lt;/span&amp;gt;&lt;br /&gt;
:http://upcoming.yahoo.com/event/2888376/&lt;br /&gt;
:http://www.facebook.com/event.php?eid=102571118403&lt;br /&gt;
;short URL&lt;br /&gt;
:http://tr.im/ufdevcamp&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''[http://suda.co.uk/projects/microformats/hcalendar/get-cal.php?uri=http://microformats.org/wiki/events/2009-07-25-dev-camp Add this event to your calendar]''' http://www.boogdesign.com/images/buttons/microformat_hcalendar.png&lt;br /&gt;
&lt;br /&gt;
== Sponsors == &lt;br /&gt;
microformatsDevCamp is made possible thanks to the generosity of our corporate and individual sponsors!&lt;br /&gt;
&lt;br /&gt;
* Venue&lt;br /&gt;
**[http://automattic.com Automattic]&lt;br /&gt;
* Meals&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://spinn3r.com Spinn3r]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://commerce.net CommerceNet]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://steve.ganz.name/ Steve Ganz]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.carlaborsoi.com/ Carla Borsoi]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* Promotion&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://objectadjective.com Object Adjective]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://cindyli.com Cindy Li]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sponsorships ===&lt;br /&gt;
Help sponsor microformatsDevCamp:&lt;br /&gt;
&lt;br /&gt;
* Saturday 25th&lt;br /&gt;
** Lunch - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://spinn3r.com Spinn3r]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; &lt;br /&gt;
** Dinner - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://commerce.net CommerceNet]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Social Event - sponsored by ________&lt;br /&gt;
*** Beer - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://steve.ganz.name/ Steve Ganz]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Late Night Snacks - sponsored by ________&lt;br /&gt;
* Sunday 26th&lt;br /&gt;
** Breakfast - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.carlaborsoi.com/ Carla Borsoi]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Lunch - sponsored by ________&lt;br /&gt;
* More Ideas...&lt;br /&gt;
** Stickers - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://objectadjective.com Object Adjective]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Buttons - sponsored by &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://cindyli.com Cindy Li]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** Coffee&lt;br /&gt;
** Snacks&lt;br /&gt;
** T-shirts&lt;br /&gt;
** ______?&lt;br /&gt;
&lt;br /&gt;
For meals, we're planning on something simple like bagels+coffee for breakfast; or pizza or indian delivery later on. We'll arrange for sponsors to pay vendors directly.&lt;br /&gt;
&lt;br /&gt;
== attendees ==&lt;br /&gt;
microformatsDevCamp, like any BarCamp, needs you! &lt;br /&gt;
&lt;br /&gt;
Sign up to volunteer, attend, design, code, and build with microformats!&lt;br /&gt;
&lt;br /&gt;
=== planners ===&lt;br /&gt;
Want to help organize and plan the first microformatsDevCamp? Sign up and be sure to pick up a planner role (see below).&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Tantek|Tantek Çelik]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''organizing, venue acquisition, intro and kickoff'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Rohit|Rohit Khare]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''venue acquisition, sponsor wrangler, food'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:EdwardOConnor |Edward O'Connor]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;nickname&amp;quot;&amp;gt;Ted&amp;lt;/span&amp;gt;) - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''volunteer coordinator, cleanup'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Pseudowish|Lauren Scime]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''t-shirts, other coordination needs tbd'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Chris Messina|Chris Messina]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''connector and advisor'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
Planners: please see and keep up with the [[#planner_to-do]] section!&lt;br /&gt;
&lt;br /&gt;
=== volunteers ===&lt;br /&gt;
Like all [http://barcamp.org BarCamps], this event is what it is because of what everyone puts into it. Volunteer to help setup, check people in, get them setup with a name badge, clean up, and help people in general have a good time and get things done.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Cindy Li&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;helping with microformatsDevCamp logo design&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. done!&lt;br /&gt;
** full resolution logo: &amp;lt;span class=&amp;quot;attach&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&amp;lt;/nowiki&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** on Flickr: http://www.flickr.com/photos/cindyli/3726302070/&lt;br /&gt;
** &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;designed and ordered buttons for event.&amp;lt;/span&amp;gt;Done!&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:BeauLebens|Beau Lebens]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;, Automattic, [[http://dentedreality.com.au/ Dented Reality]]. &amp;lt;span class=&lt;br /&gt;
note&amp;quot;&amp;gt;I know my way around the venue, so can help sort out power strips, projectors etc&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== participants ===&lt;br /&gt;
Want to design interfaces or build stuff with microformats and want help doing it? Sign up! Add yourself. Note your site (with [[hCard]] if you have it), interests/projects, and tag yourself as a web '''author''', '''designer''', '''publisher''', '''developer''' - pick at least one.&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://tantek.com Tantek Çelik]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/strong&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt; (user interface interaction)&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://yury.name Yury Lifshits]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.markng.co.uk Mark Ng]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.ics.uci.edu/~rohit Rohit Khare]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://alpern.org Micah Alpern]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt; (user interface interaction)&amp;lt;/span&amp;gt; (will be there Sunday).&lt;br /&gt;
&lt;br /&gt;
# ...&lt;br /&gt;
&lt;br /&gt;
==venue==&lt;br /&gt;
Automattic has very graciously agreed to host microformatsDevCamp. The venue has:&lt;br /&gt;
* wifi&lt;br /&gt;
* power. power outlets, extension cords, power strips&lt;br /&gt;
* 4-5 rooms/meeting areas. &lt;br /&gt;
* 3 projectors&lt;br /&gt;
* 1 whiteboard.&lt;br /&gt;
* sink, water.&lt;br /&gt;
&lt;br /&gt;
As Automattic is donating the venue, as participants it is our responsibility to take excellent care of the venue, leaving it as good or better than we found it.&lt;br /&gt;
&lt;br /&gt;
Some amount of camping overnight at the venue will be possible.&lt;br /&gt;
&lt;br /&gt;
=== nearby food ===&lt;br /&gt;
Suggestions for nearby (easy/quick walking distance) drinks, snacks, food.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Bayside Market&amp;lt;/span&amp;gt; - fresh &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;fruit&amp;lt;/span&amp;gt; and &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;vegetables&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;sandwiches&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;url&amp;quot;&amp;gt;http://www.yelp.com/biz/bayside-market-san-francisco-2&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Crossroads Cafe&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;coffee&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;espresso&amp;lt;/span&amp;gt; drinks, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;shakes&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;smoothies&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;bagels&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;sandwiches&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;url&amp;quot;&amp;gt;http://www.yelp.com/biz/crossroads-cafe-san-francisco-3&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== tags ==&lt;br /&gt;
Please use the following tags when tagging related content (blog posts, photos, videos):&lt;br /&gt;
&lt;br /&gt;
tags:&lt;br /&gt;
&amp;lt;kbd class=&amp;quot;tags&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;'''#ufdevcamp'''&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;ufdevcampsf&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCampSF&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats-meetup&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp2009&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;The-Embarcadero&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;san-francisco&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;upcoming:event=2888376&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/kbd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Track:&lt;br /&gt;
* [http://search.twitter.com/search?q=ufdevcamp #ufdevcamp on Twitter Search].&lt;br /&gt;
* [http://identi.ca/tag/ufdevcamp #ufdevcamp] tagspace on identi.ca.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;group&amp;quot;&amp;gt;Groups&amp;lt;/span&amp;gt;:&lt;br /&gt;
* [http://identi.ca/group/microformats !microformats Identi.ca group] (aliases: !mf and !uf). Join and address the whole group. Notices to this group can also be tracked from [http://identi.ca/tag/microformats #microformats]&lt;br /&gt;
&lt;br /&gt;
== notes ==&lt;br /&gt;
topics discussed:&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== session ideas ==&lt;br /&gt;
Have an idea for a session? Please read &amp;lt;cite&amp;gt;[http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ What is a DevCamp?]&amp;lt;/cite&amp;gt; and then suggest something or add a &amp;quot;+1&amp;quot; to existing suggestions, and sign your suggestion or opinion with your Username with &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* '''microformats and user sign-up user interface''' - how can importing and subscribing to hCards help make user sign-up easier and thus get more users signed up quicker? [[User:Tantek|Tantek]]&lt;br /&gt;
* '''using hCard to build a self-updating address book''' - in the search for an address book/contact list that actually stays up to date, hCard may be the key. [[User:Beaulebens|Beau Lebens]]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== sessions ==&lt;br /&gt;
Please create a wiki page for any session you lead or attend and link to it from here.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== photographs ==&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== blog posts ==&lt;br /&gt;
Blog posts about the devCamp. Newest first.&lt;br /&gt;
* [http://microformats.org/blog/2009/07/20/microformatsdevcamp-this-weekend/ 2009-07-21 microformats.org: microformatsDevCamp this weekend!]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
* [http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ Chris Messina: What is a DevCamp?]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt; &amp;lt;!-- End of @vevent --&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
== Related Pages==&lt;br /&gt;
microformatsDevCamp is one of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
{{events-related-pages}}&lt;br /&gt;
&lt;br /&gt;
== planner to-do ==&lt;br /&gt;
&lt;br /&gt;
=== planner roles ===&lt;br /&gt;
We need the following roles and responsibilities to be picked up by planners!&lt;br /&gt;
* '''setup''' - be in charge of setup the day of, coordinate with venue on setup plenty of time *before* the start of the camp! setup: power cords, power strips, calendar grid for sessions, tables and chairs in rooms/meeting areas, projectors&lt;br /&gt;
* '''welcome desk''' - welcome microformatsDevCamp attendees at the entrance of the venue, make sure they get a name tag and instruct them to tag themselves as primarily/secondarily being a web '''author''', '''designer''', '''publisher''', '''developer''', pick at least one. (as they should also do when the sign up on the wiki in the attendees section above!)&lt;br /&gt;
&lt;br /&gt;
If you're a planner, please pick up and move one or more of these roles/responsibilities to your name above. Thanks!&lt;br /&gt;
&lt;br /&gt;
Role info / details:&lt;br /&gt;
* '''intro and kickoff''' - run the introductory session and help start the microformatsDevCamp with traditional BarCamp intros/3tags and explanation of the BarCamp format.&lt;br /&gt;
* '''food''' - coordinate / match up sponsors with meals and make sure the meals arrive and are setup for event participants during the event.&lt;br /&gt;
* '''sponsor wrangler''' - for food, t-shirts. per definition given in: http://www.cleverclevergirl.com/?p=10 : &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Drafts a message to send to potential sponsors, follows up leads from others for potential sponsors, collects info, logos (in vector format), and money from sponsors and also sees that receipts (if necessary) are issued at the end. &amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* '''t-shirts''' - get estimate, make sure to order in time for the event. Ben Ward has done some work on this - check with him.&lt;br /&gt;
* '''volunteer coordinator''' - recruit and organize volunteers the day of the event to help out with food, setup&lt;br /&gt;
* '''cleanup''' - enlist help of volunteers and all devCamp participants to help with cleanup&lt;br /&gt;
&lt;br /&gt;
===Sponsor planning ===&lt;br /&gt;
We need to:&lt;br /&gt;
* collected some donations for microformatsDevCamp at [[events/2009-06-26-microformats-4th-bday|4th bday party]]&lt;br /&gt;
** $109 - to go towards t-shirt or maybe snacks.&lt;br /&gt;
&lt;br /&gt;
* Figure out rough budget&lt;br /&gt;
** meals - get sponsors to host/pay for meals directly if possible. details of meal sponsorships here, including who is going to go get the food and deliver it etc.&lt;br /&gt;
*** Saturday&lt;br /&gt;
**** lunch: bring your own brownbag? unless we get a sponsor.&lt;br /&gt;
**** dinner: CommerceNet. Rohit is handling getting the food&lt;br /&gt;
*** Sunday&lt;br /&gt;
**** breakfast: Carla Borsoi. Tantek is handling ordering/picking-up breakfast foods (max $150) and getting reimbursed. &lt;br /&gt;
**** lunch: bring your own brownbag? unless we get a sponsor.&lt;br /&gt;
** tshirts - need total from below and breakdown of how sponsors / donations are going to cover it.&lt;br /&gt;
&lt;br /&gt;
* Remaining key items that need sponsorships&lt;br /&gt;
** meals&lt;br /&gt;
*** Saturday&lt;br /&gt;
**** lunch: _____________&lt;br /&gt;
**** social event: ________ &lt;br /&gt;
*** Sunday&lt;br /&gt;
**** lunch: _____________&lt;br /&gt;
&lt;br /&gt;
===Food and drink===&lt;br /&gt;
We're looking for sponsors for microformatsDevCamp meals!&lt;br /&gt;
&lt;br /&gt;
Something simple like bagels+coffee for breakfast, and pizza or indian delivery usually works well.&lt;br /&gt;
&lt;br /&gt;
See the [[#sponsors]] section for what is available to sponsor.&lt;br /&gt;
&lt;br /&gt;
===T-shirts===&lt;br /&gt;
* get estimates from vendor(s) for different quantities&lt;br /&gt;
** get vendor contact info from Ben Ward who has already looked into this and found a reliable vendor that can deliver high quality t-shirts in a week or less time.&lt;br /&gt;
** Suggestion: 100 shirts, provide them to individuals who sponsor microformatsDevCamp with a $20 or more donation to help pay for t-shirts and snacks/food (if any funds from covering t-shirts are remaining). [[User:Tantek|Tantek]] 17:40, 17 July 2009 (UTC)&lt;br /&gt;
* make/reuse design (get original t-shirt design details from Dan Cederholm)&lt;br /&gt;
* order/print - make sure folks who donated at the [[events/2009-06-26-microformats-4th-bday|4th bday party]] get their shirts&lt;br /&gt;
&lt;br /&gt;
* '''T-shirts are ordered!''' Printer is [http://www.screenprintguy.com The Screen Print Guy] located out on 23rd Ave. Will be available for pickup by Friday July 24th. (This is great! [[User:Tantek|Tantek]] 01:03, 21 July 2009 (UTC))&lt;br /&gt;
** Total cost: $918.00 (would have been cheaper but they had a surcharge for the rush order). I have charged 50% of the cost already to place the order. Other 50% due at time of pickup.&lt;br /&gt;
*** do we have a sponsorship breakdown? --01:03, 21 July 2009 (UTC). e.g.&lt;br /&gt;
*** $109 cash donations from 4th bday party&lt;br /&gt;
*** $??? remaining Object Adjective sponsorship from 4th bday party&lt;br /&gt;
*** $??? remaining needed to cover t-shirts cost.&lt;br /&gt;
** Total # of shirts ordered: 100. Size breakdown: Men's: 10 small, 30 medium, 25 large. Women's: 10 small, 15 medium, 10 large.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39828</id>
		<title>events/2009-07-25-dev-camp</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39828"/>
		<updated>2009-07-23T19:33:34Z</updated>

		<summary type="html">&lt;p&gt;Rohit: Latest sponsors added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;microformatsDevCamp&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;event-page vevent&amp;quot;&amp;gt;&lt;br /&gt;
;When&lt;br /&gt;
:&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-25&amp;lt;/span&amp;gt; from &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;12:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; to &amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-26&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;17:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
;Where&lt;br /&gt;
:&amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;org fn&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;&amp;lt;em style=&amp;quot;border-bottom:dotted 1px&amp;quot; title=&amp;quot;Pier 38 is NOWHERE NEAR Pier 39, just to be clear. Pier 38 is SOUTH of the Bay Bridge.&amp;quot;&amp;gt;Pier 38&amp;lt;/em&amp;gt;, The Embarcadero between Brannan and Townsend&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;CA&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;94107&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;geo&amp;quot;&amp;gt;[http://maps.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;view=map&amp;amp;q=%2BAutomattic,+The+Embarcadero,+San+Francisco,+CA+94107&amp;amp;sll=37.752736,-122.402826&amp;amp;sspn=0.13844,0.217667&amp;amp;gl=us&amp;amp;ie=UTF8&amp;amp;t=h&amp;amp;layer=c&amp;amp;cbll=37.782877,-122.388062&amp;amp;panoid=kB1DhzPP5DYl5pgHBRxdPg&amp;amp;cbp=12,123.84,,0,2.44&amp;amp;ll=37.783053,-122.388044&amp;amp;spn=0,359.996599&amp;amp;z=18 View location at latitude:&amp;lt;span class=&amp;quot;latitude&amp;quot;&amp;gt;37.782769&amp;lt;/span&amp;gt;, longitude:&amp;lt;span class=&amp;quot;longitude&amp;quot;&amp;gt;-122.387837&amp;lt;/span&amp;gt;]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
:'''MUNI''': [http://playfoursquare.com/venue/72202 Brannan] (N,T)&lt;br /&gt;
:'''BART''': Embarcadero station, then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__IB3&amp;amp;s=6992&amp;amp;ts=4506 take MUNI N-Judah inbound] or T-Third inbound to Brannan stop.&lt;br /&gt;
:'''Caltrain''': 4th &amp;amp; King st., then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__OB2&amp;amp;s=5240&amp;amp;ts=7145 take MUNI N-Judah outbound] or T-Third outbound to Brannan stop.&lt;br /&gt;
;What&lt;br /&gt;
:&amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;microformatsDevCamp!&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;The first ever microformatsDevCamp, for authors, designers, publishers, developers, engineers building pages, sites, and tools with microformats.&amp;lt;/span&amp;gt;&lt;br /&gt;
;How much&lt;br /&gt;
:$20 suggested donation (gets you a t-shirt while supplies last). &amp;lt;em style=&amp;quot;display:block&amp;quot;&amp;gt;No one turned away for lack of funds.&amp;lt;/em&amp;gt;&lt;br /&gt;
;URLs&lt;br /&gt;
:&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://microformats.org/wiki/events/2009-07-25-dev-camp&amp;lt;/span&amp;gt;&lt;br /&gt;
:http://upcoming.yahoo.com/event/2888376/&lt;br /&gt;
:http://www.facebook.com/event.php?eid=102571118403&lt;br /&gt;
;short URL&lt;br /&gt;
:http://tr.im/ufdevcamp&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''[http://suda.co.uk/projects/microformats/hcalendar/get-cal.php?uri=http://microformats.org/wiki/events/2009-07-25-dev-camp Add this event to your calendar]''' http://www.boogdesign.com/images/buttons/microformat_hcalendar.png&lt;br /&gt;
&lt;br /&gt;
== sponsors == &lt;br /&gt;
&lt;br /&gt;
microformatsDevCamp is made possible thanks to the generosity of our sponsors:&lt;br /&gt;
&lt;br /&gt;
* [http://automattic.com Automattic] - Venue&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://spinn3r.com Spinn3r]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; - Lunch on Saturday&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://commerce.net CommerceNet]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; - Dinner on Saturday&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Steve Ganz&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; - Beer  on Saturday Night.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Carla Borsoi&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; - Breakfast  on Sunday.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://objectadjective.com Object Adjective]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; - Stickers&lt;br /&gt;
* [http://cindyli.com Cindy Li] - Buttons&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
Help sponsor microformatsDevCamp! We'd appreciate support for additional aspects of the DevCamp:&lt;br /&gt;
&lt;br /&gt;
** Saturday 25th&lt;br /&gt;
*** Social Event - sponsored by ____________.&lt;br /&gt;
*** Late Night Snacks - sponsored by ____________.&lt;br /&gt;
** Sunday 26th&lt;br /&gt;
*** Lunch - sponsored by ____________.&lt;br /&gt;
** More Ideas...&lt;br /&gt;
*** Coffee&lt;br /&gt;
*** Snacks&lt;br /&gt;
*** T-shirts&lt;br /&gt;
*** __________?&lt;br /&gt;
&lt;br /&gt;
For meals, we're planning on something simple like bagels+coffee for breakfast; or pizza or indian delivery later on. We'll arrange for sponsors to pay vendors directly.&lt;br /&gt;
&lt;br /&gt;
== attendees ==&lt;br /&gt;
microformatsDevCamp, like any BarCamp, needs you! &lt;br /&gt;
&lt;br /&gt;
Sign up to volunteer, attend, design, code, and build with microformats!&lt;br /&gt;
&lt;br /&gt;
=== planners ===&lt;br /&gt;
Want to help organize and plan the first microformatsDevCamp? Sign up and be sure to pick up a planner role (see below).&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Tantek|Tantek Çelik]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''organizing, venue acquisition, intro and kickoff'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Rohit|Rohit Khare]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''venue acquisition, sponsor wrangler, food'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:EdwardOConnor |Edward O'Connor]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;nickname&amp;quot;&amp;gt;Ted&amp;lt;/span&amp;gt;) - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''volunteer coordinator, cleanup'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Pseudowish|Lauren Scime]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''t-shirts, other coordination needs tbd'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Chris Messina|Chris Messina]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''connector and advisor'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
Planners: please see and keep up with the [[#planner_to-do]] section!&lt;br /&gt;
&lt;br /&gt;
=== volunteers ===&lt;br /&gt;
Like all [http://barcamp.org BarCamps], this event is what it is because of what everyone puts into it. Volunteer to help setup, check people in, get them setup with a name badge, clean up, and help people in general have a good time and get things done.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Cindy Li&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;helping with microformatsDevCamp logo design&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. done!&lt;br /&gt;
** full resolution logo: &amp;lt;span class=&amp;quot;attach&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&amp;lt;/nowiki&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** on Flickr: http://www.flickr.com/photos/cindyli/3726302070/&lt;br /&gt;
** &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;designed and ordered buttons for event.&amp;lt;/span&amp;gt;Done!&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:BeauLebens|Beau Lebens]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;, Automattic, [[http://dentedreality.com.au/ Dented Reality]]. &amp;lt;span class=&lt;br /&gt;
note&amp;quot;&amp;gt;I know my way around the venue, so can help sort out power strips, projectors etc&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== participants ===&lt;br /&gt;
Want to design interfaces or build stuff with microformats and want help doing it? Sign up! Add yourself. Note your site (with [[hCard]] if you have it), interests/projects, and tag yourself as a web '''author''', '''designer''', '''publisher''', '''developer''' - pick at least one.&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://tantek.com Tantek Çelik]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/strong&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt; (user interface interaction)&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://yury.name Yury Lifshits]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.markng.co.uk Mark Ng]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.ics.uci.edu/~rohit Rohit Khare]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://alpern.org Micah Alpern]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt; (user interface interaction)&amp;lt;/span&amp;gt; (will be there Sunday).&lt;br /&gt;
&lt;br /&gt;
# ...&lt;br /&gt;
&lt;br /&gt;
==venue==&lt;br /&gt;
Automattic has very graciously agreed to host microformatsDevCamp. The venue has:&lt;br /&gt;
* wifi&lt;br /&gt;
* power. power outlets, extension cords, power strips&lt;br /&gt;
* 4-5 rooms/meeting areas. &lt;br /&gt;
* 3 projectors&lt;br /&gt;
* 1 whiteboard.&lt;br /&gt;
* sink, water.&lt;br /&gt;
&lt;br /&gt;
As Automattic is donating the venue, as participants it is our responsibility to take excellent care of the venue, leaving it as good or better than we found it.&lt;br /&gt;
&lt;br /&gt;
Some amount of camping overnight at the venue will be possible.&lt;br /&gt;
&lt;br /&gt;
=== nearby food ===&lt;br /&gt;
Suggestions for nearby (easy/quick walking distance) drinks, snacks, food.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Bayside Market&amp;lt;/span&amp;gt; - fresh &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;fruit&amp;lt;/span&amp;gt; and &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;vegetables&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;sandwiches&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;url&amp;quot;&amp;gt;http://www.yelp.com/biz/bayside-market-san-francisco-2&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Crossroads Cafe&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;coffee&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;espresso&amp;lt;/span&amp;gt; drinks, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;shakes&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;smoothies&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;bagels&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;sandwiches&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;url&amp;quot;&amp;gt;http://www.yelp.com/biz/crossroads-cafe-san-francisco-3&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== tags ==&lt;br /&gt;
Please use the following tags when tagging related content (blog posts, photos, videos):&lt;br /&gt;
&lt;br /&gt;
tags:&lt;br /&gt;
&amp;lt;kbd class=&amp;quot;tags&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;'''#ufdevcamp'''&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;ufdevcampsf&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCampSF&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats-meetup&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp2009&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;The-Embarcadero&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;san-francisco&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;upcoming:event=2888376&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/kbd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Track:&lt;br /&gt;
* [http://search.twitter.com/search?q=ufdevcamp #ufdevcamp on Twitter Search].&lt;br /&gt;
* [http://identi.ca/tag/ufdevcamp #ufdevcamp] tagspace on identi.ca.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;group&amp;quot;&amp;gt;Groups&amp;lt;/span&amp;gt;:&lt;br /&gt;
* [http://identi.ca/group/microformats !microformats Identi.ca group] (aliases: !mf and !uf). Join and address the whole group. Notices to this group can also be tracked from [http://identi.ca/tag/microformats #microformats]&lt;br /&gt;
&lt;br /&gt;
== notes ==&lt;br /&gt;
topics discussed:&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== session ideas ==&lt;br /&gt;
Have an idea for a session? Please read &amp;lt;cite&amp;gt;[http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ What is a DevCamp?]&amp;lt;/cite&amp;gt; and then suggest something or add a &amp;quot;+1&amp;quot; to existing suggestions, and sign your suggestion or opinion with your Username with &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* '''microformats and user sign-up user interface''' - how can importing and subscribing to hCards help make user sign-up easier and thus get more users signed up quicker? [[User:Tantek|Tantek]]&lt;br /&gt;
* '''using hCard to build a self-updating address book''' - in the search for an address book/contact list that actually stays up to date, hCard may be the key. [[User:Beaulebens|Beau Lebens]]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== sessions ==&lt;br /&gt;
Please create a wiki page for any session you lead or attend and link to it from here.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== photographs ==&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== blog posts ==&lt;br /&gt;
Blog posts about the devCamp. Newest first.&lt;br /&gt;
* [http://microformats.org/blog/2009/07/20/microformatsdevcamp-this-weekend/ 2009-07-21 microformats.org: microformatsDevCamp this weekend!]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
* [http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ Chris Messina: What is a DevCamp?]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt; &amp;lt;!-- End of @vevent --&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
== Related Pages==&lt;br /&gt;
microformatsDevCamp is one of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
{{events-related-pages}}&lt;br /&gt;
&lt;br /&gt;
== planner to-do ==&lt;br /&gt;
&lt;br /&gt;
=== planner roles ===&lt;br /&gt;
We need the following roles and responsibilities to be picked up by planners!&lt;br /&gt;
* '''setup''' - be in charge of setup the day of, coordinate with venue on setup plenty of time *before* the start of the camp! setup: power cords, power strips, calendar grid for sessions, tables and chairs in rooms/meeting areas, projectors&lt;br /&gt;
* '''welcome desk''' - welcome microformatsDevCamp attendees at the entrance of the venue, make sure they get a name tag and instruct them to tag themselves as primarily/secondarily being a web '''author''', '''designer''', '''publisher''', '''developer''', pick at least one. (as they should also do when the sign up on the wiki in the attendees section above!)&lt;br /&gt;
&lt;br /&gt;
If you're a planner, please pick up and move one or more of these roles/responsibilities to your name above. Thanks!&lt;br /&gt;
&lt;br /&gt;
Role info / details:&lt;br /&gt;
* '''intro and kickoff''' - run the introductory session and help start the microformatsDevCamp with traditional BarCamp intros/3tags and explanation of the BarCamp format.&lt;br /&gt;
* '''food''' - coordinate / match up sponsors with meals and make sure the meals arrive and are setup for event participants during the event.&lt;br /&gt;
* '''sponsor wrangler''' - for food, t-shirts. per definition given in: http://www.cleverclevergirl.com/?p=10 : &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Drafts a message to send to potential sponsors, follows up leads from others for potential sponsors, collects info, logos (in vector format), and money from sponsors and also sees that receipts (if necessary) are issued at the end. &amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* '''t-shirts''' - get estimate, make sure to order in time for the event. Ben Ward has done some work on this - check with him.&lt;br /&gt;
* '''volunteer coordinator''' - recruit and organize volunteers the day of the event to help out with food, setup&lt;br /&gt;
* '''cleanup''' - enlist help of volunteers and all devCamp participants to help with cleanup&lt;br /&gt;
&lt;br /&gt;
===Sponsor planning ===&lt;br /&gt;
We need to:&lt;br /&gt;
* collected some donations for microformatsDevCamp at [[events/2009-06-26-microformats-4th-bday|4th bday party]]&lt;br /&gt;
** $109 - to go towards t-shirt or maybe snacks.&lt;br /&gt;
&lt;br /&gt;
* Figure out rough budget&lt;br /&gt;
** meals - get sponsors to host/pay for meals directly if possible. details of meal sponsorships here, including who is going to go get the food and deliver it etc.&lt;br /&gt;
*** Saturday&lt;br /&gt;
**** lunch: bring your own brownbag? unless we get a sponsor.&lt;br /&gt;
**** dinner: CommerceNet. Rohit is handling getting the food&lt;br /&gt;
*** Sunday&lt;br /&gt;
**** breakfast: Carla Borsoi. Tantek is handling ordering/picking-up breakfast foods (max $150) and getting reimbursed. &lt;br /&gt;
**** lunch: bring your own brownbag? unless we get a sponsor.&lt;br /&gt;
** tshirts - need total from below and breakdown of how sponsors / donations are going to cover it.&lt;br /&gt;
&lt;br /&gt;
* Remaining key items that need sponsorships&lt;br /&gt;
** meals&lt;br /&gt;
*** Saturday&lt;br /&gt;
**** lunch: _____________&lt;br /&gt;
**** social event: ________ &lt;br /&gt;
*** Sunday&lt;br /&gt;
**** lunch: _____________&lt;br /&gt;
&lt;br /&gt;
===Food and drink===&lt;br /&gt;
We're looking for sponsors for microformatsDevCamp meals!&lt;br /&gt;
&lt;br /&gt;
Something simple like bagels+coffee for breakfast, and pizza or indian delivery usually works well.&lt;br /&gt;
&lt;br /&gt;
See the [[#sponsors]] section for what is available to sponsor.&lt;br /&gt;
&lt;br /&gt;
===T-shirts===&lt;br /&gt;
* get estimates from vendor(s) for different quantities&lt;br /&gt;
** get vendor contact info from Ben Ward who has already looked into this and found a reliable vendor that can deliver high quality t-shirts in a week or less time.&lt;br /&gt;
** Suggestion: 100 shirts, provide them to individuals who sponsor microformatsDevCamp with a $20 or more donation to help pay for t-shirts and snacks/food (if any funds from covering t-shirts are remaining). [[User:Tantek|Tantek]] 17:40, 17 July 2009 (UTC)&lt;br /&gt;
* make/reuse design (get original t-shirt design details from Dan Cederholm)&lt;br /&gt;
* order/print - make sure folks who donated at the [[events/2009-06-26-microformats-4th-bday|4th bday party]] get their shirts&lt;br /&gt;
&lt;br /&gt;
* '''T-shirts are ordered!''' Printer is [http://www.screenprintguy.com The Screen Print Guy] located out on 23rd Ave. Will be available for pickup by Friday July 24th. (This is great! [[User:Tantek|Tantek]] 01:03, 21 July 2009 (UTC))&lt;br /&gt;
** Total cost: $918.00 (would have been cheaper but they had a surcharge for the rush order). I have charged 50% of the cost already to place the order. Other 50% due at time of pickup.&lt;br /&gt;
*** do we have a sponsorship breakdown? --01:03, 21 July 2009 (UTC). e.g.&lt;br /&gt;
*** $109 cash donations from 4th bday party&lt;br /&gt;
*** $??? remaining Object Adjective sponsorship from 4th bday party&lt;br /&gt;
*** $??? remaining needed to cover t-shirts cost.&lt;br /&gt;
** Total # of shirts ordered: 100. Size breakdown: Men's: 10 small, 30 medium, 25 large. Women's: 10 small, 15 medium, 10 large.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39764</id>
		<title>events/2009-07-25-dev-camp</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39764"/>
		<updated>2009-07-21T02:04:08Z</updated>

		<summary type="html">&lt;p&gt;Rohit: CommerceNet sponsorship ack&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;microformatsDevCamp&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;event-page vevent&amp;quot;&amp;gt;&lt;br /&gt;
;When&lt;br /&gt;
:&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-25&amp;lt;/span&amp;gt; from &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;12:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; to &amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-26&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;17:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
;Where&lt;br /&gt;
:&amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;org fn&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;&amp;lt;em style=&amp;quot;border-bottom:dotted 1px&amp;quot; title=&amp;quot;Pier 38 is NOWHERE NEAR Pier 39, just to be clear. Pier 38 is SOUTH of the Bay Bridge.&amp;quot;&amp;gt;Pier 38&amp;lt;/em&amp;gt;, The Embarcadero between Brannan and Townsend&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;CA&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;94107&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;geo&amp;quot;&amp;gt;[http://maps.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;view=map&amp;amp;q=%2BAutomattic,+The+Embarcadero,+San+Francisco,+CA+94107&amp;amp;sll=37.752736,-122.402826&amp;amp;sspn=0.13844,0.217667&amp;amp;gl=us&amp;amp;ie=UTF8&amp;amp;t=h&amp;amp;layer=c&amp;amp;cbll=37.782877,-122.388062&amp;amp;panoid=kB1DhzPP5DYl5pgHBRxdPg&amp;amp;cbp=12,123.84,,0,2.44&amp;amp;ll=37.783053,-122.388044&amp;amp;spn=0,359.996599&amp;amp;z=18 View location at latitude:&amp;lt;span class=&amp;quot;latitude&amp;quot;&amp;gt;37.782769&amp;lt;/span&amp;gt;, longitude:&amp;lt;span class=&amp;quot;longitude&amp;quot;&amp;gt;-122.387837&amp;lt;/span&amp;gt;]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
:'''MUNI''': [http://playfoursquare.com/venue/72202 Brannan] (N,T)&lt;br /&gt;
:'''BART''': Embarcadero station, then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__IB3&amp;amp;s=6992&amp;amp;ts=4506 take MUNI N-Judah inbound] or T-Third inbound to Brannan stop.&lt;br /&gt;
:'''Caltrain''': 4th &amp;amp; King st., then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__OB2&amp;amp;s=5240&amp;amp;ts=7145 take MUNI N-Judah outbound] or T-Third outbound to Brannan stop.&lt;br /&gt;
;What&lt;br /&gt;
:&amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;microformatsDevCamp!&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;The first ever microformatsDevCamp, for authors, designers, publishers, developers, engineers building pages, sites, and tools with microformats.&amp;lt;/span&amp;gt;&lt;br /&gt;
;URLs&lt;br /&gt;
:&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://microformats.org/wiki/events/2009-07-25-dev-camp&amp;lt;/span&amp;gt;&lt;br /&gt;
:http://upcoming.yahoo.com/event/2888376/&lt;br /&gt;
:http://www.facebook.com/event.php?eid=102571118403&lt;br /&gt;
;short URL&lt;br /&gt;
:http://tr.im/ufdevcamp&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''[http://suda.co.uk/projects/microformats/hcalendar/get-cal.php?uri=http://microformats.org/wiki/events/2009-07-25-dev-camp Add this event to your calendar]''' http://www.boogdesign.com/images/buttons/microformat_hcalendar.png&lt;br /&gt;
&lt;br /&gt;
== sponsors == &lt;br /&gt;
microformatsDevCamp is possible thanks to the generosity of our sponsors. help sponsor microformatsDevCamp!&lt;br /&gt;
* [http://automattic.com Automattic] - venue&lt;br /&gt;
* [http://commerce.net CommerceNet] - dinner (Saturday)&lt;br /&gt;
* [http://cindyli.com Cindy Li] - buttons&lt;br /&gt;
* [http://objectadjective.com Object Adjective] - stickers&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
sign up to sponsor:&lt;br /&gt;
* t-shirts&lt;br /&gt;
* a meal&lt;br /&gt;
** Saturday (lunch, &amp;lt;del&amp;gt;dinner&amp;lt;/del&amp;gt;, social event)&lt;br /&gt;
** Sunday (breakfast, lunch)&lt;br /&gt;
* coffee&lt;br /&gt;
* snacks&lt;br /&gt;
* ... something else creative!&lt;br /&gt;
&lt;br /&gt;
== attendees ==&lt;br /&gt;
microformatsDevCamp, like any BarCamp, needs you! &lt;br /&gt;
&lt;br /&gt;
Sign up to volunteer, attend, design, code, and build with microformats!&lt;br /&gt;
&lt;br /&gt;
=== planners ===&lt;br /&gt;
Want to help organize and plan the first microformatsDevCamp? Sign up and be sure to pick up a planner role (see below).&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Tantek|Tantek Çelik]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''organizing, venue acquisition, intro and kickoff'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Rohit|Rohit Khare]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''venue acquisition, sponsor wrangler, food'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:EdwardOConnor |Edward O'Connor]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;nickname&amp;quot;&amp;gt;Ted&amp;lt;/span&amp;gt;) - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''volunteer coordinator, cleanup'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Pseudowish|Lauren Scime]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''t-shirts, other coordination needs tbd'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Chris Messina|Chris Messina]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''connector and advisor'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
Planners: please see and keep up with the [[#planner_to_do]] section!&lt;br /&gt;
&lt;br /&gt;
=== volunteers ===&lt;br /&gt;
Like all [http://barcamp.org BarCamps], this event is what it is because of what everyone puts into it. Volunteer to help setup, check people in, get them setup with a name badge, clean up, and help people in general have a good time and get things done.&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Cindy Li&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;helping with microformatsDevCamp logo design&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. done!&lt;br /&gt;
** full resolution logo: &amp;lt;span class=&amp;quot;attach&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&amp;lt;/nowiki&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** on Flickr: http://www.flickr.com/photos/cindyli/3726302070/&lt;br /&gt;
** &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;designed and ordered buttons for event.&amp;lt;/span&amp;gt;Done!&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:BeauLebens|Beau Lebens]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;, Automattic, [[http://dentedreality.com.au/ Dented Reality]]. &amp;lt;span class=&lt;br /&gt;
note&amp;quot;&amp;gt;I know my way around the venue, so can help sort out power strips, projectors etc&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== participants ===&lt;br /&gt;
Want to design interfaces or build stuff with microformats and want help doing it? Sign up! Add yourself. Note your site (with [[hCard]] if you have it), interests/projects, and tag yourself as a web '''author''', '''designer''', '''publisher''', '''developer''' - pick at least one.&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://tantek.com Tantek Çelik]&amp;lt;/span&amp;gt; - &amp;lt;strong class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/strong&amp;gt;, &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt; (user interface interaction)&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://yury.name Yury Lifshits]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.markng.co.uk Mark Ng]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://www.ics.uci.edu/~rohit Rohit Khare]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
# ...&lt;br /&gt;
&lt;br /&gt;
==venue==&lt;br /&gt;
Automattic has very graciously agreed to host microformatsDevCamp. The venue has:&lt;br /&gt;
* wifi&lt;br /&gt;
* power. power outlets, extension cords, power strips&lt;br /&gt;
* 4-5 rooms/meeting areas. &lt;br /&gt;
* 3 projectors&lt;br /&gt;
* 1 whiteboard.&lt;br /&gt;
* sink, water.&lt;br /&gt;
&lt;br /&gt;
As Automattic is donating the venue, as participants it is our responsibility to take excellent care of the venue, leaving it as good or better than we found it.&lt;br /&gt;
&lt;br /&gt;
Some amount of camping overnight at the venue will be possible.&lt;br /&gt;
&lt;br /&gt;
== tags ==&lt;br /&gt;
Please use the following tags when tagging related content (blog posts, photos, videos):&lt;br /&gt;
&lt;br /&gt;
tags:&lt;br /&gt;
&amp;lt;kbd class=&amp;quot;tags&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;'''#ufdevcamp'''&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;ufdevcampsf&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCampSF&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats-meetup&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp2009&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;The-Embarcadero&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;san-francisco&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;upcoming:event=2888376&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/kbd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Track:&lt;br /&gt;
* [http://search.twitter.com/search?q=ufdevcamp #ufdevcamp on Twitter Search].&lt;br /&gt;
* [http://identi.ca/tag/ufdevcamp #ufdevcamp] tagspace on identi.ca.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;group&amp;quot;&amp;gt;Groups&amp;lt;/span&amp;gt;:&lt;br /&gt;
* [http://identi.ca/group/microformats !microformats Identi.ca group] (aliases: !mf and !uf). Join and address the whole group. Notices to this group can also be tracked from [http://identi.ca/tag/microformats #microformats]&lt;br /&gt;
&lt;br /&gt;
== notes ==&lt;br /&gt;
topics discussed:&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== session ideas ==&lt;br /&gt;
Have an idea for a session? Please read &amp;lt;cite&amp;gt;[http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ What is a DevCamp?]&amp;lt;/cite&amp;gt; and then suggest something or add a &amp;quot;+1&amp;quot; to existing suggestions, and sign your suggestion or opinion with your Username with &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* '''microformats and user sign-up user interface''' - how can importing and subscribing to hCards help make user sign-up easier and thus get more users signed up quicker? [[User:Tantek|Tantek]]&lt;br /&gt;
* '''using hCard to build a self-updating address book''' - in the search for an address book/contact list that actually stays up to date, hCard may be the key. [[User:Beaulebens|Beau Lebens]]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== sessions ==&lt;br /&gt;
Please create a wiki page for any session you lead or attend and link to it from here.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== photographs ==&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== blog posts ==&lt;br /&gt;
Blog posts about the meetup. Newest first.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
* [http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ Chris Messina: What is a DevCamp?]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt; &amp;lt;!-- End of @vevent --&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
== Related Pages==&lt;br /&gt;
microformatsDevCamp is one of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
{{events-related-pages}}&lt;br /&gt;
&lt;br /&gt;
== planner to-do ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;discussion&amp;quot;&amp;gt;&lt;br /&gt;
* I'm free most weekends through till the end of August. --[[User:Pseudowish|Lauren Scime]] 17:20, 10 July 2009 (UTC-7)&lt;br /&gt;
** Please see [[#planner_roles|planner roles]] section and grab 1-2 roles that you want to help out with and add them next to your name in the planners list as Rohit, Chris, Ted, and I have done. --[[User:Tantek|Tantek]] 17:36, 14 July 2009 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== planner roles ===&lt;br /&gt;
We need the following roles and responsibilities to be picked up by planners!&lt;br /&gt;
* '''setup''' - be in charge of setup the day of, coordinate with venue on setup plenty of time *before* the start of the camp! setup: power cords, power strips, calendar grid for sessions, tables and chairs in rooms/meeting areas, projectors&lt;br /&gt;
* '''welcome desk''' - welcome microformatsDevCamp attendees at the entrance of the venue, make sure they get a name tag and instruct them to tag themselves as primarily/secondarily being a web '''author''', '''designer''', '''publisher''', '''developer''', pick at least one. (as they should also do when the sign up on the wiki in the attendees section above!)&lt;br /&gt;
&lt;br /&gt;
If you're a planner, please pick up and move one or more of these roles/responsibilities to your name above. Thanks!&lt;br /&gt;
&lt;br /&gt;
Role info / details:&lt;br /&gt;
* '''intro and kickoff''' - run the introductory session and help start the microformatsDevCamp with traditional BarCamp intros/3tags and explanation of the BarCamp format.&lt;br /&gt;
* '''food''' - coordinate / match up sponsors with meals and make sure the meals arrive and are setup for event participants during the event.&lt;br /&gt;
* '''sponsor wrangler''' - for food, t-shirts. per definition given in: http://www.cleverclevergirl.com/?p=10 : &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Drafts a message to send to potential sponsors, follows up leads from others for potential sponsors, collects info, logos (in vector format), and money from sponsors and also sees that receipts (if necessary) are issued at the end. &amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* '''t-shirts''' - get estimate, make sure to order in time for the event. Ben Ward has done some work on this - check with him.&lt;br /&gt;
* '''volunteer coordinator''' - recruit and organize volunteers the day of the event to help out with food, setup&lt;br /&gt;
* '''cleanup''' - enlist help of volunteers and all devCamp participants to help with cleanup&lt;br /&gt;
&lt;br /&gt;
===Sponsors===&lt;br /&gt;
* collected some donations for microformatsDevCamp at [[events/2009-06-26-microformats-4th-bday|4th bday party]]&lt;br /&gt;
** $109&lt;br /&gt;
* Figure out rough budget&lt;br /&gt;
** meals - get sponsors to host/pay for meals directly if possible&lt;br /&gt;
** tshirts - need estimate from below&lt;br /&gt;
* Find sponsors for each item&lt;br /&gt;
&lt;br /&gt;
===Food and drink===&lt;br /&gt;
We're looking for sponsors for microformatsDevCamp meals!&lt;br /&gt;
&lt;br /&gt;
Something simple like bagels+coffee for breakfast, and pizza or indian delivery usually works well.&lt;br /&gt;
&lt;br /&gt;
* Lunch Saturday - sponsored by ____________&lt;br /&gt;
* Dinner Saturday - sponsored by CommerceNet&lt;br /&gt;
* Social Event (Sat. night)? - sponsored by __________&lt;br /&gt;
* Breakfast Sunday - sponsored by __________&lt;br /&gt;
* Lunch Sunday - sponsored by ___________&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
===T-shirts===&lt;br /&gt;
* get estimates from vendor(s) for different quantities&lt;br /&gt;
** get vendor contact info from Ben Ward who has already looked into this and found a reliable vendor that can deliver high quality t-shirts in a week or less time.&lt;br /&gt;
** Suggestion: 100 shirts, provide them to individuals who sponsor microformatsDevCamp with a $20 or more donation to help pay for t-shirts and snacks/food (if any funds from covering t-shirts are remaining). [[User:Tantek|Tantek]] 17:40, 17 July 2009 (UTC)&lt;br /&gt;
* make/reuse design (get original t-shirt design details from Dan Cederholm)&lt;br /&gt;
* order/print - make sure folks who donated at the [[events/2009-06-26-microformats-4th-bday|4th bday party]] get their shirts&lt;br /&gt;
&lt;br /&gt;
* '''T-shirts are ordered!''' Printer is [http://www.screenprintguy.com The Screen Print Guy] located out on 23rd Ave. Will be available for pickup by Friday July 24th. (This is great! [[User:Tantek|Tantek]] 01:03, 21 July 2009 (UTC))&lt;br /&gt;
** Total cost: $918.00 (would have been cheaper but they had a surcharge for the rush order). I have charged 50% of the cost already to place the order. Other 50% due at time of pickup.&lt;br /&gt;
*** do we have a sponsorship breakdown? --01:03, 21 July 2009 (UTC). e.g.&lt;br /&gt;
*** $109 cash donations from 4th bday party&lt;br /&gt;
*** $??? remaining Object Adjective sponsorship from 4th bday party&lt;br /&gt;
*** $??? remaining needed to cover t-shirts cost.&lt;br /&gt;
** Total # of shirts ordered: 100. Size breakdown: Men's: 10 small, 30 medium, 25 large. Women's: 10 small, 15 medium, 10 large.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39532</id>
		<title>events/2009-07-25-dev-camp</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39532"/>
		<updated>2009-07-08T21:50:39Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* Venue */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;microformatsDevCamp&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
One of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-07-18&amp;lt;/span&amp;gt;..&amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;&amp;lt;abbr style=&amp;quot;border:0&amp;quot; class=&amp;quot;value&amp;quot; title=&amp;quot;2009-07-19&amp;quot;&amp;gt;19&amp;lt;/abbr&amp;gt; til &amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;17:00&amp;quot;&amp;gt;5pm&amp;lt;/abbr&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-07-18-dev-camp|microformatsDevCamp]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;CA&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;The first ever microformatsDevCamp, for authors, designers, publishers, developers, engineers building pages, sites, and tools with microformats&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2888376/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== planners ==&lt;br /&gt;
Want to help organize and plan the first microformatsDevCamp? Sign up!&lt;br /&gt;
* [[User:Tantek|Tantek Çelik]]&lt;br /&gt;
* Chris Messina&lt;br /&gt;
* [[User:EdwardOConnor |Edward O'Connor]]&lt;br /&gt;
* [[User:Rohit|Rohit Khare]]&lt;br /&gt;
* [[User:Pseudowish|Lauren Scime]]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== volunteers ==&lt;br /&gt;
Like all [http://barcamp.org BarCamps], this event is what it is because of what everyone puts into it. Volunteer to help setup, check people in, clean up, and help people in general have a good time and get things done.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== attendees ==&lt;br /&gt;
Not sure what is going on but want to build stuff with microformats and want help doing it? Sign up!&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== to-do ==&lt;br /&gt;
&lt;br /&gt;
===Venue===&lt;br /&gt;
* Possible venues to look into:&lt;br /&gt;
** Citizen Space on 2nd street&lt;br /&gt;
** Microsoft SF office on Market street - hosted BarCampSanFrancisco - pinged ex-MSFT coordinator -- [[User:Rohit|Rohit]] 21:49, 8 July 2009 (UTC)&lt;br /&gt;
** Swedish American Hall on Market street - worked well for Webzine05, WordCamp in the past&lt;br /&gt;
** Adobe / Macromedia on Townsend - worked well for the first iPhoneDevCamp&lt;br /&gt;
** SixApart on 4th street in SOMA - they are big supporters of microformats across their products&lt;br /&gt;
** Google SF - we can ask Termie&lt;br /&gt;
** ... add more ideas!&lt;br /&gt;
&lt;br /&gt;
* Available venues - these venues are likely to be available, and we should evaluate capacity, network connection/wifi, # of rooms, equipment/projectors, sleeping facilities etc.&lt;br /&gt;
** ...&lt;br /&gt;
&lt;br /&gt;
* Rejected - these won't work as venues.&lt;br /&gt;
** Yahoo Brickhouse on 3rd street - have hosted many talks on many topics&lt;br /&gt;
*** There is no-longer a Yahoo Brickhouse; Yahoo moved out of this building in March. --[[User:BenWard|BenWard]] 21:14, 10 June 2009 (UTC)&lt;br /&gt;
** Get Satisfaction in South Park - not available. -- [[User:Rohit|Rohit]] 21:49, 8 July 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
===T-shirts===&lt;br /&gt;
* Make design&lt;br /&gt;
* Print&lt;br /&gt;
&lt;br /&gt;
===Sponsors===&lt;br /&gt;
* collecting some donations for microformatsDevCamp at [[events/2009-06-26-microformats-4th-bday]]&lt;br /&gt;
* Figure out rough budget&lt;br /&gt;
* Find sponsors for each item&lt;br /&gt;
&lt;br /&gt;
===Food and drink===&lt;br /&gt;
* Lunch Saturday - sponsored by ____________&lt;br /&gt;
* Dinner Saturday - sponsored by ____________&lt;br /&gt;
* Social Event (Sat. night)? - sponsored by __________&lt;br /&gt;
* Breakfast Sunday - sponsored by __________&lt;br /&gt;
* Lunch Sunday - sponsored by ___________&lt;br /&gt;
* ...&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=social-network-portability&amp;diff=39405</id>
		<title>social-network-portability</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=social-network-portability&amp;diff=39405"/>
		<updated>2009-07-01T18:16:01Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* Open Source */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; Social Network Portability &amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
Social network portability is one of several [[user-interface]] ideas and suggestions for working with microformats in the area of [[data-portability]].&lt;br /&gt;
&lt;br /&gt;
== The Problem ==&lt;br /&gt;
Why is it that every single social network community site makes you:&lt;br /&gt;
* re-enter all your [[hcard-supporting-user-profiles|personal profile info]] (name, email, birthday, URL etc.)?&lt;br /&gt;
* re-add all your [[hcard-xfn-supporting-friends-lists|friends]]?&lt;br /&gt;
&lt;br /&gt;
In addition, why do you have to:&lt;br /&gt;
* re-turn off notifications?&lt;br /&gt;
* re-specify privacy preferences?&lt;br /&gt;
* re-[[block]] [http://headrush.typepad.com/creating_passionate_users/2006/04/angrynegative_p.html negative people]?&lt;br /&gt;
&lt;br /&gt;
AKA &amp;quot;social network fatigue problem&amp;quot; and &amp;quot;social network update/maintenance problem&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== The Goals ==&lt;br /&gt;
When you join a new site, you should be able to ''import'' or preferably ''subscribe'' to&lt;br /&gt;
* your profile information&lt;br /&gt;
* your social network&lt;br /&gt;
from any existing profile of yours. &lt;br /&gt;
&lt;br /&gt;
In addition it would be nice if preferences around:&lt;br /&gt;
* notifications&lt;br /&gt;
* [[privacy]]&lt;br /&gt;
also transferred between profiles.&lt;br /&gt;
&lt;br /&gt;
AKA a social internetwork, a network of social networks.&lt;br /&gt;
&lt;br /&gt;
== Design Patterns and Recipes ==&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;How To&amp;quot; for social network profile sites that want to solve the above problems and achieve the above goals.&lt;br /&gt;
&lt;br /&gt;
# Publish microformats in your user profiles and contacts.&lt;br /&gt;
## implement [[hcard|hCard]] on user profile pages, including [[xfn]] rel=&amp;quot;me&amp;quot; on hyperlinks to users' blogs or home pages that they specify.  See [[hcard-supporting-profiles]] for sites that have already done this. See [[how-to-publish-user-profiles]] for more details (See [[hcard-authoring]] until that previous link is created and filled in.)&lt;br /&gt;
## implement [[hcard|hCard]]+[[xfn|XFN]] on the list of contacts on your user profile pages. Use [[xfn]] rel=&amp;quot;me&amp;quot; to link to contacts list pages and contacts list pagination links too. See [[hcard-xfn-supporting-friends-lists]] for sites that already do this. (e.g. [[http://twitter.com/ Twitter]]) and [[how-to-markup-contact-lists]] for more details.&lt;br /&gt;
## implement [[hcard|hCard]] wherever a user's name is mentioned in lists, in comments, in messages or wherever else it would help to identity that a &amp;quot;person&amp;quot; or &amp;quot;organization&amp;quot; is being referred to. &lt;br /&gt;
# Subscribe to microformats for your user profiles and contacts:&lt;br /&gt;
## when signing up a new user and importing contacts&lt;br /&gt;
### let a user fill out and &amp;lt;em title=&amp;quot;Auto-sync is more than just one-time import, check it and sync-up once a day.&amp;quot;&amp;gt;&amp;quot;auto-sync&amp;quot;&amp;lt;/em&amp;gt; from one of their existing [[hcard-supporting-profiles]], their name, their icon etc.  [http://microformats.org/blog/2007/06/21/microformatsorg-turns-2/ Satisfaction Inc already supports this] ([http://staging.getsatisfaction.com/people/new sign up page]).  See [[how-to-import-user-profiles]] for more details.&lt;br /&gt;
### let a user fill out and &amp;lt;em title=&amp;quot;Auto-sync is more than just one-time import, check it and sync-up once a day.&amp;quot;&amp;gt;&amp;quot;auto-sync&amp;quot;&amp;lt;/em&amp;gt; their list of contacts from one of their existing [[hcard-xfn-supporting-friends-lists|hCard+XFN supporting friends lists]]. [http://microformats.org/blog/2007/06/21/microformatsorg-turns-2/ Dopplr.com already supports this] ([http://www.flickr.com/photo_zoom.gne?id=576635008&amp;amp;size=o screenshot]).  See [[how-to-import-contacts]] for more details (e.g. first implement direct XFN friends list import/subscribe by using the SGAPI to important contacts *across the web*, much faster than importing from one service at a time.)&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
=== Groups ===&lt;br /&gt;
* [http://ma.gnolia.com/groups/PSN Ma.gnolia Portable Social Networks group] for aggregated bookmarks around the subject and join the group to share links.&lt;br /&gt;
* [http://upcoming.yahoo.com/group/3601/ Upcoming Social Network Portability group] for events to discuss and implement social network portability.&lt;br /&gt;
&lt;br /&gt;
=== Open Source ===&lt;br /&gt;
* &amp;quot;[http://code.google.com/apis/opensocial/ OpenSocial] defines a common API for social applications across multiple websites.&lt;br /&gt;
* [[hKit]] - web service and open source PHP for parsing/importing/subscribing to [[hcard-supporting-profiles|hCard open user profiles]].&lt;br /&gt;
* &amp;quot;[http://opensocialgraph.plaxo.com/ Online Identity Consolidator]&amp;quot; rel=&amp;quot;me&amp;quot; web parser/crawler web service and open source Python. (source code link now broken; Google code has a copy at [http://code.google.com/p/google-sgnodemapper/source/browse/trunk/plaxo-rel_me_crawler.py rel_me_crawler.py])&lt;br /&gt;
* &amp;quot;[http://django-psn.googlecode.com/svn/trunk/readme.html Django-PSN (portable social networks)]&amp;quot; open source for a user interface to create links on a social network profile to &amp;quot;other profiles&amp;quot; marked up with rel=&amp;quot;me&amp;quot; naturally.  The code can be seen in action on the [http://pownce.com Pownce] website, e.g. on [http://pownce.com/t/ a Pownce profile page that links to other profiles of the same user]. This is a great complement to the above Plaxo Online Identity Consolidator. What Django-PSN publishes, Plaxo Online Identity Consolidator parses.&lt;br /&gt;
* [http://code.google.com/p/identity-matcher/ identity-matcher] - Rails plugin to match identities and social network information from sites such as GMail, Twitter, Flickr, Facebook and any site supporting appropriate microformats. This code was extracted and contributed from Dopplr.&lt;br /&gt;
* [http://redmonk.net/projects/portable-social-network-lib/ Portable Social Network Lib] is a Ruby library for consuming/providing Portable Social Network services in social web apps, written by Steve Ivy. ([http://redmonk.net/archives/2007/11/07/if-you-love-your-users-set-them-free-portable-social-networks/ More])&lt;br /&gt;
* [http://code.google.com/p/diso/ DiSo] - ''distributed social networking'' components, [[User:Chris_Messina|Chris Messina]] and [[User:SteveIvy|Steve Ivy]]&lt;br /&gt;
&lt;br /&gt;
=== User Interfaces ===&lt;br /&gt;
* &amp;quot;[http://gerardramos.com/mf/ Social Network Portability with Microformats]&amp;quot; - a user interface that lets you check how portable your social network is across various sites.&lt;br /&gt;
* &amp;quot;[http://lab.backnetwork.com/ufXtract-psn/ ufXtract - Portable social network profile parser]&amp;quot; - A public API which can extract both hCard-XFN patterns and XFN rel=me links from social networks. The API can spider multiple pages following rel=me links. It also tries to find the representative hCard and provides output as JSON or XML.&lt;br /&gt;
&lt;br /&gt;
== Social Network Portability FAQ ==&lt;br /&gt;
See [[social-network-portability-faq]].&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
*[[events/2007-07-28-portable-social-networks-meetup|2007-07-28 portable social networks initial meeting]] between Daniel Burka, [[User:Tantek|Tantek Çelik]], Eran Globen, Brian Oberkirch at Ritual Coffee Roasters, San Francisco, CA. Discussed portable social networks, simplified and crystalized problem statement (with progressive problems to solve), goals, design patterns, recipes. Created [[social-network-portability]] page.&lt;br /&gt;
* [[events/2007-08-19-social-network-portability-today|2007-08-19 BarCampBlock session on social network portability TODAY]] at Princeton Review offices, High Street, Palo Alto, CA. Reviewed problem statement, how sites can use the [[hcard|hCard]] and [[xfn|XFN]] microformats *today* to become a node on the &amp;quot;open social web&amp;quot; (phrase introduced).&lt;br /&gt;
* [[events/2007-08-28-social-network-portability-today|2007-08-28 Social Network Portability Today]] lunchtime meetup&lt;br /&gt;
* [[events/2007-09-05-dconstruct-microformats-workshop|2007-09-05 d.Construct workshop on microformats]] which covered both [[data-portability]] and [[social-network-portability]].&lt;br /&gt;
* [[events/2007-09-08-social-network-portability|2007-09-08 BarCampBrighton session on social network portability]] at Madgex offices, North Street, Brighton, England.&lt;br /&gt;
* [[events/2007-09-25-social-network-portability|2007-09-25 Portable Social Network Micro Meetup]] at Citizen Space, San Francisco, CA, USA.&lt;br /&gt;
*[[events/2007-09-28-portable-social-networks-meetup-amsterdam|2007-09-28 Portable Social Network Panel]] at PICNIC in Amsterdam, Netherlands&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2007-10-04&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-10-04-fundamentos-web-social-network-portability|Fundamentos Web: Social Network Portability]]&amp;lt;/span&amp;gt; by Tantek Çelik &amp;amp;mdash; &amp;lt;span class=&amp;quot;location adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Gij&amp;amp;oacute;n&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;country-name&amp;quot;&amp;gt;Spain&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-05&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-05-dconstruct-social-network-portability|dConstruct 2008: Social Network Portability]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://2008.dconstruct.org/schedule/TantekCelik.php#talk&amp;lt;/span&amp;gt;) at [http://2008.dconstruct.org/ dConstruct 2008] in &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Brighton, England&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt; ([http://tantek.com/presentations/2008/09/social-network-portability presentation])&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
See the microformats [[events]] page for upcoming events related to social network portability.&lt;br /&gt;
&lt;br /&gt;
== Articles and blog posts ==&lt;br /&gt;
Note: if you know of or can find earlier mentions on the web of the phrases &amp;quot;portable social network&amp;quot; or &amp;quot;social network portability&amp;quot;, please add the earliest reference elsewhere on the web to this chronology. [[User:Tantek|Tantek]] 08:25, 22 Aug 2007 (PDT).&lt;br /&gt;
&lt;br /&gt;
* 2006-11-15 Jon Hicks: [http://www.flickr.com/photos/hicksdesign/298271647/ The straw that broke this camels back]: &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Thats the last social service that involves me adding all my friends in all over again. Life is too chuffing short.&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;Please, can someone come up with some way of avoiding this repetition of 'buddies'?!&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* &amp;lt;strong&amp;gt;2006-11-15&amp;lt;/strong&amp;gt; [http://twitter.com/drewm/statuses/68199 Drew McLellan on Twitter]: (Perhaps the earliest mention of the concept of social network portability.) &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Thinking that we really need to join the dots with XFN and make social networks portable.&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* &amp;lt;strong&amp;gt;2006-11-15&amp;lt;/strong&amp;gt; [http://twitter.com/adactio/statuses/68412 Jeremy Keith on Twitter]: (first known reference to &amp;quot;&amp;lt;strong&amp;gt;portable social networks&amp;lt;/strong&amp;gt;&amp;quot;) &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt; Agreeing with Drew about using XFN to create portable social networks. If we don't, Jon is going to go postal.&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt; The mention of Jon is likely a reference to the [http://www.flickr.com/photos/hicksdesign/298271647/ above-mentioned Flickr photo].&lt;br /&gt;
* 2006-11-19 Phil Gyford: [http://www.gyford.com/phil/writing/2006/11/19/your_single_soci.php Your single social network] &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;I really, really want a single service where I can say “these people are my friends” and then when I sign up to any new website I can sync it with my previously-defined social network.&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* 2006-11-21 Jeremy Keith: [http://adactio.com/journal/1209/ Twittering]: &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Here’s what I want: when I go to the latest social networking fadsite, I want it to ask for my URL. Then it can go off and fetch my [[hcard|hCard]] and [[xfn|XFN]] list. A pre-filled form for my details and a pre-filled list of potential contacts can then be presented to me.&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* 2006-11-21 Derek Featherstone: [http://www.boxofchocolates.ca/archives/2006/11/21/solving-problems-with-social-networking Solving problems with social networking]&lt;br /&gt;
* 2006-11-22 Thomas Vander Wal: [http://www.personalinfocloud.com/2006/11/following_frien.html Following Friends Across Walled Gardens] - first mention of &amp;quot;portable social network&amp;quot; but in reference to quoting Jeremy Keith&lt;br /&gt;
* 2006-11-23 Jeremy Keith: [http://adactio.com/journal/1212/ More thoughts on portable social networks] - describes the process of portability&lt;br /&gt;
* 2006-11-23 Glenn Jones: [http://www.glennjones.net/Post/820/Microformatsandportablesocialnetwork.htm Microformats and portable social network] - talks about portable social networks in the backnetwork&lt;br /&gt;
* 2006-11-23 Velvetsarah has [http://www.velvet.id.au/2006/11/23/portable-social-networks/ posted a screenshot and brainstorm] about how a site could handle importing XFN enabled contacts. See [[social-network-portability-interfaces]] for more.&lt;br /&gt;
* &amp;lt;strong&amp;gt;2006-11-24&amp;lt;/strong&amp;gt; [http://microformats.org/wiki?title=user-interface&amp;amp;diff=10524&amp;amp;oldid=10523 &amp;quot;&amp;lt;strong&amp;gt;social network portability&amp;lt;/strong&amp;gt;&amp;quot; phrase and problem statement introduced to microformats wiki] by [[User:Tantek|Tantek Çelik]] &lt;br /&gt;
* 2007-03-11 Robert Gaal: [http://www.53miles.com/archives/making-openid-your-only-online-profile-alpha-dash Making OpenID your only online profile: Alpha Dash] - An abstract attempt to create one dashboard, to be used as a starting point for all social networks. It contains four elements: identity, ownership, presence and contacts (see comments also)&lt;br /&gt;
* 2007-05-16 [http://2007.xtech.org/public/schedule/paper/69 What is your provenance?] by Gavin Bell for Xtech 2007. Also available on [http://video.google.com/videoplay?docid=-8663100900373306094 Google Video]&lt;br /&gt;
* 2007-06-20 Alper Çuğun: [http://fourstarters.com/2007/06/20/the-future-of-everything-is-social-consolidate-and-take-back-your-social-network/ The Future of Everything is Social: Consolidate and take back your social network]&lt;br /&gt;
* 2007-07-17 Kevin Lawver: [http://www.lawver.net/archive/2007/07/17/h12_portable_social_networks_at_mashup_camp.php A Portable Social Network Prototype] - A simple Ruby on Rails app that uses OpenID + XFN to look for users of the site w/ the same homepage as the href value and allows you to add them as contacts.&lt;br /&gt;
*[http://www.plaxo.com/about/releases/release-20070718 2007-07-17 Plaxo Pushes For &amp;quot;Open Social Web&amp;quot;: Endorses and implements key open standards, OpenID and microformats]&lt;br /&gt;
* 2007-07-18 Jeremiah Owyang: [http://twitter.com/jowyang/statuses/156097392 Twittering]: &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;What if we could port all our friends and family from one social network to another. Why do we have to continue to add people = annoying&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* 2007-07-18 Brian Oberkirch: [http://www.brianoberkirch.com/2007/07/18/highrise-microformats-and-portable-social-networks/ Highrise, microformats and portable social networks]&lt;br /&gt;
* 2007-07-24 Thomas Vander Wal: [http://vanderwal.net/random/entrysel.php?blog=1937 Sharing and Following/Listening in the Social Web]&lt;br /&gt;
* See [[events/2007-07-28-portable-social-networks-meetup#blog_posts|blog posts following up]] from the [[events/2007-07-28-portable-social-networks-meetup|2007-07-28-portable social networks meetup]].&lt;br /&gt;
* 2007-08-01 Jeffrey Zeldman: [http://www.zeldman.com/2007/08/01/social-network-portability/ &amp;quot;InterNetwork&amp;quot; regarding social network portability]&lt;br /&gt;
* 2007-08-02 &lt;br /&gt;
** [http://www.brosbeforeblogs.com/2007/08/identity-crisis.html Identity Crisis part 1] &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;We need to put the ownership of how we define relationships online in the hands of the individual, not the services that utilize them.&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;My theory on how this should be accomplished is based on a marriage of OpenID and an open standard for defining relationships such as the [[XFN]] [http://microformats.org/ Microformat]. &amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
** [http://www.brianoberkirch.com/2007/08/02/deeelightful-making-profile-import-a-snap/ Deeelightful: Making Profile Import a Snap] &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Why not make it simple for them to jumpstart a profile by reusing information they already have on the [[hcard|Web? Some forward thinking Web services are marking up user profile data with hCard, a microformat that]] signifies a person, place or organization is being described.&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* 2007-08-08 Brian Oberkirch: [http://www.brianoberkirch.com/2007/08/08/building-blocks-for-portable-social-networks/ Building Blocks for Portable Social Networks]&lt;br /&gt;
* 2007-08-15 [http://news.bbc.co.uk/1/hi/technology/6944653.stm Pull down the walled gardens] Internet law professor Michael Geist says the walled gardens of social networks should be pulled down.&lt;br /&gt;
* 2007-08-16 Stephanie Booth: [http://climbtothestars.org/archives/2007/08/16/we-need-structured-portable-social-networks-spsn/ We Need Structured Portable Social Networks (SPSN)] (links to two more posts on the subject, but not certain they're relevant enough for a separate listing; edit as you see fit)&lt;br /&gt;
* 2007-08-17 [http://bradfitz.com/social-graph-problem/ Thoughts on the Social Graph] by Brad Fitzpatrick.&lt;br /&gt;
* 2007-08-25 [http://www.ignitesocialmedia.com/linking-it-all-%e2%80%93-social-network-portability/ Linking It All-Social Network Portability] by Mike Lotz for Ignite Social Media&lt;br /&gt;
* 2007-09-03 [http://themaninblue.com/writing/perspective/2007/09/03/ There are no social networks] by Cameron Adams&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;If you can't see my friends and let my friends be seen, you'll be washed up and hung out to dry.&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* 2007-09-07 [[User:LynX|Carlo v. Loesch]]: [http://about.psyc.eu/Social_network#But.._why_microformats.3F Privacy and the web? Notification and HTTP? Are you looking at the right technologies!?]&lt;br /&gt;
* 2007-11-21 Sitepoint article [http://www.sitepoint.com/article/social-networks-take-friends Portable Social Networks: Take Your Friends with You] &lt;br /&gt;
* 2007-12-03 [http://www.glennjones.net/Post/833/Makingyoursocialnetworkingdataportable-Markingupprofilesandfriendswith.htm Making your social networking data portable - Marking up profiles and friends with mircoformats] by Glenn Jones &lt;br /&gt;
* 2008-02-19 [http://www.glennjones.net/Post/835/SemanticCampLondon.htm Can your website be your API and real life] presentation by Glenn Jones (Semantic Camp London) covers social network portability and date portability&lt;br /&gt;
&lt;br /&gt;
See [http://ma.gnolia.com/groups/PSN ma.gnolia Portable Social Network Group] for aggregated bookmarks around the subject and join the group to share links.&lt;br /&gt;
&lt;br /&gt;
[http://technorati.com/search/microformats.org/wiki/social-network-portability View blog reactions] to this page.&lt;br /&gt;
&lt;br /&gt;
== Issues ==&lt;br /&gt;
* Beware of and avoid [[social-network-anti-patterns]]!&lt;br /&gt;
* See and add to [[social-network-portability-issues]].&lt;br /&gt;
&lt;br /&gt;
== Alternative Approaches ==&lt;br /&gt;
Non-web based:&lt;br /&gt;
* [http://about.psyc.eu psyc] and [http://www.psyced.org psyced], a decentralized multi-protocol chat and event notification system with [http://about.psyc.eu/Social_Network friendship] and [http://about.psyc.eu/Trust trust] modeling.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[social-network-portability-interfaces]]&lt;br /&gt;
* [[social-network-portability-faq]]&lt;br /&gt;
* [[social-network-portability-issues]]&lt;br /&gt;
* [[social-network-anti-patterns]]&lt;br /&gt;
* [[hcard|hCard]]&lt;br /&gt;
* [[xfn]]&lt;br /&gt;
* [[user-interface]]&lt;br /&gt;
* [[data-portability]]&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2009-06-26-microformats-4th-bday&amp;diff=39307</id>
		<title>events/2009-06-26-microformats-4th-bday</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2009-06-26-microformats-4th-bday&amp;diff=39307"/>
		<updated>2009-06-26T20:42:57Z</updated>

		<summary type="html">&lt;p&gt;Rohit: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;http://anendlessarray.com/microformats/728x90.jpg&lt;br /&gt;
&amp;lt;entry-title&amp;gt;microformats.org 4th birthday party!&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Celebrate the 4th birthday of http://microformats.org! One of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
If you'd like to help out with or attend the party, please add your name below.&lt;br /&gt;
&lt;br /&gt;
[[#attending|RSVP]] &amp;lt;strong&amp;gt;required&amp;lt;/strong&amp;gt; for venue capacity tracking.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;event-page vevent&amp;quot; id=&amp;quot;party&amp;quot;&amp;gt;&lt;br /&gt;
== summary ==&lt;br /&gt;
;When&lt;br /&gt;
:&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009&amp;lt;/span&amp;gt;-&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;06&amp;lt;/span&amp;gt;-&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;26&amp;lt;/span&amp;gt; a&amp;lt;span class=&amp;quot;value&amp;quot; style=&amp;quot;text-transform:lowercase&amp;quot;&amp;gt;T&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;19&amp;lt;/span class=&amp;quot;value&amp;quot;&amp;gt;:&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;00&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;display:none&amp;quot;&amp;gt;:&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; to &amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009&amp;lt;/span&amp;gt;-&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;06&amp;lt;/span&amp;gt;-&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;26&amp;lt;/span&amp;gt; a&amp;lt;span class=&amp;quot;value&amp;quot; style=&amp;quot;text-transform:lowercase&amp;quot;&amp;gt;T&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;22&amp;lt;/span&amp;gt;:&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;00&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;display:none&amp;quot;&amp;gt;:&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
;Where&lt;br /&gt;
:&amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://www.yelp.com/biz/b-restaurant-and-bar-san-francisco B Restaurant and Bar]&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;720 Howard Street&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;extended-address&amp;quot;&amp;gt;Yerba Buena Upper Terrace&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;CA&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;94103&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;country-name&amp;quot;&amp;gt;USA&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
;What&lt;br /&gt;
:&amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;microformats.org 4th birthday party!&amp;lt;/span&amp;gt;&lt;br /&gt;
;Web&lt;br /&gt;
:&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://microformats.org/wiki/events/2009-06-26-microformats-4th-bday&amp;lt;/span&amp;gt;&lt;br /&gt;
:&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/3010807&amp;lt;/span&amp;gt;&lt;br /&gt;
;Donation&lt;br /&gt;
:Donation requested at the door: sliding scale $5-$20. &lt;br /&gt;
&amp;lt;/div&amp;gt; &amp;lt;!-- end event-page vevent --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''[http://feeds.technorati.com/events/microformats.org/wiki/events/2009-06-26-microformats-4th-bday%23party Add this event to your calendar]''' [http://feeds.technorati.com/events/microformats.org/wiki/events/2009-06-26-microformats-4th-bday%23party http://www.boogdesign.com/images/buttons/microformat_hcalendar.png]&lt;br /&gt;
&lt;br /&gt;
== sponsors ==&lt;br /&gt;
Please sign up to sponsor the microformats.org 4th birthday party!&lt;br /&gt;
&lt;br /&gt;
* [http://objectadjective.com Object Adjective] is a proud sponsor of this event.&lt;br /&gt;
* [http://www.ribbit.com/ Ribbit] is proud to sponsor the party&lt;br /&gt;
* [http://spinn3r.com Spinn3r] is a proud sponsor of the party&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== attending ==&lt;br /&gt;
I'm going to show up and help celebrate so I'm signing up here with my name linked to my user page (or personal web site).&lt;br /&gt;
# [[User:Tantek|Tantek Çelik]]&lt;br /&gt;
# [[User:Kevin_Marks|Kevin Marks]]&lt;br /&gt;
# [[User:BenWard|Ben Ward]]&lt;br /&gt;
# [[User:Pseudowish|Lauren Scime]]&lt;br /&gt;
# [[User:Repeatpenguin|Jeremy Anderson]]&lt;br /&gt;
# [[User:Richardault|Richard Ault]]&lt;br /&gt;
# [[User:KevinBurton|Kevin Burton]] of [http://spinn3r.com Spinn3r] - I will be by for an hour or so... Spinn3r's 3.0 launch dinn3r is that evening too.&lt;br /&gt;
# [[User:Singpolyma|Singpolyma]]&lt;br /&gt;
# [http://brynnevans.com Brynn Evans]&lt;br /&gt;
# [http://factoryjoe.com Chris Messina]&lt;br /&gt;
# [http://lizdunn.com Liz Dunn]&lt;br /&gt;
# [http://www.myspace.com/ciberch Monica Keller]&lt;br /&gt;
# [http://www.reelgeek.com Erin Caton]&lt;br /&gt;
# [http://www.dustindiaz.com Dustin Diaz]&lt;br /&gt;
# [http://pixelimplosion.com Robert Andersen]&lt;br /&gt;
# [http://www.davidrecordon.com/ David Recordon]&lt;br /&gt;
# [http://www.timoni.org/ Timoni Grone]&lt;br /&gt;
# [[User:sushimonster|Jina Bolton]] of [http://sushiandrobots.com Sushi &amp;amp; Robots] — will try to stop by if I can finish work in time.&lt;br /&gt;
# [[User:Rohit|Rohit Khare]]&lt;br /&gt;
# ...&lt;br /&gt;
&lt;br /&gt;
== regrets ==&lt;br /&gt;
I'd love to be there but can't. Happy 4th birthday from afar!&lt;br /&gt;
* [[User:Cindyli|Cindy Li]]&lt;br /&gt;
* [[User:Tonystubblebine|Tony Stubblebine]]&lt;br /&gt;
* [[User:Anildash|Anildash]] 20:07, 24 June 2009 (UTC)&lt;br /&gt;
* [[User:NiallKennedy|Niall Kennedy]] - in Los Angeles&lt;br /&gt;
* [[User:KaviGoel|Kavi Goel]]&lt;br /&gt;
* [[User:DrErnie|Ernest Prabhakar]]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== location ==&lt;br /&gt;
* [http://www.yelp.com/biz/b-restaurant-and-bar-san-francisco B Restaurant and Bar] - June 26th, 2009 at 7pm&lt;br /&gt;
** Will have hors d'oeuvres and about 50-60 drink tix to hand out to people at the door. Attendees can buy drinks at cash bar after drink tix are used.&lt;br /&gt;
&lt;br /&gt;
== tags ==&lt;br /&gt;
Use the following tags on related content (blog posts, photos, [http://twitter.com tweets]):&lt;br /&gt;
&lt;br /&gt;
tags:&lt;br /&gt;
&amp;lt;kbd class=&amp;quot;tags&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;'''ufbday4'''&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats-party&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats-4th-birthday&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;san-francisco&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;soma&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;howard-street&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;Yerba-Buena&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;B-Restaurant-And-Bar&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;B-Bar&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;''microformats-party-2009-06-26''&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;''upcoming:event=3010807''&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/kbd&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
If you use Twitter, mention ''@microformats party''' in tweets about the event, and track them on [http://search.twitter.com/search?q=microformats+party Twitter Search].&lt;br /&gt;
&lt;br /&gt;
== Promotional Graphics ==&lt;br /&gt;
* Banners &amp;amp; Images of Various Sizes: Promote Microformats 4 Year Birthday Party!&lt;br /&gt;
** [http://anendlessarray.com/microformats/88x31.jpg 88x31px] [http://anendlessarray.com/microformats/88x31.jpg http://anendlessarray.com/microformats/88x31.jpg]&lt;br /&gt;
** [http://anendlessarray.com/microformats/728x90.jpg 728x90px] [http://anendlessarray.com/microformats/728x90.jpg http://anendlessarray.com/microformats/728x90.jpg]&lt;br /&gt;
** [http://anendlessarray.com/microformats/728x90-pink.jpg 728x90px w/Pink] [http://anendlessarray.com/microformats/728x90-pink.jpg http://anendlessarray.com/microformats/728x90-pink.jpg]&lt;br /&gt;
** [http://anendlessarray.com/microformats/125x125.jpg 125x125px] [http://anendlessarray.com/microformats/125x125.jpg http://anendlessarray.com/microformats/125x125.jpg]&lt;br /&gt;
** [http://anendlessarray.com/microformats/200x100.jpg 200x100px] [http://anendlessarray.com/microformats/200x100.jpg http://anendlessarray.com/microformats/200x100.jpg]&lt;br /&gt;
** [http://anendlessarray.com/microformats/200x200.jpg 200x200px] [http://anendlessarray.com/microformats/200x200.jpg http://anendlessarray.com/microformats/200x200.jpg]&lt;br /&gt;
** [http://anendlessarray.com/microformats/300x225.jpg 300x225px] [http://anendlessarray.com/microformats/300x225.jpg http://anendlessarray.com/microformats/300x225.jpg]&lt;br /&gt;
** [http://anendlessarray.com/microformats/120x240.jpg 120x240px] [http://anendlessarray.com/microformats/120x240.jpg http://anendlessarray.com/microformats/120x240.jpg]&lt;br /&gt;
** [http://anendlessarray.com/microformats/250x250.jpg 250x250px] [http://anendlessarray.com/microformats/250x250.jpg http://anendlessarray.com/microformats/250x250.jpg]&lt;br /&gt;
** [http://anendlessarray.com/microformats/468x60.jpg 468x468px]  [http://anendlessarray.com/microformats/468x60.jpg http://anendlessarray.com/microformats/468x60.jpg]&lt;br /&gt;
** [http://anendlessarray.com/microformats/160x600.jpg 160x600px]  [http://anendlessarray.com/microformats/160x600.jpg http://anendlessarray.com/microformats/160x600.jpg]&lt;br /&gt;
&lt;br /&gt;
* Note: If you are DYING to have a different size than the ones up here I can either send you the photoshop file or make you a custom one - Just send a request to lauren@objectadjective.com or find pseudowish on the [[IRC]]&lt;br /&gt;
&lt;br /&gt;
== planners ==&lt;br /&gt;
This section is for organizing a party for the upcoming 4th birthday of http://microformats.org.&lt;br /&gt;
&lt;br /&gt;
I'm donating my time before the event to help plan and make the party happen!&lt;br /&gt;
* [[User:Tantek|Tantek Çelik]] - coordinating, sponsors&lt;br /&gt;
* [[User:Rohit|Rohit Khare]] - sponsors&lt;br /&gt;
* [[User:Kevin_Marks|Kevin Marks]] - sponsors&lt;br /&gt;
* [[User:BenWard|Ben Ward]] - tshirts, sponsors&lt;br /&gt;
* [[User:Pseudowish|Lauren Scime]] - design / venue / sponsors / publicity&lt;br /&gt;
* [[User:Repeatpenguin|Jeremy Anderson]] - will be assisting Lauren w/ above.&lt;br /&gt;
&lt;br /&gt;
We need:&lt;br /&gt;
* a volunteer coordinator. someone to coordinate the volunteers listed below.&lt;br /&gt;
* [[stickers]] - Lauren is on it &lt;br /&gt;
** 500 rounded square 2&amp;quot; stickers w/logo on black background have come in the mail &lt;br /&gt;
* tshirts - Ben is on it&lt;br /&gt;
&lt;br /&gt;
== volunteers ==&lt;br /&gt;
Sign up to be a volunteer!&lt;br /&gt;
We need volunteers to check people in at the door, take donations, hand out stickers, t-shirts etc.&lt;br /&gt;
* [[User:Richardault|Richard Ault]] - Checking names and taking donations for at least first hour. Do we need a way to give Tax receipts? Also need more volunteers to do same.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== donations ==&lt;br /&gt;
* Donation requested at the door: sliding scale $5-$20.  $10 or more gets you a t-shirt (may have to order them on demand and hand out at the next dinner depending on whether t-shirts arrive or not).&lt;br /&gt;
* Donations go towards the party and [[events/2009-07-18-dev-camp|microformatsDevCamp]] this summer.&lt;br /&gt;
&lt;br /&gt;
== Related Pages==&lt;br /&gt;
{{events-related-pages}}&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events&amp;diff=39089</id>
		<title>events</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events&amp;diff=39089"/>
		<updated>2009-06-11T19:04:01Z</updated>

		<summary type="html">&lt;p&gt;Rohit: added semtech 09 session&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Microformats related events&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
Please add microformats events (including events which have sessions on microformats) below.&lt;br /&gt;
&lt;br /&gt;
Use the [[events-template|events template]] to create events pages, and list URLs, details, attendees, recommended tags, link to photos afterwards, etc.  Add links to slides and other media to the [[presentations]], [[podcasts]] pages respectively.&lt;br /&gt;
&lt;br /&gt;
Encourage the use of microformats on event sites' pages themselves, e.g. [[hCalendar]] and [[hCard]] for the schedule, sessions, speakers, and venues.&lt;br /&gt;
&lt;br /&gt;
== Add events to your calendar ==&lt;br /&gt;
Track current and future microformats events by subscribing to &amp;lt;kbd style=&amp;quot;display:block;margin:1em 0&amp;quot;&amp;gt;'''webcal://feeds.technorati.com/events/microformats.org/wiki/events'''&amp;lt;/kbd&amp;gt; in your calendar app. Set it to update once a day and new events will appear automatically.&lt;br /&gt;
&lt;br /&gt;
You may also download  [http://technorati.com/events/microformats.org/wiki/events events on this page as a standalone iCalendar file].&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
== regular ==&lt;br /&gt;
* [[weekly-meetup]] - weekly community meetups. details inside.&lt;br /&gt;
&lt;br /&gt;
== upcoming ==&lt;br /&gt;
&amp;lt;!-- Please try to keep to neutral tense (e.g &amp;quot;Bill Smith on microformats&amp;quot;). Include as many details about the event as possible, including precise start end times, room number, etc. Move details to the (events/..) wiki page for the event itself. Include the information here to start with with hCalendar markup. Thank you. &lt;br /&gt;
&lt;br /&gt;
templates:&lt;br /&gt;
&lt;br /&gt;
one day event:&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;YYYY-MM-DD&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/YYYY-MM-DD-event-session-title|Event Session Title]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;event-location&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit.&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://example.com&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
multiple day event (note dtend &amp;quot;title&amp;quot; value must be 1 day after inline text value, per iCalendar dtend handling).&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;YYYY-MM-DD&amp;lt;/span&amp;gt;..&amp;lt;abbr style=&amp;quot;border:0&amp;quot; class=&amp;quot;dtend&amp;quot; title=&amp;quot;YYYY-MM-DD&amp;quot;&amp;gt;DD&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/YYYY-MM-DD-event-session-title|Event Session Title]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;event-location&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Lorem ipsum dolor sit amet.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://example.com&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Soonest first.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-06-16&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;19:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-06-16-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;TBD, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;.&amp;lt;span class=&amp;quot;url&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;http://tbd.example.com/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-06-17&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;15:45&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[http://www.semantic-conference.com/session/2144/ Semantics at Google: RDFa, Microformats, and more]&amp;lt;/span&amp;gt; at the &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Fairmont Hotel, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Jose&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;.&amp;lt;span class=&amp;quot;url&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;[http://www.semantic-conference.com/2009/travel/ 2009 Semantic Technology Conference]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-06-19&amp;lt;/span&amp;gt;...&amp;lt;abbr class=&amp;quot;dtstart&amp;quot; title=&amp;quot;2009-06-21&amp;quot;&amp;gt;20&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-06-microformats-4th-bday|microformats 4th birthday party]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;location TBD&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://tbd.example.com&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-06-27&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;18:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-06-27-microformats-vevent-london|London Microformats vEvent]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;TBC&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;London&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-07-18&amp;lt;/span&amp;gt;..&amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;&amp;lt;abbr style=&amp;quot;border:0&amp;quot; class=&amp;quot;value&amp;quot; title=&amp;quot;2009-07-19&amp;quot;&amp;gt;19&amp;lt;/abbr&amp;gt; til &amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;17:00&amp;quot;&amp;gt;5pm&amp;lt;/abbr&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-07-18-dev-camp|microformatsDevCamp]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;CA&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;The first ever microformatsDevCamp, for authors, designers, publishers, developers, engineers building pages, sites, and tools with microformats&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://tbd.example.com&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== recent ==&lt;br /&gt;
&amp;lt;!-- Please change to past tense, and reverse the date-order, when moving events to the Recent section. Most recent first. --&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== June 2009 ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-06-09&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;18:30&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-06-09-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Pizza Zone &amp;amp;amp; Grill&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;.&amp;lt;span class=&amp;quot;url&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2852506/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-06-08&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-06-08-london-web-standards|London Web Standards June: microformats]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;join http://www.meetup.com/londonwebstandards/ to see the location&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.meetup.com/londonwebstandards/calendar/10387218/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-06-02&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;19:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-06-02-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;21st Amendment&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;.&amp;lt;span class=&amp;quot;url&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2801069/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== May 2009 ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-05-20&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;20:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-05-20-adr-geo-where20|geo/adr microformats BOF session at Where 2.0]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;extended-address&amp;quot;&amp;gt;Gold Room, 2nd floor, &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Fairmont San Jose&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;170 South Market Street&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Jose&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;95113&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Join us to discuss the all the recent buzz around [[geo]], [[adr]], and [[hCard]] microformats, support by [[google-search|Google in rich snippets]], and by [[yahoo-search|Yahoo in YQL and Y! Placemaker]]&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2718033&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-05-19&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;19:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-05-19-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Banana House&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2656903&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-05-15&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;11:30&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;Twiist.be conference: Microformats and Transient Semantics&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://twiist.be/speakers/briansuda&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-05-12&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;19:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-05-12-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Crepevine&amp;lt;/span&amp;gt; on &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;Church st.&amp;lt;/span&amp;gt; in &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2656901&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-05-05&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-05-05-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Chevy's&amp;lt;/span&amp;gt; on &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;3rd street&amp;lt;/span&amp;gt; in &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2568451&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== April 2009 ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-04-07&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-04-07-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Crepes on Cole&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2376470&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-04-14&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-04-14-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Pancho Villa Taqueria&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2376478&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-04-20&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[http://www.w3qc.org/communiques/archives/invitation-a-la-soiree-conference-du-20-avril-2009/ Microformats presentation]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Laika&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Montéral&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;Québec&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2423142/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-04-21&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-04-21-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Taylor's Automatic Refresher&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2376483&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-04-28&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-04-28-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Third Street Grill&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2376485&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== March 2009 ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-03-31&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-03-31-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Metreon Food Court&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2295743&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-03-24&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-03-24-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Naan N' Chutney&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2171301&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-03-14&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-03-14-sxsw-revolution|Microformats: A Quiet Revolution]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;extended-address&amp;quot;&amp;gt;Room 10, &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Austin Convention Center&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Austin&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;TX&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/1825864/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-03-03&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-03-03-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Flippers&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;.&amp;lt;span class=&amp;quot;url&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/1918295/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== February 2009 ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-02-24&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-02-24-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;21st Amendment&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;.&amp;lt;span class=&amp;quot;url&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/1900098/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-02-17&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-02-17-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Naan N' Chutney&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/1840841/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-02-10&amp;lt;/span&amp;gt; at 7pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-02-10-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;California Pizza Kitchen&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/1765705/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-02-03&amp;lt;/span&amp;gt; at 7pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-02-03-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Taqueria Pancho Villa&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/1519710/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== January 2009 ===&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-01-27&amp;lt;/span&amp;gt; at 7pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-01-27-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Crepes on Cole&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/1519151/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-01-20&amp;lt;/span&amp;gt; at 8pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-01-20-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;21st Amendment&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;2nd Street&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-01-13&amp;lt;/span&amp;gt; at 6:30pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-01-13-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;21st Amendment&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;2nd Street&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; · &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/1489360/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-01-06&amp;lt;/span&amp;gt; at 6:30pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-01-06-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Westfield Shopping Centre Food Court&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;818 Mission Street&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; · &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/1467444/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Previous events ==&lt;br /&gt;
Previous years' events can be found at the following:&lt;br /&gt;
* [[events-2008]]&lt;br /&gt;
* [[events-2007]]&lt;br /&gt;
* [[events-2006]]&lt;br /&gt;
&lt;br /&gt;
== Other languages ==&lt;br /&gt;
* &amp;lt;span lang=&amp;quot;fr&amp;quot;&amp;gt;[[current_events-fr|événements en cours]] (fr)&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Quicktime Broadcaster Notes ==&lt;br /&gt;
&lt;br /&gt;
See [[quicktime]]&lt;br /&gt;
&lt;br /&gt;
==Related pages==&lt;br /&gt;
{{events-related-pages}}&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:Rohit&amp;diff=39088</id>
		<title>User:Rohit</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:Rohit&amp;diff=39088"/>
		<updated>2009-06-11T18:58:39Z</updated>

		<summary type="html">&lt;p&gt;Rohit: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Rohit Khare got involved with microformats.org by volunteering to host it while he was [http://wiki.commerce.net/wiki/Rohit_Khare Director of CommerceNet Labs]. He graduated from [http://www.ics.uci.edu/~rohit/ UC Irvine] and currently lives in Menlo Park, CA and is working on new approaches to publish/subscribe middleware at [http://angstro.com/ Ångströ].&lt;br /&gt;
&lt;br /&gt;
==Legal Point of Contact for microformats.org ==&lt;br /&gt;
&lt;br /&gt;
In particular, his '''informal''' role in the microformats.org admin team is being the first line of contact on legal queries. Many issues regarding copyright, intellectual property, and other issues have been raised on the mailing lists and on the wiki. He would like you to contact him '''before''' posting, if at all possible and appropriate -- while we're all in favor of free and open discussions, there are certain potential legal implications to writing on permanently archived forums that may be better addressed by phone. Please mail him at khare -AT- alumni caltech edu or call his mobile directly at +1 650 714 5529.&lt;br /&gt;
&lt;br /&gt;
==Your Contributions can be put in the Public Domain==&lt;br /&gt;
Rohit supports the widest possible reuse of microformats.org content by placing all of his own contributions in the public domain... this is one, bottom up way you can help address the Legal Entity and IP issues raised on [[microformats-issues]] by placing your own contributions under these terms as well. Just put &amp;lt;nowiki&amp;gt;{{public-domain-release}}&amp;lt;/nowiki&amp;gt; on your user profile page, like this:&lt;br /&gt;
&lt;br /&gt;
{{public-domain-release}}&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=admins&amp;diff=33790</id>
		<title>admins</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=admins&amp;diff=33790"/>
		<updated>2008-01-16T23:32:58Z</updated>

		<summary type="html">&lt;p&gt;Rohit: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;microformats admins&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following individuals are invited volunteer admins on the microformats [[IRC]] channel, [[Main_Page|wiki]], and [[mailing-lists|mailing lists]]:&lt;br /&gt;
* [[User:RobertBachmann|Robert Bachmann]] - also maintains [[mflogbot]]&lt;br /&gt;
* [[User:Phae|Frances Berriman]]&lt;br /&gt;
* [[User:DanCederholm|Dan Cederholm]]&lt;br /&gt;
* [[User:Tantek|Tantek Çelik]]&lt;br /&gt;
* [[User:DimitriGlazkov|Dimitri Glazkov]]&lt;br /&gt;
* [[User:Adactio|Jeremy Keith]]&lt;br /&gt;
* [[User:Rohit|Rohit Khare]] - also an ''ex officio'' observer of microformats admins, as the contact point for the servers, domain names, and [[:Category:public domain license#Point of Contact|legal issues]].&lt;br /&gt;
* [[User:RyanKing|Ryan King]] - also maintains [[mfbot]]&lt;br /&gt;
* [[User:Kevin_Marks|Kevin Marks]]&lt;br /&gt;
* [[User:DrewMcLellan|Drew McLellan]]&lt;br /&gt;
* [[User:EricMeyer|Eric A. Meyer]]&lt;br /&gt;
* [[User:ScottReynen|Scott Reynen]]&lt;br /&gt;
* [[User:Brian|Brian Suda]]&lt;br /&gt;
* [[User:BenWard|Ben Ward]]&lt;br /&gt;
* [[User:BenWest|Benjamin West]]&lt;br /&gt;
&lt;br /&gt;
Wiki-only admins&lt;br /&gt;
* [[User:ChristopheDucamp|Christophe Ducamp]] - primary editor/translator for [[Main_Page-fr]].&lt;br /&gt;
* [[User:Cnsupport]] - infrastructure only&lt;br /&gt;
&lt;br /&gt;
For an automatically generated flat list of microformats wiki admins see: [[Special:Listadmins]].&lt;br /&gt;
&lt;br /&gt;
== contacting ==&lt;br /&gt;
Contacting the admins can be done by either joining the microformats [[irc]] channel and stating &amp;quot;adminhelp&amp;quot; to alert an active moderator that you need their attention, or by using the following point of contact for the admins:&lt;br /&gt;
&lt;br /&gt;
* [http://fberriman.com/ Frances Berriman]  fberriman AT gmail DOT com&lt;br /&gt;
&lt;br /&gt;
''Please note that not all admins wish to act as points of contact, so please only use those listed.''&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=governance-issues&amp;diff=19562</id>
		<title>governance-issues</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=governance-issues&amp;diff=19562"/>
		<updated>2007-08-06T01:56:11Z</updated>

		<summary type="html">&lt;p&gt;Rohit: Reverted edit of JoeAndrieu, changed back to last version by ManuSporny&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Issue Summary 2007-02-28 ==&lt;br /&gt;
=== Editor ===&lt;br /&gt;
[http://www.opendarwin.org/~drernie/ Ernest Prabhakar]&lt;br /&gt;
&lt;br /&gt;
=== Contributors ===&lt;br /&gt;
*[[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* Joe Andrieu&lt;br /&gt;
* Phae&lt;br /&gt;
* Ryan Cannon&lt;br /&gt;
* Colin Barrett&lt;br /&gt;
* ... Please add yourself.&lt;br /&gt;
&lt;br /&gt;
== Preamble ==&lt;br /&gt;
Over the last year, a few people (AndyMabbett, JoeAndrieu, ErnestPrabhakar, JamesCraig, [[User:ManuSporny|ManuSporny]]) have raised issues about how the Microformats wiki, mailing list, and community are governed. This page is here to discuss ideas for documenting, formalizing, and/or improving our collective governance.&lt;br /&gt;
&lt;br /&gt;
== Abstract ==&lt;br /&gt;
Governance has [http://www.phac-aspc.gc.ca/vs-sb/voluntarysector/glossary.html been defined] as &amp;quot;the traditions, institutions and processes that determine how power is exercised, how citizens are given a voice, and how decisions are made on issues of public concern.&amp;quot;  In the context of Microformats, it covers:&lt;br /&gt;
* Rules (both written and unwritten) expected of community members&lt;br /&gt;
* Formal process for change requests for known format problems (i.e. abbr-design-pattern) by voting, with leeway for admin vetoes. &lt;br /&gt;
* Who the various Admins are&lt;br /&gt;
* What powers Admins have&lt;br /&gt;
* Rules for how/when Admins can/should use those powers&lt;br /&gt;
* How to questioning/appealing a decision by an Admin&lt;br /&gt;
* How to become an Admin&lt;br /&gt;
* How to question/change any of these&lt;br /&gt;
&lt;br /&gt;
While not all of these need to be explicitly spelled out, a healthy community our size requires a broad shared understanding of these facts -- as well as acceptance of them as &amp;quot;legitimate.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Who Are Admins ==&lt;br /&gt;
* 2007-01-04 raised by [[User:DrErnie|DrErnie]] on [[microformats-issues]], before this page existed, and moved from there&lt;br /&gt;
*# ''As discussed in [http://microformats.org/discuss/mail/microformats-discuss/2007-January/008011.html], there exist various concerns about the lack of clarity regarding governance of the list, wiki, and the specifications themselves. While agree that there does need to be some form of strong leadership to preserve the integrity of the community, I agree with [http://microformats.org/discuss/mail/microformats-discuss/2007-January/008022.html Colin Barrett] when he said:''&lt;br /&gt;
:::&amp;quot;I think there should be bit more visible superstructure around just who is in this &amp;quot;cabal&amp;quot;. It seems to me like the Editors/Authors of the various specs form the majority it of it, but perhaps that should be made a bit more apparent, and the &amp;quot;powers&amp;quot; of an editor (essentially, the ability to veto changes to the wiki, it seems) outlined a bit and some information about how to become an editor (AFIACT, make numerous, quality edits to the Wiki that the other editors approve of).&amp;quot;&lt;br /&gt;
:An entry has been added to the FAQ regarding [http://microformats.org/wiki/faq#Q:_Who_controls_microformats.3F Who controls microformats?].[[User:DrErnie|Dr. Ernie]] 08:48, 2 Feb 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
== Mailing List Unmoderation Discussion ==&lt;br /&gt;
Discussion from [[mailing-list-unmoderation]].&lt;br /&gt;
&lt;br /&gt;
* I'm glad to see this issue getting traction. However, I'm curious why Ernie's standing in the community is relevant to the issue of unmoderating Andy.  Tantek, could you explain why that has been presented as an integral part of this decision making process?  Clearly, personal clout always shapes one's ability to influence the community; however, I doubt it should be officially incorporated in these &amp;quot;proceedings&amp;quot;. Shouldn't every member of the community have an equal hearing under whatever governance procedures we use? [[User:JoeAndrieu|JoeAndrieu]] 09:38, 19 Mar 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
:[http://microformats.org/discuss/mail/microformats-discuss/2007-March/009066.html Tantek also said]: &amp;quot;''Ernie, as someone who has made overwhelmingly positive contributions to the microformats community, IMHO the occasional OT post is reasonable'&amp;quot;.&lt;br /&gt;
* I believe the statement was added to give context to the appealing member of the community. i.e. Ernie is a long standing, good contributor, as opposed to someone new who has no experience with this particular community or someone who has had little or no interaction with the community until now, and also negates it being a personal statement (rather he is interested in community as a whole, instead of being a friend of the Andy and having a personal goal, for example). Basically, he is a person with a certain amount of credibility and trustworthiness. [[User:Phae|Phae]] 10:25, 19 Mar 2007 (PDT)&lt;br /&gt;
* Agreed, Phae, Ernie is such a person and that is Tantek's point. But should one need to be a &amp;quot;friend of the court&amp;quot; to bring an action?  That practice reinforces a culture of privilege that has historically proven antithetical to transparency and equality, both characteristics of good governance, IMO. It is great to see the powers-that-be responding to Ernie's request. It is also a bit frustrating that only those deemed meritorious by the peerage can call forth due process and that Andy's own efforts to speak on his behalf--referencing my previous request to do the same--were summarily dismissed by Tantek because they were &amp;quot;adversarial.&amp;quot;  Any robust governance should, IMO, work independent of privilege and be capable of addressing adversarial situations without arbitrary limits on the speech of those whose liberties are under challenge.--[[User:JoeAndrieu|JoeAndrieu]] 14:18, 19 Mar 2007 (PDT)&lt;br /&gt;
** Point taken and appreciated, but this is the first incident to come to this kind of a situation where someone else has felt the need to step in, and just happened to also involve someone that is felt to be a member of good standing.  I'd like to hope that if another member of the community had felt a similar way and had chosen to bring it up, that it would also have been dealt with in this open manner (and I'm sure this incident will be brought up in the future).  Hopefully this incident will be a good test case to better structure future interactions with administration.  I can't personally comment on Andy's own appeals. [[User:Phae|Phae]] 14:45, 19 Mar 2007 (PDT)&lt;br /&gt;
**Agreed. The first efforts to work through a process like this are bound to be less than ideal. However, I'd like to get on the record two main points that appear problematic.&lt;br /&gt;
# [http://microformats.org/discuss/mail/microformats-discuss/2007-February/008490.html my previous request to do the same] was not, in fact, dealt with in this open manner. Rather it decayed into a defensive debate about governance generally, leaving poor Andy stuck in moderated censure. Perhaps I'm not the most diplomatic sort, but the issue on the table is not about me. It is about Andy's continuing moderation. &lt;br /&gt;
# The [[mailing-list-unmoderation|unmoderation wiki page]] for Andy is effectively a public hearing on Andy's standing and privileges in the community, especially with [http://microformats.org/discuss/mail/microformats-discuss/2007-March/009066.html Tantek's request] that no replies be sent to the email list on the topic. I find it particularly disturbing that Andy's efforts to contribute to that hearing have been [http://microformats.org/wiki?title=mailing-list-unmoderation&amp;amp;diff=14419&amp;amp;oldid=14416 repeatedly] [http://microformats.org/wiki?title=mailing-list-unmoderation&amp;amp;diff=14456&amp;amp;oldid=14454 dismissed] by Tantek (see the [http://microformats.org/wiki?title=mailing-list-unmoderation&amp;amp;action=history history] for a complete list). While It probably wasn't the best form for Andy to edit my comment directly, he should, IMO, have a way to voice his opinion on the matter. He's been threatened with a ban if he does so on the mailing list. Is there another venue that is more appropriate than the wiki page taking input and votes on his unmoderation?--[[User:JoeAndrieu|JoeAndrieu]] 20:19, 19 Mar 2007 (PDT)&lt;br /&gt;
* Shouldn't this point be moot? According to the terms of the moderation, it will be lifted &amp;quot;if he successfully sends only topical / positive / improving email to the lists for one week.&amp;quot; Once the week passed, this moderation ought to have been lifted automatically, and should not require a vote, right? --[[User:RCanine|Ryan Cannon]]&lt;br /&gt;
** At least one message was rejected during that first week, thus moderation was left as is, with the attention of the admins etc. focused on other higher priority matters.  Given the higher quality of messages *with* moderation (as compared to before), some have made the statement that moderation is &amp;quot;working&amp;quot; and thus should be kept. [[User:Tantek|Tantek]] 08:58, 22 Mar 2007 (PDT)&lt;br /&gt;
* I dislike moderation because I find it causes me to be hesitant with my own contributions in some cases. Since I don't often know how long a message has been queued its hard for me to judge if my reply would be helpful, or if the moderated poster has already moved along with the rest of the discussion so I err on the side of moving onto something else. doesn't hurt me, but I feel sometimes it might not help with the overall discussions depth or conclusion. . Thus, I think the burden should be heavy to continue moderation for any length of time without a decision to unmoderate or outright ban. [[User:ChrisCasciano|ChrisCasciano]] 11:40, 23 Mar 2007 (ET)&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
''Note: This is not to take a position on whether or not any of these decisions were appropriate or inappropriate. Rather, the existence of these events demonstrates the need to document why and how such decisions were -- or should be -- made and/or appealed.''&lt;br /&gt;
&lt;br /&gt;
* Labelling microformats schema discussions as [http://microformats.org/discuss/mail/microformats-discuss/2006-March/003551.html off-topic]&lt;br /&gt;
** Already covered by the [[microformats]] principles.&lt;br /&gt;
* Issue rejection [http://microformats.org/discuss/mail/microformats-discuss/2007-February/008864.html governance]&lt;br /&gt;
* Negative, PoV and derogatory edit summary content such as &amp;quot;[http://microformats.org/wiki?title=hcard-authoring&amp;amp;diff=13621&amp;amp;oldid=12276#Add_To_Address_Book_Links smelled of excessive political correctness worrying]&amp;quot; and &amp;quot;[http://microformats.org/wiki?title=to-do&amp;amp;curid=1110&amp;amp;diff=13989&amp;amp;oldid=13988&amp;amp;rcid=23801 removed non-productive comment]&amp;quot;.&lt;br /&gt;
** Removal of negative content from the wiki is not a negative.  The Admins use their best judgment.&lt;br /&gt;
*[[rejected-formats#Pavatar|listing of items as &amp;quot;rejected&amp;quot;]] when [http://microformats.org/discuss/mail/microformats-discuss/2007-January/008271.html requests for evidence of said rejection] reveal none.&lt;br /&gt;
** Not every email can be answered, nor should anyone expect them to be.  In this case the rejection is in the mailing list archives.&lt;br /&gt;
* Despite an assurance that &amp;quot;all of the admins will be apropriately (sic) listed on the wiki page [http://microformats.org/discuss/mail/microformats-discuss/2007-February/008526.html]&amp;quot;, the [http://microformats.org/wiki/faq#Q:_Who_controls_microformats.3F list given in FAQ] is prefaced with the qualifier &amp;quot;including&amp;quot;.&lt;br /&gt;
** Reference for assurance?  No such assurance should ever have been given.&lt;br /&gt;
* Removal of disputed edits / removal of negative content from the wiki&lt;br /&gt;
**[http://microformats.org/wiki?title=mailing-list-unmoderation&amp;amp;diff=next&amp;amp;oldid=14416 mailing-list-unmoderation (16:12, 19 Mar 2007)]&lt;br /&gt;
**[http://microformats.org/wiki?title=governance&amp;amp;curid=3084&amp;amp;diff=0&amp;amp;oldid=14390&amp;amp;rcid=24255 governance (12:50, 19 Mar 2007)]&lt;br /&gt;
** [http://microformats.org/wiki?title=governance-issues&amp;amp;diff=14401&amp;amp;oldid=14396 governance-issues (14:55, 19 Mar 2007)]&lt;br /&gt;
**[http://microformats.org/wiki?title=mailing-lists&amp;amp;curid=1297&amp;amp;diff=14391&amp;amp;oldid=14389&amp;amp;rcid=24254 mailing-lists (12:42, 19 Mar 2007)]&lt;br /&gt;
&lt;br /&gt;
== Proposal ==&lt;br /&gt;
&lt;br /&gt;
# Create a publicly-visible ''microformats-admin'' mailing list, for easily identifying and contacting all admins&lt;br /&gt;
# Document a forum/mechanism/process where individuals concerned about admin actions can legitimately raise their concerns, to ensure substantive issues are addressed&lt;br /&gt;
# Maintain a [[governance]] page that captures and describes&lt;br /&gt;
## the identity of current Admins&lt;br /&gt;
## how to contact them&lt;br /&gt;
## the process for becoming an Admin&lt;br /&gt;
## the specific kinds of behavior warranting Admin intervention&lt;br /&gt;
## how/when suspended/moderated individuals can return to &amp;quot;good standing&amp;quot;&lt;br /&gt;
## how to appeal an Admin decision/action&lt;br /&gt;
&lt;br /&gt;
== Petition ==&lt;br /&gt;
&lt;br /&gt;
We acknowledge that the microformats list and wiki is not a democracy, and that one of the key goals of microformats is to have as little process and structure as possible.  However, at the same time we believe that the &amp;quot;dictatorship&amp;quot; needs to not merely ''be'', but ''be seen as'' &amp;quot;benevolent.&amp;quot;  This includes some minimal level of transparency and due process to ensure that there are legitimate ways for ordinary members to speak out if they feel (rightly or wrongly) that a particular administrative action was unwise or unfair. Whether that is similar to the '''[[#Proposal]]''' above, or a counter-proposal by the ''admin'' team, we believe that something is necessary.&lt;br /&gt;
:''Please add your vote here''&lt;br /&gt;
*+1 Ernest Prabhakar&lt;br /&gt;
*+1 Joe Andrieu&lt;br /&gt;
*+1 James Craig&lt;br /&gt;
*+1 Steve Robillard&lt;br /&gt;
*+1 Chris Messina&lt;br /&gt;
*+1 [[User:ManuSporny|ManuSporny]] 08:59, 3 Aug 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.shirky.com/writings/group_enemy.html Clay Shirky] on a group as its own worst enemy&lt;br /&gt;
* [http://www.informationweek.com/news/showArticle.jhtml?articleID=199600005 Cory Doctorow] on Internet Jerks&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=issues&amp;diff=23222</id>
		<title>issues</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=issues&amp;diff=23222"/>
		<updated>2007-08-01T20:18:39Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* Legal Entity Issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; Microformat Issues &amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These are externally raised issues about microformats in general (these issues MUST apply to more than one microformat, which MUST be explicitly listed, otherwise the issue should be raised on the format specific issues page) with broadly varying degrees of merit.  Thus some issues are REJECTED for a number of obvious reasons (but still documented here in case they are re-raised), and others contain longer discussions. Some issues may be ACCEPTED and perhaps cause changes or improved explanations in the spec. Submitted issues may (and probably will) be edited and rewritten for better terseness, clarity, calmness, rationality, and as neutral a point of view as possible. Write your issues well. — [http://tantek.com/log/ Tantek]&lt;br /&gt;
&lt;br /&gt;
As this is a general microformats issues page, please only note ''concrete'' real world issues.  Theoretical issues will be deleted, as will any issues raised that do not contain documentation of specific real-world examples that use real-world microformats (not just brainstorms).&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
== Issues ==&lt;br /&gt;
&lt;br /&gt;
=== Format Specific Issues ===&lt;br /&gt;
&lt;br /&gt;
Please raise format specific issues on the respective page:&lt;br /&gt;
* [[hcard-issues]]&lt;br /&gt;
* [[hcalendar-issues]]&lt;br /&gt;
* [[hreview-issues]]&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
=== IP Issues ===&lt;br /&gt;
* 2006-12-08 raised by [[User:AndyMabbett|Andy Mabbett]].&lt;br /&gt;
*# As evidenced in [http://microformats.org/discuss/mail/microformats-discuss/2006-December/007531.html discussion of an emailed response from eBay], the current position on the IP rights relating to microformats is unclear, or at least not clearly expressed. It seems to me that there should be an unambiguous statement of the current position, either for each individual format, or collectively, on a page to which people with concerns may be directed.&lt;br /&gt;
*#* ACCEPTED.  A clearer statement of both copyright and patents both in specific specs and in general would be a good thing. In general, the end result that our current copyright/patent statements seek is Creative Commons, W3C, and IETF compatibility in terms of both copyrights, and royalty free patent policies. I [[to-do#Tantek|will work]] on this [[User:Tantek|Tantek]] 11:58, 9 Dec 2006 (PST)&lt;br /&gt;
*#** {{OpenIssue}} This appears to be unresolved; and in the light of, for example, [[hCard#Copyright the hCard 'spec']], the statement in the FAQ that &amp;quot;[http://microformats.org/wiki/faq#Q:_Who_controls_microformats.3F Microformats are open standards licensed under Creative Commons Attribution]&amp;quot; to be, at best, erroneous and misleading. [[User:AndyMabbett|Andy Mabbett]] 11:04, 10 Mar 2007 (PST)&lt;br /&gt;
*#**Also [http://en.wikipedia.org/w/index.php?title=Wikipedia_talk:Attribution&amp;amp;curid=7391090&amp;amp;diff=117538680&amp;amp;oldid=117536621 causing concern here]. '''Prompt resolution would be advisable''' [[User:AndyMabbett|Andy Mabbett]] 09:04, 24 Mar 2007 (PDT)&lt;br /&gt;
*#*** First, [[citation]] is not ready for use in Wikipedia anyway.  Second, what is unclear about the Creative Commons/W3C/IETF license and patent statements?  This appears to be a theoretical issue / nitpick.  Yes, things can be made clearer, but &amp;quot;erroneous&amp;quot; and &amp;quot;misleading&amp;quot; are inaccurate labels.&lt;br /&gt;
*#*** This is not a citation issue. For example, [[hcard#Copyright|hCard's current copyright statement]] is not compatible with the Creative Commons license:&amp;lt;br&amp;gt;&amp;lt;blockquote&amp;gt;{{MicroFormatCopyrightStatement2004}}&amp;lt;/blockquote&amp;gt;&amp;lt;br&amp;gt;If you look at the wikicode, this is actually the &amp;quot;MicroFormatCopyrightStatement2004&amp;quot; default microformat copyright.--[[User:JoeAndrieu|JoeAndrieu]] 15:09, 24 Mar 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
* Further to the above (but out-dented for clarity), [[hresume|hResume]] cedes copyright to &amp;quot;the authors&amp;quot;: &amp;quot;This specification is (C) 2006 by the authors&amp;quot;; and names just one author; Ryan King. What legal standing does the &amp;quot;the authors (sic) intend to submit...&amp;quot; clause have? What exists, to reassure someone (or some mega corporation's lawyers) contemplating or already using hResume that they won't be invoiced by Mr King? Why aren't the other people who contributed to that spec jointly credited with its copyright? [[User:AndyMabbett|Andy Mabbett]] 17:34, 24 Mar 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
*Also, there appears to be nothing on [[buttons]] to say that they're freely licensed, or public-domain. [[User:AndyMabbett|Andy Mabbett]] 03:01, 25 Mar 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
=== Legal Entity Issues ===&lt;br /&gt;
2007-03-24 raised by [[User:JoeAndrieu|Joe Andrieu]], clarified by [[User:Rohit|Rohit Khare]] on 2007-03-27.&lt;br /&gt;
# What is the legal entity responsible for operating microformats.org?&lt;br /&gt;
#* [[User:Rohit|Rohit Khare]] originally registered the microformats.com and .org domain names on 2005-01-25 and [http://commerce.net| CommerceNet, LLC], a non-profit 'think tank' with a long history as a neutral sponsor for developing standards for Internet commerce (often, in conjunction with other formal standards bodies). CommerceNet currently underwrites the server hosting costs and, in the past, has co-ordinated donations with other sponsors for events such as the [http://microformats.org/blog/2006/06/16/microformatsorg-anniversary-party/|first anniversary party], the [http://wiki.commerce.net/wiki/ZCommerceWS#Microformats workshop] where the site was launched, and promotional items.&lt;br /&gt;
# What is the legal entity responsible for the intellectual property on microformats.org?  &lt;br /&gt;
#* The current [[Template:MicroFormatCopyrightStatement|microformats copyright statement]] recognizes that IP is originally vested in the author(s), who are then expected to share those rights with the community by permitting their redistribution on microformats.org's wiki, blog, and mailing list archives. The additional distinction of becoming a specification may come with additional obligations to redistribute IP, such as a formal Creative Commons copyright license and a royalty-free patent license. The community is currently encouraging contibutors to [http://microformats.org/discuss/mail/microformats-discuss/2007-July/010221.html voluntarily adopt a public domain release].&lt;br /&gt;
#* Note that CommerceNet, LLC does ''not'' exercise any editorial control over the content of the site, mailing list, specifications, or the process, nor does it accept funds on behalf of microformats.org (see the [[Microformats:General_disclaimer|disclaimer]]). Conversely, the [[faq#Q:_Who_controls_microformats.3F|Admins]] do not have any independent legal identity at present, such as a partnership, foundation, or corporation. Please refer any legal questions or concerns directly to [mailto:rohit@khare.org Rohit Khare] before raising them as a matter of public record, as discussed on the mailing list [http://microformats.org/discuss/mail/microformats-discuss/2006-November/007086.html].&lt;br /&gt;
&lt;br /&gt;
=== Governance Issues ===&lt;br /&gt;
:See: [[governance-issues]]&lt;br /&gt;
&lt;br /&gt;
===Miscellaneous issues===&lt;br /&gt;
* {{OpenIssue}} 2006-10-17 raised by [[User:AndyMabbett|Andy Mabbett]] on [[wiki-feedback]]; moved here 2007-03-10.&lt;br /&gt;
*#  What is currently described as a &amp;quot;specification&amp;quot; on [[hCard]] and [[hCalendar]] is no such thing.&lt;br /&gt;
*#  Andy, what would it take to turn it into a &amp;quot;specification&amp;quot;?--[[User:JoeAndrieu|JoeAndrieu]] 15:13, 24 Mar 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
=== New Issues ===&lt;br /&gt;
&lt;br /&gt;
* {{OpenIssue}} 2007-04-01 raised by [[User:AndyMabbett|Andy Mabbett]].&lt;br /&gt;
*# Shouldn't microformats be recognised on &amp;lt;code&amp;gt;ID&amp;lt;/code&amp;gt; as well as &amp;lt;code&amp;gt;class&amp;lt;/code&amp;gt;? In other words, if I know I'm gong to have only one review or only one location, or whatever, on a page, then &amp;lt;code&amp;gt;&amp;quot;id=hReview&amp;quot;&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;id=&amp;quot;geo&amp;quot;&amp;lt;/code&amp;gt; etc. are semantically valid and appropriate. [[User:AndyMabbett|Andy Mabbett]] 11:32, 1 Apr 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Template ==&lt;br /&gt;
&lt;br /&gt;
Please use this format (copy and paste this to the end of the list to add your issues):&lt;br /&gt;
* {{OpenIssue}} YYYY-MM-DD raised by [http://yourhomepage.example.com YOURNAME].&lt;br /&gt;
*# ''Issue 1: Here is the first issue I have.''&lt;br /&gt;
*# ''Issue 2: Here is the second issue I have.''&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[accessibility]]&lt;br /&gt;
*[[criticism]]&lt;br /&gt;
*[[wiki-feedback]]&lt;br /&gt;
*The [[faq|microformats FAQ]], which answers many general criticisms/ issues that have been raised with microformats.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=Category:public_domain_license&amp;diff=18467</id>
		<title>Category:public domain license</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=Category:public_domain_license&amp;diff=18467"/>
		<updated>2007-07-17T23:11:32Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* Why Public Domain? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By adding the public domain license template to your user profile page, you can ensure that your contributions to the microformats.org community wiki and mailing lists are available as openly as possible. As more users choose to adopt it, much of the wiki's content will become available under clear, free terms.&lt;br /&gt;
&lt;br /&gt;
You can add it to your profile by 1) logging in, 2) clicking on your name at the very top of the web page (the username link on the right side has a little &amp;quot;person&amp;quot;&lt;br /&gt;
icon http://microformats.org/wiki/skins/monobook/user.gif), 3) clicking Edit (or ctrl-E/alt-E), 4) pasting the following text into the bottom of your page, and 5) clicking Save (ctrl-S/alt-S);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
{{public-domain-release}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Why Public Domain?=&lt;br /&gt;
In the recent past, several kinds of legal concerns have been expressed, notably in the Legal Issues and IP sections of [[microformats-issues]] (which in turn points to some [http://microformats.org/discuss/mail/microformats-discuss/2006-November/007088.html mailing] [http://microformats.org/discuss/mail/microformats-discuss/2007-April/009438.html list] [http://microformats.org/discuss/mail/microformats-new/2007-April/000247.html posts]).&lt;br /&gt;
&lt;br /&gt;
One way to address some of these concerns is for individual contributors to decide for themselves if they'd like to put their own individual contributions to the wiki, mailing lists, blog, and IRC channel into the public domain. Inspired by Wikipedia, there's a new template that you can add to your profile to indicate your support for this option, which ensures the broadest possible reuse of your contributions in future discussions, specifications, and in other media (such as a [http://microformats.org/blog/2007/04/19/microformats-the-book/ book])&lt;br /&gt;
&lt;br /&gt;
What difference will this make? If enough contributors eventually support this, entire pages of the wiki will become public-domain works, not just their individual snippets. All of the [[governance#Admins|admins]] have already signed up for this, for example. If any other person or company has any qualms about citing our documents, this clarifies the legal situation considerably: no license is even required any more. Note that this can only affect ''copyright'' -- patents are another matter entirely, but at least building a thriving body of knowledge around microformats is the best response, by establishing &amp;quot;prior art.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
At the moment this experiment does not (yet) supercede the boilerplate at [[Template:MicroFormatCopyrightStatement2004]], which may be updated for some pages when and if all of their contributors choose to adopt this convention. -- Rohit 2007-07-17&lt;br /&gt;
&lt;br /&gt;
==Disclaimer==&lt;br /&gt;
&lt;br /&gt;
Unlike other efforts that might come to mind, it's important to note that microformats are not &amp;quot;standards,&amp;quot; microformats.org is not a &amp;quot;standards body&amp;quot; ([http://consortiuminfo.org/laws/ legal sense]), and that the microformats admins are not a &amp;quot;legal entity&amp;quot; (and nor do they have any official links to  CommerceNet or Technorati, two companies that were influential early sponsors). For that matter, there's no bank account or any other financial standing; if you see a [http://www.flickr.com/photos/73921563@N00/639108451 hip new microformats sticker] out there, it's a private donation (in that case, by [http://simplebits.com/ Dan Cederholm]&lt;br /&gt;
&lt;br /&gt;
==Acknowledgements==&lt;br /&gt;
&lt;br /&gt;
The original inspiration for this experiment was Wikipedia's own [http://en.wikipedia.org/wiki/Template:Public_domain_release public domain release], which was suggested on the #microformats IRC channel on [http://rbach.priv.at/Microformats-IRC/2007-06-21#T000102 21 June 2007] by the user [http://en.wikipedia.org/wiki/User:Unforgettableid unfo]. Microformats community co-founder [[User:EricMeyer|Eric Meyer]]'s placement of the microformat-based [http://meyerweb.com/eric/thoughts/2005/07/28/s5-11/ S5 slide presentation system into the Public Domain on 2005-07-28] set an important early good example, just over a month after the launch of microformats.org. Recently, [[User:AndyMabbett|Andy Mabbett]]'s contribution of a sample [[semacode|Semacode]] image also suggested this approach. There's an [http://en.wikipedia.org/wiki/User_talk:Ram-Man/MLFAQ FAQ about multi-licensing] on Wikipedia for more information, but do note that it does not necessarily apply to microformats.org directly, since this isn't a site governed by GFDL, for example.&lt;br /&gt;
&lt;br /&gt;
== Point of Contact ==&lt;br /&gt;
&lt;br /&gt;
While community members are generally encouraged to discuss matters openly, if you have a specific legal questions, ''please contact [[User:Rohit|Rohit Khare]]'', who has volunteered to be the initial point of contact for the administrators, ''before'' starting a discussion on the public, archived mailing lists, IRC, or wiki, since there can be occasionally be legal implications for statements published on the microformats.org domain.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=Category:public_domain_license&amp;diff=18444</id>
		<title>Category:public domain license</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=Category:public_domain_license&amp;diff=18444"/>
		<updated>2007-07-17T18:32:33Z</updated>

		<summary type="html">&lt;p&gt;Rohit: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By adding the public domain license template to your user profile page, you can ensure that your contributions to the microformats.org community wiki and mailing lists are available as openly as possible. As more users choose to adopt it, much of the wiki's content will become available under clear, free terms.&lt;br /&gt;
&lt;br /&gt;
You can add it to your profile by 1) logging in, 2) clicking on your name at the very top of the web page (the username link on the right side has a little &amp;quot;person&amp;quot;&lt;br /&gt;
icon), 3) clicking Edit (or ctrl-E/alt-E), 4) pasting the following text into the bottom of your page, and 5) clicking Save (ctrl-S/alt-S);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
{{public-domain-release}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Why Public Domain?=&lt;br /&gt;
In the recent past, several kinds of legal concerns have been expressed, notably in the Legal Issues and IP sections of [[microformats-issues]] (which in turn points to some [http://microformats.org/discuss/mail/microformats-discuss/2006-November/007088.html mailing] [http://microformats.org/discuss/mail/microformats-discuss/2007-April/009438.html list] [http://microformats.org/discuss/mail/microformats-new/2007-April/000247.html posts]).&lt;br /&gt;
&lt;br /&gt;
One way to address some of these concerns is for individual contributors to decide for themselves if they'd like to put their own individual contributions to the wiki, mailing lists, blog, and IRC channel into the public domain. Inspired by Wikipedia, there's a new template that you can add to your profile to indicate your support for this option, which ensures the broadest possible reuse of your contributions in future discussions, specifications, and in other media (such as a [http://microformats.org/blog/2007/04/19/microformats-the-book/ book])&lt;br /&gt;
&lt;br /&gt;
What difference will this make? If enough contributors eventually support this, entire pages of the wiki will become public-domain works, not just their individual snippets. If any other person or company has any qualms about citing our documents, this clarifies the legal situation considerably: no license is even required any more. Note that this can only affect ''copyright'' -- patents are another matter entirely, but at least building a thriving body of knowledge around microformats is the best response, by establishing &amp;quot;prior art.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
At the moment this experiment does not (yet) supercede the boilerplate at [[Template:MicroFormatCopyrightStatement2004]], which may be updated for some pages when and if all of their contributors choose to adopt this convention. -- Rohit 2007-07-17&lt;br /&gt;
&lt;br /&gt;
==Disclaimer==&lt;br /&gt;
&lt;br /&gt;
Unlike other efforts that might come to mind, it's important to note that microformats are not &amp;quot;standards,&amp;quot; microformats.org is not a &amp;quot;standards body&amp;quot; ([http://consortiuminfo.org/laws/ legal sense]), and that the microformats admins are not a &amp;quot;legal entity&amp;quot; (and nor do they have any official links to  CommerceNet or Technorati, two companies that were influential early sponsors). For that matter, there's no bank account or any other financial standing; if you see a [http://www.flickr.com/photos/73921563@N00/639108451 hip new microformats sticker] out there, it's a private donation (in that case, by [http://simplebits.com/ Dan Cederholm]&lt;br /&gt;
&lt;br /&gt;
==Acknowledgements==&lt;br /&gt;
&lt;br /&gt;
The original inspiration for this experiment was Wikipedia's own [http://en.wikipedia.org/wiki/Template:Public_domain_release public domain release], which was suggested on the #microformats IRC channel on [http://rbach.priv.at/Microformats-IRC/2007-06-21#T000102 21 June 2007] by the user [http://en.wikipedia.org/wiki/User:Unforgettableid unfo]. [[User:AndyMabbett|Andy Mabbett]]'s contribution of a sample [[semacode|Semacode]] image also suggested this approach. There's an [http://en.wikipedia.org/wiki/User_talk:Ram-Man/MLFAQ FAQ about multi-licensing] on Wikipedia for more information, but do note that it does not necessarily apply to microformats.org directly, since this isn't a site governed by GFDL, for example.&lt;br /&gt;
&lt;br /&gt;
== Point of Contact ==&lt;br /&gt;
&lt;br /&gt;
While community members are generally encouraged to discuss matters openly, if you have a specific legal questions, ''please contact [[User:Rohit|Rohit Khare]]'', who has volunteered to be the initial point of contact for the administrators, ''before'' starting a discussion on the public, archived mailing lists, IRC, or wiki, since there can be occasionally be legal implications for statements published on the microformats.org domain.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=Category:public_domain_license&amp;diff=18442</id>
		<title>Category:public domain license</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=Category:public_domain_license&amp;diff=18442"/>
		<updated>2007-07-17T15:42:17Z</updated>

		<summary type="html">&lt;p&gt;Rohit: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By adding the public domain license template to your user profile page, you can ensure that your contributions to the microformats.org community wiki and mailing lists are available as openly as possible. As more users choose to adopt it, much of the wiki's content will become available under clear, free terms.&lt;br /&gt;
&lt;br /&gt;
You can add it to your profile by logging in, clicking on your name at the very top of the web page (next to a user icon), and pasting the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
{{public-domain-release}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Why Public Domain?=&lt;br /&gt;
In the recent past, several kinds of legal concerns have been expressed, notably in the Legal Issues and IP sections of [[microformats-issues]] (which in turn points to some [http://microformats.org/discuss/mail/microformats-discuss/2006-November/007088.html mailing] [http://microformats.org/discuss/mail/microformats-discuss/2007-April/009438.html list] [http://microformats.org/discuss/mail/microformats-new/2007-April/000247.html posts]).&lt;br /&gt;
&lt;br /&gt;
One way to address some of these concerns is for individual contributors to decide for themselves if they'd like to put their own individual contributions to the wiki, mailing lists, blog, and IRC channel into the public domain. Inspired by Wikipedia, there's a new template that you can add to your profile to indicate your support for this option, which ensures the broadest possible reuse of your contributions in future discussions, specifications, and in other media ([http://microformats.org/blog/2007/04/19/microformats-the-book/ like reprinting in  books])&lt;br /&gt;
&lt;br /&gt;
What difference will this make? If enough contributors eventually support this, entire pages of the wiki will become public-domain works, not just their individual snippets. If any other person or company has any qualms about citing our documents, this clarifies the legal situation considerably: no license is even required any more. Note that this can only affect ''copyright'' -- patents are another matter entirely, but at least building a thriving body of knowledge around microformats is the best response, by establishing &amp;quot;prior art.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Disclaimer==&lt;br /&gt;
&lt;br /&gt;
Unlike other efforts that might come to mind, it's important to note that microformats are not &amp;quot;standards,&amp;quot; microformats.org is not a &amp;quot;standards body&amp;quot; ([http://consortiuminfo.org/laws/ legal sense]), and that the microformats admins are not a &amp;quot;legal entity&amp;quot; (and nor do they have any official links to  CommerceNet or Technorati, two companies that were influential early sponsors). For that matter, there's no bank account or any other financial standing; if you see a [http://www.flickr.com/photos/73921563@N00/639108451 hip new microformats sticker] out there, it's a private donation (in that case, by [http://simplebits.com/ Dan Cederholm]&lt;br /&gt;
&lt;br /&gt;
==Acknowledgements==&lt;br /&gt;
&lt;br /&gt;
The original inspiration for this experiment was Wikipedia's own [http://en.wikipedia.org/wiki/Template:Public_domain_release public domain release], which was suggested on the #microformats IRC channel on [http://rbach.priv.at/Microformats-IRC/2007-06-21#T000102 21 June 2007] by the user [http://en.wikipedia.org/wiki/User:Unforgettableid unfo]. There's an [http://en.wikipedia.org/wiki/User_talk:Ram-Man/MLFAQ FAQ about multi-licensing] on Wikipedia for more information, but do note that it does not necessarily apply to microformats.org directly, since this isn't a site governed by GFDL, for example.&lt;br /&gt;
&lt;br /&gt;
== Point of Contact ==&lt;br /&gt;
&lt;br /&gt;
While community members are generally encouraged to discuss matters openly, if you have a specific legal questions, ''please contact [[User:Rohit|Rohit Khare]]'', who has volunteered to be the initial point of contact for the administrators, ''before'' starting a discussion on the public, archived mailing lists, IRC, or wiki, since there can be occasionally be legal implications for statements published on the microformats.org domain.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:Rohit&amp;diff=22636</id>
		<title>User:Rohit</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:Rohit&amp;diff=22636"/>
		<updated>2007-07-17T15:01:43Z</updated>

		<summary type="html">&lt;p&gt;Rohit: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Rohit Khare got involved with microformats.org by volunteering to host it while he was [http://wiki.commerce.net/wiki/Rohit_Khare Director of CommerceNet Labs]. He graduated from [http://www.ics.uci.edu/~rohit/ UC Irvine] and currently lives in New York City and working on new approaches to publish/subscribe middleware (see [http://knownow.com/ KnowNow], a company he co-founded in that area).&lt;br /&gt;
&lt;br /&gt;
==Legal Point of Contact for microformats.org ==&lt;br /&gt;
&lt;br /&gt;
In particular, his '''informal''' role in the microformats.org admin team is being the first line of contact on legal queries. Many issues regarding copyright, intellectual property, and other issues have been raised on the mailing lists and on the wiki. He would like you to contact him '''before''' posting, if at all possible and appropriate -- while we're all in favor of free and open discussions, there are certain potential legal implications to writing on permanently archived forums that may be better addressed by phone. Please mail him at khare -AT- alumni caltech edu or call his mobile directly at +1 650 714 5529.&lt;br /&gt;
&lt;br /&gt;
==Your Contributions can be put in the Public Domain==&lt;br /&gt;
Rohit supports the widest possible reuse of microformats.org content by placing all of his own contributions in the public domain... this is one, bottom up way you can help address the Legal Entity and IP issues raised on [[microformats-issues]] by placing your own contributions under these terms as well. Just put &amp;lt;nowiki&amp;gt;{{public-domain-release}}&amp;lt;/nowiki&amp;gt; on your user profile page, like this:&lt;br /&gt;
&lt;br /&gt;
{{public-domain-release}}&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=Category:public_domain_license&amp;diff=18428</id>
		<title>Category:public domain license</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=Category:public_domain_license&amp;diff=18428"/>
		<updated>2007-07-16T18:02:12Z</updated>

		<summary type="html">&lt;p&gt;Rohit: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By adding the public domain license template to your user profile page, you can ensure that your contributions to the microformats.org community wiki and mailing lists are available as openly as possible. As more users choose to adopt it, much of the wiki's content will become available under clear, free terms.&lt;br /&gt;
&lt;br /&gt;
You can add it to your profile by logging in, clicking on your name at the very top fo the web page (next to a user icon), and pasting the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
{{public-domain-license}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:Rohit&amp;diff=18439</id>
		<title>User:Rohit</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:Rohit&amp;diff=18439"/>
		<updated>2007-07-16T17:58:39Z</updated>

		<summary type="html">&lt;p&gt;Rohit: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Rohit Khare got involved with microformats.org by volunteering to host it while he was [http://wiki.commerce.net/wiki/Rohit_Khare Director of CommerceNet Labs]. He graduated from [http://www.ics.uci.edu/~rohit/ UC Irvine] and currently lives in New York City and working on new approaches to publish/subscribe middleware (see [http://knownow.com/ KnowNow], a company he co-founded in that area).&lt;br /&gt;
&lt;br /&gt;
==Legal Point of Contact for microformats.org ==&lt;br /&gt;
&lt;br /&gt;
In particular, his '''informal''' role in the microformats.org admin team is being the first line of contact on legal queries. Many issues regarding copyright, intellectual property, and other issues have been raised on the mailing lists and on the wiki. He would like you to contact him '''before''' posting, if at all possible and appropriate -- while we're all in favor of free and open discussions, there are certain potential legal implications to writing on permanently archived forums that may be better addressed by phone. Please mail him at khare -AT- alumni caltech edu or call his mobile directly at +1 650 714 5529.&lt;br /&gt;
&lt;br /&gt;
Rohit supports the widest possible reuse of microformats.org content by placing all of his own contributions in the public domain... &lt;br /&gt;
&lt;br /&gt;
{{public-domain-release}}&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=issues&amp;diff=14863</id>
		<title>issues</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=issues&amp;diff=14863"/>
		<updated>2007-03-26T02:49:19Z</updated>

		<summary type="html">&lt;p&gt;Rohit: Admin specifically asked legal discussion to be directed to an individual for discussion before editing public wiki&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; Microformat Issues &amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These are externally raised issues about microformats in general (these issues MUST apply to more than one microformat, which MUST be explicitly listed, otherwise the issue should be raised on the format specific issues page) with broadly varying degrees of merit.  Thus some issues are REJECTED for a number of obvious reasons (but still documented here in case they are re-raised), and others contain longer discussions. Some issues may be ACCEPTED and perhaps cause changes or improved explanations in the spec. Submitted issues may (and probably will) be edited and rewritten for better terseness, clarity, calmness, rationality, and as neutral a point of view as possible. Write your issues well. — [http://tantek.com/log/ Tantek]&lt;br /&gt;
&lt;br /&gt;
As this is a general microformats issues page, please only note ''concrete'' real world issues.  Theoretical issues will be deleted, as will any issues raised that do not contain documentation of specific real-world examples that use real-world microformats (not just brainstorms).&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
== Issues ==&lt;br /&gt;
&lt;br /&gt;
=== Format Specific Issues ===&lt;br /&gt;
&lt;br /&gt;
Please raise format specific issues on the respective page:&lt;br /&gt;
* [[hcard-issues]]&lt;br /&gt;
* [[hcalendar-issues]]&lt;br /&gt;
* [[hreview-issues]]&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
=== IP Issues ===&lt;br /&gt;
* 2006-12-08 raised by [[User:AndyMabbett|Andy Mabbett]].&lt;br /&gt;
*# ''As discussed in [http://microformats.org/discuss/mail/microformats-discuss/2006-December/007531.html], the current position on the IP rights relating to microformats is unclear, or at least not clearly expressed. It seems to me that there should be an unambiguous statement of the current position, either for each individual format, or collectively, on a page to which people with concerns may be directed.''&lt;br /&gt;
*#* ACCEPTED.  A clearer statement of both copyright and patents both in specific specs and in general would be a good thing. In general, the end result that our current copyright/patent statements seek is Creative Commons, W3C, and IETF compatibility in terms of both copyrights, and royalty free patent policies. I [[to-do#Tantek|will work]] on this [[User:Tantek|Tantek]] 11:58, 9 Dec 2006 (PST)&lt;br /&gt;
*#** {{OpenIssue}} This appears to be unresolved; and in the light of, for example, [[hCard#Copyright the hCard 'spec']], the statement in the FAQ that &amp;quot;[http://microformats.org/wiki/faq#Q:_Who_controls_microformats.3F Microformats are open standards licensed under Creative Commons Attribution]&amp;quot; to be, at best, erroneous and misleading. [[User:AndyMabbett|Andy Mabbett]] 11:04, 10 Mar 2007 (PST)&lt;br /&gt;
*#**Also [http://en.wikipedia.org/w/index.php?title=Wikipedia_talk:Attribution&amp;amp;curid=7391090&amp;amp;diff=117538680&amp;amp;oldid=117536621 causing concern here]. '''Prompt resolution would be advisable''' [[User:AndyMabbett|Andy Mabbett]] 09:04, 24 Mar 2007 (PDT)&lt;br /&gt;
*#*** First, [[citation]] is not ready for use in Wikipedia anyway.  Second, what is unclear about the Creative Commons/W3C/IETF license and patent statements?  This appears to be a theoretical issue / nitpick.  Yes, things can be made clearer, but &amp;quot;erroneous&amp;quot; and &amp;quot;misleading&amp;quot; are inaccurate labels.&lt;br /&gt;
*#*** This is not a citation issue. For example, [[hcard#Copyright|hCard's current copyright statement]] is not compatible with the Creative Commons license:&amp;lt;br&amp;gt;&amp;lt;blockquote&amp;gt;{{MicroFormatCopyrightStatement2004}}&amp;lt;/blockquote&amp;gt;&amp;lt;br&amp;gt;If you look at the wikicode, this is actually the &amp;quot;MicroFormatCopyrightStatement2004&amp;quot; default microformat copyright.--[[User:JoeAndrieu|JoeAndrieu]] 15:09, 24 Mar 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
* Further to the above (but out-dented for clarity), [[hresume|hResume]] cedes copyright to &amp;quot;the authors&amp;quot;: &amp;quot;This specification is (C) 2006 by the authors&amp;quot;; and names just one author; Ryan King. What legal standing does the &amp;quot;the authors (sic) intend to submit...&amp;quot; clause have? What exists, to reassure someone (or some mega corporation's lawyers) contemplating or already using hResume that they won't be invoiced by Mr King? Why aren't the other people who contributed to that spec jointly credited with its copyright? [[User:AndyMabbett|Andy Mabbett]] 17:34, 24 Mar 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
*Also, there appears to be nothing on [[buttons]] to say that they're freely licensed, or public-domain. [[User:AndyMabbett|Andy Mabbett]] 03:01, 25 Mar 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
=== Legal Entity Issues ===&lt;br /&gt;
2007-03-24 raised by [[User:JoeAndrieu|Joe Andrieu]], clarified by [[User:Rohit|Rohit Khare]] on 2007-03-27.&lt;br /&gt;
# What is the legal entity responsible for operating microformats.org?&lt;br /&gt;
#* [[User:Rohit|Rohit Khare]] originally registered the microformats.com and .org domain names on 2005-01-25 and [http://commerce.net| CommerceNet, LLC], a non-profit 'think tank' with a long history as a neutral sponsor for developing standards for Internet commerce (often, in conjunction with other formal standards bodies). CommerceNet currently underwrites the server hosting costs and, in the past, has co-ordinated donations with other sponsors for events such as the [http://microformats.org/blog/2006/06/16/microformatsorg-anniversary-party/|first anniversary party], the [http://wiki.commerce.net/wiki/ZCommerceWS#Microformats workshop] where the site was launched, and promotional items.&lt;br /&gt;
# What is the legal entity responsible for the intellectual property on microformats.org?  &lt;br /&gt;
#* The current [[Template:MicroFormatCopyrightStatement|microformats copyright statement]] recognizes that IP is originally vested in the author(s), who are then expected to share those rights with the community by permitting their redistribution on microformats.org's wiki, blog, and mailing list archives. The additional distinction of becoming a specification may come with additional obligations to redistribute IP, such as a formal Creative Commons copyright license and a royalty-free patent license.&lt;br /&gt;
#* Note that CommerceNet, LLC does ''not'' exercise any editorial control over the content of the site, mailing list, specifications, or the process, nor does it accept funds on behalf of microformats.org (see the [[Microformats:General_disclaimer|disclaimer]]). Conversely, the [[faq#Q:_Who_controls_microformats.3F|Admins]] do not have any independent legal identity at present, such as a partnership, foundation, or corporation. Please refer any legal questions or concerns directly to [mailto:rohit@commerce.net CommerceNet] before raising them as a matter of public record, as discussed on the mailing list [http://microformats.org/discuss/mail/microformats-discuss/2006-November/007086.html].&lt;br /&gt;
&lt;br /&gt;
=== Governance Issues ===&lt;br /&gt;
:See: [[governance-issues]]&lt;br /&gt;
&lt;br /&gt;
===Miscellaneous issues===&lt;br /&gt;
* {{OpenIssue}} 2006-10-17 raised by [[User:AndyMabbett|Andy Mabbett]] on [[wiki-feedback]]; moved here 2007-03-10.&lt;br /&gt;
*#  What is currently described as a &amp;quot;specification&amp;quot; on [[hCard]] and [[hCalendar]] is no such thing.&lt;br /&gt;
*#  Andy, what would it take to turn it into a &amp;quot;specification&amp;quot;?--[[User:JoeAndrieu|JoeAndrieu]] 15:13, 24 Mar 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
=== New Issues ===&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Template ==&lt;br /&gt;
&lt;br /&gt;
Please use this format (copy and paste this to the end of the list to add your issues):&lt;br /&gt;
* {{OpenIssue}} YYYY-MM-DD raised by [http://yourhomepage.example.com YOURNAME].&lt;br /&gt;
*# ''Issue 1: Here is the first issue I have.''&lt;br /&gt;
*# ''Issue 2: Here is the second issue I have.''&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[accessibility]]&lt;br /&gt;
*[[criticism]]&lt;br /&gt;
*[[wiki-feedback]]&lt;br /&gt;
*The [[faq|microformats FAQ]], which answers many general criticisms/ issues that have been raised with microformats.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=governance&amp;diff=16394</id>
		<title>governance</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=governance&amp;diff=16394"/>
		<updated>2007-03-25T02:44:59Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* Admins */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Admins ==&lt;br /&gt;
Any required governance (and very little is required) of the microformats IRC channel, wiki, and mailing lists is discussed by a group of invited volunteer administrators, including:&lt;br /&gt;
* [http://tantek.com/ Tantek Çelik]&lt;br /&gt;
* [http://theryanking.com Ryan King]&lt;br /&gt;
* [http://suda.co.uk/ Brian Suda]&lt;br /&gt;
* [http://siliconllama.com/ Benjamin West]&lt;br /&gt;
* [http://randomchaos.com/ Scott Reynen]&lt;br /&gt;
* [http://fberriman.com/ Frances Berriman]&lt;br /&gt;
* [http://allinthehead.com/ Drew McLellan]&lt;br /&gt;
* [http://kevinmarks.com/ Kevin Marks]&lt;br /&gt;
&lt;br /&gt;
Additionally, [[User:Rohit|Rohit Khare]] is an ''ex officio'' observer of microformats-admin, as the contact point for the servers and the domain name.&lt;br /&gt;
&lt;br /&gt;
== Issues  ==&lt;br /&gt;
See [[governance-issues]] for suggestions on how to improve governance.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=faq&amp;diff=14764</id>
		<title>faq</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=faq&amp;diff=14764"/>
		<updated>2007-03-25T02:39:57Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* Q: ''Who controls microformats?'' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; Microformats FAQ &amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This page document frequently asked questions about microformats.  For frequently asked questions from the [[press]], see [[press-faq]].&lt;br /&gt;
&lt;br /&gt;
If you're looking for a microformat for marking up FAQs, see [[question-answer]].&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
== Wiki specific questions ==&lt;br /&gt;
===Q: ''How do I create a username? Why won't it let me use my preferred username?''===&lt;br /&gt;
&lt;br /&gt;
A: First, read this: http://en.wikipedia.org/wiki/Wikipedia:Username .  Second, real names are preferred to pseudonyms/handles etc.  Real names encourage better transparency and accountability.  Third, the most common problem creating a user name is forgetting to capitalize the first letter of the user name.  Try using a WikiCase version of your full name as username, e.g. RyanKing.&lt;br /&gt;
&lt;br /&gt;
== Email list ==&lt;br /&gt;
===Q: ''I've joined the discussion mailing list but am not seeing my replies anywhere. Why?''===&lt;br /&gt;
&lt;br /&gt;
A: There is no moderation on microformats-discuss, but it only accepts posts from subscribers. You MUST post to microformats-discuss using the email address you used to subscribe.&lt;br /&gt;
&lt;br /&gt;
===Q: ''What does &amp;quot;The message's content type was not explicitly allowed&amp;quot; mean?'' ===&lt;br /&gt;
&lt;br /&gt;
A: Please go read [http://microformats.org/mailinglists-policies/ mailinglists-policies]. In particular note:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
'''No HTML or RTF e-mail''' period, end of story, full stop. Your mail client should let you configure it so you can send plain text messages. Make use of this ability or else there are no guarantees that anyone will be able to read your email.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
The mailing lists are set up to automatically reject email that is sent as text/html.  Thus please configure your email client to send plain text (text/plain) email.&lt;br /&gt;
&lt;br /&gt;
== Basic Microformat Questions ==&lt;br /&gt;
===Q: What does ''xxx'' mean?&amp;quot;===&lt;br /&gt;
&lt;br /&gt;
A: See our [[glossary]].&lt;br /&gt;
&lt;br /&gt;
===Q: ''When should I use a microformat? What are they for?&amp;quot;===&lt;br /&gt;
&lt;br /&gt;
A: You are writing some HTML that contains useful human-readable information (such as a piece of contact information). You say to yourself: I would like to mark this up with some classes now for styling. You look up the relevant microformat, and you&lt;br /&gt;
pull in the standard names. You don't have to make your own up, and now your page is machine-readable too. Bonus!&lt;br /&gt;
&lt;br /&gt;
Microformats are designed to make the data you already publish for humans available to machines. It allows applications as simple as cut-and-paste or as complex as a seach engine to use your data effectively.&lt;br /&gt;
&lt;br /&gt;
===Q: ''Are microformats dependent upon (X)HTML?''===&lt;br /&gt;
&lt;br /&gt;
A: Microformats are made to be embeddable. They can be embedded in (X)HTML, RSS, Atom or anywhere (X)HTML is allowed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Q: ''Microformats sound great. How can I help?''===&lt;br /&gt;
&lt;br /&gt;
A: Take a look at http://microformats.org/discuss to see some ways to join the conversations about microformats, and the [[to-do]] list for things to help out with.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Q: ''I'd like to make a donation to the microformat cause. How can I do this?''===&lt;br /&gt;
&lt;br /&gt;
A: Thank you for your willingness to support microformats. We've only recently started this site and have decided that while we are figuring out exactly how to accept donations, we will be passing along donations to other good causes.  Please consider donating to another cause like Red Cross, perhaps directed to help victims of recent natural disasters.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Q: ''Which microformats have been implemented?'' ===&lt;br /&gt;
&lt;br /&gt;
A: See the [[implementations]] page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Q: ''Which microformats should I implement?''===&lt;br /&gt;
&lt;br /&gt;
A: Chances are you that your website already has data very similar to several microformats. For example, you probably have people and/or their contact information somewhere. That information could be marked up with [[hcard|hCard]], see the [[hcard-authoring|hCard authoring]] page for step by step instructions. If you are publishing press releases, try using [[hatom|hAtom]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Q: ''Do you have any link badges I can add to my website/blog?''===&lt;br /&gt;
&lt;br /&gt;
A: There are some [[buttons]] but we can certainly use more!  Please contribute what you come up with!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Q. ''Are there any tools that support microformats?''===&lt;br /&gt;
&lt;br /&gt;
A. Yes...tons... [[implementations]].&lt;br /&gt;
&lt;br /&gt;
===Q. Is there a way to indicate that a given web page contains markup that conforms to one or more microformats? ===&lt;br /&gt;
&lt;br /&gt;
A. The HTML HEAD element's '&amp;lt;code&amp;gt;profile&amp;lt;/code&amp;gt;' attribute alerts applications to the potential presence of microformats. The [http://www.w3.org/TR/1999/REC-html401-19991224/struct/global.html#h-7.4.4.3 W3C HTML Specification] describes more about the profile attribute, and the [http://gmpg.org/xmdp/description XMDP description] documents how it is used.&lt;br /&gt;
&lt;br /&gt;
===Q. ''What about using new URI schemes instead of class names, e.g. for geo information?''===&lt;br /&gt;
&lt;br /&gt;
A. In general, it is more work, and less content-publisher friendly, to ask publishers to use URI schemes instead of class names.&lt;br /&gt;
&lt;br /&gt;
Authors aren't publishing links to geo information.&lt;br /&gt;
&lt;br /&gt;
They're publishing *visible text* of [[geo]] information.&lt;br /&gt;
&lt;br /&gt;
So the easiest thing to do, for the author, is to leave it as visible text.&lt;br /&gt;
&lt;br /&gt;
Thus, it makes the most sense to do the simple thing of just wrapping that&lt;br /&gt;
visible text with a little bit of markup, rather than asking the author to&lt;br /&gt;
move (or copy) it into an attribute, which may or may not require a&lt;br /&gt;
reformatting of the data as well.&lt;br /&gt;
&lt;br /&gt;
It would make sense from a usability persepective to hyperlink geo information to a maps page or something, so that clicking it actually does something.  If you forced them to use a hypothetical &amp;quot;geo:&amp;quot; protocol instead, then that would interfere, since you can only hyperlink something to one destination.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Q: ''Who controls microformats?''===&lt;br /&gt;
&lt;br /&gt;
A: An open community. Microformats are open standards licensed under Creative Commons Attribution. Much of the work here was begun on [http://developers.technorati.com/wiki Technorati's Developer Wiki], but Technorati has since divested control of these microformat standards to the open community here. The microformats.org domain is registered to Rohit Khare, CommerceNet is graciously hosting the servers, but claims no control over microformat standards. Anyone may follow the established [[process]] and contribute towards the development of microformat standards.&lt;br /&gt;
&lt;br /&gt;
Any required [[governance]] of the microformats IRC channel, wiki, and mailing lists (and very little ''has been'' required) is discussed by a group of volunteer administrators, who are listed on that page.&lt;br /&gt;
&lt;br /&gt;
===Q: ''Who is the registrar for microformats?''===&lt;br /&gt;
&lt;br /&gt;
A: There is no central registry. Microformats are registered in a distributed manner using profiles. For more information on profiles see http://microformats.org/wiki/profile-uris and http://gmpg.org/xmdp/&lt;br /&gt;
&lt;br /&gt;
Conflicts and interoperability are managed through social processes rather than a formal registry. Current microformat profiles can be found at http://gmpg.org,  http://w3.org, and http://microformats.org.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Q: ''So multiple microformats with the same name can be valid?''===&lt;br /&gt;
&lt;br /&gt;
A: Yes. The community at microformats.org can hopefully play a role in determining which is preferred by bringing interested folks together in one place and helping them resolve that question.  As long as each microformat maintains a valid profile, each can be used effectively.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Q: ''How do I validate my microformated content?''===&lt;br /&gt;
&lt;br /&gt;
A: Currently there is no automatic general-purpose validator for microformats (See [[to-do#for_all_microformats|To Do - for all microformats]]). There are however some microformat-specific tools listed on the [[implementations]] page which can help with validation. [https://addons.mozilla.org/firefox/4106/ Operator] does a good job of compliant parsing for microformats in general. For [[hcard|hCard]], try the [http://feeds.technorati.com/contacts/ Technorati Contacts Feed service]. For [[hcalendar|hCalendar]], try the [http://feeds.technorati.com/events/ Technorati Events Feed service]. Also, posting your examples to the [http://microformats.org/discuss microformats-discuss mailing list], and adding them to the respective examples/implementations sections/pages will very often get folks from the community to review and validate them for you.&lt;br /&gt;
&lt;br /&gt;
===Q: ''How do microformats breach language barriers?===&lt;br /&gt;
'''Would we have to &amp;quot;force&amp;quot; non-English speaking web page developers to use something like class=&amp;quot;name&amp;quot; (as opposed to &amp;quot;namen&amp;quot; or &amp;quot;nom&amp;quot;) for their productions to be properly indexed by agents?'''&lt;br /&gt;
&lt;br /&gt;
A: Yes, but that's no different to using English words like &amp;quot;class&amp;quot;, &amp;quot;span&amp;quot; or &amp;quot;head&amp;quot;. This was briefly discussed on the microformats-discuss list most recently as &amp;quot;Language Maps&amp;quot; but has been raised before that. Some folks have raised the issue that microformats use English names for properties, and they would like alternate (non-English) names in other (natural) languages, and perhaps try to establish a mapping between them. As microformats property names are based on existing standards (see [[process]], and [[naming-principles]]), this is another problem that is far outside the scope of microformats. As Ryan King put it, this is a pre-existing (unsolved) &amp;quot;problem&amp;quot; with English-based HTML, the English-based CSS, the English-based HTTP and so on. Note that this is NOT about the internationalization of the content and data itself - which is of course an excellent goal, advocated and promoted by microformats and the standards they are based on (e.g. W3C, IETF). This is purely about the names of the properties (and enumerated values) in the formats. See also [[internationalization]].&lt;br /&gt;
&lt;br /&gt;
===Q: ''How come microformats sometimes to linger as Drafts even though they seem usable?'' ===&lt;br /&gt;
&lt;br /&gt;
A: [http://microformats.org/wiki/faq#Q:_Who_controls_microformats.3F Tantek] went over this at the recent [http://2007.sxsw.com/interactive/programming/panels/?action=show&amp;amp;id=IAP060234 The Growth and Evolution of Microformats] panel at [http://en.wikipedia.org/wiki/South_by_Southwest SXSW]. He conveyed that it was important to have a basic software implementation -- even an experimental one -- before moving a format from Draft to Specification. It can sometimes be hard to recognize subtle inconsistencies within a format by eye; however, in the process of implementing a format-reader in code, inconsistencies (if any) can become much more noticeable (due to [[dry | DRY / Don't Repeat Yourself]], among other programming best practices). Then, once such a tool has been created (in effect, confirming the programmability of the format), it can be transitioned to a Specification (so as to encourage other machine-based implementations).&lt;br /&gt;
&lt;br /&gt;
== Creating and Suggesting New Microformats ==&lt;br /&gt;
&lt;br /&gt;
===Q. ''I would like to author a new microformats open standards specification for my site/business.  How do I get started?''===&lt;br /&gt;
&lt;br /&gt;
A. The first thing to do before attempting a new microformat open standard is to make as much use of existing [[microformats]] open standards as possible in whatever site you are looking to mark up with your new microformat, as a way of learning what is left to be done. That is, at a minimum first:&lt;br /&gt;
* Mark up all people and organizations as [[hcard|hCards]].&lt;br /&gt;
* Mark up all events and time based things as [[hcalendar|hCalendar]] events.&lt;br /&gt;
* Mark up all reviews as [[hreview|hReviews]].&lt;br /&gt;
* etc.&lt;br /&gt;
Then join the microformats [http://microformats.org/discuss discuss list], and ask folks what they think of your use of the microformats and if it can be improved.&lt;br /&gt;
&lt;br /&gt;
From that experience you will then be able to figure out what is left to be specified.  Otherwise it is too hard to approach the &amp;quot;whole problem&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Once you have completed that, take a look at the microformats [[process]] for how to walk through the steps of creating a new microformat, and note the specific problem you are trying to solve to the microformats-discuss list.  This will help you find more people to help you solve the problems you are trying to solve.&lt;br /&gt;
&lt;br /&gt;
===''Q How do I know if an idea for a Microformat has already been suggested in the past?''===&lt;br /&gt;
&lt;br /&gt;
A. Check the list of proposed and rejected microformats. &lt;br /&gt;
* [[rejected-formats]]&lt;br /&gt;
&lt;br /&gt;
== Specific Microformat Questions ==&lt;br /&gt;
If you have a question regarding a specific microformat, you may want to check the FAQ specific to that microformat.&lt;br /&gt;
* [[hatom-faq]]&lt;br /&gt;
* [[hcalendar-faq]]&lt;br /&gt;
* [[hcard-faq]]&lt;br /&gt;
* [[hreview-faq]]&lt;br /&gt;
* [[rel-faq]]&lt;br /&gt;
* [[rel-tag-faq]]&lt;br /&gt;
* [http://gmpg.org/xfn/faq xfn-faq]&lt;br /&gt;
* [[xfolk-faq]]&lt;br /&gt;
* [[xmdp-faq]]&lt;br /&gt;
* [[xoxo-faq]]&lt;br /&gt;
&lt;br /&gt;
== Class interactions ==&lt;br /&gt;
&lt;br /&gt;
===Q. ''Are there issues with page styling when specific class values are used?''===&lt;br /&gt;
&lt;br /&gt;
A. There might be. However, any such issues can be easily (trivially) worked around by using contextual selectors.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Q. ''How does the use of class values for semantics interact with the use of class values for attaching CSS styles?''===&lt;br /&gt;
&lt;br /&gt;
A. The class attribute takes a space separated set of class names [http://www.w3.org/TR/REC-html40/struct/global.html#h-7.5.2 HTML4 reference]. Thus both author and microformat defined class names may be used in the same class attribute. In addition, microformat class names provide the author with a consistent set of class names to use for styling. If the author is already using using specific class names, they can continue to do so, and include microformat class names. If the author is already using a class name that happens to also be a microformat class name, then the author may want to consider using contextual CSS class selectors to make sure that avoid any unintentional styling effects.&lt;br /&gt;
&lt;br /&gt;
See also: &lt;br /&gt;
* [http://tantek.com/log/2002/12.html#L20021216 A Touch Of Class]&lt;br /&gt;
* [http://tantek.com/log/2004/07.html#classmeaningnotshow Class For Meaning Not For Show]&lt;br /&gt;
* [http://www.meyerweb.com/eric/thoughts/2004/07/18/competent-classing Competant Classing], by Eric Meyer for discussion of choosing class names in (X)HTML&lt;br /&gt;
* [http://www.microformats.org/blog/2005/10/19/more-than-styling/ Class attributes are about more than styling] - Ryan King dispells common misconceptions about the ''HTML'' class attribute.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;code&amp;gt;&amp;amp;lt;div&amp;amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;amp;lt;span&amp;amp;gt;&amp;lt;/code&amp;gt; semantics ==&lt;br /&gt;
&lt;br /&gt;
===''Q. Is it semantically meaningless to use divs?'' ===&lt;br /&gt;
&lt;br /&gt;
A. Yes, both &amp;lt;code&amp;gt;&amp;amp;lt;div&amp;amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;amp;lt;span&amp;amp;gt;&amp;lt;/code&amp;gt; have nearly no semantics. &amp;lt;code&amp;gt;&amp;amp;lt;div&amp;amp;gt;&amp;lt;/code&amp;gt; can be used to represent a &amp;quot;division&amp;quot; of the page content. Similarly &amp;lt;code&amp;gt;&amp;amp;lt;span&amp;amp;gt;&amp;lt;/code&amp;gt; can be used to reperesent that that &amp;quot;span&amp;quot; of text has some meaning, but the specifics of what that meaning is undefined by the &amp;lt;code&amp;gt;&amp;amp;lt;span&amp;amp;gt;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===''Q. Does the use of &amp;lt;code&amp;gt;&amp;amp;lt;div&amp;amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;amp;lt;span&amp;amp;gt;&amp;lt;/code&amp;gt; elements add any semantics to web pages?''===&lt;br /&gt;
&lt;br /&gt;
A. According to the [http://www.w3.org/TR/REC-html40/struct/global.html#h-7.5.4 HTML 4 spec], &amp;lt;code&amp;gt;&amp;amp;lt;div&amp;amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;amp;lt;span&amp;amp;gt;&amp;lt;/code&amp;gt; &amp;quot;offer a generic mechanism for adding structure to documents.&amp;quot; Their only meaning is in dividing documents into sections, and as such, their presence implies that the content within has a specific, but undefined by the element markup, semantic. Thus they are nearly semantic-free.&lt;br /&gt;
&lt;br /&gt;
===''Q. Why do the examples on the wiki use &amp;lt;code class=&amp;quot;element&amp;quot;&amp;gt;&amp;amp;lt;span&amp;amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code class=&amp;quot;element&amp;quot;&amp;gt;&amp;amp;lt;div&amp;amp;gt;&amp;lt;/code&amp;gt; for nearly everything?''===&lt;br /&gt;
&lt;br /&gt;
A. &amp;lt;code class=&amp;quot;element&amp;quot;&amp;gt;&amp;amp;lt;span&amp;amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code class=&amp;quot;element&amp;quot;&amp;gt;&amp;amp;lt;div&amp;amp;gt;&amp;lt;/code&amp;gt; are generic elements in HTML. When you use microformats, you should pick the most specific semantic element available for the semantics you are trying to express. You might, for example, apply &amp;lt;code&amp;gt;class=&amp;quot;vevent&amp;quot;&amp;lt;/code&amp;gt; to a &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, or &amp;lt;code&amp;gt;class=&amp;quot;vcard&amp;quot;&amp;lt;/code&amp;gt; to a &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;p&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Class semantics ==&lt;br /&gt;
&lt;br /&gt;
===Q. ''How will microformat class names impact page size?''===&lt;br /&gt;
&lt;br /&gt;
A. You probably won't notice any impact on page size when authoring with microformats.  Our experience is that people use comparably sized class names, and [[semantic-class-names|semantic class names]] are now considered an industry best practice.  Some sites are successfully publishing millions of microformats, and we haven't heard any complaints yet.  You are more likely to gain space savings by more fully adopting [[microformats#the_microformats_principles|the principles of microformats]], and eliminating tables for layout.&lt;br /&gt;
&amp;lt;span class=&amp;quot;todo&amp;quot;&amp;gt;''TODO: Consider creating a new section for web authoring tips?  Or at least linking to another site that advocates good authorship.''&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Q. ''Can an element have more than one class''===&lt;br /&gt;
&lt;br /&gt;
A. Yes, the class attribute can contain a space delimited list of classes.  For example:&lt;br /&gt;
   &amp;amp;lt;p class=&amp;amp;quot;todo idea&amp;amp;quot;&amp;amp;gt;Write high quality and simple mark-up.&amp;amp;lt;/p&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
See W3C HTML 4.01 Specification: [http://www.w3.org/TR/html401/struct/global.html#adef-class 7.5.2 Element identifiers: the id and class attributes]&lt;br /&gt;
&lt;br /&gt;
===Q. ''Do (X)HTML class names have semantics?''===&lt;br /&gt;
&lt;br /&gt;
A. The HTML4 specification does not define any particular class values [http://www.w3.org/TR/REC-html40/struct/global.html#h-7.5.2 REF], nor does it define any particular semantic for class values [http://www.w3.org/TR/REC-html40/struct/global.html#h-7.5.2 REF], except that they &amp;quot;may be used for general user agent processing&amp;quot; [http://www.w3.org/TR/REC-html40/struct/global.html#h-7.5.2 REF]. However, the [http://www.w3.org/TR/WD-htmllink-970328#profile&amp;quot; draft of &amp;quot;Hypertext Links in HTML&amp;quot;], allows for a &amp;quot;profile&amp;quot; to define meanings for those classes. [http://gmpg.org/xmdp/ XMDP] is a format for defining meta data profiles for (X)HTML, and thus an XMDP profile can be used to define the meanings of class names. &lt;br /&gt;
&lt;br /&gt;
See also:&lt;br /&gt;
* [http://tantek.com/log/2002/12.html#L20021216 A Touch Of Class]&lt;br /&gt;
* [http://www.w3.org/TR/WD-htmllink-970328 Hypertext Links in HTML]&lt;br /&gt;
&lt;br /&gt;
===Q. ''I thought one of the main goals of CSS was to separate data from presentation. Isn’t this sneaking presentation back into data?''===&lt;br /&gt;
&lt;br /&gt;
A. This is a quite commonly expressed objection to the way microformats uses class, but it's based on a misunderstanding of the way the class attribute in HTML was designed. Yes, class is very commonly,and appropriately used by web designers in conjunction with CSS to style pages, and in truth, it is often overused for that, but despite this, class, according to the HTML specification &amp;quot;has several roles in HTML&amp;quot;, including [http://www.w3.org/TR/html4/struct/global.html#h-7.5.2 &amp;quot;for general purpose processing by user agents&amp;quot;].&lt;br /&gt;
&lt;br /&gt;
Microformats utilize this second aspect of the class (and id) attribute, and do so legitimately. It is not an abuse of the class or id attribute to use it to add semantic context to a document. Nor is the use of class in and of itself presentational - in fact, it is an important mechanism for separating presentation from structured content. &lt;br /&gt;
&lt;br /&gt;
For some more on using class semantically, here are some articles&lt;br /&gt;
&lt;br /&gt;
* [http://meyerweb.com/eric/thoughts/2004/07/18/competent-classing Competent Classing by Eric Meyer]&lt;br /&gt;
* [http://www.w3.org/QA/Tips/goodclassnames Use class with semantics in mind, W3C]&lt;br /&gt;
* [http://tantek.com/log/2004/07.html#d20t2359 More about the class attribute, Tantek Çelik]&lt;br /&gt;
&lt;br /&gt;
== Microformats and Spam ==&lt;br /&gt;
===''Q. Given that Google now looks at hidden content as potential spam, will invisible microformats be considered spam?''===&lt;br /&gt;
&lt;br /&gt;
A. It is advisable not to hide information in your site, regardless of whether it is microformated or not.  Microformats provide a mechanism for marking up ''visible'' content. Any mechanism for embedding ''invisible'' or hidden content risks being considered spam due to the fact that invisible (meta)data inevitably ends up being abused.  Avoid invisible (meta)data.  Publish visible data.&lt;br /&gt;
&lt;br /&gt;
== Design Patterns with Abbr &amp;amp;amp; Title ==&lt;br /&gt;
===''Q. Why is ABBR being used when the title attribute is available on all HTML elements?''===&lt;br /&gt;
&lt;br /&gt;
In the datetime design pattern the title attribute is used for the value of the property and the node value is used as the display value. &amp;amp;lt;abbr title=&amp;quot;value-here&amp;quot;&amp;amp;gt;Display-Here&amp;amp;lt;/abbr&amp;amp;gt;. &lt;br /&gt;
&lt;br /&gt;
A. The short answer is that &amp;amp;lt;abbr&amp;amp;gt; has the correct semantics.&lt;br /&gt;
&lt;br /&gt;
The longer answer is that the value is often an abbreviated version of the formal value. Of course, if you don't want to use an &amp;amp;lt;abbr&amp;amp;gt;, you can use another element like this:&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;abbr title=&amp;quot;2006-12-31T12:59:59Z&amp;quot; class=&amp;quot;dtstamp&amp;quot;&amp;amp;gt;New Year&amp;amp;lt;/abbr&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;span class=&amp;quot;dtstamp&amp;quot;&amp;amp;gt;2006-12-31T12:59:59Z&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
In addition, microformats encourage the content to be visible and thus prefer the text of an element rather than using the 'title' attribute or any other less visible alternative.  The exception is made for datetimes and abbr due to the fact that microformats are for humans first, machines second.  Thus the content of the abbr element is used to provide human visible content and the machine equivalent is placed in the less visible (but still easily verifiable) 'title' attribute.&lt;br /&gt;
&lt;br /&gt;
== Nesting of elements ==&lt;br /&gt;
===''Q. It seems that &amp;lt;code&amp;gt;&amp;amp;lt;span class=&amp;amp;quot;vcard fn org&amp;amp;quot; id=&amp;amp;quot;club&amp;amp;quot;&amp;amp;gt;...&amp;amp;lt;/span&amp;amp;gt;&amp;lt;/code&amp;gt; should work. Is this correct?''===&lt;br /&gt;
&lt;br /&gt;
A. No. See [http://microformats.org/wiki/hcard-faq#nesting-properties]&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=issues&amp;diff=14671</id>
		<title>issues</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=issues&amp;diff=14671"/>
		<updated>2007-03-25T02:38:20Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* Legal Entity Issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; Microformat Issues &amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These are externally raised issues about microformats in general (these issues MUST apply to more than one microformat, which MUST be explicitly listed, otherwise the issue should be raised on the format specific issues page) with broadly varying degrees of merit.  Thus some issues are REJECTED for a number of obvious reasons (but still documented here in case they are re-raised), and others contain longer discussions. Some issues may be ACCEPTED and perhaps cause changes or improved explanations in the spec. Submitted issues may (and probably will) be edited and rewritten for better terseness, clarity, calmness, rationality, and as neutral a point of view as possible. Write your issues well. — [http://tantek.com/log/ Tantek]&lt;br /&gt;
&lt;br /&gt;
As this is a general microformats issues page, please only note ''concrete'' real world issues.  Theoretical issues will be deleted, as will any issues raised that do not contain documentation of specific real-world examples that use real-world microformats (not just brainstorms).&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
== Issues ==&lt;br /&gt;
&lt;br /&gt;
=== Format Specific Issues ===&lt;br /&gt;
&lt;br /&gt;
Please raise format specific issues on the respective page:&lt;br /&gt;
* [[hcard-issues]]&lt;br /&gt;
* [[hcalendar-issues]]&lt;br /&gt;
* [[hreview-issues]]&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
=== IP Issues ===&lt;br /&gt;
* 2006-12-08 raised by [[User:AndyMabbett|Andy Mabbett]].&lt;br /&gt;
*# ''As discussed in [http://microformats.org/discuss/mail/microformats-discuss/2006-December/007531.html], the current position on the IP rights relating to microformats is unclear, or at least not clearly expressed. It seems to me that there should be an unambiguous statement of the current position, either for each individual format, or collectively, on a page to which people with concerns may be directed.''&lt;br /&gt;
*#* ACCEPTED.  A clearer statement of both copyright and patents both in specific specs and in general would be a good thing. In general, the end result that our current copyright/patent statements seek is Creative Commons, W3C, and IETF compatibility in terms of both copyrights, and royalty free patent policies. I [[to-do#Tantek|will work]] on this [[User:Tantek|Tantek]] 11:58, 9 Dec 2006 (PST)&lt;br /&gt;
*#** {{OpenIssue}} This appears to be unresolved; and in the light of, for example, [[hCard#Copyright the hCard 'spec']], the statement in the FAQ that &amp;quot;[http://microformats.org/wiki/faq#Q:_Who_controls_microformats.3F Microformats are open standards licensed under Creative Commons Attribution]&amp;quot; to be, at best, erroneous and misleading. [[User:AndyMabbett|Andy Mabbett]] 11:04, 10 Mar 2007 (PST)&lt;br /&gt;
*#**Also [http://en.wikipedia.org/w/index.php?title=Wikipedia_talk:Attribution&amp;amp;curid=7391090&amp;amp;diff=117538680&amp;amp;oldid=117536621 causing concern here]. '''Prompt resolution would be advisable''' [[User:AndyMabbett|Andy Mabbett]] 09:04, 24 Mar 2007 (PDT)&lt;br /&gt;
*#*** First, [[citation]] is not ready for use in Wikipedia anyway.  Second, what is unclear about the Creative Commons/W3C/IETF license and patent statements?  This appears to be a theoretical issue / nitpick.  Yes, things can be made clearer, but &amp;quot;erroneous&amp;quot; and &amp;quot;misleading&amp;quot; are inaccurate labels.&lt;br /&gt;
*#*** This is not a citation issue. For example, [[hcard#Copyright|hCard's current copyright statement]] is not compatible with the Creative Commons license:&amp;lt;br&amp;gt;&amp;lt;blockquote&amp;gt;{{MicroFormatCopyrightStatement2004}}&amp;lt;/blockquote&amp;gt;&amp;lt;br&amp;gt;If you look at the wikicode, this is actually the &amp;quot;MicroFormatCopyrightStatement2004&amp;quot; default microformat copyright.--[[User:JoeAndrieu|JoeAndrieu]] 15:09, 24 Mar 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
* Further to the above (but out-dented for clarity), [[hresume|hResume]] cedes copyright to &amp;quot;the authors&amp;quot;: &amp;quot;This specification is (C) 2006 by the authors&amp;quot;; and names just one author; Ryan King. What legal standing does the &amp;quot;the authors (sic) intend to submit...&amp;quot; clause have? What exists, to reassure someone (or some mega corporation's lawyers) contemplating or already using hResume that they won't be invoiced by Mr King? Why aren't the other people who contributed to that spec jointly credited with its copyright? [[User:AndyMabbett|Andy Mabbett]] 17:34, 24 Mar 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
=== Legal Entity Issues ===&lt;br /&gt;
2007-03-24 raised by [[User:JoeAndrieu|Joe Andrieu]], clarified by [[User:Rohit|Rohit Khare]] on 2007-03-27.&lt;br /&gt;
# What is the legal entity responsible for operating microformats.org?&lt;br /&gt;
#* [[User:Rohit|Rohit Khare]] originally registered the microformats.com and .org domain names on 2005-01-25 and [http://commerce.net|CommerceNet, LLC], a non-profit 'think tank' with a long history as a neutral sponsor for developing standards for Internet commerce (often, in conjunction with other formal standards bodies). CommerceNet currently underwrites the server hosting costs and, in the past, has co-ordinated donations with other sponsors for events such as the [http://microformats.org/blog/2006/06/16/microformatsorg-anniversary-party/|first anniversary party], the [http://wiki.commerce.net/wiki/ZCommerceWS#Microformats workshop] where the site was launched, and promotional items.&lt;br /&gt;
# What is the legal entity responsible for the intellectual property on microformats.org?  &lt;br /&gt;
#* The current [[Template:MicroFormatCopyrightStatement|microformats copyright statement]] recognizes that IP is originally vested in the author(s), who are then expected to share those rights with the community by permitting their redistribution on microformats.org's wiki, blog, and mailing list archives. The additional distinction of becoming a specification may come with additional obligations to redistribute IP, such as a formal Creative Commons copyright license and a royalty-free patent license.&lt;br /&gt;
#* Note that CommerceNet, LLC does ''not'' exercise any editorial control over the content of the site, mailing list, specifications, or the process, nor does it accept funds on behalf of microformats.org (see the [[Microformats:General_disclaimer|disclaimer]]). Conversely, the [[faq#Q:_Who_controls_microformats.3F|Admins]] do not have any independent legal identity at present, such as a partnership, foundation, or corporation. Please refer any legal questions or concerns directly to [mailto:rohit@commerce.net CommerceNet] before raising them as a matter of public record, as discussed on the mailing list [http://microformats.org/discuss/mail/microformats-discuss/2006-November/007086.html].&lt;br /&gt;
&lt;br /&gt;
=== Governance Issues ===&lt;br /&gt;
:See: [[governance-issues]]&lt;br /&gt;
&lt;br /&gt;
===Miscellaneous issues===&lt;br /&gt;
* {{OpenIssue}} 2006-10-17 raised by [[User:AndyMabbett|Andy Mabbett]] on [[wiki-feedback]]; moved here 2007-03-10.&lt;br /&gt;
*#  What is currently described as a &amp;quot;specification&amp;quot; on [[hCard]] and [[hCalendar]] is no such thing.&lt;br /&gt;
*#  Andy, what would it take to turn it into a &amp;quot;specification&amp;quot;?--[[User:JoeAndrieu|JoeAndrieu]] 15:13, 24 Mar 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
=== New Issues ===&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Template ==&lt;br /&gt;
&lt;br /&gt;
Please use this format (copy and paste this to the end of the list to add your issues):&lt;br /&gt;
* {{OpenIssue}} YYYY-MM-DD raised by [http://yourhomepage.example.com YOURNAME].&lt;br /&gt;
*# ''Issue 1: Here is the first issue I have.''&lt;br /&gt;
*# ''Issue 2: Here is the second issue I have.''&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[accessibility]]&lt;br /&gt;
*[[criticism]]&lt;br /&gt;
*[[wiki-feedback]]&lt;br /&gt;
*The [[faq|microformats FAQ]], which answers many general criticisms/ issues that have been raised with microformats.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=32298</id>
		<title>events/2007-03-27-ETech07Proposal</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=32298"/>
		<updated>2007-03-08T20:47:05Z</updated>

		<summary type="html">&lt;p&gt;Rohit: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The message we wanted to convey by proposing a sequel at [http://conferences.oreillynet.com/et2007/ O'Reilly Emerging  Technology 2007] is: '''microformats make integration easy'''. It's not just demos of lone sites that support microformats this year; it's about the magic of connecting two (or more) Web-based services...&lt;br /&gt;
&lt;br /&gt;
= '''micromagic:''' loosely joining small pieces of the Web with microformats =&lt;br /&gt;
(headings below from the ETech 2007 proposal template)&lt;br /&gt;
&lt;br /&gt;
''Audience Type:'' web designers, programmers, managers, other.&lt;br /&gt;
&lt;br /&gt;
''Brief Description:'' &lt;br /&gt;
Microformats are a clever adaptation of semantic XHTML that makes it easier to share structured information such as tags, calendar entries, contact information, and reviews. This demo session will show off real products that are using microformats to connect multiple Web services, such as Live Clipboard, Pingerati, and Flickr geotagging. (50 words)&lt;br /&gt;
&lt;br /&gt;
''Abstract or Full Description:'' Maximum 250 words, about 35 lines. The abstract is displayed online.&lt;br /&gt;
&lt;br /&gt;
Microformats have already made it easier for bloggers and other publishers to describe their social relationships (XFN), make event descriptions searchable by location and time (hCalendar), offer their contact information (hCard), and share their opinions (hReview). They use existing standards and practices in XHTML to get the job done: link relationships, element classes, outline structures, and abbreviations to name a few.&lt;br /&gt;
&lt;br /&gt;
Last year, a packed show-and-tell by half a dozen developers demonstrated the ease and power of publishing microformats; this year we want to share a new level of magic: integrating and automating multiple services.&lt;br /&gt;
&lt;br /&gt;
Imagine surfing across a concert listing, snapping a photo of the band, and having it automatically posted to your blog, plotted on the live tour bus map, and displayed next to an album review at a music shop. This isn’t just syndicating passive data; it’s a new way of &amp;quot;wiring the web.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* ''Live Clipboard'' technology debuted at ETech 2006 in a presentation by Ray Ozzie; it has rapidly matured and shipped as Live Writer wysiwyg plugins for calendar events and reviews. &lt;br /&gt;
&lt;br /&gt;
* ''Pingerati'' receives updates of pages with microformat data, and passes them on to services that are interested in them within seconds. It's already used to connect indexing services like Eventful, Upcoming, and Edgeio.&lt;br /&gt;
&lt;br /&gt;
* ''Geotagging'' is a recent addition for GPS coordinates that's recombined with multimedia elements to create new abstractions like maps of Flickr photos and Zonetags.&lt;br /&gt;
&lt;br /&gt;
[Additional speakers and demos to be added from the microformats-dev list in early 2007]&lt;br /&gt;
&lt;br /&gt;
''Co-presenters:'' Tantek Çelik, Rohit Khare, Kevin Marks (subject to change as late-breaking demos emerge &amp;amp; volunteer)&lt;br /&gt;
&lt;br /&gt;
= ETech 2006 Session Description =&lt;br /&gt;
[http://conferences.oreillynet.com/cs/et2006/view/e_sess/8292 Microformats] with Tantek Çelik, Technorati; Shawn Carnell, AOL; Yoz Grahame, Ning; Joe Gregorio, AtomPub Workgroup; Rohit Khare, CommerceNet Labs; Kevin Marks, Technorati; Mark Pilgrim, IBM.&lt;br /&gt;
&lt;br /&gt;
Microformats are simple semantic XHTML extensions for expressing numerous common concepts (people, events, etc.) on today's Web. Tantek Çelik will provide a short introduction, followed by a series of speakers performing lightning demonstrations of their microformats enabled tools, sites, hacks and other implementations.&lt;br /&gt;
&lt;br /&gt;
Date: Tuesday, March 07, 2006&lt;br /&gt;
&lt;br /&gt;
Time: 5:30pm - 6:15pm&lt;br /&gt;
&lt;br /&gt;
Location: Elizabeth Ballroom A&lt;br /&gt;
&lt;br /&gt;
== Original ETech 2006 Proposal Text ==&lt;br /&gt;
Title: Microformats: Recycling XHTML&lt;br /&gt;
&lt;br /&gt;
Conference: O'Reilly Emerging Technology Conference 2006&lt;br /&gt;
Type/Duration: 90m&lt;br /&gt;
&lt;br /&gt;
Audience Level: General&lt;br /&gt;
&lt;br /&gt;
Audience Type: web designers, programmers, educators&lt;br /&gt;
&lt;br /&gt;
Short Description:&lt;br /&gt;
Microformats are a clever adaptation of semantic XHTML that makes it easier to publish, index, and extract semi-structured information such as tags, calendar entries, contact information, and reviews on the Web. Microformats can make your existing XHTML easier to recycle into new services and applications.&lt;br /&gt;
&lt;br /&gt;
Description:&lt;br /&gt;
Microformats have already made it easier for bloggers and other publishers to describe their social relationships (XFN), make event descriptions searchable by location and time (hCalendar), offer their contact information (hCard), and share their opinions (hReview). They use existing standards and practices in XHTML to get the job done: link relationships, element classes, outline structures, and abbreviations to name a few.&lt;br /&gt;
&lt;br /&gt;
By avoiding the complexity of managing multiple metadata formats in multiple files, microformats make it easier for readers of XHTML pages to recycle the structured data that's hidden in plain view. This makes microformats an exciting approach towards achieving the benefits of the Semantic Web: better search, personalization, and reuse of knowledge across new services and applications.&lt;br /&gt;
&lt;br /&gt;
This session presents four perspectives: the leader of the community developing the specifications; a producer that added hCalendar microformat support to their site in an hour; a consumer who wrote a parser in JavaScript over a weekend (complete with test cases!); and a Web pioneer who has been deeply involved in the development of HTML and RDF.&lt;br /&gt;
&lt;br /&gt;
While it can be easy for publishers to generate microformatted XHTML, it requires more work from programmers than a comparable bespoke XML format would. So far, new microformats have also introduced new parsing rules that inhibit the development of generic processing tools. In closing, we will also discuss the future of microformats in light of the old saw, &amp;quot;Sure, it works in practice -- but does it work in *theory*?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Speaker bio: Rohit Khare is an award-winning researcher in the fields of Internet protocols and decentralized systems. He founded KnowNow in 2000 and previously worked on Internet standards at W3C and MCI. He founded 4K Associates and edited the O'Reilly Web Journal. He received his Ph.D. in Software Engineering from U.C. Irvine in 2003.&lt;br /&gt;
&lt;br /&gt;
Co-Presenters: Tantek Celik, Andy Baio, Mark Pilgrim, Dan Connolly (Invited)&lt;br /&gt;
&lt;br /&gt;
Speaker notes and comments: We'd consider alternative presentation formats for discussing the latest microformats tools and the implications of the community movement around microformats, such as a panel debate.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events&amp;diff=14129</id>
		<title>events</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events&amp;diff=14129"/>
		<updated>2007-03-08T20:45:33Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* Upcoming */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
=Microformats related events=&lt;br /&gt;
&lt;br /&gt;
Please add any microformats related events (specifically, events where there will be talks on microformats) you find here, and we'll add them to the [[hcalendar|hCalendar]] on the [http://microformats.org home page]. Please also create a page for each specific event, where you can list URLs for the event, event details, create an &amp;quot;Attending&amp;quot; section, link to photos afterwards, etc. (See [[events/2006-03-01-w3c-plenary-microformats|Microformats panel at W3C Plenary Day]] for a decent example to mimic/copy-paste). Thanks! -[http://tantek.com/ Tantek]&lt;br /&gt;
&lt;br /&gt;
If you can (or can ask the organisers to kindly-) use microformats (especially [[hCalendar]] and [[hCard]]) on the event's web pages, so much the better!&lt;br /&gt;
&lt;br /&gt;
There's a a separate wiki page for details of [[presentations]].&lt;br /&gt;
&lt;br /&gt;
Patterns:&lt;br /&gt;
* YYYY-MM-DD: &amp;lt;nowiki&amp;gt;[[events/YYYY-MM-DD-event-session-title|Event Session Title]]&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* YYYY-MM-DD - YYYY-MM-DD: &amp;lt;nowiki&amp;gt;[[events/YYYY-MM-DD-event-session-title|Event Session Title]]&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Upcoming ==&lt;br /&gt;
&amp;lt;!-- Please try to keep to neutral tense (e.g &amp;quot;Bill Smith on microformats&amp;quot; not &amp;quot;Bill Smith will talk about Microformats&amp;quot;), where possible, for convenience when moving to the historical section of this page. Please also include as many details about the event as possible, including precise start end times, room number, etc. Ideally details should be moved to the (events/..) wiki page for the event itself, but at least include the information here to start with. Thank you. --&amp;gt;&lt;br /&gt;
* 2007-03-12: [[events/2006-03-12-sxsw-growth-evolution-of|The Growth and Evolution of Microformats]] at [http://2007.sxsw.com/interactive South by Southwest Interactive Festival] 2007 3/10-13. See also [http://2007.sxsw.com/interactive/programming/panels/ confirmed SXSWi 2007 panels].&lt;br /&gt;
* 2007-04-16 [[events/2007-04-15-Web2Expo|Microformats for Web Services and Portable Content]] by Kevin Lawver at[http://www.web2expo.com/cs/webex2007/view/e_sess/11831 Web 2.0 Expo] in San Francisco.&lt;br /&gt;
* 2007-04-17 [[events/2007-04-15-Web2Expo|Microformats: Much more than just promise]] by John Allsopp, at [http://www.web2expo.com/cs/webex2007/view/e_sess/11831 Web 2.0 Expo] in San Francisco.&lt;br /&gt;
* 2007-04-18 [[events/2007-04-18-Web2ExpoDinner|Microformats Dinner]] following [http://www.web2expo.com/cs/webex2007/view/e_sess/11831 Web 2.0 Expo] in San Francisco.&lt;br /&gt;
* 2007-05-16 [[events/2007-05-16-XTech|Microformats: the nanotechnology of the semantic web]] at the [http://2007.xtech.org/ XTech 2007] conference in Paris.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Recent ==&lt;br /&gt;
&amp;lt;!-- Please change to past tense, and reverse the date-order, when moving events to this section. Thank you.--&amp;gt;&lt;br /&gt;
* 2007-02-17 - 2007-02-18: Various microformateers were in attendance at [http://barcamp.org/BarCampLondon2 BarCampLondon] so various microformat related sessions featured. [[events/2007-02-17-barcamplondon2|Microformats at BarCampLondon]]&lt;br /&gt;
* 2007-02-07: [[events/2007-02-07-web-directions-north|microformats presentations at Web Directions North]] - 11:45am-12:45pm &amp;quot;Microformats - The Big Picture&amp;quot; with Tantek Çelik in ballroom I , 1:45pm-3:45pm: &amp;quot;Microformats - more than just promise&amp;quot; with John Allsopp and Dan Cederholm in ballroom II.&lt;br /&gt;
* 2007-02-03: [http://barcamp.org/BarCampBank3 how could we use microformats in banks ] - proposal from Christophe Ducamp (3pm-4pm) - Atelier BnpParibas 29 rue la Pérouse 75116 Paris - France (Métro Etoile)&lt;br /&gt;
* 2007-01-27: [[events/2007-01-la-get-together|Los Angeles Microformats Get Together]]&lt;br /&gt;
* 2007-01-18: [[events/2007-01-18-sf-microformats-dinner|San Francisco Microformats Dinner]] 6pm-? @ Nova on 2nd street. Details inside.&lt;br /&gt;
* 2007-01-03: [http://eventful.com/events/E0-001-002386631-6 Lancement du projet 'Cette Semaine en MicroFormats'] in Paris, France.&lt;br /&gt;
&lt;br /&gt;
==2006==&lt;br /&gt;
* 2006-11-17 Jeremy Keith presented [http://refresh06.com/schedule/topics/fri_jeremy.html Getting Microformats ] at [http://refresh06.com/ Refresh Web Standards Conference] in Orlando, Florida.&lt;br /&gt;
* 2006-11-11 : Microformats talk / workshop at [http://barcamp.org/BarCampParis7 Barcamp Paris 7], Frédéric de Villamil&lt;br /&gt;
* 2006-10-25 : [http://www.open-standards.com/tutorials.html Microformats half day workshop with John Allsopp at Open Standards, Sydney]&lt;br /&gt;
* 2006-10-26 : [http://www.open-standards.com/agenda.html Microformats presentation - John Allsopp at Open Standards, Sydney]&lt;br /&gt;
* 2006-10-19: [[events/2006-10-19-wsg-microformats-meetup|Web Standards Group London Meetup, Microformats Special]]&lt;br /&gt;
* 2006-10-11: 2pm-3pm &amp;quot;[http://www.socialtext.net/office20/index.cgi?industry_standards_for_office_2_0 Industry Standards for Office 2.0]&amp;quot;, [http://www.office20con.com/ Office 2.0 conference], Conservatory Room, 4th Floor, [http://www.starwoodhotels.com/stregis/property/overview/index.html?propertyID=1511 St. Regis Hotel, 125 3rd St., San Francisco, CA 94103]. Panel moderated by Tantek Çelik. Narenda of 83degrees/30boxes discussed importance and support of [[hcalendar|hCalendar]].&lt;br /&gt;
* 2006-10-07: 3:30pm-4pm [http://upcoming.org/event/114735 Microformats 101 session at Silicon Valley Code Camp] at Foothill College room 4221, Los Altos Hills, CA, USA&lt;br /&gt;
** presentation: http://tantek.com/presentations/2006/10/microformats-101&lt;br /&gt;
* 2006-10-05, [http://molly.com/about.php Molly E. Holzschlag] and [http://www.malarkey.co.uk/The_Stuff_and_Nonsense_team.html#clarke Andy Clarke] present [http://www.fundamentosweb.org/2006/programa/index.html.en Workshop: Designing for Web 2.0] at [http://www.fundamentosweb.org/2006/ Fundamentos Web 2006] in Oviedo, Spain&lt;br /&gt;
* 2006-10-04, [http://molly.com/about.php Molly E. Holzschlag] presents [http://www.fundamentosweb.org/2006/programa/index.html.en The True Value of Microformats] at [http://www.fundamentosweb.org/2006/ Fundamentos Web 2006] in Oviedo, Spain&lt;br /&gt;
* 2006-09-30, 8:00PM-late [[events/2006-09-30-london-microformats-vevent|London Microformats vEvent]] social.&lt;br /&gt;
* 2006-09-30 and 2006-10-01, 10am 09-30 to 5pm 10-01 [[events/2006-09-30-barcampmilwaukee|BarCampMilwaukee]].&lt;br /&gt;
* 2006-09-29, 2:45-3:30PM John Allsopp spoke on Microformats at [http://www.webdirections.org Web Directions] in Sydney, Australia&lt;br /&gt;
** photos: [http://flickr.com/photos/tags/wd06microformats wd06microformats on Flickr]&lt;br /&gt;
* 2006-09-23 10:00 [http://drupalcon.org/node/36 Microformats and Drupal] at drupalcon in Brussels&lt;br /&gt;
* 2006-09-19, 10:00-10:40AM Brian Suda presents [http://conferences.oreillynet.com/cs/euos2006/view/e_sess/9508 Microformats: Web of Data] at at [[events/2006-09-19-eurooscon|EuroOSCon06]]&lt;br /&gt;
* 2006-09-16 : [http://barcamp.org/BarCampParis4 BarCampParis4]. [http://fredericdevillamil.com/ Frédéric de Villamil].&lt;br /&gt;
* 2006-09-13: [[events/2006-09-13-future-of-web-apps-microformats|The Future of Web Apps: Best practice with microformats]]&lt;br /&gt;
* 2006-09-08 [[events/2006-09-08-brighton-microformats-picnic|Brighton Microformats Picnic]] during the lunch break of d.Construct.&lt;br /&gt;
* 2006-09-02 - 2006-09-03: [http://barcamp.org/BarCampLondon BarCampLondon] proposed microformats sessions.&lt;br /&gt;
* 2006-08-25 - 2006-08-27: [http://barcamp.org/BarCampEarth BarCampEarth], in particular [http://barcamp.org/BarCampTexas BarCampTexas], proposed microformats sessions.&lt;br /&gt;
* 2006-08-26 : [http://barcamp.org/BarCampParis3 BarCampParis3]. [http://fredericdevillamil.com/articles/2006/08/24/barcamp-earth-et-barcamp-paris-les-26-et-27-ao%C3%BBt-2006#comments Frédéric de Villamil].&lt;br /&gt;
* 2006-08-22 : [http://www.darowski.com/tracesofinspiration/2006/08/24/webvisions-2006-recap-my-presentation/ WebVisions 2006 Recap] with section on Microformats (beginning with slide 26) by Adam Darowski at [http://aptima.com Aptima] in Woburn, MA &amp;amp; Washington, DC&lt;br /&gt;
* 2006-08-17, 7:00-8:30PM: [[events/2006-08-17-refresh-dc-microformats|M. Jackson Wilkinson speaking on Microformats]] at [http://www.refresh-dc.org Refresh DC] in Washington, DC&lt;br /&gt;
* 2006-08-17, noon @ Ming's, Palo Alto. [http://events.commerce.net/?p=81 Microformats @ Bay Area Caltech Alumni Association]&lt;br /&gt;
* 2006-08-05 5-6pm: Microformats at [http://wordcamp.org/ WordCamp], second room, Swedish American Hall, San Francisco, CA.  Discussion led by Tantek Çelik, demos by Bill Humphries (Kubrick theme with [[hatom|hAtom]]) and Erica Douglass (Countdown Plugin with [[hcalendar|hCalendar]]).&lt;br /&gt;
* 2006-08-03 4-5:30PM: [http://events.commerce.net/?p=77 Server-side Microformats Parsing and MFML] at CommerceNet in Palo Alto&lt;br /&gt;
* 2006-07-27 8-9PM [[events/2006-07-27-oscon-microformats-bof|microformats BOF at O'Reilly OSCON]], Location: Room D137-138 in the OCC.&lt;br /&gt;
* 2006-07-13: ICWE panel: &amp;quot;Web 2.0&amp;quot; Engineering with Tantek Çelik&lt;br /&gt;
* 2006-07-11: [[events/2006-07-11-an-event-apart-microformats|An Event Apart: Microformats]]&lt;br /&gt;
* 2006-07-10: 9am-12:30pm [http://www.icwe2006.org/tutorials.htm#tutorial1 ICWE Tutorial on Microformats] by Ryan King @ &amp;lt;abbr title=&amp;quot;Stanford Linear Accelerator Center&amp;quot;&amp;gt;SLAC&amp;lt;/abbr&amp;gt;&lt;br /&gt;
* 2006-06-21: [[events/2006-06-21-supernova-decentralizing-data|Supernova 2006 Decentralizing Data workshop]]&lt;br /&gt;
* 2006-06-20: Microformats.org [[events/anniversary/1|one year anniversary!]] &lt;br /&gt;
* 2006-06-16: @media conference - Hot Topics Panel (some microformats discussions). [http://www.vivabit.com/atmedia2006/blog/index.php/hot-topics-panel-videocast/ videocast].&lt;br /&gt;
* 2006-06-16: [[events/2006-06-16-atmedia-microformats|@media conference - microformats session]]&lt;br /&gt;
* 2006-06-13: [[events/2006-06-13-where-2-bof|Where 2.0 Microformats BOF II]] - developing a [[directions-examples|directions]] microformat.&lt;br /&gt;
* 2006-06-10: [http://barcamp.org/BarCampParisSiliconSentier BarCampParis]&lt;br /&gt;
* 2006-06-08 [http://glazkov.com/resources/presentations/2006-06-08-microformats/ Microformats]. [[DimitriGlazkov|Dimitri Glazkov]] talked about microformats at [http://ipsaonline.com/ IPSA] monthly meeting.&lt;br /&gt;
* 2006-05-23 - 2006-05-26: [http://www2006.org/ www2006] &lt;br /&gt;
** 2006-05-23: [http://www.blogpulse.com/www2006-workshop/ WWE 2006 | 3rd Annual Workshop on the Weblogging Ecosystem] - call for papers explicitly included &amp;quot;microformats&amp;quot;.&lt;br /&gt;
** 2006-05-24: &lt;br /&gt;
*** All day: &amp;quot;Microformats: a Pragmatic Path to the Semantic Web&amp;quot; poster (Poster ID 116, by Rohit Khare and Tantek Çelik) presentation at Strathblane Hall.&lt;br /&gt;
*** 14:00-15:30: Brian Suda presented a microformats demo ([http://www2006.org/programme/item.php?id=d7 Microformats, converting XHTML to vCards and vCalendars]) in the NextWave developer track session. More information about the presentation is available at [[events/www2006]].&lt;br /&gt;
** 2006-05-25 10:30-13:30: Molly E. Holzschlag presented a half-day &amp;quot;Practical Microformats&amp;quot; developer tutorial.&lt;br /&gt;
* 2006-05-22: [http://refreshedinburgh.org/talks/introducing-microformats-your-web-site/ Refresh Edinburgh] Introducing microformats into your website, May 22nd 8pm-9pm.&lt;br /&gt;
* 2006-05-16 - 2006-05-19: [http://xtech.org/ XTech 2006 Conference]&lt;br /&gt;
** 2006-05-16 09:00-12:30: Half-day tutorial: [http://xtech06.usefulinc.com/content/tutorials#microformats Microformats from the Ground Up] at Volmer 3. [http://theryanking.com/presentations/2006/xtech/tutorial/ presentation slides].&lt;br /&gt;
** 2006-05-18 [http://xtech06.usefulinc.com/schedule#s2006-05-18-14:00 14:00-14:45]: [http://xtech06.usefulinc.com/schedule/detail/148 The Intelligent Design of Microformats]&lt;br /&gt;
* 2006-04-23 - 2006-04-24 [http://cmprofessionals.org/events/summit/#06spring CM Pros Summit] [http://www.nateaune.com Nate Aune] presented a talk &amp;quot;Microformats and the Future of Syndication&amp;quot; from 16:30-17:30 at the Sheraton Palace Hotel in San Francisco.&lt;br /&gt;
* 2006-03-22: [[events/2006-03-22-mix06-microformats|Mix06 Microformats session discussions]]&lt;br /&gt;
* 2006-03-21: [[events/2006-03-21-mix06-microformats|Mix06 Microformats session discussions]]&lt;br /&gt;
* 2006-03-20: [[events/2006-03-20-mix06-microformats|Mix06 Keynote with Tim O'Reilly and Bill Gates discussing microformats]]&lt;br /&gt;
* 2006-03-14: [[events/2006-03-14-sxsw-modulet|Convincing Your Company to Embrace Web Standards at SxSW Interactive]]&lt;br /&gt;
* 2006-03-13: [[events/2006-03-13-sxsw-microformats|Microformats at SXSW Interactive]]&lt;br /&gt;
* 2006-03-07: [[events/2006-03-07-etech-microformats|Microformats at O'Reilly ETech]]&lt;br /&gt;
* 2006-03-02: [http://esw.w3.org/topic/SwigAtTp2006 Semantic Web Interest Group meeting at W3C Technical Plenary], specifically, 1.30-3.30pm Dan Connolly on using &amp;quot;GRDDL&amp;quot; to parse microformats&lt;br /&gt;
* 2006-03-01: [[events/2006-03-01-w3c-plenary-microformats|Microformats panel at W3C Plenary Day]]&lt;br /&gt;
&lt;br /&gt;
== Quicktime Broadcaster Notes ==&lt;br /&gt;
&lt;br /&gt;
For setting up a mac laptop with an iSight and QT Broadcaster in order to publish live audio/video from events.&lt;br /&gt;
&lt;br /&gt;
# Make sure you have the necessary equipment and software installed&lt;br /&gt;
#* A Macintosh running OSX 10.3.9 or later&lt;br /&gt;
#* Quicktime 7 - get it from http://www.apple.com/quicktime/&lt;br /&gt;
#* Quicktime Broadcaster - get it from http://www.apple.com/quicktime/broadcaster/&lt;br /&gt;
#* An iSight or digital video camera with firewire connection&lt;br /&gt;
# Get a broadcast template document from someone (see KevinMarks for example)&lt;br /&gt;
# Open that, then change the info in the 'Network' pane that has his name etc in it.&lt;br /&gt;
# Check the video and audio panes are using your iSight&lt;br /&gt;
# Another tip is that the standalone thingy for the iSight can be more useful than the screen-top one if you have a desk, as that way it picks up less typing noise and wobbles&lt;br /&gt;
# I find plugging in headphones is a good idea, as you can then monitor and not get howlround&lt;br /&gt;
&lt;br /&gt;
http://microformats.org/media/broadcast.mov&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events&amp;diff=14121</id>
		<title>events</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events&amp;diff=14121"/>
		<updated>2007-03-08T20:32:03Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* Upcoming */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
=Microformats related events=&lt;br /&gt;
&lt;br /&gt;
Please add any microformats related events (specifically, events where there will be talks on microformats) you find here, and we'll add them to the [[hcalendar|hCalendar]] on the [http://microformats.org home page]. Please also create a page for each specific event, where you can list URLs for the event, event details, create an &amp;quot;Attending&amp;quot; section, link to photos afterwards, etc. (See [[events/2006-03-01-w3c-plenary-microformats|Microformats panel at W3C Plenary Day]] for a decent example to mimic/copy-paste). Thanks! -[http://tantek.com/ Tantek]&lt;br /&gt;
&lt;br /&gt;
If you can (or can ask the organisers to kindly-) use microformats (especially [[hCalendar]] and [[hCard]]) on the event's web pages, so much the better!&lt;br /&gt;
&lt;br /&gt;
There's a a separate wiki page for details of [[presentations]].&lt;br /&gt;
&lt;br /&gt;
Patterns:&lt;br /&gt;
* YYYY-MM-DD: &amp;lt;nowiki&amp;gt;[[events/YYYY-MM-DD-event-session-title|Event Session Title]]&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* YYYY-MM-DD - YYYY-MM-DD: &amp;lt;nowiki&amp;gt;[[events/YYYY-MM-DD-event-session-title|Event Session Title]]&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Upcoming ==&lt;br /&gt;
&amp;lt;!-- Please try to keep to neutral tense (e.g &amp;quot;Bill Smith on microformats&amp;quot; not &amp;quot;Bill Smith will talk about Microformats&amp;quot;), where possible, for convenience when moving to the historical section of this page. Please also include as many details about the event as possible, including precise start end times, room number, etc. Ideally details should be moved to the (events/..) wiki page for the event itself, but at least include the information here to start with. Thank you. --&amp;gt;&lt;br /&gt;
* 2007-03-12: [[events/2006-03-12-sxsw-growth-evolution-of|The Growth and Evolution of Microformats]] at [http://2007.sxsw.com/interactive South by Southwest Interactive Festival] 2007 3/10-13. See also [http://2007.sxsw.com/interactive/programming/panels/ confirmed SXSWi 2007 panels].&lt;br /&gt;
* 2007-03-26 - 2007-03-29 : [http://conferences.oreillynet.com/et2007/ O'Reilly Emerging  Technology 2007] [[events/2007-03-27-ETech07Proposal|proposal]]&lt;br /&gt;
* 2007-04-16 [[events/2007-04-15-Web2Expo|Microformats for Web Services and Portable Content]] by Kevin Lawver at[http://www.web2expo.com/cs/webex2007/view/e_sess/11831 Web 2.0 Expo] in San Francisco.&lt;br /&gt;
* 2007-04-17 [[events/2007-04-15-Web2Expo|Microformats: Much more than just promise]] by John Allsopp, at [http://www.web2expo.com/cs/webex2007/view/e_sess/11831 Web 2.0 Expo] in San Francisco.&lt;br /&gt;
* 2007-04-18 [[events/2007-04-18-Web2ExpoDinner|Microformats Dinner]] following [http://www.web2expo.com/cs/webex2007/view/e_sess/11831 Web 2.0 Expo] in San Francisco.&lt;br /&gt;
* 2007-05-16 [[events/2007-05-16-XTech|Microformats: the nanotechnology of the semantic web]] at the [http://2007.xtech.org/ XTech 2007] conference in Paris.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Recent ==&lt;br /&gt;
&amp;lt;!-- Please change to past tense, and reverse the date-order, when moving events to this section. Thank you.--&amp;gt;&lt;br /&gt;
* 2007-02-17 - 2007-02-18: Various microformateers were in attendance at [http://barcamp.org/BarCampLondon2 BarCampLondon] so various microformat related sessions featured. [[events/2007-02-17-barcamplondon2|Microformats at BarCampLondon]]&lt;br /&gt;
* 2007-02-07: [[events/2007-02-07-web-directions-north|microformats presentations at Web Directions North]] - 11:45am-12:45pm &amp;quot;Microformats - The Big Picture&amp;quot; with Tantek Çelik in ballroom I , 1:45pm-3:45pm: &amp;quot;Microformats - more than just promise&amp;quot; with John Allsopp and Dan Cederholm in ballroom II.&lt;br /&gt;
* 2007-02-03: [http://barcamp.org/BarCampBank3 how could we use microformats in banks ] - proposal from Christophe Ducamp (3pm-4pm) - Atelier BnpParibas 29 rue la Pérouse 75116 Paris - France (Métro Etoile)&lt;br /&gt;
* 2007-01-27: [[events/2007-01-la-get-together|Los Angeles Microformats Get Together]]&lt;br /&gt;
* 2007-01-18: [[events/2007-01-18-sf-microformats-dinner|San Francisco Microformats Dinner]] 6pm-? @ Nova on 2nd street. Details inside.&lt;br /&gt;
* 2007-01-03: [http://eventful.com/events/E0-001-002386631-6 Lancement du projet 'Cette Semaine en MicroFormats'] in Paris, France.&lt;br /&gt;
&lt;br /&gt;
==2006==&lt;br /&gt;
* 2006-11-17 Jeremy Keith presented [http://refresh06.com/schedule/topics/fri_jeremy.html Getting Microformats ] at [http://refresh06.com/ Refresh Web Standards Conference] in Orlando, Florida.&lt;br /&gt;
* 2006-11-11 : Microformats talk / workshop at [http://barcamp.org/BarCampParis7 Barcamp Paris 7], Frédéric de Villamil&lt;br /&gt;
* 2006-10-25 : [http://www.open-standards.com/tutorials.html Microformats half day workshop with John Allsopp at Open Standards, Sydney]&lt;br /&gt;
* 2006-10-26 : [http://www.open-standards.com/agenda.html Microformats presentation - John Allsopp at Open Standards, Sydney]&lt;br /&gt;
* 2006-10-19: [[events/2006-10-19-wsg-microformats-meetup|Web Standards Group London Meetup, Microformats Special]]&lt;br /&gt;
* 2006-10-11: 2pm-3pm &amp;quot;[http://www.socialtext.net/office20/index.cgi?industry_standards_for_office_2_0 Industry Standards for Office 2.0]&amp;quot;, [http://www.office20con.com/ Office 2.0 conference], Conservatory Room, 4th Floor, [http://www.starwoodhotels.com/stregis/property/overview/index.html?propertyID=1511 St. Regis Hotel, 125 3rd St., San Francisco, CA 94103]. Panel moderated by Tantek Çelik. Narenda of 83degrees/30boxes discussed importance and support of [[hcalendar|hCalendar]].&lt;br /&gt;
* 2006-10-07: 3:30pm-4pm [http://upcoming.org/event/114735 Microformats 101 session at Silicon Valley Code Camp] at Foothill College room 4221, Los Altos Hills, CA, USA&lt;br /&gt;
** presentation: http://tantek.com/presentations/2006/10/microformats-101&lt;br /&gt;
* 2006-10-05, [http://molly.com/about.php Molly E. Holzschlag] and [http://www.malarkey.co.uk/The_Stuff_and_Nonsense_team.html#clarke Andy Clarke] present [http://www.fundamentosweb.org/2006/programa/index.html.en Workshop: Designing for Web 2.0] at [http://www.fundamentosweb.org/2006/ Fundamentos Web 2006] in Oviedo, Spain&lt;br /&gt;
* 2006-10-04, [http://molly.com/about.php Molly E. Holzschlag] presents [http://www.fundamentosweb.org/2006/programa/index.html.en The True Value of Microformats] at [http://www.fundamentosweb.org/2006/ Fundamentos Web 2006] in Oviedo, Spain&lt;br /&gt;
* 2006-09-30, 8:00PM-late [[events/2006-09-30-london-microformats-vevent|London Microformats vEvent]] social.&lt;br /&gt;
* 2006-09-30 and 2006-10-01, 10am 09-30 to 5pm 10-01 [[events/2006-09-30-barcampmilwaukee|BarCampMilwaukee]].&lt;br /&gt;
* 2006-09-29, 2:45-3:30PM John Allsopp spoke on Microformats at [http://www.webdirections.org Web Directions] in Sydney, Australia&lt;br /&gt;
** photos: [http://flickr.com/photos/tags/wd06microformats wd06microformats on Flickr]&lt;br /&gt;
* 2006-09-23 10:00 [http://drupalcon.org/node/36 Microformats and Drupal] at drupalcon in Brussels&lt;br /&gt;
* 2006-09-19, 10:00-10:40AM Brian Suda presents [http://conferences.oreillynet.com/cs/euos2006/view/e_sess/9508 Microformats: Web of Data] at at [[events/2006-09-19-eurooscon|EuroOSCon06]]&lt;br /&gt;
* 2006-09-16 : [http://barcamp.org/BarCampParis4 BarCampParis4]. [http://fredericdevillamil.com/ Frédéric de Villamil].&lt;br /&gt;
* 2006-09-13: [[events/2006-09-13-future-of-web-apps-microformats|The Future of Web Apps: Best practice with microformats]]&lt;br /&gt;
* 2006-09-08 [[events/2006-09-08-brighton-microformats-picnic|Brighton Microformats Picnic]] during the lunch break of d.Construct.&lt;br /&gt;
* 2006-09-02 - 2006-09-03: [http://barcamp.org/BarCampLondon BarCampLondon] proposed microformats sessions.&lt;br /&gt;
* 2006-08-25 - 2006-08-27: [http://barcamp.org/BarCampEarth BarCampEarth], in particular [http://barcamp.org/BarCampTexas BarCampTexas], proposed microformats sessions.&lt;br /&gt;
* 2006-08-26 : [http://barcamp.org/BarCampParis3 BarCampParis3]. [http://fredericdevillamil.com/articles/2006/08/24/barcamp-earth-et-barcamp-paris-les-26-et-27-ao%C3%BBt-2006#comments Frédéric de Villamil].&lt;br /&gt;
* 2006-08-22 : [http://www.darowski.com/tracesofinspiration/2006/08/24/webvisions-2006-recap-my-presentation/ WebVisions 2006 Recap] with section on Microformats (beginning with slide 26) by Adam Darowski at [http://aptima.com Aptima] in Woburn, MA &amp;amp; Washington, DC&lt;br /&gt;
* 2006-08-17, 7:00-8:30PM: [[events/2006-08-17-refresh-dc-microformats|M. Jackson Wilkinson speaking on Microformats]] at [http://www.refresh-dc.org Refresh DC] in Washington, DC&lt;br /&gt;
* 2006-08-17, noon @ Ming's, Palo Alto. [http://events.commerce.net/?p=81 Microformats @ Bay Area Caltech Alumni Association]&lt;br /&gt;
* 2006-08-05 5-6pm: Microformats at [http://wordcamp.org/ WordCamp], second room, Swedish American Hall, San Francisco, CA.  Discussion led by Tantek Çelik, demos by Bill Humphries (Kubrick theme with [[hatom|hAtom]]) and Erica Douglass (Countdown Plugin with [[hcalendar|hCalendar]]).&lt;br /&gt;
* 2006-08-03 4-5:30PM: [http://events.commerce.net/?p=77 Server-side Microformats Parsing and MFML] at CommerceNet in Palo Alto&lt;br /&gt;
* 2006-07-27 8-9PM [[events/2006-07-27-oscon-microformats-bof|microformats BOF at O'Reilly OSCON]], Location: Room D137-138 in the OCC.&lt;br /&gt;
* 2006-07-13: ICWE panel: &amp;quot;Web 2.0&amp;quot; Engineering with Tantek Çelik&lt;br /&gt;
* 2006-07-11: [[events/2006-07-11-an-event-apart-microformats|An Event Apart: Microformats]]&lt;br /&gt;
* 2006-07-10: 9am-12:30pm [http://www.icwe2006.org/tutorials.htm#tutorial1 ICWE Tutorial on Microformats] by Ryan King @ &amp;lt;abbr title=&amp;quot;Stanford Linear Accelerator Center&amp;quot;&amp;gt;SLAC&amp;lt;/abbr&amp;gt;&lt;br /&gt;
* 2006-06-21: [[events/2006-06-21-supernova-decentralizing-data|Supernova 2006 Decentralizing Data workshop]]&lt;br /&gt;
* 2006-06-20: Microformats.org [[events/anniversary/1|one year anniversary!]] &lt;br /&gt;
* 2006-06-16: @media conference - Hot Topics Panel (some microformats discussions). [http://www.vivabit.com/atmedia2006/blog/index.php/hot-topics-panel-videocast/ videocast].&lt;br /&gt;
* 2006-06-16: [[events/2006-06-16-atmedia-microformats|@media conference - microformats session]]&lt;br /&gt;
* 2006-06-13: [[events/2006-06-13-where-2-bof|Where 2.0 Microformats BOF II]] - developing a [[directions-examples|directions]] microformat.&lt;br /&gt;
* 2006-06-10: [http://barcamp.org/BarCampParisSiliconSentier BarCampParis]&lt;br /&gt;
* 2006-06-08 [http://glazkov.com/resources/presentations/2006-06-08-microformats/ Microformats]. [[DimitriGlazkov|Dimitri Glazkov]] talked about microformats at [http://ipsaonline.com/ IPSA] monthly meeting.&lt;br /&gt;
* 2006-05-23 - 2006-05-26: [http://www2006.org/ www2006] &lt;br /&gt;
** 2006-05-23: [http://www.blogpulse.com/www2006-workshop/ WWE 2006 | 3rd Annual Workshop on the Weblogging Ecosystem] - call for papers explicitly included &amp;quot;microformats&amp;quot;.&lt;br /&gt;
** 2006-05-24: &lt;br /&gt;
*** All day: &amp;quot;Microformats: a Pragmatic Path to the Semantic Web&amp;quot; poster (Poster ID 116, by Rohit Khare and Tantek Çelik) presentation at Strathblane Hall.&lt;br /&gt;
*** 14:00-15:30: Brian Suda presented a microformats demo ([http://www2006.org/programme/item.php?id=d7 Microformats, converting XHTML to vCards and vCalendars]) in the NextWave developer track session. More information about the presentation is available at [[events/www2006]].&lt;br /&gt;
** 2006-05-25 10:30-13:30: Molly E. Holzschlag presented a half-day &amp;quot;Practical Microformats&amp;quot; developer tutorial.&lt;br /&gt;
* 2006-05-22: [http://refreshedinburgh.org/talks/introducing-microformats-your-web-site/ Refresh Edinburgh] Introducing microformats into your website, May 22nd 8pm-9pm.&lt;br /&gt;
* 2006-05-16 - 2006-05-19: [http://xtech.org/ XTech 2006 Conference]&lt;br /&gt;
** 2006-05-16 09:00-12:30: Half-day tutorial: [http://xtech06.usefulinc.com/content/tutorials#microformats Microformats from the Ground Up] at Volmer 3. [http://theryanking.com/presentations/2006/xtech/tutorial/ presentation slides].&lt;br /&gt;
** 2006-05-18 [http://xtech06.usefulinc.com/schedule#s2006-05-18-14:00 14:00-14:45]: [http://xtech06.usefulinc.com/schedule/detail/148 The Intelligent Design of Microformats]&lt;br /&gt;
* 2006-04-23 - 2006-04-24 [http://cmprofessionals.org/events/summit/#06spring CM Pros Summit] [http://www.nateaune.com Nate Aune] presented a talk &amp;quot;Microformats and the Future of Syndication&amp;quot; from 16:30-17:30 at the Sheraton Palace Hotel in San Francisco.&lt;br /&gt;
* 2006-03-22: [[events/2006-03-22-mix06-microformats|Mix06 Microformats session discussions]]&lt;br /&gt;
* 2006-03-21: [[events/2006-03-21-mix06-microformats|Mix06 Microformats session discussions]]&lt;br /&gt;
* 2006-03-20: [[events/2006-03-20-mix06-microformats|Mix06 Keynote with Tim O'Reilly and Bill Gates discussing microformats]]&lt;br /&gt;
* 2006-03-14: [[events/2006-03-14-sxsw-modulet|Convincing Your Company to Embrace Web Standards at SxSW Interactive]]&lt;br /&gt;
* 2006-03-13: [[events/2006-03-13-sxsw-microformats|Microformats at SXSW Interactive]]&lt;br /&gt;
* 2006-03-07: [[events/2006-03-07-etech-microformats|Microformats at O'Reilly ETech]]&lt;br /&gt;
* 2006-03-02: [http://esw.w3.org/topic/SwigAtTp2006 Semantic Web Interest Group meeting at W3C Technical Plenary], specifically, 1.30-3.30pm Dan Connolly on using &amp;quot;GRDDL&amp;quot; to parse microformats&lt;br /&gt;
* 2006-03-01: [[events/2006-03-01-w3c-plenary-microformats|Microformats panel at W3C Plenary Day]]&lt;br /&gt;
&lt;br /&gt;
== Quicktime Broadcaster Notes ==&lt;br /&gt;
&lt;br /&gt;
For setting up a mac laptop with an iSight and QT Broadcaster in order to publish live audio/video from events.&lt;br /&gt;
&lt;br /&gt;
# Make sure you have the necessary equipment and software installed&lt;br /&gt;
#* A Macintosh running OSX 10.3.9 or later&lt;br /&gt;
#* Quicktime 7 - get it from http://www.apple.com/quicktime/&lt;br /&gt;
#* Quicktime Broadcaster - get it from http://www.apple.com/quicktime/broadcaster/&lt;br /&gt;
#* An iSight or digital video camera with firewire connection&lt;br /&gt;
# Get a broadcast template document from someone (see KevinMarks for example)&lt;br /&gt;
# Open that, then change the info in the 'Network' pane that has his name etc in it.&lt;br /&gt;
# Check the video and audio panes are using your iSight&lt;br /&gt;
# Another tip is that the standalone thingy for the iSight can be more useful than the screen-top one if you have a desk, as that way it picks up less typing noise and wobbles&lt;br /&gt;
# I find plugging in headphones is a good idea, as you can then monitor and not get howlround&lt;br /&gt;
&lt;br /&gt;
http://microformats.org/media/broadcast.mov&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2007-04-17-web-2-expo&amp;diff=15582</id>
		<title>events/2007-04-17-web-2-expo</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2007-04-17-web-2-expo&amp;diff=15582"/>
		<updated>2007-03-08T20:30:24Z</updated>

		<summary type="html">&lt;p&gt;Rohit: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Microformats - at Web 2.0 Expo 2007&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
One of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
Tag: &amp;quot;[http://technorati.com/tags/microformatsweb2expo microformatsweb2expo]&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
=Microformats, Much More Than Just Promise=&lt;br /&gt;
== Summary ==&lt;br /&gt;
Microformats are community-generated standards for identifying types of data in normal web pages. How do these rapidly spreading conventions make it easier to design interactions for the Web? How can you create scripts or stylesheets to leverage these simple formats, and what new applications exist that haven't been explored?&lt;br /&gt;
&lt;br /&gt;
== Where ==&lt;br /&gt;
[http://www.web2expo.com/pub/w/53/venue.html Moscone West, San Francisco (rm 3014)]&lt;br /&gt;
&lt;br /&gt;
== When ==&lt;br /&gt;
[http://www.web2expo.com/cs/webex2007/view/e_sess/11831 Session Details]&lt;br /&gt;
&lt;br /&gt;
2007-04-17 &lt;br /&gt;
* 1.30pm-2.20pm&lt;br /&gt;
&lt;br /&gt;
== Speakers ==&lt;br /&gt;
*John Allsopp&lt;br /&gt;
&lt;br /&gt;
=Microformats for Web Services and Portable Content=&lt;br /&gt;
&lt;br /&gt;
== Summary ==&lt;br /&gt;
Microformats are all the rage, but what are the practical applications? This presentation will show some examples of web services and how to share content easily using microformats. We'll show how microformats are &amp;quot;born,&amp;quot; how to implement them, and how to build web services and products around them. &lt;br /&gt;
&lt;br /&gt;
Track: Web 2.0 Fundamentals&lt;br /&gt;
&lt;br /&gt;
== Where ==&lt;br /&gt;
[http://www.web2expo.com/pub/w/53/venue.html Moscone West, San Francisco (rm 2004)]&lt;br /&gt;
&lt;br /&gt;
== When ==&lt;br /&gt;
[http://conferences.oreillynet.com/cs/webex2007/view/e_sess/11377 Session Details]&lt;br /&gt;
&lt;br /&gt;
2007-04-16&lt;br /&gt;
* 9:00am - 9:50am&lt;br /&gt;
&lt;br /&gt;
== Speakers ==&lt;br /&gt;
*Kevin Lawver, Principal Software Engineer, AOL&lt;br /&gt;
&lt;br /&gt;
=Audience=&lt;br /&gt;
== Attending ==&lt;br /&gt;
Please add your name here if you attended these sessions, speaking or not.&lt;br /&gt;
&lt;br /&gt;
*John Allsopp (presenting)&lt;br /&gt;
*...&lt;br /&gt;
&lt;br /&gt;
== Session Comments and Q&amp;amp;A ==&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Photos ==&lt;br /&gt;
Please tag with &amp;quot;[http://flickr.com/photos/tags/microformatswdn2007/ microformatsweb2expo]&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Blog Posts ==&lt;br /&gt;
Please tag with &amp;quot;[http://technorati.com/tags/microformatswdn2007 microformatsweb2expo]&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Podcasts == &lt;br /&gt;
* Coming!&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=14122</id>
		<title>events/2007-03-27-ETech07Proposal</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=14122"/>
		<updated>2006-10-10T03:29:38Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* '''micromagic:''' loosely joining small pieces of the Web with microformats */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The message we'd like to convey by proposing a sequel at ETech in 2007 is: '''microformats make integration easy'''. It's not just demos of lone sites that support microformats this year; it's about the [http://conferences.oreillynet.com/et2007/ magic] of connecting two (or more) Web-based services... &lt;br /&gt;
&lt;br /&gt;
= '''micromagic:''' loosely joining small pieces of the Web with microformats =&lt;br /&gt;
(headings below from the ETech 2007 proposal template)&lt;br /&gt;
&lt;br /&gt;
''Audience Type:'' web designers, programmers, managers, other.&lt;br /&gt;
&lt;br /&gt;
''Brief Description:'' &lt;br /&gt;
Microformats are a clever adaptation of semantic XHTML that makes it easier to share structured information such as tags, calendar entries, contact information, and reviews. This demo session will show off real products that are using microformats to connect multiple Web services, such as Live Clipboard, Pingerati, and Flickr geotagging. (50 words)&lt;br /&gt;
&lt;br /&gt;
''Abstract or Full Description:'' Maximum 250 words, about 35 lines. The abstract is displayed online.&lt;br /&gt;
&lt;br /&gt;
Microformats have already made it easier for bloggers and other publishers to describe their social relationships (XFN), make event descriptions searchable by location and time (hCalendar), offer their contact information (hCard), and share their opinions (hReview). They use existing standards and practices in XHTML to get the job done: link relationships, element classes, outline structures, and abbreviations to name a few.&lt;br /&gt;
&lt;br /&gt;
Last year, a packed show-and-tell by half a dozen developers demonstrated the ease and power of publishing microformats; this year we want to share a new level of magic: integrating and automating multiple services.&lt;br /&gt;
&lt;br /&gt;
Imagine surfing across a concert listing, snapping a photo of the band, and having it automatically posted to your blog, plotted on the live tour bus map, and displayed next to an album review at a music shop. This isn’t just syndicating passive data; it’s a new way of &amp;quot;wiring the web.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* ''Live Clipboard'' technology debuted at ETech 2006 in a presentation by Ray Ozzie; it has rapidly matured and shipped as Live Writer wysiwyg plugins for calendar events and reviews. &lt;br /&gt;
&lt;br /&gt;
* ''Pingerati'' receives updates of pages with microformat data, and passes them on to services that are interested in them within seconds. It's already used to connect indexing services like Eventful, Upcoming, and Edgeio.&lt;br /&gt;
&lt;br /&gt;
* ''Geotagging'' is a recent addition for GPS coordinates that's recombined with multimedia elements to create new abstractions like maps of Flickr photos and Zonetags.&lt;br /&gt;
&lt;br /&gt;
[Additional speakers and demos to be added from the microformats-dev list in early 2007]&lt;br /&gt;
&lt;br /&gt;
''Co-presenters:'' Tantek Çelik, Rohit Khare, Kevin Marks (subject to change as late-breaking demos emerge &amp;amp; volunteer)&lt;br /&gt;
&lt;br /&gt;
= ETech 2006 Session Description =&lt;br /&gt;
[http://conferences.oreillynet.com/cs/et2006/view/e_sess/8292 Microformats] with Tantek Çelik, Technorati; Shawn Carnell, AOL; Yoz Grahame, Ning; Joe Gregorio, AtomPub Workgroup; Rohit Khare, CommerceNet Labs; Kevin Marks, Technorati; Mark Pilgrim, IBM.&lt;br /&gt;
&lt;br /&gt;
Microformats are simple semantic XHTML extensions for expressing numerous common concepts (people, events, etc.) on today's Web. Tantek Çelik will provide a short introduction, followed by a series of speakers performing lightning demonstrations of their microformats enabled tools, sites, hacks and other implementations.&lt;br /&gt;
&lt;br /&gt;
Date: Tuesday, March 07, 2006&lt;br /&gt;
&lt;br /&gt;
Time: 5:30pm - 6:15pm&lt;br /&gt;
&lt;br /&gt;
Location: Elizabeth Ballroom A&lt;br /&gt;
&lt;br /&gt;
== Original ETech 2006 Proposal Text ==&lt;br /&gt;
Title: Microformats: Recycling XHTML&lt;br /&gt;
&lt;br /&gt;
Conference: O'Reilly Emerging Technology Conference 2006&lt;br /&gt;
Type/Duration: 90m&lt;br /&gt;
&lt;br /&gt;
Audience Level: General&lt;br /&gt;
&lt;br /&gt;
Audience Type: web designers, programmers, educators&lt;br /&gt;
&lt;br /&gt;
Short Description:&lt;br /&gt;
Microformats are a clever adaptation of semantic XHTML that makes it easier to publish, index, and extract semi-structured information such as tags, calendar entries, contact information, and reviews on the Web. Microformats can make your existing XHTML easier to recycle into new services and applications.&lt;br /&gt;
&lt;br /&gt;
Description:&lt;br /&gt;
Microformats have already made it easier for bloggers and other publishers to describe their social relationships (XFN), make event descriptions searchable by location and time (hCalendar), offer their contact information (hCard), and share their opinions (hReview). They use existing standards and practices in XHTML to get the job done: link relationships, element classes, outline structures, and abbreviations to name a few.&lt;br /&gt;
&lt;br /&gt;
By avoiding the complexity of managing multiple metadata formats in multiple files, microformats make it easier for readers of XHTML pages to recycle the structured data that's hidden in plain view. This makes microformats an exciting approach towards achieving the benefits of the Semantic Web: better search, personalization, and reuse of knowledge across new services and applications.&lt;br /&gt;
&lt;br /&gt;
This session presents four perspectives: the leader of the community developing the specifications; a producer that added hCalendar microformat support to their site in an hour; a consumer who wrote a parser in JavaScript over a weekend (complete with test cases!); and a Web pioneer who has been deeply involved in the development of HTML and RDF.&lt;br /&gt;
&lt;br /&gt;
While it can be easy for publishers to generate microformatted XHTML, it requires more work from programmers than a comparable bespoke XML format would. So far, new microformats have also introduced new parsing rules that inhibit the development of generic processing tools. In closing, we will also discuss the future of microformats in light of the old saw, &amp;quot;Sure, it works in practice -- but does it work in *theory*?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Speaker bio: Rohit Khare is an award-winning researcher in the fields of Internet protocols and decentralized systems. He founded KnowNow in 2000 and previously worked on Internet standards at W3C and MCI. He founded 4K Associates and edited the O'Reilly Web Journal. He received his Ph.D. in Software Engineering from U.C. Irvine in 2003.&lt;br /&gt;
&lt;br /&gt;
Co-Presenters: Tantek Celik, Andy Baio, Mark Pilgrim, Dan Connolly (Invited)&lt;br /&gt;
&lt;br /&gt;
Speaker notes and comments: We'd consider alternative presentation formats for discussing the latest microformats tools and the implications of the community movement around microformats, such as a panel debate.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=9364</id>
		<title>events/2007-03-27-ETech07Proposal</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=9364"/>
		<updated>2006-10-10T02:33:48Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* '''micromagic:''' loosely joining small pieces of the Web with microformats */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The message we'd like to convey by proposing a sequel at ETech in 2007 is: '''microformats make integration easy'''. It's not just demos of lone sites that support microformats this year; it's about the [http://conferences.oreillynet.com/et2007/ magic] of connecting two (or more) Web-based services... &lt;br /&gt;
&lt;br /&gt;
= '''micromagic:''' loosely joining small pieces of the Web with microformats =&lt;br /&gt;
(headings below from the ETech 2007 proposal template)&lt;br /&gt;
&lt;br /&gt;
''Audience Type:'' web designers, programmers, managers, other.&lt;br /&gt;
&lt;br /&gt;
''Brief Description:'' &lt;br /&gt;
Microformats are a clever adaptation of semantic XHTML that makes it easier to share structured information such as tags, calendar entries, contact information, and reviews. This demo session will show off real products that are using microformats to connect multiple Web services, such as Live Clipboard, Pingerati, and Flickr geotagging. (50 words)&lt;br /&gt;
&lt;br /&gt;
''Abstract or Full Description:'' Maximum 250 words, about 35 lines. The abstract is displayed online.&lt;br /&gt;
&lt;br /&gt;
Microformats have already made it easier for bloggers and other publishers to describe their social relationships (XFN), make event descriptions searchable by location and time (hCalendar), offer their contact information (hCard), and share their opinions (hReview). They use existing standards and practices in XHTML to get the job done: link relationships, element classes, outline structures, and abbreviations to name a few.&lt;br /&gt;
&lt;br /&gt;
Last year, a packed show-and-tell by half a dozen developers demonstrated the ease and power of publishing microformats; this year we want to share a new level of magic: integrating and automating multiple services.&lt;br /&gt;
&lt;br /&gt;
Imagine surfing across a concert listing, snapping a photo of the band, and having it automatically posted to your blog, plotted on the live tour bus map, and displayed next to an album review at a music shop. This isn’t just syndicating passive data; it’s a new way of &amp;quot;wiring the web.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* ''Live Clipboard'' technology debuted at ETech 2006 in a presentation by Ray Ozzie; it has rapidly matured and shipped as Live Writer wysiwyg plugins for calendar events and reviews. &lt;br /&gt;
&lt;br /&gt;
* ''Pingerati'' receives updates of pages with microformat data, and passes them on to services that are interested in them within seconds. It's already used to connect indexing services like Eventful, Upcoming, and Edgeio.&lt;br /&gt;
&lt;br /&gt;
* ''Geotagging'' is a recent addition for GPS coordinates that's recombined with multimedia elements to create new abstractions like maps of Flickr photos and Zonetags.&lt;br /&gt;
&lt;br /&gt;
''Co-presenters:'' Tantek Çelik, Rohit Khare, Kevin Marks (subject to change as late-breaking demos emerge &amp;amp; volunteer)&lt;br /&gt;
&lt;br /&gt;
= ETech 2006 Session Description =&lt;br /&gt;
[http://conferences.oreillynet.com/cs/et2006/view/e_sess/8292 Microformats] with Tantek Çelik, Technorati; Shawn Carnell, AOL; Yoz Grahame, Ning; Joe Gregorio, AtomPub Workgroup; Rohit Khare, CommerceNet Labs; Kevin Marks, Technorati; Mark Pilgrim, IBM.&lt;br /&gt;
&lt;br /&gt;
Microformats are simple semantic XHTML extensions for expressing numerous common concepts (people, events, etc.) on today's Web. Tantek Çelik will provide a short introduction, followed by a series of speakers performing lightning demonstrations of their microformats enabled tools, sites, hacks and other implementations.&lt;br /&gt;
&lt;br /&gt;
Date: Tuesday, March 07, 2006&lt;br /&gt;
&lt;br /&gt;
Time: 5:30pm - 6:15pm&lt;br /&gt;
&lt;br /&gt;
Location: Elizabeth Ballroom A&lt;br /&gt;
&lt;br /&gt;
== Original ETech 2006 Proposal Text ==&lt;br /&gt;
Title: Microformats: Recycling XHTML&lt;br /&gt;
&lt;br /&gt;
Conference: O'Reilly Emerging Technology Conference 2006&lt;br /&gt;
Type/Duration: 90m&lt;br /&gt;
&lt;br /&gt;
Audience Level: General&lt;br /&gt;
&lt;br /&gt;
Audience Type: web designers, programmers, educators&lt;br /&gt;
&lt;br /&gt;
Short Description:&lt;br /&gt;
Microformats are a clever adaptation of semantic XHTML that makes it easier to publish, index, and extract semi-structured information such as tags, calendar entries, contact information, and reviews on the Web. Microformats can make your existing XHTML easier to recycle into new services and applications.&lt;br /&gt;
&lt;br /&gt;
Description:&lt;br /&gt;
Microformats have already made it easier for bloggers and other publishers to describe their social relationships (XFN), make event descriptions searchable by location and time (hCalendar), offer their contact information (hCard), and share their opinions (hReview). They use existing standards and practices in XHTML to get the job done: link relationships, element classes, outline structures, and abbreviations to name a few.&lt;br /&gt;
&lt;br /&gt;
By avoiding the complexity of managing multiple metadata formats in multiple files, microformats make it easier for readers of XHTML pages to recycle the structured data that's hidden in plain view. This makes microformats an exciting approach towards achieving the benefits of the Semantic Web: better search, personalization, and reuse of knowledge across new services and applications.&lt;br /&gt;
&lt;br /&gt;
This session presents four perspectives: the leader of the community developing the specifications; a producer that added hCalendar microformat support to their site in an hour; a consumer who wrote a parser in JavaScript over a weekend (complete with test cases!); and a Web pioneer who has been deeply involved in the development of HTML and RDF.&lt;br /&gt;
&lt;br /&gt;
While it can be easy for publishers to generate microformatted XHTML, it requires more work from programmers than a comparable bespoke XML format would. So far, new microformats have also introduced new parsing rules that inhibit the development of generic processing tools. In closing, we will also discuss the future of microformats in light of the old saw, &amp;quot;Sure, it works in practice -- but does it work in *theory*?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Speaker bio: Rohit Khare is an award-winning researcher in the fields of Internet protocols and decentralized systems. He founded KnowNow in 2000 and previously worked on Internet standards at W3C and MCI. He founded 4K Associates and edited the O'Reilly Web Journal. He received his Ph.D. in Software Engineering from U.C. Irvine in 2003.&lt;br /&gt;
&lt;br /&gt;
Co-Presenters: Tantek Celik, Andy Baio, Mark Pilgrim, Dan Connolly (Invited)&lt;br /&gt;
&lt;br /&gt;
Speaker notes and comments: We'd consider alternative presentation formats for discussing the latest microformats tools and the implications of the community movement around microformats, such as a panel debate.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=9363</id>
		<title>events/2007-03-27-ETech07Proposal</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=9363"/>
		<updated>2006-10-10T02:27:30Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* '''micromagic:''' loosely joining small pieces of the Web with microformats */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The message we'd like to convey by proposing a sequel at ETech in 2007 is: '''microformats make integration easy'''. It's not just demos of lone sites that support microformats this year; it's about the [http://conferences.oreillynet.com/et2007/ magic] of connecting two (or more) Web-based services... &lt;br /&gt;
&lt;br /&gt;
= '''micromagic:''' loosely joining small pieces of the Web with microformats =&lt;br /&gt;
(headings below from the ETech 2007 proposal template)&lt;br /&gt;
&lt;br /&gt;
''Audience Type:'' web designers, programmers, managers, other.&lt;br /&gt;
&lt;br /&gt;
''Brief Description:'' &lt;br /&gt;
Microformats are a clever adaptation of semantic XHTML that makes it easier to share structured information such as tags, calendar entries, contact information, and reviews. This demo session will show off real products that are using microformats to connect multiple Web services, such as Live Clipboard, Pingerati, and Flickr geotagging. (50 words)&lt;br /&gt;
&lt;br /&gt;
''Abstract or Full Description:'' Maximum 250 words, about 35 lines. The abstract is displayed online.&lt;br /&gt;
&lt;br /&gt;
Microformats have already made it easier for bloggers and other publishers to describe their social relationships (XFN), make event descriptions searchable by location and time (hCalendar), offer their contact information (hCard), and share their opinions (hReview). They use existing standards and practices in XHTML to get the job done: link relationships, element classes, outline structures, and abbreviations to name a few.&lt;br /&gt;
&lt;br /&gt;
Last year, a packed show-and-tell by half a dozen developers demonstrated the ease and power of publishing microformats. The rapid adoption of microformats in 2006 set the stage for a new kind of magic: integrating and automating multiple services.&lt;br /&gt;
&lt;br /&gt;
Imagine surfing across a concert listing, snapping a photo of the band, and having it automatically posted to your blog, plotted on the live tour bus map, and displayed next to an album review at a music shop. This isn’t just syndicating semi-structured data; it’s a new way of &amp;quot;wiring the web.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* ''Live Clipboard'' technology debuted at ETech 2006 in a presentation by Ray Ozzie; it has rapidly matured and shipped as Live Writer wysiwyg plugins for calendar events and reviews. &lt;br /&gt;
&lt;br /&gt;
* ''Pingerati'' receives updates of pages with microformat data, and passes them on to services that are interested in them within seconds. It's primarily used to connect search services that index microformats like Eventful, Upcoming, and Edgeio. The 'ping to update' model has worked well with weblogs, and this extends it to connect other event-driven services. &lt;br /&gt;
&lt;br /&gt;
* ''Geotagging'' is a recent addition to the stable of microformats that has most famously been used to map photos on Flickr, zonetags, and by other GPS-driven services.&lt;br /&gt;
&lt;br /&gt;
''Co-presenters:'' Tantek Çelik, Rohit Khare, Kevin Marks (subject to change as late-breaking demos emerge &amp;amp; volunteer)&lt;br /&gt;
&lt;br /&gt;
= ETech 2006 Session Description =&lt;br /&gt;
[http://conferences.oreillynet.com/cs/et2006/view/e_sess/8292 Microformats] with Tantek Çelik, Technorati; Shawn Carnell, AOL; Yoz Grahame, Ning; Joe Gregorio, AtomPub Workgroup; Rohit Khare, CommerceNet Labs; Kevin Marks, Technorati; Mark Pilgrim, IBM.&lt;br /&gt;
&lt;br /&gt;
Microformats are simple semantic XHTML extensions for expressing numerous common concepts (people, events, etc.) on today's Web. Tantek Çelik will provide a short introduction, followed by a series of speakers performing lightning demonstrations of their microformats enabled tools, sites, hacks and other implementations.&lt;br /&gt;
&lt;br /&gt;
Date: Tuesday, March 07, 2006&lt;br /&gt;
&lt;br /&gt;
Time: 5:30pm - 6:15pm&lt;br /&gt;
&lt;br /&gt;
Location: Elizabeth Ballroom A&lt;br /&gt;
&lt;br /&gt;
== Original ETech 2006 Proposal Text ==&lt;br /&gt;
Title: Microformats: Recycling XHTML&lt;br /&gt;
&lt;br /&gt;
Conference: O'Reilly Emerging Technology Conference 2006&lt;br /&gt;
Type/Duration: 90m&lt;br /&gt;
&lt;br /&gt;
Audience Level: General&lt;br /&gt;
&lt;br /&gt;
Audience Type: web designers, programmers, educators&lt;br /&gt;
&lt;br /&gt;
Short Description:&lt;br /&gt;
Microformats are a clever adaptation of semantic XHTML that makes it easier to publish, index, and extract semi-structured information such as tags, calendar entries, contact information, and reviews on the Web. Microformats can make your existing XHTML easier to recycle into new services and applications.&lt;br /&gt;
&lt;br /&gt;
Description:&lt;br /&gt;
Microformats have already made it easier for bloggers and other publishers to describe their social relationships (XFN), make event descriptions searchable by location and time (hCalendar), offer their contact information (hCard), and share their opinions (hReview). They use existing standards and practices in XHTML to get the job done: link relationships, element classes, outline structures, and abbreviations to name a few.&lt;br /&gt;
&lt;br /&gt;
By avoiding the complexity of managing multiple metadata formats in multiple files, microformats make it easier for readers of XHTML pages to recycle the structured data that's hidden in plain view. This makes microformats an exciting approach towards achieving the benefits of the Semantic Web: better search, personalization, and reuse of knowledge across new services and applications.&lt;br /&gt;
&lt;br /&gt;
This session presents four perspectives: the leader of the community developing the specifications; a producer that added hCalendar microformat support to their site in an hour; a consumer who wrote a parser in JavaScript over a weekend (complete with test cases!); and a Web pioneer who has been deeply involved in the development of HTML and RDF.&lt;br /&gt;
&lt;br /&gt;
While it can be easy for publishers to generate microformatted XHTML, it requires more work from programmers than a comparable bespoke XML format would. So far, new microformats have also introduced new parsing rules that inhibit the development of generic processing tools. In closing, we will also discuss the future of microformats in light of the old saw, &amp;quot;Sure, it works in practice -- but does it work in *theory*?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Speaker bio: Rohit Khare is an award-winning researcher in the fields of Internet protocols and decentralized systems. He founded KnowNow in 2000 and previously worked on Internet standards at W3C and MCI. He founded 4K Associates and edited the O'Reilly Web Journal. He received his Ph.D. in Software Engineering from U.C. Irvine in 2003.&lt;br /&gt;
&lt;br /&gt;
Co-Presenters: Tantek Celik, Andy Baio, Mark Pilgrim, Dan Connolly (Invited)&lt;br /&gt;
&lt;br /&gt;
Speaker notes and comments: We'd consider alternative presentation formats for discussing the latest microformats tools and the implications of the community movement around microformats, such as a panel debate.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=9362</id>
		<title>events/2007-03-27-ETech07Proposal</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=9362"/>
		<updated>2006-10-10T02:27:12Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* '''micromagic:''' loosely joining small pieces of the Web with microformats */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The message we'd like to convey by proposing a sequel at ETech in 2007 is: '''microformats make integration easy'''. It's not just demos of lone sites that support microformats this year; it's about the [http://conferences.oreillynet.com/et2007/ magic] of connecting two (or more) Web-based services... &lt;br /&gt;
&lt;br /&gt;
= '''micromagic:''' loosely joining small pieces of the Web with microformats =&lt;br /&gt;
(headings below from the ETech 2007 proposal template)&lt;br /&gt;
&lt;br /&gt;
''Audience Type:'' web designers, programmers, managers, other.&lt;br /&gt;
&lt;br /&gt;
''Brief Description:'' &lt;br /&gt;
Microformats are a clever adaptation of semantic XHTML that makes it easier to share structured information such as tags, calendar entries, contact information, and reviews. This demo session will show off real products that are using microformats to connect multiple Web services, such as Live Clipboard, Pingerati, and Flickr geotagging. (50 words)&lt;br /&gt;
&lt;br /&gt;
''Abstract or Full Description:'' Maximum 250 words, about 35 lines. The abstract is displayed online.&lt;br /&gt;
&lt;br /&gt;
Microformats have already made it easier for bloggers and other publishers to describe their social relationships (XFN), make event descriptions searchable by location and time (hCalendar), offer their contact information (hCard), and share their opinions (hReview). They use existing standards and practices in XHTML to get the job done: link relationships, element classes, outline structures, and abbreviations to name a few.&lt;br /&gt;
&lt;br /&gt;
Last year, a packed show-and-tell by half a dozen developers demonstrated the ease and power of publishing microformats. The rapid adoption of microformats in 2006 set the stage for a new kind of magic: integrating and automating multiple services.&lt;br /&gt;
&lt;br /&gt;
Imagine surfing across a concert listing, snapping a photo of the band, and having it automatically posted to your blog, plotted on the live tour bus map, and displayed next to an album review at a music shop. This isn’t just syndicating semi-structured data; it’s a new way of &amp;quot;wiring the web.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
    * ''Live Clipboard'' technology debuted at ETech 2006 in a presentation by Ray Ozzie; it has rapidly matured and shipped as Live Writer wysiwyg plugins for calendar events and reviews. &lt;br /&gt;
&lt;br /&gt;
    * ''Pingerati'' receives updates of pages with microformat data, and passes them on to services that are interested in them within seconds. It's primarily used to connect search services that index microformats like Eventful, Upcoming, and Edgeio. The 'ping to update' model has worked well with weblogs, and this extends it to connect other event-driven services. &lt;br /&gt;
&lt;br /&gt;
    * ''Geotagging'' is a recent addition to the stable of microformats that has most famously been used to map photos on Flickr, zonetags, and by other GPS-driven services.&lt;br /&gt;
&lt;br /&gt;
''Co-presenters:'' Tantek Çelik, Rohit Khare, Kevin Marks (subject to change as late-breaking demos emerge &amp;amp; volunteer)&lt;br /&gt;
&lt;br /&gt;
= ETech 2006 Session Description =&lt;br /&gt;
[http://conferences.oreillynet.com/cs/et2006/view/e_sess/8292 Microformats] with Tantek Çelik, Technorati; Shawn Carnell, AOL; Yoz Grahame, Ning; Joe Gregorio, AtomPub Workgroup; Rohit Khare, CommerceNet Labs; Kevin Marks, Technorati; Mark Pilgrim, IBM.&lt;br /&gt;
&lt;br /&gt;
Microformats are simple semantic XHTML extensions for expressing numerous common concepts (people, events, etc.) on today's Web. Tantek Çelik will provide a short introduction, followed by a series of speakers performing lightning demonstrations of their microformats enabled tools, sites, hacks and other implementations.&lt;br /&gt;
&lt;br /&gt;
Date: Tuesday, March 07, 2006&lt;br /&gt;
&lt;br /&gt;
Time: 5:30pm - 6:15pm&lt;br /&gt;
&lt;br /&gt;
Location: Elizabeth Ballroom A&lt;br /&gt;
&lt;br /&gt;
== Original ETech 2006 Proposal Text ==&lt;br /&gt;
Title: Microformats: Recycling XHTML&lt;br /&gt;
&lt;br /&gt;
Conference: O'Reilly Emerging Technology Conference 2006&lt;br /&gt;
Type/Duration: 90m&lt;br /&gt;
&lt;br /&gt;
Audience Level: General&lt;br /&gt;
&lt;br /&gt;
Audience Type: web designers, programmers, educators&lt;br /&gt;
&lt;br /&gt;
Short Description:&lt;br /&gt;
Microformats are a clever adaptation of semantic XHTML that makes it easier to publish, index, and extract semi-structured information such as tags, calendar entries, contact information, and reviews on the Web. Microformats can make your existing XHTML easier to recycle into new services and applications.&lt;br /&gt;
&lt;br /&gt;
Description:&lt;br /&gt;
Microformats have already made it easier for bloggers and other publishers to describe their social relationships (XFN), make event descriptions searchable by location and time (hCalendar), offer their contact information (hCard), and share their opinions (hReview). They use existing standards and practices in XHTML to get the job done: link relationships, element classes, outline structures, and abbreviations to name a few.&lt;br /&gt;
&lt;br /&gt;
By avoiding the complexity of managing multiple metadata formats in multiple files, microformats make it easier for readers of XHTML pages to recycle the structured data that's hidden in plain view. This makes microformats an exciting approach towards achieving the benefits of the Semantic Web: better search, personalization, and reuse of knowledge across new services and applications.&lt;br /&gt;
&lt;br /&gt;
This session presents four perspectives: the leader of the community developing the specifications; a producer that added hCalendar microformat support to their site in an hour; a consumer who wrote a parser in JavaScript over a weekend (complete with test cases!); and a Web pioneer who has been deeply involved in the development of HTML and RDF.&lt;br /&gt;
&lt;br /&gt;
While it can be easy for publishers to generate microformatted XHTML, it requires more work from programmers than a comparable bespoke XML format would. So far, new microformats have also introduced new parsing rules that inhibit the development of generic processing tools. In closing, we will also discuss the future of microformats in light of the old saw, &amp;quot;Sure, it works in practice -- but does it work in *theory*?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Speaker bio: Rohit Khare is an award-winning researcher in the fields of Internet protocols and decentralized systems. He founded KnowNow in 2000 and previously worked on Internet standards at W3C and MCI. He founded 4K Associates and edited the O'Reilly Web Journal. He received his Ph.D. in Software Engineering from U.C. Irvine in 2003.&lt;br /&gt;
&lt;br /&gt;
Co-Presenters: Tantek Celik, Andy Baio, Mark Pilgrim, Dan Connolly (Invited)&lt;br /&gt;
&lt;br /&gt;
Speaker notes and comments: We'd consider alternative presentation formats for discussing the latest microformats tools and the implications of the community movement around microformats, such as a panel debate.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=9361</id>
		<title>events/2007-03-27-ETech07Proposal</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=9361"/>
		<updated>2006-10-10T02:16:22Z</updated>

		<summary type="html">&lt;p&gt;Rohit: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The message we'd like to convey by proposing a sequel at ETech in 2007 is: '''microformats make integration easy'''. It's not just demos of lone sites that support microformats this year; it's about the [http://conferences.oreillynet.com/et2007/ magic] of connecting two (or more) Web-based services... &lt;br /&gt;
&lt;br /&gt;
= '''micromagic:''' loosely joining small pieces of the Web with microformats =&lt;br /&gt;
(headings below from the ETech 2007 proposal template)&lt;br /&gt;
&lt;br /&gt;
''Audience Type:'' web designers, programmers, managers, other.&lt;br /&gt;
&lt;br /&gt;
''Brief Description:'' &lt;br /&gt;
Microformats are a clever adaptation of semantic XHTML that makes it easier to share structured information such as tags, calendar entries, contact information, and reviews. This demo session will show off real products that are using microformats to connect multiple Web services, such as Live Clipboard, Pingerati, and Flickr geotagging. (50 words)&lt;br /&gt;
&lt;br /&gt;
''Abstract or Full Description:'' Maximum 250 words, about 35 lines. The abstract is displayed online.&lt;br /&gt;
&lt;br /&gt;
Microformats have already made it easier for bloggers and other publishers to describe their social relationships (XFN), make event descriptions searchable by location and time (hCalendar), offer their contact information (hCard), and share their opinions (hReview). They use existing standards and practices in XHTML to get the job done: link relationships, element classes, outline structures, and abbreviations to name a few.&lt;br /&gt;
&lt;br /&gt;
* ''Live Clipboard'' technology debuted at ETech 2006 in a presentation by Ray Ozzie; it has rapidly matured and shipped as Live Writer wysiwyg plugins for calendar events and reviews.&lt;br /&gt;
&lt;br /&gt;
* ''Pingerati'' receives updates of pages with microformat data, and passes them on to services that are interested in them within seconds. It's primarily used to connect search services that index microformats like Eventful, Upcoming, and Edgeio. The 'ping to update' model has worked well with weblogs, and this extends it to connect other event-driven services.&lt;br /&gt;
&lt;br /&gt;
* ''geotagging'' is a recent addition to the stable of microformats that has most famously been used to map photos on Flickr, zonetags, and by other GPS-driven services.&lt;br /&gt;
&lt;br /&gt;
''Co-presenters:'' Tantek Çelik, Rohit Khare, Kevin Marks (subject to change as late-breaking demos emerge &amp;amp; volunteer)&lt;br /&gt;
&lt;br /&gt;
= ETech 2006 Session Description =&lt;br /&gt;
[http://conferences.oreillynet.com/cs/et2006/view/e_sess/8292 Microformats] with Tantek Çelik, Technorati; Shawn Carnell, AOL; Yoz Grahame, Ning; Joe Gregorio, AtomPub Workgroup; Rohit Khare, CommerceNet Labs; Kevin Marks, Technorati; Mark Pilgrim, IBM.&lt;br /&gt;
&lt;br /&gt;
Microformats are simple semantic XHTML extensions for expressing numerous common concepts (people, events, etc.) on today's Web. Tantek Çelik will provide a short introduction, followed by a series of speakers performing lightning demonstrations of their microformats enabled tools, sites, hacks and other implementations.&lt;br /&gt;
&lt;br /&gt;
Date: Tuesday, March 07, 2006&lt;br /&gt;
&lt;br /&gt;
Time: 5:30pm - 6:15pm&lt;br /&gt;
&lt;br /&gt;
Location: Elizabeth Ballroom A&lt;br /&gt;
&lt;br /&gt;
== Original ETech 2006 Proposal Text ==&lt;br /&gt;
Title: Microformats: Recycling XHTML&lt;br /&gt;
&lt;br /&gt;
Conference: O'Reilly Emerging Technology Conference 2006&lt;br /&gt;
Type/Duration: 90m&lt;br /&gt;
&lt;br /&gt;
Audience Level: General&lt;br /&gt;
&lt;br /&gt;
Audience Type: web designers, programmers, educators&lt;br /&gt;
&lt;br /&gt;
Short Description:&lt;br /&gt;
Microformats are a clever adaptation of semantic XHTML that makes it easier to publish, index, and extract semi-structured information such as tags, calendar entries, contact information, and reviews on the Web. Microformats can make your existing XHTML easier to recycle into new services and applications.&lt;br /&gt;
&lt;br /&gt;
Description:&lt;br /&gt;
Microformats have already made it easier for bloggers and other publishers to describe their social relationships (XFN), make event descriptions searchable by location and time (hCalendar), offer their contact information (hCard), and share their opinions (hReview). They use existing standards and practices in XHTML to get the job done: link relationships, element classes, outline structures, and abbreviations to name a few.&lt;br /&gt;
&lt;br /&gt;
By avoiding the complexity of managing multiple metadata formats in multiple files, microformats make it easier for readers of XHTML pages to recycle the structured data that's hidden in plain view. This makes microformats an exciting approach towards achieving the benefits of the Semantic Web: better search, personalization, and reuse of knowledge across new services and applications.&lt;br /&gt;
&lt;br /&gt;
This session presents four perspectives: the leader of the community developing the specifications; a producer that added hCalendar microformat support to their site in an hour; a consumer who wrote a parser in JavaScript over a weekend (complete with test cases!); and a Web pioneer who has been deeply involved in the development of HTML and RDF.&lt;br /&gt;
&lt;br /&gt;
While it can be easy for publishers to generate microformatted XHTML, it requires more work from programmers than a comparable bespoke XML format would. So far, new microformats have also introduced new parsing rules that inhibit the development of generic processing tools. In closing, we will also discuss the future of microformats in light of the old saw, &amp;quot;Sure, it works in practice -- but does it work in *theory*?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Speaker bio: Rohit Khare is an award-winning researcher in the fields of Internet protocols and decentralized systems. He founded KnowNow in 2000 and previously worked on Internet standards at W3C and MCI. He founded 4K Associates and edited the O'Reilly Web Journal. He received his Ph.D. in Software Engineering from U.C. Irvine in 2003.&lt;br /&gt;
&lt;br /&gt;
Co-Presenters: Tantek Celik, Andy Baio, Mark Pilgrim, Dan Connolly (Invited)&lt;br /&gt;
&lt;br /&gt;
Speaker notes and comments: We'd consider alternative presentation formats for discussing the latest microformats tools and the implications of the community movement around microformats, such as a panel debate.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=9360</id>
		<title>events/2007-03-27-ETech07Proposal</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=9360"/>
		<updated>2006-10-10T02:07:56Z</updated>

		<summary type="html">&lt;p&gt;Rohit: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The message we'd like to convey by proposing a sequel at ETech in 2007 is: '''microformats make integration easy'''. It's not just demos of lone sites that support microformats this year; it's about the [http://conferences.oreillynet.com/et2007/ magic] of connecting two (or more) Web-based services... &lt;br /&gt;
&lt;br /&gt;
= '''micromagic:''' loosely joining small pieces of the Web with microformats =&lt;br /&gt;
(headings below from the ETech 2007 proposal template)&lt;br /&gt;
&lt;br /&gt;
''Audience Type:'' web designers, programmers, managers, other.&lt;br /&gt;
&lt;br /&gt;
''Brief Description:'' &lt;br /&gt;
Microformats are a clever adaptation of semantic XHTML that makes it easier to share structured information such as tags, calendar entries, contact information, and reviews. This demo session will show off live services that are using microformats to connect multiple Web services, such as Live Clipboard, Pingerati, and Flickr geotagging. (50 words)&lt;br /&gt;
&lt;br /&gt;
''Abstract or Full Description:'' Maximum 250 words, about 35 lines. The abstract is displayed online.&lt;br /&gt;
&lt;br /&gt;
Microformats have already made it easier for bloggers and other publishers to describe their social relationships (XFN), make event descriptions searchable by location and time (hCalendar), offer their contact information (hCard), and share their opinions (hReview). They use existing standards and practices in XHTML to get the job done: link relationships, element classes, outline structures, and abbreviations to name a few.&lt;br /&gt;
&lt;br /&gt;
* '''Live Clipboard''' technology debuted at ETech 2006 in a presentation by Ray Ozzie; it has rapidly matured and shipped as Live Writer wysiwyg plugins for calendard events and reviews.&lt;br /&gt;
&lt;br /&gt;
* '''Pingerati''' receives updates of pages with microformat data in, and passes them on to services that are interested in indexing them. With the growth of services that publish and index microformats, there is a need to connect the publishers with the indexers. The 'ping to update' model has worked well with weblogs, but is not ideal for other kinds of pages that may contain microformats.&lt;br /&gt;
&lt;br /&gt;
* &lt;br /&gt;
&lt;br /&gt;
''Co-presenters:'' Tantek Çelik, Rohit Khare, Kevin Marks (subject to change as late-breaking demos emerge &amp;amp; volunteer)&lt;br /&gt;
&lt;br /&gt;
= ETech 2006 Session Description =&lt;br /&gt;
[http://conferences.oreillynet.com/cs/et2006/view/e_sess/8292 Microformats] with Tantek Çelik, Technorati; Shawn Carnell, AOL; Yoz Grahame, Ning; Joe Gregorio, AtomPub Workgroup; Rohit Khare, CommerceNet Labs; Kevin Marks, Technorati; Mark Pilgrim, IBM.&lt;br /&gt;
&lt;br /&gt;
Microformats are simple semantic XHTML extensions for expressing numerous common concepts (people, events, etc.) on today's Web. Tantek Çelik will provide a short introduction, followed by a series of speakers performing lightning demonstrations of their microformats enabled tools, sites, hacks and other implementations.&lt;br /&gt;
&lt;br /&gt;
Date: Tuesday, March 07, 2006&lt;br /&gt;
&lt;br /&gt;
Time: 5:30pm - 6:15pm&lt;br /&gt;
&lt;br /&gt;
Location: Elizabeth Ballroom A&lt;br /&gt;
&lt;br /&gt;
== Original ETech 2006 Proposal Text ==&lt;br /&gt;
Title: Microformats: Recycling XHTML&lt;br /&gt;
&lt;br /&gt;
Conference: O'Reilly Emerging Technology Conference 2006&lt;br /&gt;
Type/Duration: 90m&lt;br /&gt;
&lt;br /&gt;
Audience Level: General&lt;br /&gt;
&lt;br /&gt;
Audience Type: web designers, programmers, educators&lt;br /&gt;
&lt;br /&gt;
Short Description:&lt;br /&gt;
Microformats are a clever adaptation of semantic XHTML that makes it easier to publish, index, and extract semi-structured information such as tags, calendar entries, contact information, and reviews on the Web. Microformats can make your existing XHTML easier to recycle into new services and applications.&lt;br /&gt;
&lt;br /&gt;
Description:&lt;br /&gt;
Microformats have already made it easier for bloggers and other publishers to describe their social relationships (XFN), make event descriptions searchable by location and time (hCalendar), offer their contact information (hCard), and share their opinions (hReview). They use existing standards and practices in XHTML to get the job done: link relationships, element classes, outline structures, and abbreviations to name a few.&lt;br /&gt;
&lt;br /&gt;
By avoiding the complexity of managing multiple metadata formats in multiple files, microformats make it easier for readers of XHTML pages to recycle the structured data that's hidden in plain view. This makes microformats an exciting approach towards achieving the benefits of the Semantic Web: better search, personalization, and reuse of knowledge across new services and applications.&lt;br /&gt;
&lt;br /&gt;
This session presents four perspectives: the leader of the community developing the specifications; a producer that added hCalendar microformat support to their site in an hour; a consumer who wrote a parser in JavaScript over a weekend (complete with test cases!); and a Web pioneer who has been deeply involved in the development of HTML and RDF.&lt;br /&gt;
&lt;br /&gt;
While it can be easy for publishers to generate microformatted XHTML, it requires more work from programmers than a comparable bespoke XML format would. So far, new microformats have also introduced new parsing rules that inhibit the development of generic processing tools. In closing, we will also discuss the future of microformats in light of the old saw, &amp;quot;Sure, it works in practice -- but does it work in *theory*?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Speaker bio: Rohit Khare is an award-winning researcher in the fields of Internet protocols and decentralized systems. He founded KnowNow in 2000 and previously worked on Internet standards at W3C and MCI. He founded 4K Associates and edited the O'Reilly Web Journal. He received his Ph.D. in Software Engineering from U.C. Irvine in 2003.&lt;br /&gt;
&lt;br /&gt;
Co-Presenters: Tantek Celik, Andy Baio, Mark Pilgrim, Dan Connolly (Invited)&lt;br /&gt;
&lt;br /&gt;
Speaker notes and comments: We'd consider alternative presentation formats for discussing the latest microformats tools and the implications of the community movement around microformats, such as a panel debate.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=9359</id>
		<title>events/2007-03-27-ETech07Proposal</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=9359"/>
		<updated>2006-10-10T01:59:47Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* '''micromagic:''' loosely joining small pieces of the Web with microformats */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The message we'd like to convey by proposing a sequel at ETech in 2007 is: '''microformats make integration easy'''. It's not just demos of lone sites that support microformats this year; it's about the [http://conferences.oreillynet.com/et2007/ magic] of connecting two (or more) Web-based services... &lt;br /&gt;
&lt;br /&gt;
= '''micromagic:''' loosely joining small pieces of the Web with microformats =&lt;br /&gt;
(headings below from the ETech 2007 proposal template)&lt;br /&gt;
&lt;br /&gt;
''Audience Type:'' web designers, programmers, managers, other.&lt;br /&gt;
&lt;br /&gt;
''Brief Description:'' &lt;br /&gt;
Microformats are a clever adaptation of semantic XHTML that makes it easier to share structured information such as tags, calendar entries, contact information, and reviews. This demo session will show off live services that are using microformats to connect multiple Web services, such as Live Clipboard, Pingerati, and Flickr geotagging. (50 words)&lt;br /&gt;
&lt;br /&gt;
''Abstract or Full Description:'' Maximum 250 words, about 35 lines. The abstract is displayed online.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Pingerati receives updates of pages with Microformat data in, and passes them on to services that are interested in indexing them. With the growth of services that publish and index microformats, there is a need to connect the publishers with the indexers. The 'ping to update' model has worked well with weblogs, but is not ideal for other kinds of pages that may contain microformats.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
''Co-presenters:'' Tantek Çelik, Rohit Khare, Kevin Marks (subject to change as late-breaking demos emerge &amp;amp; volunteer)&lt;br /&gt;
&lt;br /&gt;
= ETech 2006 Session Description =&lt;br /&gt;
[http://conferences.oreillynet.com/cs/et2006/view/e_sess/8292 Microformats] with Tantek Çelik, Technorati; Shawn Carnell, AOL; Yoz Grahame, Ning; Joe Gregorio, AtomPub Workgroup; Rohit Khare, CommerceNet Labs; Kevin Marks, Technorati; Mark Pilgrim, IBM.&lt;br /&gt;
&lt;br /&gt;
Microformats are simple semantic XHTML extensions for expressing numerous common concepts (people, events, etc.) on today's Web. Tantek Çelik will provide a short introduction, followed by a series of speakers performing lightning demonstrations of their microformats enabled tools, sites, hacks and other implementations.&lt;br /&gt;
&lt;br /&gt;
Date: Tuesday, March 07, 2006&lt;br /&gt;
&lt;br /&gt;
Time: 5:30pm - 6:15pm&lt;br /&gt;
&lt;br /&gt;
Location: Elizabeth Ballroom A&lt;br /&gt;
&lt;br /&gt;
== Original ETech 2006 Proposal Text ==&lt;br /&gt;
Title: Microformats: Recycling XHTML&lt;br /&gt;
&lt;br /&gt;
Conference: O'Reilly Emerging Technology Conference 2006&lt;br /&gt;
Type/Duration: 90m&lt;br /&gt;
&lt;br /&gt;
Audience Level: General&lt;br /&gt;
&lt;br /&gt;
Audience Type: web designers, programmers, educators&lt;br /&gt;
&lt;br /&gt;
Short Description:&lt;br /&gt;
Microformats are a clever adaptation of semantic XHTML that makes it easier to publish, index, and extract semi-structured information such as tags, calendar entries, contact information, and reviews on the Web. Microformats can make your existing XHTML easier to recycle into new services and applications.&lt;br /&gt;
&lt;br /&gt;
Description:&lt;br /&gt;
Microformats have already made it easier for bloggers and other publishers to describe their social relationships (XFN), make event descriptions searchable by location and time (hCalendar), offer their contact information (hCard), and share their opinions (hReview). They use existing standards and practices in XHTML to get the job done: link relationships, element classes, outline structures, and abbreviations to name a few.&lt;br /&gt;
&lt;br /&gt;
By avoiding the complexity of managing multiple metadata formats in multiple files, microformats make it easier for readers of XHTML pages to recycle the structured data that's hidden in plain view. This makes microformats an exciting approach towards achieving the benefits of the Semantic Web: better search, personalization, and reuse of knowledge across new services and applications.&lt;br /&gt;
&lt;br /&gt;
This session presents four perspectives: the leader of the community developing the specifications; a producer that added hCalendar microformat support to their site in an hour; a consumer who wrote a parser in JavaScript over a weekend (complete with test cases!); and a Web pioneer who has been deeply involved in the development of HTML and RDF.&lt;br /&gt;
&lt;br /&gt;
While it can be easy for publishers to generate microformatted XHTML, it requires more work from programmers than a comparable bespoke XML format would. So far, new microformats have also introduced new parsing rules that inhibit the development of generic processing tools. In closing, we will also discuss the future of microformats in light of the old saw, &amp;quot;Sure, it works in practice -- but does it work in *theory*?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Speaker bio: Rohit Khare is an award-winning researcher in the fields of Internet protocols and decentralized systems. He founded KnowNow in 2000 and previously worked on Internet standards at W3C and MCI. He founded 4K Associates and edited the O'Reilly Web Journal. He received his Ph.D. in Software Engineering from U.C. Irvine in 2003.&lt;br /&gt;
&lt;br /&gt;
Co-Presenters: Tantek Celik, Andy Baio, Mark Pilgrim, Dan Connolly (Invited)&lt;br /&gt;
&lt;br /&gt;
Speaker notes and comments: We'd consider alternative presentation formats for discussing the latest microformats tools and the implications of the community movement around microformats, such as a panel debate.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=9358</id>
		<title>events/2007-03-27-ETech07Proposal</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=9358"/>
		<updated>2006-10-10T01:58:42Z</updated>

		<summary type="html">&lt;p&gt;Rohit: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The message we'd like to convey by proposing a sequel at ETech in 2007 is: '''microformats make integration easy'''. It's not just demos of lone sites that support microformats this year; it's about the [http://conferences.oreillynet.com/et2007/ magic] of connecting two (or more) Web-based services... &lt;br /&gt;
&lt;br /&gt;
= '''micromagic:''' loosely joining small pieces of the Web with microformats =&lt;br /&gt;
(headings below from the ETech 2007 proposal template)&lt;br /&gt;
&lt;br /&gt;
''Audience Type:'' web designers, programmers, managers, other.&lt;br /&gt;
&lt;br /&gt;
''Brief Description:'' &lt;br /&gt;
Microformats are a clever adaptation of semantic XHTML that makes it easier to share structured information such as tags, calendar entries, contact information, and reviews. This demo session will show off live services that are using microformats to connect multiple Web services, such as Live Clipboard, Pingerati, and Flickr geotagging.&lt;br /&gt;
&lt;br /&gt;
''Abstract or Full Description:'' Maximum 250 words, about 35 lines. The abstract is displayed online.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Pingerati receives updates of pages with Microformat data in, and passes them on to services that are interested in indexing them. With the growth of services that publish and index microformats, there is a need to connect the publishers with the indexers. The 'ping to update' model has worked well with weblogs, but is not ideal for other kinds of pages that may contain microformats.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
''Co-presenters:'' Tantek Çelik, Rohit Khare, Kevin Marks (subject to change as late-breaking demos emerge &amp;amp; volunteer)&lt;br /&gt;
&lt;br /&gt;
= ETech 2006 Session Description =&lt;br /&gt;
[http://conferences.oreillynet.com/cs/et2006/view/e_sess/8292 Microformats] with Tantek Çelik, Technorati; Shawn Carnell, AOL; Yoz Grahame, Ning; Joe Gregorio, AtomPub Workgroup; Rohit Khare, CommerceNet Labs; Kevin Marks, Technorati; Mark Pilgrim, IBM.&lt;br /&gt;
&lt;br /&gt;
Microformats are simple semantic XHTML extensions for expressing numerous common concepts (people, events, etc.) on today's Web. Tantek Çelik will provide a short introduction, followed by a series of speakers performing lightning demonstrations of their microformats enabled tools, sites, hacks and other implementations.&lt;br /&gt;
&lt;br /&gt;
Date: Tuesday, March 07, 2006&lt;br /&gt;
&lt;br /&gt;
Time: 5:30pm - 6:15pm&lt;br /&gt;
&lt;br /&gt;
Location: Elizabeth Ballroom A&lt;br /&gt;
&lt;br /&gt;
== Original ETech 2006 Proposal Text ==&lt;br /&gt;
Title: Microformats: Recycling XHTML&lt;br /&gt;
&lt;br /&gt;
Conference: O'Reilly Emerging Technology Conference 2006&lt;br /&gt;
Type/Duration: 90m&lt;br /&gt;
&lt;br /&gt;
Audience Level: General&lt;br /&gt;
&lt;br /&gt;
Audience Type: web designers, programmers, educators&lt;br /&gt;
&lt;br /&gt;
Short Description:&lt;br /&gt;
Microformats are a clever adaptation of semantic XHTML that makes it easier to publish, index, and extract semi-structured information such as tags, calendar entries, contact information, and reviews on the Web. Microformats can make your existing XHTML easier to recycle into new services and applications.&lt;br /&gt;
&lt;br /&gt;
Description:&lt;br /&gt;
Microformats have already made it easier for bloggers and other publishers to describe their social relationships (XFN), make event descriptions searchable by location and time (hCalendar), offer their contact information (hCard), and share their opinions (hReview). They use existing standards and practices in XHTML to get the job done: link relationships, element classes, outline structures, and abbreviations to name a few.&lt;br /&gt;
&lt;br /&gt;
By avoiding the complexity of managing multiple metadata formats in multiple files, microformats make it easier for readers of XHTML pages to recycle the structured data that's hidden in plain view. This makes microformats an exciting approach towards achieving the benefits of the Semantic Web: better search, personalization, and reuse of knowledge across new services and applications.&lt;br /&gt;
&lt;br /&gt;
This session presents four perspectives: the leader of the community developing the specifications; a producer that added hCalendar microformat support to their site in an hour; a consumer who wrote a parser in JavaScript over a weekend (complete with test cases!); and a Web pioneer who has been deeply involved in the development of HTML and RDF.&lt;br /&gt;
&lt;br /&gt;
While it can be easy for publishers to generate microformatted XHTML, it requires more work from programmers than a comparable bespoke XML format would. So far, new microformats have also introduced new parsing rules that inhibit the development of generic processing tools. In closing, we will also discuss the future of microformats in light of the old saw, &amp;quot;Sure, it works in practice -- but does it work in *theory*?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Speaker bio: Rohit Khare is an award-winning researcher in the fields of Internet protocols and decentralized systems. He founded KnowNow in 2000 and previously worked on Internet standards at W3C and MCI. He founded 4K Associates and edited the O'Reilly Web Journal. He received his Ph.D. in Software Engineering from U.C. Irvine in 2003.&lt;br /&gt;
&lt;br /&gt;
Co-Presenters: Tantek Celik, Andy Baio, Mark Pilgrim, Dan Connolly (Invited)&lt;br /&gt;
&lt;br /&gt;
Speaker notes and comments: We'd consider alternative presentation formats for discussing the latest microformats tools and the implications of the community movement around microformats, such as a panel debate.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=9357</id>
		<title>events/2007-03-27-ETech07Proposal</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=9357"/>
		<updated>2006-10-10T01:48:46Z</updated>

		<summary type="html">&lt;p&gt;Rohit: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The reason we're proposing a sequel in 2007: '''microformats make integration easy'''. It's not just demos of lone sites that support microformats this year; it's about the [http://conferences.oreillynet.com/et2007/ magic] of connecting two (or more) Web-based services... &lt;br /&gt;
&lt;br /&gt;
= ETech 2007 Proposal Template =&lt;br /&gt;
''Audience Type:'' web designers, programmers, managers, other.&lt;br /&gt;
&lt;br /&gt;
''Title:'' micromagic: loosely joining small pieces of the Web with microformats&lt;br /&gt;
&lt;br /&gt;
''Brief Description:'' Maximum 50 words, about 7 lines. Used for marketing pieces.&lt;br /&gt;
&lt;br /&gt;
''Abstract or Full Description:'' Maximum 250 words, about 35 lines. The abstract is displayed online.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Pingerati receives updates of pages with Microformat data in, and passes them on to services that are interested in indexing them. With the growth of services that publish and index microformats, there is a need to connect the publishers with the indexers. The 'ping to update' model has worked well with weblogs, but is not ideal for other kinds of pages that may contain microformats.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= ETech 2006 Session Description =&lt;br /&gt;
[http://conferences.oreillynet.com/cs/et2006/view/e_sess/8292 Microformats]&lt;br /&gt;
&lt;br /&gt;
Tantek Çelik, Technorati, Shawn Carnell, AOL, Yoz Grahame, Ning, Joe Gregorio, AtomPub Workgroup, Rohit Khare, CommerceNet Labs, Kevin Marks, Technorati, Mark Pilgrim, IBM&lt;br /&gt;
&lt;br /&gt;
Date: Tuesday, March 07&lt;br /&gt;
&lt;br /&gt;
Time: 5:30pm - 6:15pm&lt;br /&gt;
&lt;br /&gt;
Location: Elizabeth Ballroom A&lt;br /&gt;
&lt;br /&gt;
Microformats are simple semantic XHTML extensions for expressing numerous common concepts (people, events, etc.) on today's Web. Tantek Çelik will provide a short introduction, followed by a series of speakers performing lightning demonstrations of their microformats enabled tools, sites, hacks and other implementations.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Original ETech 2006 Proposal Text ==&lt;br /&gt;
Title: Microformats: Recycling XHTML&lt;br /&gt;
&lt;br /&gt;
Conference: O'Reilly Emerging Technology Conference 2006&lt;br /&gt;
Type/Duration: 90m&lt;br /&gt;
&lt;br /&gt;
Audience Level: General&lt;br /&gt;
&lt;br /&gt;
Audience Type: web designers, programmers, educators&lt;br /&gt;
&lt;br /&gt;
Short Description:&lt;br /&gt;
Microformats are a clever adaptation of semantic XHTML that makes it easier to publish, index, and extract semi-structured information such as tags, calendar entries, contact information, and reviews on the Web. Microformats can make your existing XHTML easier to recycle into new services and applications.&lt;br /&gt;
&lt;br /&gt;
Description:&lt;br /&gt;
Microformats have already made it easier for bloggers and other publishers to describe their social relationships (XFN), make event descriptions searchable by location and time (hCalendar), offer their contact information (hCard), and share their opinions (hReview). They use existing standards and practices in XHTML to get the job done: link relationships, element classes, outline structures, and abbreviations to name a few.&lt;br /&gt;
&lt;br /&gt;
By avoiding the complexity of managing multiple metadata formats in multiple files, microformats make it easier for readers of XHTML pages to recycle the structured data that's hidden in plain view. This makes microformats an exciting approach towards achieving the benefits of the Semantic Web: better search, personalization, and reuse of knowledge across new services and applications.&lt;br /&gt;
&lt;br /&gt;
This session presents four perspectives: the leader of the community developing the specifications; a producer that added hCalendar microformat support to their site in an hour; a consumer who wrote a parser in JavaScript over a weekend (complete with test cases!); and a Web pioneer who has been deeply involved in the development of HTML and RDF.&lt;br /&gt;
&lt;br /&gt;
While it can be easy for publishers to generate microformatted XHTML, it requires more work from programmers than a comparable bespoke XML format would. So far, new microformats have also introduced new parsing rules that inhibit the development of generic processing tools. In closing, we will also discuss the future of microformats in light of the old saw, &amp;quot;Sure, it works in practice -- but does it work in *theory*?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Speaker bio: Rohit Khare is an award-winning researcher in the fields of Internet protocols and decentralized systems. He founded KnowNow in 2000 and previously worked on Internet standards at W3C and MCI. He founded 4K Associates and edited the O'Reilly Web Journal. He received his Ph.D. in Software Engineering from U.C. Irvine in 2003.&lt;br /&gt;
&lt;br /&gt;
Co-Presenters: Tantek Celik, Andy Baio, Mark Pilgrim, Dan Connolly (Invited)&lt;br /&gt;
&lt;br /&gt;
Speaker notes and comments: We'd consider alternative presentation formats for discussing the latest microformats tools and the implications of the community movement around microformats, such as a panel debate.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=9356</id>
		<title>events/2007-03-27-ETech07Proposal</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=9356"/>
		<updated>2006-10-08T23:35:35Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* ETech 2007 Proposal Template */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Key point to make in suggesting a sequel in 2007: '''microformats make integration easy'''. It's not just demos of lone sites that support microformats this year; it's about the [http://conferences.oreillynet.com/et2007/ magic] of connecting two (or more) Web-based services... &lt;br /&gt;
&lt;br /&gt;
= ETech 2007 Proposal Template =&lt;br /&gt;
Audience Type: Describe the intended audience: systems administrators, web designers, designers, programmers, educators, managers, or other. 	&lt;br /&gt;
&lt;br /&gt;
Abstract or Full Description: Maximum 250 words, about 35 lines. The abstract is displayed online.&lt;br /&gt;
&lt;br /&gt;
Brief Description: Maximum 50 words, about 7 lines. Used for marketing pieces.&lt;br /&gt;
&lt;br /&gt;
= ETech 2006 Session Description =&lt;br /&gt;
[http://conferences.oreillynet.com/cs/et2006/view/e_sess/8292 Microformats]&lt;br /&gt;
&lt;br /&gt;
Tantek Çelik, Technorati, Shawn Carnell, AOL, Yoz Grahame, Ning, Joe Gregorio, AtomPub Workgroup, Rohit Khare, CommerceNet Labs, Kevin Marks, Technorati, Mark Pilgrim, IBM&lt;br /&gt;
&lt;br /&gt;
Date: Tuesday, March 07&lt;br /&gt;
&lt;br /&gt;
Time: 5:30pm - 6:15pm&lt;br /&gt;
&lt;br /&gt;
Location: Elizabeth Ballroom A&lt;br /&gt;
&lt;br /&gt;
Microformats are simple semantic XHTML extensions for expressing numerous common concepts (people, events, etc.) on today's Web. Tantek Çelik will provide a short introduction, followed by a series of speakers performing lightning demonstrations of their microformats enabled tools, sites, hacks and other implementations.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Original ETech 2006 Proposal Text ==&lt;br /&gt;
Title: Microformats: Recycling XHTML&lt;br /&gt;
&lt;br /&gt;
Conference: O'Reilly Emerging Technology Conference 2006&lt;br /&gt;
Type/Duration: 90m&lt;br /&gt;
&lt;br /&gt;
Audience Level: General&lt;br /&gt;
&lt;br /&gt;
Audience Type: web designers, programmers, educators&lt;br /&gt;
&lt;br /&gt;
Short Description:&lt;br /&gt;
Microformats are a clever adaptation of semantic XHTML that makes it easier to publish, index, and extract semi-structured information such as tags, calendar entries, contact information, and reviews on the Web. Microformats can make your existing XHTML easier to recycle into new services and applications.&lt;br /&gt;
&lt;br /&gt;
Description:&lt;br /&gt;
Microformats have already made it easier for bloggers and other publishers to describe their social relationships (XFN), make event descriptions searchable by location and time (hCalendar), offer their contact information (hCard), and share their opinions (hReview). They use existing standards and practices in XHTML to get the job done: link relationships, element classes, outline structures, and abbreviations to name a few.&lt;br /&gt;
&lt;br /&gt;
By avoiding the complexity of managing multiple metadata formats in multiple files, microformats make it easier for readers of XHTML pages to recycle the structured data that's hidden in plain view. This makes microformats an exciting approach towards achieving the benefits of the Semantic Web: better search, personalization, and reuse of knowledge across new services and applications.&lt;br /&gt;
&lt;br /&gt;
This session presents four perspectives: the leader of the community developing the specifications; a producer that added hCalendar microformat support to their site in an hour; a consumer who wrote a parser in JavaScript over a weekend (complete with test cases!); and a Web pioneer who has been deeply involved in the development of HTML and RDF.&lt;br /&gt;
&lt;br /&gt;
While it can be easy for publishers to generate microformatted XHTML, it requires more work from programmers than a comparable bespoke XML format would. So far, new microformats have also introduced new parsing rules that inhibit the development of generic processing tools. In closing, we will also discuss the future of microformats in light of the old saw, &amp;quot;Sure, it works in practice -- but does it work in *theory*?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Speaker bio: Rohit Khare is an award-winning researcher in the fields of Internet protocols and decentralized systems. He founded KnowNow in 2000 and previously worked on Internet standards at W3C and MCI. He founded 4K Associates and edited the O'Reilly Web Journal. He received his Ph.D. in Software Engineering from U.C. Irvine in 2003.&lt;br /&gt;
&lt;br /&gt;
Co-Presenters: Tantek Celik, Andy Baio, Mark Pilgrim, Dan Connolly (Invited)&lt;br /&gt;
&lt;br /&gt;
Speaker notes and comments: We'd consider alternative presentation formats for discussing the latest microformats tools and the implications of the community movement around microformats, such as a panel debate.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=9342</id>
		<title>events/2007-03-27-ETech07Proposal</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2007-03-27-ETech07Proposal&amp;diff=9342"/>
		<updated>2006-10-08T23:24:52Z</updated>

		<summary type="html">&lt;p&gt;Rohit: ETech Proposal for 2007&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= ETech 2007 Proposal Template =&lt;br /&gt;
Audience Type: Describe the intended audience: systems administrators, web designers, designers, programmers, educators, managers, or other. 	&lt;br /&gt;
&lt;br /&gt;
Abstract or Full Description: Maximum 250 words, about 35 lines. The abstract is displayed online.&lt;br /&gt;
&lt;br /&gt;
Brief Description: Maximum 50 words, about 7 lines. Used for marketing pieces.&lt;br /&gt;
&lt;br /&gt;
= ETech 2006 Session Description =&lt;br /&gt;
[http://conferences.oreillynet.com/cs/et2006/view/e_sess/8292 Microformats]&lt;br /&gt;
&lt;br /&gt;
Tantek Çelik, Technorati, Shawn Carnell, AOL, Yoz Grahame, Ning, Joe Gregorio, AtomPub Workgroup, Rohit Khare, CommerceNet Labs, Kevin Marks, Technorati, Mark Pilgrim, IBM&lt;br /&gt;
&lt;br /&gt;
Date: Tuesday, March 07&lt;br /&gt;
&lt;br /&gt;
Time: 5:30pm - 6:15pm&lt;br /&gt;
&lt;br /&gt;
Location: Elizabeth Ballroom A&lt;br /&gt;
&lt;br /&gt;
Microformats are simple semantic XHTML extensions for expressing numerous common concepts (people, events, etc.) on today's Web. Tantek Çelik will provide a short introduction, followed by a series of speakers performing lightning demonstrations of their microformats enabled tools, sites, hacks and other implementations.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Original ETech 2006 Proposal Text ==&lt;br /&gt;
Title: Microformats: Recycling XHTML&lt;br /&gt;
&lt;br /&gt;
Conference: O'Reilly Emerging Technology Conference 2006&lt;br /&gt;
Type/Duration: 90m&lt;br /&gt;
&lt;br /&gt;
Audience Level: General&lt;br /&gt;
&lt;br /&gt;
Audience Type: web designers, programmers, educators&lt;br /&gt;
&lt;br /&gt;
Short Description:&lt;br /&gt;
Microformats are a clever adaptation of semantic XHTML that makes it easier to publish, index, and extract semi-structured information such as tags, calendar entries, contact information, and reviews on the Web. Microformats can make your existing XHTML easier to recycle into new services and applications.&lt;br /&gt;
&lt;br /&gt;
Description:&lt;br /&gt;
Microformats have already made it easier for bloggers and other publishers to describe their social relationships (XFN), make event descriptions searchable by location and time (hCalendar), offer their contact information (hCard), and share their opinions (hReview). They use existing standards and practices in XHTML to get the job done: link relationships, element classes, outline structures, and abbreviations to name a few.&lt;br /&gt;
&lt;br /&gt;
By avoiding the complexity of managing multiple metadata formats in multiple files, microformats make it easier for readers of XHTML pages to recycle the structured data that's hidden in plain view. This makes microformats an exciting approach towards achieving the benefits of the Semantic Web: better search, personalization, and reuse of knowledge across new services and applications.&lt;br /&gt;
&lt;br /&gt;
This session presents four perspectives: the leader of the community developing the specifications; a producer that added hCalendar microformat support to their site in an hour; a consumer who wrote a parser in JavaScript over a weekend (complete with test cases!); and a Web pioneer who has been deeply involved in the development of HTML and RDF.&lt;br /&gt;
&lt;br /&gt;
While it can be easy for publishers to generate microformatted XHTML, it requires more work from programmers than a comparable bespoke XML format would. So far, new microformats have also introduced new parsing rules that inhibit the development of generic processing tools. In closing, we will also discuss the future of microformats in light of the old saw, &amp;quot;Sure, it works in practice -- but does it work in *theory*?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Speaker bio: Rohit Khare is an award-winning researcher in the fields of Internet protocols and decentralized systems. He founded KnowNow in 2000 and previously worked on Internet standards at W3C and MCI. He founded 4K Associates and edited the O'Reilly Web Journal. He received his Ph.D. in Software Engineering from U.C. Irvine in 2003.&lt;br /&gt;
&lt;br /&gt;
Co-Presenters: Tantek Celik, Andy Baio, Mark Pilgrim, Dan Connolly (Invited)&lt;br /&gt;
&lt;br /&gt;
Speaker notes and comments: We'd consider alternative presentation formats for discussing the latest microformats tools and the implications of the community movement around microformats, such as a panel debate.&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events&amp;diff=9411</id>
		<title>events</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events&amp;diff=9411"/>
		<updated>2006-10-08T23:18:00Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* Upcoming */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; Microformats related events &amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please add any microformats related events (specifically, events where there will be talks on microformats) you find here, and we'll add them to the [[hcalendar|hCalendar]] on the [http://microformats.org home page]. Please also create a page for each specific event, where you can list URLs for the event, event details, create an &amp;quot;Attending&amp;quot; section, link to photos afterwards etc. (See [[events/2006-03-01-w3c-plenary-microformats|Microformats panel at W3C Plenary Day]] for a decent example to mimic / copy-paste).  Thanks! -[http://tantek.com/ Tantek]&lt;br /&gt;
&lt;br /&gt;
For presentations in particular, there's [[presentations|a separate wiki page]].&lt;br /&gt;
&lt;br /&gt;
Patterns:&lt;br /&gt;
* YYYY-MM-DD: &amp;lt;nowiki&amp;gt;[[events/YYYY-MM-DD-event-session-title|Event Session Title]]&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* YYYY-MM-DD - YYYY-MM-DD: &amp;lt;nowiki&amp;gt;[[events/YYYY-MM-DD-event-session-title|Event Session Title]]&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Upcoming ==&lt;br /&gt;
* 2006-10-19: [http://muffinresearch.co.uk/wsg/ Web Standards Group London Meetup, Microformats Special]&lt;br /&gt;
* 2007-03-26 - 2007-03-29 : [http://conferences.oreillynet.com/et2007/ O'Reilly Emerging  Technology 2007] [[events/2007-03-27-ETech07Proposal|proposal]]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Recent ==&lt;br /&gt;
* 2006-10-07: 3:30pm-4pm [http://upcoming.org/event/114735 Microformats 101 session at Silicon Valley Code Camp] at Foothill College room 4221, Los Altos Hills, CA, USA&lt;br /&gt;
** presentation: http://tantek.com/presentations/2006/10/microformats-101&lt;br /&gt;
* 2006-10-05, [http://molly.com/about.php Molly E. Holzschlag] and [http://www.malarkey.co.uk/The_Stuff_and_Nonsense_team.html#clarke Andy Clarke] present [http://www.fundamentosweb.org/2006/programa/index.html.en Workshop: Designing for Web 2.0] at [http://www.fundamentosweb.org/2006/ Fundamentos Web 2006] in Oviedo, Spain&lt;br /&gt;
* 2006-10-04, [http://molly.com/about.php Molly E. Holzschlag] presents [http://www.fundamentosweb.org/2006/programa/index.html.en The True Value of Microformats] at [http://www.fundamentosweb.org/2006/ Fundamentos Web 2006] in Oviedo, Spain&lt;br /&gt;
* 2006-09-30, 8:00PM-late [[events/2006-09-30-london-microformats-vevent|London Microformats vEvent]] social.&lt;br /&gt;
* 2006-09-30 and 2006-10-01, 10am 09-30 to 5pm 10-01 [[events/2006-09-30-barcampmilwaukee|BarCampMilwaukee]].&lt;br /&gt;
* 2006-09-29, 2:45-3:30PM John Allsopp speaking on Microformats at [http://www.webdirections.org Web Directions] in Sydney, Australia&lt;br /&gt;
* 2006-09-23 10:00 [http://drupalcon.org/node/36 Microformats and Drupal] at drupalcon in Brussels&lt;br /&gt;
* 2006-09-19, 10:00-10:40AM Brian Suda presents [http://conferences.oreillynet.com/cs/euos2006/view/e_sess/9508 Microformats: Web of Data] at at [[events/2006-09-19-eurooscon|EuroOSCon06]]&lt;br /&gt;
* 2006-09-16 : [http://barcamp.org/BarCampParis4 BarCampParis4]. [http://fredericdevillamil.com/ Frédéric de Villamil].&lt;br /&gt;
* 2006-09-13: [[events/2006-09-13-future-of-web-apps-microformats|The Future of Web Apps: Best practice with microformats]]&lt;br /&gt;
* 2006-09-08 [[events/2006-09-08-brighton-microformats-picnic|Brighton Microformats Picnic]] during the lunch break of d.Construct.&lt;br /&gt;
* 2006-09-02 - 2006-09-03: [http://barcamp.org/BarCampLondon BarCampLondon] has proposed microformats sessions.&lt;br /&gt;
* 2006-08-25 - 2006-08-27: [http://barcamp.org/BarCampEarth BarCampEarth], in particular [http://barcamp.org/BarCampTexas BarCampTexas], have proposed microformats sessions.&lt;br /&gt;
* 2006-08-26 : [http://barcamp.org/BarCampParis3 BarCampParis3]. [http://fredericdevillamil.com/articles/2006/08/24/barcamp-earth-et-barcamp-paris-les-26-et-27-ao%C3%BBt-2006#comments Frédéric de Villamil].&lt;br /&gt;
* 2006-08-22 : [http://www.darowski.com/tracesofinspiration/2006/08/24/webvisions-2006-recap-my-presentation/ WebVisions 2006 Recap] with section on Microformats (beginning with slide 26) by Adam Darowski at [http://aptima.com Aptima] in Woburn, MA &amp;amp; Washington, DC&lt;br /&gt;
* 2006-08-17, 7:00-8:30PM: [[events/2006-08-17-refresh-dc-microformats|M. Jackson Wilkinson speaking on Microformats]] at [http://www.refresh-dc.org Refresh DC] in Washington, DC&lt;br /&gt;
* 2006-08-17, noon @ Ming's, Palo Alto. [http://events.commerce.net/?p=81 Microformats @ Bay Area Caltech Alumni Association]&lt;br /&gt;
* 2006-08-05 5-6pm: Microformats at [http://wordcamp.org/ WordCamp], Swedish American Hall, second room, San Francisco, CA.  Discussion led by Tantek Çelik, demos by Bill Humphries (Kubrick theme with [[hatom|hAtom]]) and Erica Douglass (Countdown Plugin with [[hcalendar|hCalendar]]).&lt;br /&gt;
* 2006-08-03 4-5:30PM: [http://events.commerce.net/?p=77 Server-side Microformats Parsing and MFML] at CommerceNet in Palo Alto&lt;br /&gt;
* 2006-07-27 8-9PM [[events/2006-07-27-oscon-microformats-bof|microformats BOF at O'Reilly OSCON]], Location: Room D137-138 in the OCC.&lt;br /&gt;
* 2006-07-13: ICWE panel: &amp;quot;Web 2.0&amp;quot; Engineering with Tantek Çelik&lt;br /&gt;
* 2006-07-11: [[events/2006-07-11-an-event-apart-microformats|An Event Apart: Microformats]]&lt;br /&gt;
* 2006-07-10: 9am-12:30pm [http://www.icwe2006.org/tutorials.htm#tutorial1 ICWE Tutorial on Microformats] by Ryan King @ &amp;lt;abbr title=&amp;quot;Stanford Linear Accelerator Center&amp;quot;&amp;gt;SLAC&amp;lt;/abbr&amp;gt;&lt;br /&gt;
* 2006-06-21: [[events/2006-06-21-supernova-decentralizing-data|Supernova 2006 Decentralizing Data workshop]]&lt;br /&gt;
* 2006-06-20: Microformats.org [[events/anniversary/1|one year anniversary!]] &lt;br /&gt;
* 2006-06-16: @media conference - Hot Topics Panel (some microformats discussions). [http://www.vivabit.com/atmedia2006/blog/index.php/hot-topics-panel-videocast/ videocast].&lt;br /&gt;
* 2006-06-16: [[events/2006-06-16-atmedia-microformats|@media conference - microformats session]]&lt;br /&gt;
* 2006-06-13: [[events/2006-06-13-where-2-bof|Where 2.0 Microformats BOF II]] - developing a [[directions-examples|directions]] microformat.&lt;br /&gt;
* 2006-06-10: [http://barcamp.org/BarCampParisSiliconSentier BarCampParis]&lt;br /&gt;
* 2006-03-01: [[events/2006-03-01-w3c-plenary-microformats|Microformats panel at W3C Plenary Day]]&lt;br /&gt;
* 2006-03-02: [http://esw.w3.org/topic/SwigAtTp2006 Semantic Web Interest Group meeting at W3C Technical Plenary], specifically, 1.30-3.30pm Dan Connolly on using &amp;quot;GRDDL&amp;quot; to parse microformats&lt;br /&gt;
* 2006-03-07: [[events/2006-03-07-etech-microformats|Microformats at O'Reilly ETech]]&lt;br /&gt;
* 2006-03-13: [[events/2006-03-13-sxsw-microformats|Microformats at SXSW Interactive]]&lt;br /&gt;
* 2006-03-14: [[events/2006-03-14-sxsw-modulet|Convincing Your Company to Embrace Web Standards at SxSW Interactive]]&lt;br /&gt;
* 2006-03-20: [[events/2006-03-20-mix06-microformats|Mix06 Keynote with Tim O'Reilly and Bill Gates discussing microformats]]&lt;br /&gt;
* 2006-03-21: [[events/2006-03-21-mix06-microformats|Mix06 Microformats session discussions]]&lt;br /&gt;
* 2006-03-22: [[events/2006-03-22-mix06-microformats|Mix06 Microformats session discussions]]&lt;br /&gt;
* 2006-04-23 - 2006-04-24 [http://cmprofessionals.org/events/summit/#06spring CM Pros Summit] [http://www.nateaune.com Nate Aune] will be presenting a talk &amp;quot;Microformats and the Future of Syndication&amp;quot; from 16:30-17:30 at the Sheraton Palace Hotel in San Francisco.&lt;br /&gt;
* 2006-05-16 - 2006-05-19: [http://xtech.org/ XTech 2006 Conference]&lt;br /&gt;
** 2006-05-16 09:00-12:30: Half-day tutorial: [http://xtech06.usefulinc.com/content/tutorials#microformats Microformats from the Ground Up] at Volmer 3. [http://theryanking.com/presentations/2006/xtech/tutorial/ presentation slides].&lt;br /&gt;
** 2006-05-18 [http://xtech06.usefulinc.com/schedule#s2006-05-18-14:00 14:00-14:45]: [http://xtech06.usefulinc.com/schedule/detail/148 The Intelligent Design of Microformats]&lt;br /&gt;
* 2006-05-22: [http://refreshedinburgh.org/talks/introducing-microformats-your-web-site/ Refresh Edinburgh] Introducing microformats into your website, May 22nd 8pm-9pm.&lt;br /&gt;
* 2006-05-23 - 2006-05-26: [http://www2006.org/ www2006] &lt;br /&gt;
** 2006-05-23: [http://www.blogpulse.com/www2006-workshop/ WWE 2006 | 3rd Annual Workshop on the Weblogging Ecosystem] - call for papers is now open, and explicitly includes &amp;quot;microformats&amp;quot;.&lt;br /&gt;
** 2006-05-24: &lt;br /&gt;
*** All day: &amp;quot;Microformats: a Pragmatic Path to the Semantic Web&amp;quot; poster (Poster ID 116, by Rohit Khare and Tantek Çelik) presentation at Strathblane Hall on Level 0 opposite the main entrance.&lt;br /&gt;
*** 14:00-15:30: Brian Suda will be presenting a microformats demo ([http://www2006.org/programme/item.php?id=d7 Microformats, converting XHTML to vCards and vCalendars]) in the NextWave developer track session. More information about the presentation is available at [[events/www2006]].&lt;br /&gt;
** 2006-05-25 10:30-13:30: Molly E. Holzschlag will be presenting a half-day &amp;quot;Practical Microformats&amp;quot; developer tutorial.&lt;br /&gt;
* 2006-06-08 [http://glazkov.com/resources/presentations/2006-06-08-microformats/ Microformats]. [[DimitriGlazkov|Dimitri Glazkov]] talks about microformats at [http://ipsaonline.com/ IPSA] monthly meeting.&lt;br /&gt;
&lt;br /&gt;
== Quicktime Broadcaster Notes ==&lt;br /&gt;
&lt;br /&gt;
For setting up a mac laptop with an iSight and QT Broadcaster in order to publish live audio/video from events.&lt;br /&gt;
&lt;br /&gt;
# Make sure you have the necessary equipment and software installed&lt;br /&gt;
#* A Macintosh running OSX 10.3.9 or later&lt;br /&gt;
#* Quicktime 7 - get it from http://www.apple.com/quicktime/&lt;br /&gt;
#* Quicktime Broadcaster - get it from http://www.apple.com/quicktime/broadcaster/&lt;br /&gt;
#* An iSight or digital video camera with firewire connection&lt;br /&gt;
# Get a broadcast template document from someone (see KevinMarks for example)&lt;br /&gt;
# Open that, then change the info in the 'Network' pane that has his name etc in it.&lt;br /&gt;
# Check the video and audio panes are using your iSight&lt;br /&gt;
# Another tip is that the standalone thingy for the iSight can be more useful than the screen-top one if you have a desk, as that way it picks up less typing noise and wobbles&lt;br /&gt;
# I find plugging in headphones is a good idea, as you can then monitor and not get howlround&lt;br /&gt;
&lt;br /&gt;
http://microformats.org/media/broadcast.mov&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=parsing-microformats&amp;diff=10722</id>
		<title>parsing-microformats</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=parsing-microformats&amp;diff=10722"/>
		<updated>2006-08-08T20:06:49Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* XSLT example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Microformat Parsing =&lt;br /&gt;
&lt;br /&gt;
Microformat parsing mechanisms that depend on documents having even minimal xml properties like well-formedness may fail when consuming non-well-formed content.  [http://tidy.sourceforge.net/ Tidy] or even better [http://people.apache.org/~andyc/neko/doc/html/ CyberNeko] may be a useful work around.&lt;br /&gt;
In particular  [http://suda.co.uk/projects/X2V/ Brian Suda's frequently cited X2V hCard and hCalendar discovery and transformation prototypes] use XSLT, and &amp;quot;tidy&amp;quot; any non-well-formed input before processing it.&lt;br /&gt;
&lt;br /&gt;
Most microformats tend to be agnostic about things like exact element type used.&lt;br /&gt;
&lt;br /&gt;
Developers can use tools like XPATH that assume well-formedness on well-formed content (from the web or by using tidy).  Mark Pilgrim's example [http://sourceforge.net/projects/feedparser/ universal feed parser] suggests that it may be possible to sanitize user html to an extent that it is suitable for later processing as xml.&lt;br /&gt;
&lt;br /&gt;
== Parsing class values ==&lt;br /&gt;
&lt;br /&gt;
When parsing class values care must be taken:&lt;br /&gt;
# Class attributes may contain multiple class names, e.g: &amp;lt;code&amp;gt;class=&amp;quot;foo vcard bar&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
# Class attributes may contain class names which contain the class name used by a microformat, e.g: &amp;lt;code&amp;gt;class=&amp;quot;foo&amp;lt;strong&amp;gt;vcard&amp;lt;/strong&amp;gt;bar&amp;quot;&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;class=&amp;quot;foo&amp;lt;strong&amp;gt;vcard&amp;lt;/strong&amp;gt;&amp;quot;&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;class=&amp;quot;&amp;lt;strong&amp;gt;vcard&amp;lt;/strong&amp;gt;bar&amp;quot;&amp;lt;/code&amp;gt;.&lt;br /&gt;
# Multiple class names are seperated by one or more whitespace charchters. &lt;br /&gt;
# Class names are case sensitive.&lt;br /&gt;
 &lt;br /&gt;
See http://www.w3.org/TR/html401/struct/global.html#h-7.5.2.&lt;br /&gt;
&lt;br /&gt;
=== JavaScript example ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
if (&amp;lt;em&amp;gt;elemenent&amp;lt;/em&amp;gt;.className.match(/\b&amp;lt;strong&amp;gt;vcard&amp;lt;/strong&amp;gt;\b/)) ...&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== XSLT example ===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 &amp;amp;lt;xsl:if test=&amp;quot;contains(&lt;br /&gt;
    concat (&lt;br /&gt;
        ' ',&lt;br /&gt;
        concat(normalize-whitespace(@class),' ')&lt;br /&gt;
    ),&lt;br /&gt;
    ' &amp;lt;strong&amp;gt;vcard&amp;lt;/strong&amp;gt; '&lt;br /&gt;
  )&amp;quot; &amp;amp;gt; ...&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://balloon.hobix.com/xpath-generator xpath generator], to help you generate those long ugly xpath queries. [link broken as of 8 August 2006]&lt;br /&gt;
&lt;br /&gt;
== Parsing rel/rev values ==&lt;br /&gt;
&lt;br /&gt;
Parsing rel and rev values is similar to parsing class values except for the following differences:&lt;br /&gt;
&lt;br /&gt;
# rel and rev values should be seperated by one space.&lt;br /&gt;
# rel and rev values are case insensetive.&lt;br /&gt;
&lt;br /&gt;
See http://www.w3.org/TR/html401/types.html#type-links.&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[xmdp-brainstorming]]&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events&amp;diff=7772</id>
		<title>events</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events&amp;diff=7772"/>
		<updated>2006-07-27T22:53:50Z</updated>

		<summary type="html">&lt;p&gt;Rohit: /* Upcoming */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; Microformats related events &amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please add any microformats related events (specifically, events where there will be talks on microformats) you find here, and we'll add them to the [[hcalendar|hCalendar]] on the [http://microformats.org home page]. Please also create a page for each specific event, where you can list URLs for the event, event details, create an &amp;quot;Attending&amp;quot; section, link to photos afterwards etc. (See [[events/2006-03-01-w3c-plenary-microformats|Microformats panel at W3C Plenary Day]] for a decent example to mimic).  Thanks! -[http://tantek.com/ Tantek]&lt;br /&gt;
&lt;br /&gt;
For presenations in particular, there's [[presentations|a seperate wiki page]].&lt;br /&gt;
&lt;br /&gt;
Patterns:&lt;br /&gt;
* YYYY-MM-DD: &amp;lt;nowiki&amp;gt;[[events/YYYY-MM-DD-event-session-title Event Session Title]]&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* YYYY-MM-DD - YYYY-MM-DD: &amp;lt;nowiki&amp;gt;[[events/YYYY-MM-DD-event-session-title Event Session Title]]&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Upcoming ==&lt;br /&gt;
* 2006-08-03 4-5:30PM: [http://events.commerce.net/?p=77 Server-side Microformats Parsing and MFML] at CommerceNet in Palo Alto&lt;br /&gt;
* 2006-07-27 8-9PM Microformats BOF at O'Reilly OSCON, Location: D137-138.  See [http://conferences.oreillynet.com/cs/os2006/view/e_sess/9591 BOF page on OSCON site]&lt;br /&gt;
* 2006-09-13 - 2006-09-14: Future of Web Apps - Microformats session&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Recent ==&lt;br /&gt;
* 2006-07-13: ICWE panel: &amp;quot;Web 2.0&amp;quot; Engineering with Tantek Çelik&lt;br /&gt;
* 2006-07-11: [[events/2006-07-11-an-event-apart-microformats|An Event Apart: Microformats]]&lt;br /&gt;
* 2006-07-11: ICWE Tutorial on Microformats by Ryan King&lt;br /&gt;
* 2006-06-21: [[events/2006-06-21-supernova-decentralizing-data|Supernova 2006 Decentralizing Data workshop]]&lt;br /&gt;
* 2006-06-20: Microformats.org [[events/anniversary/1|one year anniversary!]] &lt;br /&gt;
* 2006-06-15 - 2006-06-16: [[events/2006-06-16-atmedia-microformats|@media conference - microformats session]]&lt;br /&gt;
* 2006-06-13: [[events/2006-06-13-where-2-bof|Where 2.0 Microformats BOF II]] - developing a [[directions-examples|directions]] microformat.&lt;br /&gt;
* 2006-06-10: [http://barcamp.org/BarCampParisSiliconSentier BarCampParis]&lt;br /&gt;
* 2006-03-01: [[events/2006-03-01-w3c-plenary-microformats|Microformats panel at W3C Plenary Day]]&lt;br /&gt;
* 2006-03-02: [http://esw.w3.org/topic/SwigAtTp2006 Semantic Web Interest Group meeting at W3C Technical Plenary], specifically, 1.30-3.30pm Dan Connolly on using &amp;quot;GRDDL&amp;quot; to parse microformats&lt;br /&gt;
* 2006-03-07: [[events/2006-03-07-etech-microformats|Microformats at O'Reilly ETech]]&lt;br /&gt;
* 2006-03-13: [[events/2006-03-13-sxsw-microformats|Microformats at SXSW Interactive]]&lt;br /&gt;
* 2006-03-14: [[events/2006-03-14-sxsw-modulet|Convincing Your Company to Embrace Web Standards at SxSW Interactive]]&lt;br /&gt;
* 2006-03-20: [[events/2006-03-20-mix06-microformats|Mix06 Keynote with Tim O'Reilly and Bill Gates discussing microformats]]&lt;br /&gt;
* 2006-03-21: [[events/2006-03-21-mix06-microformats|Mix06 Microformats session discussions]]&lt;br /&gt;
* 2006-03-22: [[events/2006-03-22-mix06-microformats|Mix06 Microformats session discussions]]&lt;br /&gt;
* 2006-04-23 - 2006-04-24 [http://cmprofessionals.org/events/summit/#06spring CM Pros Summit] [http://www.nateaune.com Nate Aune] will be presenting a talk &amp;quot;Microformats and the Future of Syndication&amp;quot; from 16:30-17:30 at the Sheraton Palace Hotel in San Francisco.&lt;br /&gt;
* 2006-05-16 - 2006-05-19: [http://xtech.org/ XTech 2006 Conference]&lt;br /&gt;
** 2006-05-16 09:00-12:30: Half-day tutorial: [http://xtech06.usefulinc.com/content/tutorials#microformats Microformats from the Ground Up] at Volmer 3. [http://theryanking.com/presentations/2006/xtech/tutorial/ presentation slides].&lt;br /&gt;
** 2006-05-18 [http://xtech06.usefulinc.com/schedule#s2006-05-18-14:00 14:00-14:45]: [http://xtech06.usefulinc.com/schedule/detail/148 The Intelligent Design of Microformats]&lt;br /&gt;
* 2006-05-22: [http://refreshedinburgh.org/talks/introducing-microformats-your-web-site/ Refresh Edinburgh] Introducing microformats into your website, May 22nd 8pm-9pm.&lt;br /&gt;
* 2006-05-23 - 2006-05-26: [http://www2006.org/ www2006] &lt;br /&gt;
** 2006-05-23: [http://www.blogpulse.com/www2006-workshop/ WWE 2006 | 3rd Annual Workshop on the Weblogging Ecosystem] - call for papers is now open, and explicitly includes &amp;quot;microformats&amp;quot;.&lt;br /&gt;
** 2006-05-24: &lt;br /&gt;
*** All day: &amp;quot;Microformats: a Pragmatic Path to the Semantic Web&amp;quot; poster (Poster ID 116, by Rohit Khare and Tantek Çelik) presentation at Strathblane Hall on Level 0 opposite the main entrance.&lt;br /&gt;
*** 14:00-15:30: Brian Suda will be presenting a microformats demo ([http://www2006.org/programme/item.php?id=d7 Microformats, converting XHTML to vCards and vCalendars]) in the NextWave developer track session. More information about the presentation is available at [[events/www2006]].&lt;br /&gt;
** 2006-05-25 10:30-13:30: Molly E. Holzschlag will be presenting a half-day &amp;quot;Practical Microformats&amp;quot; developer tutorial.&lt;br /&gt;
* 2006-06-08 [http://glazkov.com/resources/presentations/2006-06-08-microformats/ Microformats]. [[DimitriGlazkov|Dimitri Glazkov]] talks about microformats at [http://ipsaonline.com/ IPSA] monthly meeting.&lt;br /&gt;
&lt;br /&gt;
== Quicktime Broadcaster Notes ==&lt;br /&gt;
&lt;br /&gt;
For setting up a mac laptop with an iSight and QT Broadcaster in order to publish live audio/video from events.&lt;br /&gt;
&lt;br /&gt;
# Make sure you have the necessary equipment and software installed&lt;br /&gt;
#* A Macintosh running OSX 10.3.9 or later&lt;br /&gt;
#* Quicktime 7 - get it from http://www.apple.com/quicktime/&lt;br /&gt;
#* Quicktime Broadcaster - get it from http://www.apple.com/quicktime/broadcaster/&lt;br /&gt;
#* An iSight or digital video camera with firewire connection&lt;br /&gt;
# Get a broadcast template document from someone (see KevinMarks for example)&lt;br /&gt;
# Open that, then change the info in the 'Network' pane that has his name etc in it.&lt;br /&gt;
# Check the video and audio panes are using your iSight&lt;br /&gt;
# Another tip is that the standalone thingy for the iSight can be more useful than the screen-top one if you have a desk, as that way it picks up less typing noise and wobbles&lt;br /&gt;
# I find plugging in headphones is a good idea, as you can then monitor and not get howlround&lt;br /&gt;
&lt;br /&gt;
http://microformats.org/media/broadcast.mov&lt;/div&gt;</summary>
		<author><name>Rohit</name></author>
	</entry>
</feed>