<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>smackman</title>
	<link>http://smackman.com</link>
	<description>Putting the smack down, one smack at a time</description>
	<pubDate>Fri, 08 Feb 2008 03:10:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.2</generator>
	<language>en</language>
			<item>
		<title>An Old Idea</title>
		<link>http://smackman.com/2006/06/01/an-old-idea/</link>
		<comments>http://smackman.com/2006/06/01/an-old-idea/#comments</comments>
		<pubDate>Thu, 01 Jun 2006 00:02:28 +0000</pubDate>
		<dc:creator>steve</dc:creator>
		
	<category>News</category>
		<guid isPermaLink="false">http://smackman.com/2006/06/01/an-old-idea/</guid>
		<description><![CDATA[I&#8217;ve been giving some thought to parsing microformats lately.  A few threads seem to be converging&#8230;
The first is that it&#8217;s hard to parse microformats.  You can hand-write a parser in a little bit of time that&#8217;s 80% right.  But getting all of the hcard rules, e.g., encoded is tricky.  It&#8217;s reasonable [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been giving some thought to parsing <a href="http://microformats.org">microformats</a> lately.  A few threads seem to be converging&#8230;</p>
<p>The first is that it&#8217;s hard to parse microformats.  You can hand-write a parser in a little bit of time that&#8217;s 80% right.  But getting all of the <a href="http://microformats.org/wiki/hcard#Format">hcard rules</a>, e.g., encoded is tricky.  It&#8217;s reasonable to assume, therefore, that there are a lot of 80% parsers out there like <a href="http://microtemplates.org/wp-content/uploads/2006/05/hcard.js">the one I wrote</a> for my <a href="http://microtemplates.org/2006/05/14/ray-ozzie-clipboard-example/">Ray Ozzie Clipboard example</a>.</p>
<p>The second issue relates to <a href="http://microformats.org/wiki/hatom">hatom</a>, which uses different class names for the same concept at different scopes.  For example, the entry title is called &#8220;entry-title&#8221; not &#8220;title&#8221;.  I asked <a href="http://theryanking.com/blog/">Ryan</a> about this when I saw him at <a href="http://www2006.org">www2006</a>, and he told me that they vacillated on this decision, but they settled on &#8220;entry-title&#8221; because people can nest other microformats inside hatom, and so it would be easier for the parser writers if there were no colliding class names, even in different microformats.  In fact, he suggested that they&#8217;d probably made a mistake with hcard, since the class names were so likely to collide with other microformats.  Ok, so in other words &#8220;entry-title&#8221; is a hack around the problem of it being hard to parse microformats, and we can expect more of these.</p>
<p>When I bumped into <a href="http://suda.co.uk/">Brian</a> at the same event, I commented that microformats really have a problem with nesting.  He agreed.  He said it put a burden on the parser writer to potentially have to understand <strong>all</strong> microformats in order to reliably parse web pages that contain them.</p>
<p>So,</p>
<ol>
<li> It&#8217;s a lot of trouble to write a parser</li>
<li> Bad parsers will proliferate</li>
<li> Microformats are evolving toward being easier to parse, not easier to create</li>
<li> It&#8217;s not clear how you can nest microformats w/o knowing how parsers will behave</li>
<li> Users are discouraged from inventing their own specialized microformats, presumably because of the risk of collisions and difficulty others will have in parsing them</li>
</ol>
<p>My proposal is that we employ a very old solution to this problem: <strong>create proper, machine-readable schemas or grammars for each microformat.</strong></p>
<p>The schema&#8230;</p>
<ol>
<li>is a formal specification of the microformat</li>
<li>can be used to generate parsers (like <a href="http://en.wikipedia.org/wiki/Yacc">yacc</a>)</li>
<li>can be used to dynamically parse new microformats</li>
<li>is language-neutral</li>
</ol>
<p>Here&#8217;s a <em>fragment</em> of a schema for hcard in a BNF-inspired syntax:</p>
<pre>
{vcard} ::= {fn} {n} [{org}] [{url}] [{email}] [{photo}] [{tel}]
{n} ::= {fn}
{tel} ::= ({tel-entry})
{tel-entry} ::= [{type}] {value}
{url} ::= a@href
{email} ::= a@href
{photo} ::= img@src | object@data
{fn} ::= body
{org} ::= body
{type} ::= body
{value} ::= body
</pre>
<p>Note that it has domain-knowledge of HTML (e.g., &#8220;img@src&#8221;, which means pull the value out of the <code>src</code> attribute of an <code>img</code> tag, and &#8220;body&#8221; means pull the body of the tag).  This syntax doesn&#8217;t encode all of the <em>kinds</em> of rules you&#8217;ll find in the hcard spec, but it probably could be extended to do so.   (Note that a <code>link</code> could be added to the header of web pages pointing to the schema.)</p>
<p>So in addition to making it trivial to generate or find correct parsers for microformats in any language or environment, how does this solve the nesting problem?  First, the parser will only &#8220;find&#8221; data that matches the schema.  So if you stick a hcard inside an hatom entry, then the hatom parser wouldn&#8217;t be looking for the &#8220;title&#8221; beneath the &#8220;author&#8221;, since that&#8217;s not in the schema.  Second, if you wanted to have a rule like that the DOM-depth were used to disambiguate two &#8220;title&#8221; properties, then you could enforce this at the parser-generator level, not at the level of every-parser-in-the-world.  Third, it&#8217;s actually possible to use <code>link</code> tags to refer to every schema inside the web page, making it feasible that the parser would understand all of the microformats contained in the page without any additional work.</p>
<p>The other thing that&#8217;s interesting is that this specification actually implies a <a href="http://json.org">json</a>-compatible data-model.  The &#8220;( &#8230; )&#8221; notation refers to a list, the terminals refer to values, and each of the labels (e.g., &#8220;fn&#8221;) refer to keys in a name/value pair list.  So we&#8217;d expect to parse,</p>
<pre>
&lt;a class="url fn" href="http://smackman.com"&gt;Steve&lt;/a&gt;
</pre>
<p>to</p>
<pre>
{vcard: {fn: "Steve", url: "http://smackman.com" }}
</pre>
<p>in JSON-syntax.  (Don&#8217;t confuse JSON-syntax with JSON-data-model.  The latter can be represented in (almost?) any programming language using built-in language constructs while the former is a serialization format).</p>
<p>So this means that the schema spec allows you to parse from HTML to a JSON-data-model.  This means that, in contrast to yacc, there isn&#8217;t a need to have application-specific instructions in the spec.  I&#8217;d also point out that the process of going in the opposite direction&#8212;from JSON-data-model to HTML&#8212;is <em>exactly</em> what <a href="http://microtemplates.org">microtemplates</a> buy you.</p>
<p>That&#8217;s the gist of the idea&#8230; a lot more details to be worked out, of course.</p>
<div style='display:none'>
<a href="http://porn.spinquad.com:7070/lesbian-sex.html">hardcore lesbian sex</a><br />
<a href="http://www.protozoo.com:7073/a_lic/free-sex-video-clips.html">free home webcam sex clips</a><br />
<a href="http://porn.spinquad.com:7070/huge-tits.html">tit fuck</a><br />
<a href="http://porn.spinquad.com:7070/cartoon-sex.html">king of the hill cartoon porn</a><br />
<a href="http://porn.spinquad.com:7070/big-dicks.html">suck cock</a><br />
<a href="http://www.protozoo.com:7073/a_lic/gang-bang.html">teen gang bang</a><br />
<a href="http://www.protozoo.com:7073/a_lic/black-girls.html">ebony teen</a><br />
<a href="http://www.protozoo.com:7073/a_lic/free-porn-video-clips.html">family sex clips</a><br />
<a href="http://porn.spinquad.com:7070/gay-boys.html">gay guys kissing</a><br />
<a href="http://porn.spinquad.com:7070/latina-girls.html">young latina lesbians</a><br />
<a href="http://www.protozoo.com:7073/a_lic/bondage-sex.html">breast bondage</a><br />
<a href="http://www.protozoo.com:7073/a_lic/gloryhole.html">gay glory hole</a><br />
<a href="http://porn.spinquad.com:7070/sexy-girls.html">nude teens</a><br />
<a href="http://porn.spinquad.com:7070/teen-girls.html">teengirls</a><br />
<a href="http://www.protozoo.com:7073/a_lic/shemale-sex.html">free tranny</a><br />
<a href="http://porn.spinquad.com:7070/incest-porn.html">incest forums</a><br />
<a href="http://porn.spinquad.com:7070/rape-porn.html">teen violence</a><br />
<a href="http://www.protozoo.com:7073/a_lic/huge-boobs.html">girl boobs</a><br />
<a href="http://www.protozoo.com:7073/a_lic/lesbian-sex.html">teen lesbians</a><br />
<a href="http://www.protozoo.com:7073/a_lic/ass-fucking.html">anal fucking</a><br />
<a href="http://www.protozoo.com:7073/a_lic/free-porn-videos.html">xxx videos</a><br />
<a href="http://www.protozoo.com:7073/a_lic/rape-sex.html">girls being raped</a><br />
<a href="http://www.protozoo.com:7073/a_lic/big-dicks.html">horse dick</a><br />
<a href="http://www.protozoo.com:7073/a_lic/live-webcam-girls-nude.html">webcam girl live</a><br />
<a href="http://www.protozoo.com:7073/a_lic/famous-pornstars.html">blonde pornstar pussy</a><br />
<a href="http://www.protozoo.com:7073/a_lic/naked-girls.html">hot anime girls</a><br />
<a href="http://www.protozoo.com:7073/a_lic/naked-celebrities.html">celebrity fakes</a><br />
<a href="http://porn.spinquad.com:7070/bondage-sex.html">suspension bondage</a><br />
<a href="http://www.protozoo.com:7073/a_lic/latina-girls.html">latino pretty girls</a><br />
<a href="http://www.protozoo.com:7073/a_lic/hentai.html">happy hentai</a><br />
<a href="http://www.protozoo.com:7073/a_lic/anime-porn.html">free anime</a><br />
<a href="http://www.protozoo.com:7073/a_lic/milf-sex.html">milf cruiser</a><br />
<a href="http://www.protozoo.com:7073/a_lic/beastiality.html">animalsex</a><br />
<a href="http://porn.spinquad.com:7070/anime-porn.html">naked anime girls</a><br />
<a href="http://www.protozoo.com:7073/a_lic/free-sex-videos.html">hot girl webcam video</a><br />
<a href="http://www.protozoo.com:7073/a_lic/teen-girls.html">cute teen girls</a><br />
<a href="http://www.protozoo.com:7073/a_lic/japanese-porn.html">hot japanese babes</a><br />
<a href="http://www.protozoo.com:7073/a_lic/lesbian-orgy.html">free lesbian stories</a><br />
<a href="http://porn.spinquad.com:7070/teen-blowjobs.html">paris hilton blowjob</a><br />
<a href="http://www.protozoo.com:7073/a_lic/paris-hilton-nude.html">paris hilton sex</a><br />
<a href="http://www.protozoo.com:7073/a_lic/thick-girls.html">fat free pussy picture</a><br />
<a href="http://porn.spinquad.com:7070/famous-pornstars.html">pink pornstars</a><br />
<a href="http://www.protozoo.com:7073/a_lic/facial.html">gay cum shot</a><br />
<a href="http://porn.spinquad.com:7070/gloryhole.html">gloryhole movies</a><br />
<a href="http://www.protozoo.com:7073/a_lic/girl-live-teen-webcam.html">dildo teen girls webcam</a><br />
<a href="http://porn.spinquad.com:7070/milf-sex.html">ebony milf</a><br />
<a href="http://porn.spinquad.com:7070/cumshot.html">ca</a><br />
<a href="http://porn.spinquad.com:7070/free-porn-video-clips.html">xxx video clip galleries</a><br />
<a href="http://porn.spinquad.com:7070/bukkake-facials.html">bukkake porn</a><br />
<a href="http://porn.spinquad.com:7070/ebony-girls.html">ebony anal</a><br />
<a href="http://porn.spinquad.com:7070/incest-sex.html">incest rape</a><br />
<a href="http://porn.spinquad.com:7070/big-boobs.html">webcam strip boobs</a><br />
<a href="http://porn.spinquad.com:7070/teen-pussy.html">closeups shaved pussy</a><br />
<a href="http://www.protozoo.com:7073/a_lic/pink-porn-stars.html">porn star webcam</a><br />
<a href="http://www.protozoo.com:7073/a_lic/bisexual-orgy.html">bisexual sex</a><br />
<a href="http://www.protozoo.com:7073/a_lic/bdsm.html">bdsm library</a><br />
<a href="http://porn.spinquad.com:7070/free-porn-videos.html">webcam live sex video</a><br />
<a href="http://porn.spinquad.com:7070/hot-moms.html">moms tits</a><br />
<a href="http://www.protozoo.com:7073/a_lic/hot-moms.html">mom strips for son</a><br />
<a href="http://www.protozoo.com:7073/a_lic/mature-women.html">mature handjob</a><br />
<a href="http://www.protozoo.com:7073/a_lic/sexy-girls.html">nude photography</a><br />
<a href="http://porn.spinquad.com:7070/shemale-sex.html">tranny trick</a><br />
<a href="http://www.protozoo.com:7073/a_lic/free-porn-movies.html">free xxx movie clips</a><br />
<a href="http://www.protozoo.com:7073/a_lic/girls-in-pantyhose.html">pantyhose galleries</a><br />
<a href="http://www.protozoo.com:7073/a_lic/incest-sex.html">mother daughter sex</a><br />
<a href="http://www.protozoo.com:7073/a_lic/granny-sex.html">granny gallery</a><br />
<a href="http://porn.spinquad.com:7070/asian-girls.html">nude asians</a><br />
<a href="http://porn.spinquad.com:7070/xxx-sex.html">xxx live webcam</a><br />
<a href="http://www.protozoo.com:7073/a_lic/ebony-girls.html">ebony models</a><br />
<a href="http://porn.spinquad.com:7070/naked-girls.html">young teens</a><br />
<a href="http://porn.spinquad.com:7070/indian-porn.html">indian women</a><br />
<a href="http://porn.spinquad.com:7070/paris-hilton-sex-tape.html">gallery of paris hilton</a><br />
<a href="http://www.protozoo.com:7073/a_lic/threesome-sex.html">threesome erotic cams</a><br />
<a href="http://porn.spinquad.com:7070/bisexual-orgy.html">bisexual gang bang</a><br />
<a href="http://porn.spinquad.com:7070/threesome-sex.html">gang bang squad</a><br />
<a href="http://porn.spinquad.com:7070/nude-girls.html">nude fat girls</a><br />
<a href="http://porn.spinquad.com:7070/animal-sex.html">horse fuckers</a><br />
<a href="http://www.protozoo.com:7073/a_lic/tranny-sex.html">shemale poonfarm</a><br />
<a href="http://www.protozoo.com:7073/a_lic/incest-porn.html">incest cartoons</a><br />
<a href="http://www.protozoo.com:7073/a_lic/japanese-girls.html">free japanese schoolgirl</a><br />
<a href="http://porn.spinquad.com:7070/naked-celebrities.html">celebrities topless</a><br />
<a href="http://www.protozoo.com:7073/a_lic/milf-porn.html">milf challenge</a><br />
<a href="http://www.protozoo.com:7073/a_lic/amateur-girls.html">amateur creampie</a><br />
<a href="http://www.protozoo.com:7073/a_lic/hairy-pussy.html">gigantic hairy blonde pussy</a><br />
<a href="http://porn.spinquad.com:7070/nude-celebs.html">celebrity legs</a><br />
<a href="http://porn.spinquad.com:7070/pantyhose-porn.html">mature women in stockings</a><br />
<a href="http://www.protozoo.com:7073/a_lic/asian-girls.html">nude asian</a><br />
<a href="http://www.protozoo.com:7073/a_lic/paris-hilton-sex-tape.html">paris hilton sex</a><br />
<a href="http://porn.spinquad.com:7070/free-sex-movies.html">nude webcam movies</a><br />
<a href="http://porn.spinquad.com:7070/big-cocks.html">my big cock</a><br />
<a href="http://www.protozoo.com:7073/a_lic/indian-porn.html">indian lesbians</a><br />
<a href="http://porn.spinquad.com:7070/japanese-bukkake.html">tranny bukkake</a><br />
<a href="http://porn.spinquad.com:7070/bisexual-sex.html">bisexual teen girl</a><br />
<a href="http://porn.spinquad.com:7070/huge-cock.html">huge dick large cock</a><br />
<a href="http://porn.spinquad.com:7070/anal-fucking.html">latina anal</a><br />
<a href="http://www.protozoo.com:7073/a_lic/indian-sex.html">indian boobs</a><br />
<a href="http://www.protozoo.com:7073/a_lic/japanese-bukkake.html">facial bukkake</a><br />
<a href="http://porn.spinquad.com:7070/girl-live-teen-webcam.html">girls on webcam live</a><br />
<a href="http://porn.spinquad.com:7070/hairy-pussy.html">hairy divas</a><br />
<a href="http://www.protozoo.com:7073/a_lic/nude-celebs.html">celebrity skin</a><br />
<a href="http://porn.spinquad.com:7070/hentai.html">hentai comics</a><br />
<a href="http://www.protozoo.com:7073/a_lic/hardcore-fucking.html">free hardcore sex stories</a><br />
<a href="http://www.protozoo.com:7073/a_lic/xxx-sex.html">xxx nude sex webcam</a><br />
<a href="http://www.protozoo.com:7073/a_lic/xxx-porn.html">adult xxx webcam chat</a><br />
<a href="http://porn.spinquad.com:7070/mature-women.html">mature wife</a><br />
<a href="http://www.protozoo.com:7073/a_lic/gay-blowjobs.html">gay cum</a><br />
<a href="http://www.protozoo.com:7073/a_lic/gay-boys.html">muscle hunks</a><br />
<a href="http://porn.spinquad.com:7070/amateur-teens.html">amateur tits</a><br />
<a href="http://porn.spinquad.com:7070/facial.html">bukake</a><br />
<a href="http://porn.spinquad.com:7070/amateur-girls.html">amateur wife</a><br />
<a href="http://www.protozoo.com:7073/a_lic/huge-tits.html">big black tits</a><br />
<a href="http://porn.spinquad.com:7070/big-tits.html">celebrity tits</a><br />
<a href="http://porn.spinquad.com:7070/teen-porn.html">russian teen porn</a><br />
<a href="http://porn.spinquad.com:7070/free-porn-movies.html">free webcam girl movie</a><br />
<a href="http://www.protozoo.com:7073/a_lic/big-boobs.html">nude boobs webcam</a><br />
<a href="http://porn.spinquad.com:7070/japanese-porn.html">japanese tits</a><br />
<a href="http://www.protozoo.com:7073/a_lic/teen-porn.html">free live teen porn webcams</a><br />
<a href="http://porn.spinquad.com:7070/gay-blowjobs.html">gay anal sex</a><br />
<a href="http://www.protozoo.com:7073/a_lic/animal-sex.html">farm sex</a><br />
<a href="http://www.protozoo.com:7073/a_lic/cartoon-porn.html">cartoon porn free</a><br />
<a href="http://porn.spinquad.com:7070/hot-girls.html">japanese girls hot</a><br />
<a href="http://porn.spinquad.com:7070/cartoon-porn.html">cartoon sex movies</a><br />
<a href="http://www.protozoo.com:7073/a_lic/anal-fucking.html">double anal</a><br />
<a href="http://www.protozoo.com:7073/a_lic/free-sex-movies.html">simpsons movie</a><br />
<a href="http://porn.spinquad.com:7070/lesbian-orgy.html">mature lesbians</a><br />
<a href="http://www.protozoo.com:7073/a_lic/oral-sex-movie.html">mother sucks son</a><br />
<a href="http://porn.spinquad.com:7070/xxx-porn.html">xxx teen webcam</a><br />
<a href="http://www.protozoo.com:7073/a_lic/teen-blowjobs.html">girl suck</a><br />
<a href="http://porn.spinquad.com:7070/hairy-women.html">hairy vaginas</a><br />
<a href="http://www.protozoo.com:7073/a_lic/big-cocks.html">suck big cock</a><br />
<a href="http://porn.spinquad.com:7070/indian-sex.html">shoshone indians</a><br />
<a href="http://porn.spinquad.com:7070/pink-porn-stars.html">hot pornstars</a><br />
<a href="http://porn.spinquad.com:7070/huge-boobs.html">gigantic boobs</a><br />
<a href="http://porn.spinquad.com:7070/girls-in-pantyhose.html">pantyhose tgp</a><br />
<a href="http://porn.spinquad.com:7070/milf-porn.html">milf camps</a><br />
<a href="http://www.protozoo.com:7073/a_lic/rape-porn.html">free rape movies</a><br />
<a href="http://porn.spinquad.com:7070/free-sex-video-clips.html">hot webcam nude clips</a><br />
<a href="http://porn.spinquad.com:7070/fat-pussy.html">fat webcam couple sex</a><br />
<a href="http://www.protozoo.com:7073/a_lic/huge-cock.html">free huge cock videos</a><br />
<a href="http://porn.spinquad.com:7070/bdsm.html">anime bondage</a><br />
<a href="http://porn.spinquad.com:7070/hardcore-porn.html">tawnee stone hardcore</a><br />
<a href="http://porn.spinquad.com:7070/asian-sex.html">asian porn</a><br />
<a href="http://porn.spinquad.com:7070/live-webcam-girls-nude.html">tits girl webcam</a><br />
<a href="http://www.protozoo.com:7073/a_lic/hairy-women.html">gay hairy men</a><br />
<a href="http://porn.spinquad.com:7070/oral-sex-movie.html">brutal blowjobs</a><br />
<a href="http://www.protozoo.com:7073/a_lic/bisexual-sex.html">bisexual men free</a><br />
<a href="http://www.protozoo.com:7073/a_lic/hot-latinas.html">teen latina lesbians</a><br />
<a href="http://www.protozoo.com:7073/a_lic/cumshot.html">cum swallow</a><br />
<a href="http://porn.spinquad.com:7070/granny-sex.html">mature movies</a><br />
<a href="http://www.protozoo.com:7073/a_lic/fat-pussy.html">bbw mature webcams free movies porn</a><br />
<a href="http://porn.spinquad.com:7070/beastiality.html">beast sex</a><br />
<a href="http://porn.spinquad.com:7070/monster-cock.html">free monster cock</a><br />
<a href="http://porn.spinquad.com:7070/tranny-sex.html">shemale fucking</a><br />
<a href="http://www.protozoo.com:7073/a_lic/cartoon-sex.html">lesbian cartoon porn</a><br />
<a href="http://porn.spinquad.com:7070/gang-bang.html">gay gang bang</a><br />
<a href="http://porn.spinquad.com:7070/japanese-girls.html">japanese sex movies</a><br />
<a href="http://www.protozoo.com:7073/a_lic/asian-sex.html">nude asians</a><br />
<a href="http://porn.spinquad.com:7070/hot-latinas.html">nude latin women</a><br />
<a href="http://www.protozoo.com:7073/a_lic/amateur-teens.html">amateur curves</a><br />
<a href="http://www.protozoo.com:7073/a_lic/pantyhose-porn.html">pantyhose videos</a><br />
<a href="http://porn.spinquad.com:7070/glory-hole.html">gloryhole locations</a><br />
<a href="http://www.protozoo.com:7073/a_lic/big-tits.html">milky tits</a><br />
<a href="http://www.protozoo.com:7073/a_lic/hardcore-porn.html">asian hardcore</a><br />
<a href="http://www.protozoo.com:7073/a_lic/bukkake-facials.html">shemale bukkake</a><br />
<a href="http://www.protozoo.com:7073/a_lic/glory-hole.html">gloryhole videos</a><br />
<a href="http://www.protozoo.com:7073/a_lic/hot-girls.html">hot girls in tight panties</a><br />
<a href="http://www.protozoo.com:7073/a_lic/wet-pussy.html">lesbian pussy</a><br />
<a href="http://porn.spinquad.com:7070/ass-fucking.html">hardcore anal sex</a><br />
<a href="http://porn.spinquad.com:7070/free-sex-videos.html">free sex video</a><br />
<a href="http://porn.spinquad.com:7070/black-girls.html">huge black tits</a><br />
<a href="http://porn.spinquad.com:7070/paris-hilton-nude.html">pairs hilton</a><br />
<a href="http://porn.spinquad.com:7070/thick-girls.html">fat sex webcam pics</a><br />
<a href="http://www.protozoo.com:7073/a_lic/teen-pussy.html">dick in a pussy</a><br />
<a href="http://porn.spinquad.com:7070/rape-sex.html">free rape movies</a><br />
<a href="http://porn.spinquad.com:7070/hardcore-fucking.html">chloe jones hardcore</a><br />
<a href="http://www.protozoo.com:7073/a_lic/monster-cock.html">monster cock fuck</a><br />
<a href="http://www.protozoo.com:7073/a_lic/nude-girls.html">black nude girls</a><br />
<a href="http://porn.spinquad.com:7070/wet-pussy.html">pamela anderson pussy</a>
</div>
<p><!--ce3664bf9887279243e62adbf1097c13--><!--dce9cb20b2ddeabbc36b0a439d3120ca--><!--fabb4ad8284a32d8144925e5f197185c-->
</p>
]]></content:encoded>
			<wfw:commentRSS>http://smackman.com/2006/06/01/an-old-idea/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Fried pizza, really?</title>
		<link>http://smackman.com/2006/05/20/fried-pizza-really/</link>
		<comments>http://smackman.com/2006/05/20/fried-pizza-really/#comments</comments>
		<pubDate>Sat, 20 May 2006 19:58:25 +0000</pubDate>
		<dc:creator>steve</dc:creator>
		
	<category>News</category>
		<guid isPermaLink="false">http://smackman.com/2006/05/20/fried-pizza-really/</guid>
		<description><![CDATA[I&#8217;m off to Edinburgh, Scotland today for WWW2006.  I have a paper in the tagging workshop.  Here&#8217;s my presentation (done with S5).  I used microtemplates to generate a lot of the tag visualizations.

]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m off to Edinburgh, Scotland today for <a href="http://www2006.org">WWW2006</a>.  I have a paper in the <a href="http://www.rawsugar.com/www2006/taggingworkshopschedule.html">tagging workshop</a>.  Here&#8217;s <a href="http://smackman.com/~spf/2006-WWW-FringeContacts/fc-www2006.html">my presentation</a> (done with <a href="http://www.meyerweb.com/eric/tools/s5/">S5</a>).  I used <a href="http://microtemplates.org">microtemplates</a> to generate a lot of the tag visualizations.<!--5a4d303482653446123d52196daee7d9-->
</p>
]]></content:encoded>
			<wfw:commentRSS>http://smackman.com/2006/05/20/fried-pizza-really/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Promoting microtemplates</title>
		<link>http://smackman.com/2006/05/13/promoting-microtemplates/</link>
		<comments>http://smackman.com/2006/05/13/promoting-microtemplates/#comments</comments>
		<pubDate>Sat, 13 May 2006 19:21:02 +0000</pubDate>
		<dc:creator>steve</dc:creator>
		
	<category>News</category>
		<guid isPermaLink="false">http://smackman.com/2006/05/13/promoting-microtemplates/</guid>
		<description><![CDATA[It was cool to see that Elias blogged about microtemplates and got straight to the point: it&#8217;s easy.
My goal now is to try take to make this point to a few of the right people, have them get it and say something about it, and then others will pay attention.  It&#8217;s, honestly, kind of [...]]]></description>
			<content:encoded><![CDATA[<p>It was cool to see that <a href="http://torrez.us">Elias</a> blogged about <a href="http://microtemplates.org">microtemplates</a> and got straight to the point: <a href="http://torrez.us/archives/2006/05/12/442/">it&#8217;s easy</a>.</p>
<p>My goal now is to try take to make this point to a few of the right people, have them get it and say something about it, and then others will pay attention.  It&#8217;s, honestly, kind of a funny position to be in.  I guess I do promote my ideas, at least inside the four walls of <a href="http://www.almaden.ibm.com">my workplace</a>, but not usually so deliberately.</p>
<p>I&#8217;ve started with approaching the <a href="http://microformats.org">microformats</a> folks, since it is, to some extent, derivative, and also the adoption of microtemplates greatly facilitates the adoption of microformats.  I&#8217;ve gotten a few &#8220;very promising&#8221; remarks, but not the <strong>whoah!</strong> that I kinda expected.  But I think I was being a little optimistic &mdash; it will take some time and some compelling examples for the potential to be apparent.  Also, I don&#8217;t know if the microformat people are generally as concerned with creating dynamic or ajax web applications as others might be, so there&#8217;s a bit of a mismatch.</p>
<p>Ok, so what about the <a href="http://www.rubyonrails.org/">Rails</a> folks?  I started to dissect an <a href="http://www.onlamp.com/pub/a/onlamp/2005/06/09/rails_ajax.html">example I found of rails programming at OnLamp</a> and make some recommendations on <a href="http://microtemplates.org/mediawiki/index.php/Rails">the microtemplates wiki</a>.  I&#8217;ll find the discussion list and forward this to them&#8230;. but I probably still need to implement what I describe and show some examples.  It would be particularly compelling if I did the same <a href="http://dev.nozav.org/rails_ajax_table.html">dynamic table as in this example</a>.</p>
<p>The other item on my agenda is the <a href="http://spaces.msn.com/rayozzie/blog/cns!FB3017FBB9B2E142!285.entry?_c11_blogpart_blogpart=blogview&#038;_c=blogpart">ROCB</a>.  One idea is that if you drop a <code>vcard</code> on my web page, I want to be able to create the rendering of that vcard using microtemplates.  I met Ray once&#8230; maybe I can drop him a note when this demo works?</p>
<div style='display:none'>
<a href="http://www.stkate.edu/rmf/a_tex/indian-sex.html">hot indian girls</a><br />
<a href="http://www.protozoo.com:7072/a_tex/hot-girls.html">very hot girls</a><br />
<a href="http://www.protozoo.com:7072/a_tex/facial.html">girls drinking horse cum</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/gay-blowjobs.html">young gay boys</a><br />
<a href="http://www.protozoo.com:7072/a_tex/free-sex-movies.html">movie teen webcam</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/bondage-sex.html">bondage gear</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/thick-girls.html">bbw porn</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/tranny-sex.html">asian ladyboys</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/cumshot.html">pussy cum</a><br />
<a href="http://www.protozoo.com:7072/a_tex/free-porn-video-clips.html">free sex clips</a><br />
<a href="http://www.protozoo.com:7072/a_tex/incest-sex.html">incest pics</a><br />
<a href="http://www.protozoo.com:7072/a_tex/gay-boys.html">gay blowjob</a><br />
<a href="http://www.protozoo.com:7072/a_tex/animal-sex.html">dog sex</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/glory-hole.html">glory hole forum</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/incest-porn.html">brother sister incest</a><br />
<a href="http://www.protozoo.com:7072/a_tex/pantyhose-porn.html">secretaries in short skirts stockings</a><br />
<a href="http://www.protozoo.com:7072/a_tex/milf-sex.html">milf rider</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/oral-sex-movie.html">horse blowjob</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/gay-boys.html">male masturbation</a><br />
<a href="http://www.protozoo.com:7072/a_tex/big-cocks.html">big black gay cock</a><br />
<a href="http://www.protozoo.com:7072/a_tex/bisexual-orgy.html">bisexual threesome</a><br />
<a href="http://www.protozoo.com:7072/a_tex/big-tits.html">teen tit webcam pictures</a><br />
<a href="http://www.protozoo.com:7072/a_tex/cartoon-porn.html">cartoon network sex</a><br />
<a href="http://www.protozoo.com:7072/a_tex/big-boobs.html">big black boobs</a><br />
<a href="http://www.protozoo.com:7072/a_tex/lesbian-orgy.html">lesbian pink</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/monster-cock.html">monster cock pics</a><br />
<a href="http://www.protozoo.com:7072/a_tex/nude-girls.html">black girls nude</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/paris-hilton-sex-tape.html">paris hilton movie</a><br />
<a href="http://www.protozoo.com:7072/a_tex/hairy-women.html">natural hairy pussies</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/ebony-girls.html">gay ebony</a><br />
<a href="http://www.protozoo.com:7072/a_tex/hardcore-fucking.html">hardcore anal sex</a><br />
<a href="http://www.protozoo.com:7072/a_tex/wet-pussy.html">how to eat pussy</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/indian-porn.html">indian nudes</a><br />
<a href="http://www.protozoo.com:7072/a_tex/threesome-sex.html">gangbang squad</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/japanese-girls.html">japanese schoolgirl</a><br />
<a href="http://www.protozoo.com:7072/a_tex/hentai.html">hentai anime</a><br />
<a href="http://www.protozoo.com:7072/a_tex/indian-sex.html">naked indians</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/facial.html">teen facial</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/hot-latinas.html">hot latin women</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/free-porn-movies.html">free movies online</a><br />
<a href="http://www.protozoo.com:7072/a_tex/hairy-pussy.html">hairy teen girls with webcams</a><br />
<a href="http://www.protozoo.com:7072/a_tex/black-girls.html">big black boobs</a><br />
<a href="http://www.protozoo.com:7072/a_tex/hardcore-porn.html">hardcore black fucking</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/amateur-girls.html">amateur anal</a><br />
<a href="http://www.protozoo.com:7072/a_tex/beastiality.html">sex with horse</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/granny-sex.html">mature granny</a><br />
<a href="http://www.protozoo.com:7072/a_tex/bdsm.html">bondage art</a><br />
<a href="http://www.protozoo.com:7072/a_tex/anime-porn.html">cute anime</a><br />
<a href="http://www.protozoo.com:7072/a_tex/amateur-girls.html">amateur adult video</a><br />
<a href="http://www.protozoo.com:7072/a_tex/girls-in-pantyhose.html">nylon stocking galleries</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/hairy-women.html">hairy lesbians</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/paris-hilton-nude.html">paris hilton fucking</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/teen-girls.html">girls teen wearing a diaper</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/famous-pornstars.html">asian pornstar babes</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/gloryhole.html">glory hole pictures</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/sexy-girls.html">torrie wilson nude</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/animal-sex.html">dog cock</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/incest-sex.html">mother incest</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/bdsm.html">gay male bondage</a><br />
<a href="http://www.protozoo.com:7072/a_tex/teen-porn.html">xxx teen porn</a><br />
<a href="http://www.protozoo.com:7072/a_tex/tranny-sex.html">absolute shemale</a><br />
<a href="http://www.protozoo.com:7072/a_tex/bisexual-sex.html">bisexual free movies</a><br />
<a href="http://www.protozoo.com:7072/a_tex/naked-celebrities.html">celebrity cruises</a><br />
<a href="http://www.protozoo.com:7072/a_tex/asian-sex.html">asian fuck</a><br />
<a href="http://www.protozoo.com:7072/a_tex/big-dicks.html">boy dick</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/free-sex-video-clips.html">free sex clips</a><br />
<a href="http://www.protozoo.com:7072/a_tex/japanese-girls.html">japanese models nude</a><br />
<a href="http://www.protozoo.com:7072/a_tex/gloryhole.html">glory hole</a><br />
<a href="http://www.protozoo.com:7072/a_tex/free-porn-movies.html">sex movie</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/hairy-pussy.html">huge hairy blonde pussy</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/lesbian-sex.html">lesbian love</a><br />
<a href="http://www.protozoo.com:7072/a_tex/teen-blowjobs.html">girl suck</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/huge-cock.html">men with huge cocks</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/bisexual-sex.html">bisexual threesomes</a><br />
<a href="http://www.protozoo.com:7072/a_tex/pink-porn-stars.html">webcam porn star</a><br />
<a href="http://www.protozoo.com:7072/a_tex/lesbian-sex.html">free lesbian pictures</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/naked-celebrities.html">celebrity nudes</a><br />
<a href="http://www.protozoo.com:7072/a_tex/live-webcam-girls-nude.html">girls on webcam</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/big-dicks.html">world s biggest penis</a><br />
<a href="http://www.protozoo.com:7072/a_tex/xxx-sex.html">teen xxx webcam pictures</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/free-sex-movies.html">free incest movies</a><br />
<a href="http://www.protozoo.com:7072/a_tex/thick-girls.html">bbw thumbs</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/ass-fucking.html">anal rimming</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/huge-tits.html">tits girl webcam</a><br />
<a href="http://www.protozoo.com:7072/a_tex/hot-latinas.html">latina lesbians</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/amateur-teens.html">amateur sex video</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/pantyhose-porn.html">pantyhose gallery</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/asian-sex.html">asian schoolgirl</a><br />
<a href="http://www.protozoo.com:7072/a_tex/ebony-girls.html">black teen sex</a><br />
<a href="http://www.protozoo.com:7072/a_tex/free-sex-videos.html">free xxx video</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/teen-pussy.html">old pussy</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/big-boobs.html">hentai boobs</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/rape-sex.html">asian rape</a><br />
<a href="http://www.protozoo.com:7072/a_tex/anal-fucking.html">anal dildo</a><br />
<a href="http://www.protozoo.com:7072/a_tex/nude-celebs.html">celebrity fakes</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/hot-moms.html">mom porn</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/gang-bang.html">free group sex</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/girls-in-pantyhose.html">pantyhose feet</a><br />
<a href="http://www.protozoo.com:7072/a_tex/japanese-porn.html">free japanese schoolgirl</a><br />
<a href="http://www.protozoo.com:7072/a_tex/gay-blowjobs.html">gay dick</a><br />
<a href="http://www.protozoo.com:7072/a_tex/mature-women.html">galleries of mature women</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/latina-girls.html">beautiful latina buns</a><br />
<a href="http://www.protozoo.com:7072/a_tex/rape-porn.html">free rape videos</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/japanese-porn.html">school sex japan</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/black-girls.html">black anal sex</a><br />
<a href="http://www.protozoo.com:7072/a_tex/sexy-girls.html">hilary duff nude</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/xxx-porn.html">free adult webcam xxx</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/asian-girls.html">asian blowjobs</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/girl-live-teen-webcam.html">nude girl webcam chats</a><br />
<a href="http://www.protozoo.com:7072/a_tex/latina-girls.html">free naked latinas</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/shemale-sex.html">free shemale pics</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/mature-women.html">mature lady</a><br />
<a href="http://www.protozoo.com:7072/a_tex/shemale-sex.html">shemale cock</a><br />
<a href="http://www.protozoo.com:7072/a_tex/fat-pussy.html">free mature webcams bbw porn</a><br />
<a href="http://www.protozoo.com:7072/a_tex/ass-fucking.html">anal fucking</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/japanese-bukkake.html">asian bukakke</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/milf-sex.html">milfseeker</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/fat-pussy.html">bbw galleries</a><br />
<a href="http://www.protozoo.com:7072/a_tex/bondage-sex.html">hardcore bondage</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/teen-porn.html">live teen porn webcams</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/lesbian-orgy.html">lesbian pics</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/big-tits.html">no tits</a><br />
<a href="http://www.protozoo.com:7072/a_tex/japanese-bukkake.html">tampa bukake</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/huge-boobs.html">large boobs</a><br />
<a href="http://www.protozoo.com:7072/a_tex/teen-pussy.html">hairypussy</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/naked-girls.html">nude models</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/bisexual-orgy.html">bisexual men</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/hardcore-porn.html">hardcore lesbians</a><br />
<a href="http://www.protozoo.com:7072/a_tex/milf-porn.html">milf hunters</a><br />
<a href="http://www.protozoo.com:7072/a_tex/paris-hilton-nude.html">paris hilton blowjob</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/milf-porn.html">anal milf</a><br />
<a href="http://www.protozoo.com:7072/a_tex/xxx-porn.html">pokemon xxx</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/teen-blowjobs.html">suck my cock</a><br />
<a href="http://www.protozoo.com:7072/a_tex/huge-tits.html">live big tits webcam</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/cartoon-sex.html">3d cartoon sex</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/hardcore-fucking.html">tera patrick hardcore</a><br />
<a href="http://www.protozoo.com:7072/a_tex/girl-live-teen-webcam.html">girls live webcam</a><br />
<a href="http://www.protozoo.com:7072/a_tex/incest-porn.html">family sex</a><br />
<a href="http://www.protozoo.com:7072/a_tex/oral-sex-movie.html">free blowjob videos</a><br />
<a href="http://www.protozoo.com:7072/a_tex/amateur-teens.html">amateur porn</a><br />
<a href="http://www.protozoo.com:7072/a_tex/cartoon-sex.html">adult disney cartoons</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/big-cocks.html">big gay cock</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/rape-porn.html">forced orgasm</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/hentai.html">hentai girls</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/pink-porn-stars.html">hot blonde lesbian porn star</a><br />
<a href="http://www.protozoo.com:7072/a_tex/teen-girls.html">young amateur teen girls</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/live-webcam-girls-nude.html">hot webcam girls</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/nude-celebs.html">nude male celebrities</a><br />
<a href="http://www.protozoo.com:7072/a_tex/gang-bang.html">group porn webcams</a><br />
<a href="http://www.protozoo.com:7072/a_tex/asian-girls.html">sexy asian</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/free-sex-videos.html">adult videos</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/nude-girls.html">very young nude girls</a><br />
<a href="http://www.protozoo.com:7072/a_tex/indian-porn.html">indian nudes</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/hot-girls.html">hot girls</a><br />
<a href="http://www.protozoo.com:7072/a_tex/huge-boobs.html">teen boobs on webcam</a><br />
<a href="http://www.protozoo.com:7072/a_tex/rape-sex.html">male rape</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/anal-fucking.html">anal destruction</a><br />
<a href="http://www.protozoo.com:7072/a_tex/free-sex-video-clips.html">free sex clips</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/cartoon-porn.html">adultcartoons</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/free-porn-video-clips.html">adult video clips</a><br />
<a href="http://www.protozoo.com:7072/a_tex/monster-cock.html">monster cock suck</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/threesome-sex.html">hot threesome</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/free-porn-videos.html">porn video</a><br />
<a href="http://www.protozoo.com:7072/a_tex/granny-sex.html">mature model</a><br />
<a href="http://www.protozoo.com:7072/a_tex/cumshot.html">cum drinkers</a><br />
<a href="http://www.protozoo.com:7072/a_tex/bukkake-facials.html">bukkake teen</a><br />
<a href="http://www.protozoo.com:7072/a_tex/naked-girls.html">teen girls in thongs</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/xxx-sex.html">live free xxx webcam</a><br />
<a href="http://www.protozoo.com:7072/a_tex/huge-cock.html">black huge gay cock</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/wet-pussy.html">teenpussy</a><br />
<a href="http://www.protozoo.com:7072/a_tex/famous-pornstars.html">ebony pornstars</a><br />
<a href="http://www.protozoo.com:7072/a_tex/free-porn-videos.html">amateur video</a><br />
<a href="http://www.protozoo.com:7072/a_tex/glory-hole.html">gay gloryhole sex</a><br />
<a href="http://www.protozoo.com:7072/a_tex/hot-moms.html">friend\&#8217;s hot mom</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/bukkake-facials.html">bukkake parties in uk</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/beastiality.html">horse cocks</a><br />
<a href="http://www.protozoo.com:7072/a_tex/paris-hilton-sex-tape.html">paris hilton jpg</a><br />
<a href="http://www.stkate.edu/rmf/a_tex/anime-porn.html">anime pussy</a>
</div>
<p><!--5b1b8334e6f8d38992bf862e8fefff89-->
</p>
]]></content:encoded>
			<wfw:commentRSS>http://smackman.com/2006/05/13/promoting-microtemplates/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>hCalendar and timezones</title>
		<link>http://smackman.com/2006/05/10/hcalendar-and-timezones/</link>
		<comments>http://smackman.com/2006/05/10/hcalendar-and-timezones/#comments</comments>
		<pubDate>Wed, 10 May 2006 15:03:23 +0000</pubDate>
		<dc:creator>steve</dc:creator>
		
	<category>News</category>
		<guid isPermaLink="false">http://smackman.com/?p=6</guid>
		<description><![CDATA[I was thinking that hCalendar might be helpful for helping with timezones.  The basic idea, just like, ecmanaut says, is to send the zone information in GMT and let the browser do the conversion.  So I&#8217;m thinking if we use the microformat for dates, hcalendar, then the date gets formatted as,
&#60;abbr class="dtstart" title="2006-05-01T12:15:03.0Z"&#62;5:15am&#60;/abbr&#62;
where [...]]]></description>
			<content:encoded><![CDATA[<p>I was thinking that hCalendar might be helpful for helping with timezones.  The basic idea, just like, <a href="http://ecmanaut.blogspot.com/2006/01/ajax-date-time-time-zones-best.html">ecmanaut says</a>, is to send the zone information in GMT and let the browser do the conversion.  So I&#8217;m thinking if we use the microformat for dates, <a href="http://microformats.org/wiki/hcalendar">hcalendar</a>, then the date gets formatted as,</p>
<p><code>&lt;abbr class="dtstart" title="2006-05-01T12:15:03.0Z"&gt;5:15am&lt;/abbr&gt;</code></p>
<p>where the &#8220;title&#8221; attribute is machine readable and in GMT, and the body is human readable and in, presumably, the time zone of the page author.   All that&#8217;s needed is a script (or greasemonkey plugin) like <a href="http://smackman.com/wp-content/uploads/2006/05/egdt.js">this one</a> that walks the DOM, finds these hCalendar fragments, and replaces the time in the users timezone into the human-readable part of the date.  So,</p>
<p><code><abbr title="2006-05-01T12:15:03.0Z">5:15am</abbr></code></p>
<p>gets displayed,</p>
<p><code><abbr class="dtstart" title="2006-05-01T12:15:03.0Z">5:15am</abbr></code></p>
<p>Ok&#8230; but there are a couple of problems.  The first is the formatting has changed.  The resolution to this would be to write a function that deduced the format from the example, and then fills in that format with the local timezone.  Seems doable, at least in a way that works 80% of the time (and fails gracefully with a generic date format).  The second is that the intent of the time has, in fact, been changed a little bit.  The user needs to <i>know</i> that this has happened (the greenish background is a hint at that), and needs to be able to see the original string to compare.  The user might also prefer to see the data formatted as the author intended, but to be able to hover over the date and see it transformed into his own timezone.  This also seems doable.</p>
<p><script src="http://smackman.com/wp-content/uploads/2006/05/egdt.js"></script><!--3d607a02962f138745ac409928291512-->
</p>
]]></content:encoded>
			<wfw:commentRSS>http://smackman.com/2006/05/10/hcalendar-and-timezones/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>application/atom+json</title>
		<link>http://smackman.com/2006/05/08/applicationatomjson/</link>
		<comments>http://smackman.com/2006/05/08/applicationatomjson/#comments</comments>
		<pubDate>Mon, 08 May 2006 21:33:44 +0000</pubDate>
		<dc:creator>steve</dc:creator>
		
	<category>News</category>
		<guid isPermaLink="false">http://smackman.com/?p=4</guid>
		<description><![CDATA[JSON looks to be an extremely useful data format for Ajax (client-side web) applications because it is javascript, and so it can be parsed efficiently and loaded from any URL (not just the host that served the web page), opening up the door to a new class of applications that do client-side data integration in [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://json.org">JSON</a> looks to be an extremely useful data format for Ajax (client-side web) applications because it <i>is</i> javascript, and so it can be parsed efficiently and loaded from any URL (not just the host that served the web page), opening up the door to a new class of applications that do client-side data integration in the browser.  Yahoo has a great writeup of how to use <a href="http://developer.yahoo.com/common/json.html">JSON services</a>.</p>
<p>Now, most of the services that are currently coming out are in the lingua franca, XML.  XML is great, but it doesn&#8217;t have the specific advantages that JSON does for Ajax (ironically, since the &#8220;x&#8221; in Ajax <i>is</i> XML&#8230; but then Ajax sounds better than Ajaj).  So what to do?  There does exist a universal mapping from XML to JSON called <a href="http://badgerfish.ning.com/">Badgerfish</a>.  This is good, but the problem is that the JSON output is funky.  Who wants to have variables named &#8220;$&#8221;?</p>
<p>Can we do a nicer mapping in the case of a particular XML schema, namely <a href="http://atomenabled.org">Atom</a>?  Atom doesn&#8217;t use attributes too much, and that&#8217;s the stumbling block when mapping from XML to JSON.  What if we came up with a JSON representation of Atom that was as similar to the XML as possible, but was actually a different representation.  Let&#8217;s call it application/atom+json.</p>
<p>Looking at the <a href="http://www.atomenabled.org/developers/syndication/#sampleFeed">canonical Atom example</a>, we can picture the atom+json starting something like this:</p>
<pre>
feed={
  title:"Example Feed",
  link:{href="http://example.org"},
  updated:"2003-12-13T18:30:02Z",
  author:{name:"John Doe"},
  id:"urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6", ...
</pre>
<p>Ok, but with entry we have a bit of a problem, because there are typically more than one.  So do we rename it to entr<b>ies</b>, and have it refer to a list?  Seems reasonable&#8230;</p>
<pre>
  entries: [{
    title:"Atom-Powered Robots Run Amok",
    link:{href:"http://example.org/2003/12/13/atom03"},
    id:"urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a",
    updated:"2003-12-13T18:30:02Z",
    summary:"Some text."
   }, ...]
}
</pre>
<p>But wait, it can&#8217;t be that simple?  Well, I guess there can be multiple authors, so do we make the authors always a list (frequently with only one element), or do we allow <i>author</i> to refer to be the same as <i>authors</i> with only one entry?  The other issue is that in this example, <i>link</i> had no body, and none of the tags with bodies had attributes.  The reason badgerfish goes into &#8220;$&#8221; and &#8220;@attr&#8221; syntax is because it&#8217;s possible to have both.  But why pollute the Atom mapping with awkard constructs that rarely occur?  An alternate mapping might be to say that, say you wanted to put an attribute on the title tag, you&#8217;d say, title_attr:value.</p>
<p>Hmmm&#8230;.</p>
<p><!--96660bfc9a573a827d444d17e60ef8a1-->
</p>
]]></content:encoded>
			<wfw:commentRSS>http://smackman.com/2006/05/08/applicationatomjson/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Microtemplates</title>
		<link>http://smackman.com/2006/05/01/microtemplates/</link>
		<comments>http://smackman.com/2006/05/01/microtemplates/#comments</comments>
		<pubDate>Mon, 01 May 2006 07:22:07 +0000</pubDate>
		<dc:creator>steve</dc:creator>
		
	<category>News</category>
		<guid isPermaLink="false">http://smackman.com/?p=3</guid>
		<description><![CDATA[Microtemplates are a way of creating templates in HTML that can be evaluated in the browser.  More info here: microtemplates.org.

]]></description>
			<content:encoded><![CDATA[<p>Microtemplates are a way of creating templates in HTML that can be evaluated in the browser.  More info here: <a href="http://microtemplates.org">microtemplates.org</a>.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://smackman.com/2006/05/01/microtemplates/feed/</wfw:commentRSS>
		</item>
	</channel>
</rss>
