<?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=Beaulebens</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=Beaulebens"/>
	<link rel="alternate" type="text/html" href="https://microformats.org/wiki/Special:Contributions/Beaulebens"/>
	<updated>2026-04-28T12:28:46Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.4</generator>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hkit-issues&amp;diff=39991</id>
		<title>hkit-issues</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hkit-issues&amp;diff=39991"/>
		<updated>2009-07-27T00:39:56Z</updated>

		<summary type="html">&lt;p&gt;Beaulebens: create page, add 2 new issues.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== hKit Issues ==&lt;br /&gt;
* [http://getsatisfaction.com/satisfaction/topics/hcard_profile_import_is_erratic hCard profile import is erratic]&lt;br /&gt;
* If your hCard contains multiple emails or phone numbers, it will drop all of them from the output (e.g. you will have no emails/phone numbers in your output)&lt;br /&gt;
* The scheme-detection in $hKit::resolvePath() cause non-http URIs to be resolved as absolute paths. That can be fixed by replacing that method with this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
		private function resolvePath($filepath)&lt;br /&gt;
		{	// ugly code ahoy: needs a serious tidy up&lt;br /&gt;
					&lt;br /&gt;
			$filepath	= $filepath[0];&lt;br /&gt;
			&lt;br /&gt;
			$bits = parse_url( $filepath );&lt;br /&gt;
			if ( !empty( $bits['scheme'] ) ) {&lt;br /&gt;
				return $filepath;&lt;br /&gt;
			}&lt;br /&gt;
			&lt;br /&gt;
			$base 	= $this-&amp;gt;base;&lt;br /&gt;
			$url	= $this-&amp;gt;url;&lt;br /&gt;
			&lt;br /&gt;
			$bits = parse_url( $base );&lt;br /&gt;
			if ( !empty( $bits['scheme'] ) )&lt;br /&gt;
				$url = $base;&lt;br /&gt;
			&lt;br /&gt;
			$r		= parse_url($url);&lt;br /&gt;
			$domain	= $r['scheme'] . '://' . $r['host'];&lt;br /&gt;
&lt;br /&gt;
			if (!isset($r['path'])) $r['path'] = '/';&lt;br /&gt;
			$path	= explode('/', $r['path']);&lt;br /&gt;
			$file	= explode('/', $filepath);&lt;br /&gt;
			$new	= array('');&lt;br /&gt;
&lt;br /&gt;
			if ($file[0] == ''){&lt;br /&gt;
				// absolute path&lt;br /&gt;
				return ''.$domain . implode('/', $file);&lt;br /&gt;
			}else{&lt;br /&gt;
				// relative path&lt;br /&gt;
				if ($path[sizeof($path)-1] == '') array_pop($path);&lt;br /&gt;
				if (strpos($path[sizeof($path)-1], '.') !== false) array_pop($path);&lt;br /&gt;
&lt;br /&gt;
				foreach ($file as $segment){&lt;br /&gt;
					if ($segment == '..'){&lt;br /&gt;
						array_pop($path);&lt;br /&gt;
					}else{&lt;br /&gt;
						$new[]	= $segment;&lt;br /&gt;
					}&lt;br /&gt;
				}&lt;br /&gt;
				return ''.$domain . implode('/', $path) . implode('/', $new);&lt;br /&gt;
			}	&lt;br /&gt;
		}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Beaulebens</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hkit&amp;diff=39988</id>
		<title>hkit</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hkit&amp;diff=39988"/>
		<updated>2009-07-27T00:26:28Z</updated>

		<summary type="html">&lt;p&gt;Beaulebens: /* issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TOC-right}}&lt;br /&gt;
&amp;lt;h1&amp;gt;hKit&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
hKit is an open source library and web service written by [http://allinthehead.com/ Drew McLellan] that [[implementations#hKit_Microformats_Toolkit_for_PHP5|implements parsing of hCards]] into a PHP or JSON data structure.&lt;br /&gt;
&lt;br /&gt;
== open source ==&lt;br /&gt;
* [http://hkit.googlecode.com/ hKit Microformats Toolkit for PHP5] as [http://allinthehead.com/retro/291/hkit-microformats-toolkit-for-php announced by Drew McLellan]&lt;br /&gt;
&lt;br /&gt;
== web service ==&lt;br /&gt;
* [http://tools.microformatic.com/help/xhtml/hkit/ hKit parser web service]&lt;br /&gt;
* Example: http://tools.microformatic.com/query/plain/hkit/microformats.org&lt;br /&gt;
&lt;br /&gt;
== how to call ==&lt;br /&gt;
See [[representative-hcard-parsing]] for open source PHP to call hKit and extract the representative hCard from a page that has multiple hCards.&lt;br /&gt;
&lt;br /&gt;
== implementations ==&lt;br /&gt;
Services that use hKit:&lt;br /&gt;
* [http://getsatisfaction.com/people/new GetSatisfaction.com] (as blogged: http://microformats.org/blog/2007/06/21/microformatsorg-turns-2/ )&lt;br /&gt;
&lt;br /&gt;
== issues ==&lt;br /&gt;
[[hkit-issues]]&lt;br /&gt;
&lt;br /&gt;
== related ==&lt;br /&gt;
* [[hcard|hCard]]&lt;br /&gt;
* [[implementations]]&lt;br /&gt;
* [[social-network-portability]]&lt;/div&gt;</summary>
		<author><name>Beaulebens</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hcard-user-interface&amp;diff=39936</id>
		<title>hcard-user-interface</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hcard-user-interface&amp;diff=39936"/>
		<updated>2009-07-26T02:17:43Z</updated>

		<summary type="html">&lt;p&gt;Beaulebens: /* data export */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; hCard User Interface &amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
This page is for techniques and issues surrounding [[user-interface|user-interfaces]] to author, publish, and display [[hcard|hCards]].&lt;br /&gt;
&lt;br /&gt;
== Authors ==&lt;br /&gt;
* [http://allinthehead.com/ Drew McLellan]&lt;br /&gt;
* [http://tantek.com/ Tantek Çelik], [http://technorati.com Technorati, Inc]&lt;br /&gt;
&lt;br /&gt;
== Single Input Field for Names ==&lt;br /&gt;
When capturing name data that is later to be presented as a hCard, it's important that the data is collected at the highest fidelity possible. As not all names are suitable for hCard's implied-n optimisation (and therefore can't be output as &amp;lt;code&amp;gt;fn&amp;lt;/code&amp;gt;, with &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt; omitted), capturing component parts of the name individually enables the proper construction on &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt; when generating the hCard.&lt;br /&gt;
&lt;br /&gt;
Sometimes, however, constraints require a name be collected with a single field. Once such example is common blog CMSs (WordPress, TextPattern) that use a single database field to store the name against each post comment. In such cases it is &amp;lt;em&amp;gt;always&amp;lt;/em&amp;gt; desirable to find a way to collect the name with higher fidelity. However, if this simply cannot be done, the implementer could chose to attempt to best-guess the component parts of the name to form a valid &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
One suggested 'best-guess' algorithm might be:&lt;br /&gt;
&lt;br /&gt;
# If the name is one word, attempt [[hcard#Implied_.22nickname.22_Optimization|implied nickname optimization]]&lt;br /&gt;
# If the name is two words, attempt [[hcard#Implied_.22n.22_Optimization|implied n optimization]]&lt;br /&gt;
# For three or more words&lt;br /&gt;
## Perform a lookup against known sub-name combinations (e.g. 'Sarah Jane', 'Vander Wal')&lt;br /&gt;
## Apply the grammar &amp;quot;(honorific-prefix) given-name additional-name(s) family-name (honorific-suffix)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
The principal behind this suggestion is that it's better to make a good guess and potentially miscategorise an ambiguous name component than to generate an invalid hCard.&lt;br /&gt;
&lt;br /&gt;
== Additional user interface ==&lt;br /&gt;
Some examples of additional user interface for hCard. Note that most of these actions should be applicable to all instances of the microformat on the page at once (e.g. export all contacts), of for a selection of instances (e.g. export selected contacts), or one just one specific instance (e.g. export contact XYZ).&lt;br /&gt;
&lt;br /&gt;
=== address book integration ===&lt;br /&gt;
* &amp;quot;Add to Address Book&amp;quot; (convert the hCard to a vCard (.vcf) and pass it onto the OS to automatically open/incorporate into the user's preferred local address book application)&lt;br /&gt;
* add to Gmail, Yahoo Mail, Hotmail address book (etc.)&lt;br /&gt;
=== desktop to phone transfer ===&lt;br /&gt;
* send to Bluetooth, for quick transfer of contact info from the web to a cell phone.&lt;br /&gt;
* display contact details in an on-screen or downloadable [[semacode]], [[qr_code]] or other [[2d_barcodes]] (to allow them to be read by mobile devices)&lt;br /&gt;
&lt;br /&gt;
=== telephony integration ===&lt;br /&gt;
* If a &amp;lt;code&amp;gt;tel&amp;lt;/code&amp;gt; (phone number) having type &amp;lt;code&amp;gt;home&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;work&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;cell&amp;lt;/code&amp;gt; is present, provide options to dial it (NB applies to one number at a time only; except for possible conference-call uses) directly, or via&lt;br /&gt;
** built-in modem&lt;br /&gt;
** bluetooth command to a paired device (e.g. cell phone)&lt;br /&gt;
** default telephony app (e.g. skype-out)&lt;br /&gt;
* If a &amp;lt;code&amp;gt;tel&amp;lt;/code&amp;gt; (phone number) having type &amp;lt;code&amp;gt;home&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;work&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;cell&amp;lt;/code&amp;gt; is present, provide options to send MMS:&lt;br /&gt;
**directly&lt;br /&gt;
**using on-line service&lt;br /&gt;
** bluetooth command to a paired device (e.g. cell phone)&lt;br /&gt;
=== fax integration ===&lt;br /&gt;
* If a &amp;lt;code&amp;gt;tel&amp;lt;/code&amp;gt; of type &amp;lt;code&amp;gt;fax&amp;lt;/code&amp;gt; is present, provide options to send a fax to it via:&lt;br /&gt;
** efax online service&lt;br /&gt;
** built-in fax modem&lt;br /&gt;
=== birthday planning ===&lt;br /&gt;
* If a birth-date is present, treat it as a recurring hCalendar event.&lt;br /&gt;
=== address canonicalization ===&lt;br /&gt;
* Given a postal code (or other partial address) fetch the full, canonical postal address for the relevant authority's website (e.g. [http://postcode.royalmail.com/portal/rm/postcodefinder]). If no country is defined, used the user's locality as the default.&lt;br /&gt;
&lt;br /&gt;
=== data export ===&lt;br /&gt;
* export as text/ [[csv|comma-separated-variables]] (CSV) to allow editing, sorting and/ or import into spreadsheets/ databases, etc. (or concatenate to existing file)&lt;br /&gt;
&lt;br /&gt;
=== data import ===&lt;br /&gt;
* load hCard data from a URL using Yahoo's YQL via jQuery http://shapeshed.com/journal/populating_forms_with_yql_jquery_and_microformats&lt;br /&gt;
&lt;br /&gt;
==see also==&lt;br /&gt;
{{hcard-related-pages}}&lt;/div&gt;</summary>
		<author><name>Beaulebens</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=self-updating-address-book&amp;diff=39877</id>
		<title>self-updating-address-book</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=self-updating-address-book&amp;diff=39877"/>
		<updated>2009-07-25T22:48:04Z</updated>

		<summary type="html">&lt;p&gt;Beaulebens: New page: == Self Updating Address Book ==  Basic Idea: an online address book/contact system, accessible via LDAP, which updates its records by periodically crawling/parsing URLs containing hCards....&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Self Updating Address Book ==&lt;br /&gt;
&lt;br /&gt;
Basic Idea: an online address book/contact system, accessible via LDAP, which updates its records by periodically crawling/parsing URLs containing hCards.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Participants ===&lt;br /&gt;
* Beau Lebens&lt;br /&gt;
* Matt Wilkinson&lt;br /&gt;
* Mark Ng&lt;br /&gt;
* Tantek Celik&lt;br /&gt;
* Chad Weider&lt;/div&gt;</summary>
		<author><name>Beaulebens</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:BeauLebens&amp;diff=39594</id>
		<title>User:BeauLebens</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:BeauLebens&amp;diff=39594"/>
		<updated>2009-07-16T18:04:48Z</updated>

		<summary type="html">&lt;p&gt;Beaulebens: New page: &amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Beau Lebens&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://dentedreality.com.au/&amp;lt;/span&amp;gt;,&amp;lt;span class=&amp;quot;photo&amp;quot;&amp;gt;http://www.gravatar.com/avatar/205e460b479e2e5b48aec07710c...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Beau Lebens&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://dentedreality.com.au/&amp;lt;/span&amp;gt;,&amp;lt;span class=&amp;quot;photo&amp;quot;&amp;gt;http://www.gravatar.com/avatar/205e460b479e2e5b48aec07710c08d50.jpg?s=256&amp;amp;r=X&amp;lt;/span&amp;gt;)&amp;lt;/div&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
{{cc-public-domain-release}}&lt;/div&gt;</summary>
		<author><name>Beaulebens</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39593</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=39593"/>
		<updated>2009-07-16T18:02:50Z</updated>

		<summary type="html">&lt;p&gt;Beaulebens: Added myself, updated address to include Pier 38 and added a session (hCard-&amp;gt;address book)&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;Pier 38, 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;
;short URL&lt;br /&gt;
:http://tr.im/ufdevcamp&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;
== 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'''&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'''&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;Chris Messina&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''intro and kickoff'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;- run the introductory session and help start the microformatsDevCamp with traditional BarCamp intros/3tags and explanation of the BarCamp format.&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&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;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;
Not sure what is going on but want to design interfaces or build stuff with microformats and want help doing it? Sign up! Add yourself alphabetically sorted by family name. Note your site (with [[hCard]] if you have it), interests/projects, and tag yourself as a web '''author''', '''designer''', '''publisher''', '''developer''', or several.&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;
&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;
* '''sponsors''' - for food, t-shirts&lt;br /&gt;
* '''t-shirts''' (get estimate, make sure to order in time for the event, I think Ben Ward may be working on this - check with him)&lt;br /&gt;
* '''food''' - coordinate / match up sponsors with meals and make sure the meals arrive and are setup for the attendees&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;
* '''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;
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;
===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>Beaulebens</name></author>
	</entry>
</feed>