<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Dead Ink Vinyl &#187; adobe</title>
	<atom:link href="http://blog.deadinkvinyl.com/tag/adobe/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.deadinkvinyl.com</link>
	<description>Musings of David L Kinney</description>
	<lastBuildDate>Wed, 24 Feb 2010 05:33:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.deadinkvinyl.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Dead Ink Vinyl &#187; adobe</title>
		<link>http://blog.deadinkvinyl.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.deadinkvinyl.com/osd.xml" title="Dead Ink Vinyl" />
	<atom:link rel='hub' href='http://blog.deadinkvinyl.com/?pushpress=hub'/>
		<item>
		<title>XSL in Adobe AIR</title>
		<link>http://blog.deadinkvinyl.com/2008/10/09/xsl-in-adobe-air/</link>
		<comments>http://blog.deadinkvinyl.com/2008/10/09/xsl-in-adobe-air/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 05:22:46 +0000</pubDate>
		<dc:creator>dlkinney</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[brianriggs]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[cpp]]></category>
		<category><![CDATA[flacc]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mikechambers]]></category>
		<category><![CDATA[xalan]]></category>
		<category><![CDATA[xalanc]]></category>
		<category><![CDATA[xerces]]></category>
		<category><![CDATA[xercesc]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[xsl]]></category>
		<category><![CDATA[xslt]]></category>

		<guid isPermaLink="false">http://deadinkvinyl.wordpress.com/?p=145</guid>
		<description><![CDATA[Brian Riggs shows us how to perform client-side XSL/XSLT in an AIR application. Thanks to Brian for shining light on this, and thanks to Mike Chambers for sharing the link on Twitter today. Brian&#8217;s post is from May, so many of you may have already seen it. The solution Brian outlines requires JavaScript because the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=145&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Brian Riggs shows us <a href="http://blogs.adobe.com/briggs/2008/05/using_air_for_xslt_processing.html">how to perform client-side XSL/XSLT in an AIR application</a>. Thanks to Brian for shining light on this, and thanks to Mike Chambers for <a href="http://twitter.com/mesh/statuses/951840353">sharing the link</a> on Twitter today. Brian&#8217;s post is from May, so many of you may have already seen it.</p>
<p>The solution Brian outlines requires JavaScript because the only XSL toolkit AIR provides is inside of the WebKit HTML rendering engine. Consequently, AIR developers working with the Flash or Flex APIs will need to use an ActionScript-JavaScript bridge. Brian provides a nice code snippet showing how to create that bridge. Great, but still a kludge. </p>
<p>Unfortunately, XSL doesn&#8217;t seem to have made it into the <a href="http://livedocs.adobe.com/flex/gumbo/langref/">Gumbo API</a> for the next version of Flex and AIR. There is also no mention of XSL in Mike Chambers&#8217; September post <a href="http://www.mikechambers.com/blog/2008/09/11/adobe-air-15-cosmo-builds-now-in-flex-sdk-nightly-builds/">about AIR 1.5</a>. I have <em>not</em> had an opportunity to pull down a recent nightly build of the Flex trunk to verify that the ActionScript API for AIR continues to lack XSL support, but all indications are that XSL is not present. </p>
<p>A little bit of Googling indicates that I am not alone in desiring XSL capabilities in AIR that do not require a bridge to JavaScript. I know that XSL is not like the hot stuff that Adobe like to tout in its products (<acronym title="Online Analytical Processing">OLAP</acronym> only made it in because of its use in visualization), but it&#8217;s a real asset for enterprise developers. </p>
<p>I suspect that Adobe&#8217;s plan may be to leave out XSL&#8212;and a lot of other large-but-niche APIs&#8212;and let teams needing those capabilities include them with <a href="http://www.peterelst.com/blog/2008/10/04/what-is-flacc-all-about/">FlaCC</a>, the upcoming C/C++ to Flash byte code compiler. (More info about FlaCC, including links to slides and a hi-res presentation video is available <a href="http://www.peterelst.com/blog/2008/10/05/more-information-on-flacc/">here</a>). Specifically, for XSL, <a href="http://xml.apache.org/xalan-c/">Xalan</a> and <a href="http://xerces.apache.org/xerces-c/">Xerces</a> could be imported. In truth, I find this to be an attractive solution, in part because I&#8217;m sure someone else will go through the hassle of compiling the popular C/C++ libraries to SWCs for me&#8212;I will only need drop those into my project.</p>
<p>However, if you are an AIR developer who cannot wait for FlaCC or want to see XSL make it into AIR&#8217;s officialy ActionScript API, consider <a href="http://www.adobe.com/go/wish">submitting an enhancement request</a>. </p>
<br />Posted in Development, HowTo Tagged: actionscript, adobe, air, as3, brianriggs, c, cpp, flacc, javascript, mikechambers, xalan, xalanc, xerces, xercesc, xml, xsl, xslt <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deadinkvinyl.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deadinkvinyl.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deadinkvinyl.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deadinkvinyl.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deadinkvinyl.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deadinkvinyl.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deadinkvinyl.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deadinkvinyl.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deadinkvinyl.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deadinkvinyl.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deadinkvinyl.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deadinkvinyl.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deadinkvinyl.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deadinkvinyl.wordpress.com/145/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=145&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.deadinkvinyl.com/2008/10/09/xsl-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0439564df67efd24620e338a78a8d921?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dlkinney</media:title>
		</media:content>
	</item>
		<item>
		<title>A Thought About Flash Indexing</title>
		<link>http://blog.deadinkvinyl.com/2008/07/08/a-thought-about-flash-indexing/</link>
		<comments>http://blog.deadinkvinyl.com/2008/07/08/a-thought-about-flash-indexing/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 17:14:44 +0000</pubDate>
		<dc:creator>dlkinney</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[cs4]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[indexing]]></category>
		<category><![CDATA[mastercollection]]></category>
		<category><![CDATA[ryanstewart]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://deadinkvinyl.wordpress.com/?p=124</guid>
		<description><![CDATA[It seems to me that thinking about the problem as &#8220;indexing Flash&#8221; is to approach the matter backward. We want the data to be indexed&#8212;the presentation is irrelevant. Take this blog as an example. It&#8217;s database-driven and generates documents with my content&#8212;these words you&#8217;re reading now&#8212;wrapped inside of some HTML garnish to make the reading [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=124&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It seems to me that thinking about the problem as &#8220;indexing Flash&#8221; is to approach the matter backward. We want the <em>data</em> to be indexed&#8212;the presentation is irrelevant. Take this blog as an example. It&#8217;s database-driven and generates documents with my content&#8212;these words you&#8217;re reading now&#8212;wrapped inside of some HTML garnish to make the reading experience pleasant. If you&#8217;re reading this in a feed reader, then the content is wrapped in Atom or RSS garnish. Do I care what garnish surrounds my content? Not particularly. </p>
<p>The same principle holds true for other Web applications, whether the garnish is Ajax, Flash, Flex, Silverlight, or&#8212;like this blog&#8212;good old fashioned dynamically generated HTML. It is the <em>data</em> that must be indexed, the presentation around that data is (conceptually) irrelevant for SEO purposes. I think the matter may be confused because for so long the data and the presentation were bundled together in HTML (like this blog). Now with Ajax and Flash/Flex, we are back to separating the user interface from the data. However, when the data isn&#8217;t part of the user interface document sent by the server, it&#8217;s harder for search engines to access and index. </p>
<p>So what&#8217;s the solution? Expose the <em>data</em> for indexing and detect when incoming links should launch the Flash/Flex app instead of responding with the raw information. Naturally, the Flash/Flex app would be launched to deep-linked directly to the relevant content. If you&#8217;re not sure how to make the data indexable, I&#8217;ll tell you that I take my guidance from <a href="http://www.amazon.com/RESTful-Web-Services-Leonard-Richardson/dp/0596529260/?tag=deadinkvinyl-20">RESTful Web Services</a>. The magic in this solution is detecting when an incoming link should launch a deep-linked Flex application and when it should render the raw data. For the moment, I&#8217;ll punt on detailing an implementation&#8212;consider it to be an exercise for the reader. </p>
<p>An exercise for the reader that can lead to rich rewards! Ryan Stewart has announced the <a href="http://blog.digitalbackcountry.com/?p=1478">Flex SEO Contest</a> to encourage the community to establish best practices for <a href="http://www.peterelst.com/blog/2008/07/06/update-on-swf-indexing-issues/">Flash/Flex indexing</a>. The rules are straightforward and the top prize is CS4 Master Collection. I like the challenge and may try my hand creating an entry that meets the contest criteria just for the experience of it. </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/deadinkvinyl.wordpress.com/124/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/deadinkvinyl.wordpress.com/124/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deadinkvinyl.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deadinkvinyl.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deadinkvinyl.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deadinkvinyl.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deadinkvinyl.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deadinkvinyl.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deadinkvinyl.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deadinkvinyl.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deadinkvinyl.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deadinkvinyl.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deadinkvinyl.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deadinkvinyl.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deadinkvinyl.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deadinkvinyl.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=124&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.deadinkvinyl.com/2008/07/08/a-thought-about-flash-indexing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0439564df67efd24620e338a78a8d921?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dlkinney</media:title>
		</media:content>
	</item>
		<item>
		<title>eBook, But Done Right</title>
		<link>http://blog.deadinkvinyl.com/2008/03/04/ebook-but-done-right/</link>
		<comments>http://blog.deadinkvinyl.com/2008/03/04/ebook-but-done-right/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 03:31:54 +0000</pubDate>
		<dc:creator>dlkinney</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[acrobat]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[indiyoung]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[mentalmodels]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[rosenfeldmedia]]></category>
		<category><![CDATA[sonyreader]]></category>

		<guid isPermaLink="false">http://blog.deadinkvinyl.com/?p=106</guid>
		<description><![CDATA[On the eve of Amazon&#8217;s announcement that was entering the ebook reader market with its Kindle device, I wrote an overly long article examining the reasons why I felt the concept of reading books on an ebook reader wouldn&#8217;t gain broad acceptance. During that discussion, I made the assumption that most digital books are either [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=106&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>On the eve of <a href="http://phx.corporate-ir.net/phoenix.zhtml?c=176060&#38;p=irol-newsArticle&#38;ID=1079387">Amazon&#8217;s announcement</a> that was entering the ebook reader market with its <a href="http://amazon.com/kindle?tag=deadinkvinyl-20">Kindle</a> device, I wrote <a href="http://blog.deadinkvinyl.com/2007/11/19/the-problem-with-ebooks-is-the-book/">an overly long article</a> examining the reasons why I felt the concept of reading books on an ebook reader wouldn&#8217;t gain broad acceptance. During that discussion, I made the assumption that most digital books are either little more than raw text and images (I&#8217;m including HTML here) or were PDFs of the print edition. </p>
<p>The &#8220;raw text and images&#8221; approach is fine for shorter content&#8212;blogs, newspaper articles, and the like&#8212;but I&#8217;ve found that for longer content, real attention to typography and page layout is needed to make the experience enjoyable for me. (This is also why the current implementation of <a href="http://safari.oreilly.com/">O&#8217;Reilly&#8217;s Safari</a> service doesn&#8217;t work for me.) However, it never occurred to me that PDFs could be made specially for the ebook reader screen&#8212;complete with appropriately sized text and all of the traditional design touches normally reserved for print. Now I&#8217;ve <a href="http://www.jarango.com/en/blog/2008/02/17/rosenfeld-media-mental-models/">learned</a> that <a href="http://www.rosenfeldmedia.com/">Rosenfeld Media&#8217;s</a> PDF edition of <a href="http://www.rosenfeldmedia.com/books/mental-models/author/biography/">Indi Young&#8217;s</a> book <cite><a href="http://www.rosenfeldmedia.com/books/mental-models/">Mental Models</a></cite> is designed to be read on the 4&#215;6 screen found on many popular ebook readers. From the screenshot provided in <a href="http://www.jarango.com/en/blog/2008/02/17/rosenfeld-media-mental-models/">Jorge Arango&#8217;s article</a>, I have to admit: that looks like an ebook I would be happy to curl up with for hours. </p>
<p>In hindsight, it&#8217;s really obvious that publishers could design PDF ebooks specifically for consumption on ebook readers. In fact, it&#8217;s so obvious that I believe PDF books designed primarily for viewing on an ebook reader is the future of digital publishing<sup><a href="#fn1">1</a></sup>. It certainly is a prerequisite for me to embrace reading books on a digital device. </p>
<p><sup>1</sup> The technical implementation doesn&#8217;t <em>have</em> to be PDF. Any format that tightly defines the typography and layout of pages will work. </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/deadinkvinyl.wordpress.com/106/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/deadinkvinyl.wordpress.com/106/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deadinkvinyl.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deadinkvinyl.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deadinkvinyl.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deadinkvinyl.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deadinkvinyl.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deadinkvinyl.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deadinkvinyl.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deadinkvinyl.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deadinkvinyl.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deadinkvinyl.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deadinkvinyl.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deadinkvinyl.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deadinkvinyl.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deadinkvinyl.wordpress.com/106/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=106&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.deadinkvinyl.com/2008/03/04/ebook-but-done-right/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0439564df67efd24620e338a78a8d921?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dlkinney</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Make Any Conference Better</title>
		<link>http://blog.deadinkvinyl.com/2007/10/27/how-to-make-any-conference-better/</link>
		<comments>http://blog.deadinkvinyl.com/2007/10/27/how-to-make-any-conference-better/#comments</comments>
		<pubDate>Sun, 28 Oct 2007 00:57:52 +0000</pubDate>
		<dc:creator>dlkinney</dc:creator>
				<category><![CDATA[Conference]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[adobemax]]></category>
		<category><![CDATA[presentations]]></category>
		<category><![CDATA[presenting]]></category>
		<category><![CDATA[publicspeaking]]></category>
		<category><![CDATA[toastmasters]]></category>

		<guid isPermaLink="false">http://deadinkvinyl.wordpress.com/?p=95</guid>
		<description><![CDATA[I attended Adobe MAX 2007 at the beginning of October and it was the best conference I&#8217;ve ever attended. That&#8217;s saying something, because I got to attend some extravagant events during the original dotcom boom. Two things contributed to the event being so good: excellent informational sessions and just plain fun evening events. I spoke [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=95&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I attended <a href="http://www.adobemax2007.com/">Adobe <span class="caps">MAX</span> 2007</a> at the beginning of October and it was the best conference I&#8217;ve ever attended. That&#8217;s saying something, because I got to attend some extravagant events during the original dotcom boom. Two things contributed to the event being so good: excellent informational sessions and just plain fun evening events. </p>
<p>I spoke with other <span class="caps">MAX</span> attendees who expressed some disappointment with their sessions, so I initially thought that maybe I was just lucky. Then I asked the other attendees if they ever left a session that wasn&#8217;t going well and I was shocked to learn that none of them had left any sessions. </p>
<p>There were <em>so</em> many enticing sessions in every time slot that I wonder why people would sit through a session that wasn&#8217;t living up to expectations. Three or four times during the conference I found that my first choice wasn&#8217;t going to be worth my time, so I stood up and headed to my second choice (and, in one case, to my third choice &#8212; which ended up being excellent). No harm to anyone and a better conference experience for me. </p>
<p>I expect that most people stay in a session that is spiraling down the drain because they think it&#8217;s rude to leave. It&#8217;s <em>not</em> rude. The presenter has already been rude to you by wasting your time. Life is too short and your company has paid too much money for you to suffer through a sub-par, unpracticed presentation when an excellent alternative is two doors down. </p>
<p>I&#8217;ve grown less patient with poor presenters as I&#8217;ve learned more about how little it takes to deliver a good presentation. A one hour presentation takes 4-7 hours of preparation &#8212; not a lot &#8212; so I&#8217;m not asking too much for the materials and visual aids to be well thought-out and organized. Some presenters have no sense of time and spend a disproportionate amount of it on relatively unimportant parts of their topic. This leads them to rush through the later &#8212; and more valuable &#8212; content to fit it in the last 10 minutes. A single practice run through the presentation would have highlighted this problem, so there is no excuse to have such poor clock management. </p>
<p>Finally, some of the presenters on whom I walked out were simply afraid of public speaking. They mumbled, they never looked at the audience (preferring to look at the slides or the computer screen, which makes it harder to hear them), or they weren&#8217;t able to speak in complete sentences. If you know that you will be presenting at a conference and you have difficulty with public speaking, you owe it to yourself, your attendees, and your topic to gain confidence and composure by practicing public speaking. Join <a href="http://www.toastmasters.org/">Toastmasters</a> or find other opportunities to speak in front of audiences. </p>
<p>As a conference attendee, you are responsible for maximizing the conference&#8217;s value to you. Don&#8217;t be afraid to leave a session that isn&#8217;t going well. You will find more satisfaction in the conference and derive greater enjoyment from your experiences when you proactive about protecting your time. </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/deadinkvinyl.wordpress.com/95/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/deadinkvinyl.wordpress.com/95/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deadinkvinyl.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deadinkvinyl.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deadinkvinyl.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deadinkvinyl.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deadinkvinyl.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deadinkvinyl.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deadinkvinyl.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deadinkvinyl.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deadinkvinyl.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deadinkvinyl.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deadinkvinyl.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deadinkvinyl.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deadinkvinyl.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deadinkvinyl.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=95&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.deadinkvinyl.com/2007/10/27/how-to-make-any-conference-better/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0439564df67efd24620e338a78a8d921?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dlkinney</media:title>
		</media:content>
	</item>
		<item>
		<title>Dear Instructor, My Dog Ate My Homework</title>
		<link>http://blog.deadinkvinyl.com/2007/10/01/dear-instructor-my-dog-ate-my-homework/</link>
		<comments>http://blog.deadinkvinyl.com/2007/10/01/dear-instructor-my-dog-ate-my-homework/#comments</comments>
		<pubDate>Mon, 01 Oct 2007 13:49:00 +0000</pubDate>
		<dc:creator>dlkinney</dc:creator>
				<category><![CDATA[Conference]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[adobemax]]></category>
		<category><![CDATA[experiencedesign]]></category>
		<category><![CDATA[hci]]></category>
		<category><![CDATA[jaredspool]]></category>
		<category><![CDATA[roberthoekman]]></category>
		<category><![CDATA[userexperience]]></category>

		<guid isPermaLink="false">http://deadinkvinyl.wordpress.com/2007/10/01/dear-instructor-my-dog-ate-my-homework/</guid>
		<description><![CDATA[Dear Instructor, I regret that I will not be able to complete this week&#8217;s HCI assignment due to the fact that I will be attending Adobe MAX. During my time at MAX I will be attending five hours of sessions concerned with Experience Design (XD) and User Experience (UX) from luminaries such as Jared Spool [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=84&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Dear Instructor, </p>
<p>I regret that I will not be able to complete this week&#8217;s <a href="http://en.wikipedia.org/wiki/Human-Computer_Interaction">HCI</a> assignment due to the fact that I will be attending <a href="http://www.adobemax2007.com/na/">Adobe MAX</a>. During my time at MAX I will be attending five hours of sessions concerned with Experience Design (XD) and User Experience (UX) from luminaries such as <a href="http://www.uie.com/about/consultants/">Jared Spool</a> and <a href="http://www.rhjr.net/">Robert Hoekman, Jr.</a> </p>
<p>I feel that this dedication to the craft should excuse me from this week&#8217;s assignment. Besides, we both know that I&#8217;ll be getting more real-world knowledge from these MAX sessions than I would from preparing a usability study proposal for your class. </p>
<p>Regards,<br />
David</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/deadinkvinyl.wordpress.com/84/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/deadinkvinyl.wordpress.com/84/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deadinkvinyl.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deadinkvinyl.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deadinkvinyl.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deadinkvinyl.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deadinkvinyl.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deadinkvinyl.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deadinkvinyl.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deadinkvinyl.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deadinkvinyl.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deadinkvinyl.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deadinkvinyl.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deadinkvinyl.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deadinkvinyl.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deadinkvinyl.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=84&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.deadinkvinyl.com/2007/10/01/dear-instructor-my-dog-ate-my-homework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0439564df67efd24620e338a78a8d921?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dlkinney</media:title>
		</media:content>
	</item>
		<item>
		<title>Dear Adobe, All Is Forgiven</title>
		<link>http://blog.deadinkvinyl.com/2007/10/01/dear-adobe-all-is-forgiven/</link>
		<comments>http://blog.deadinkvinyl.com/2007/10/01/dear-adobe-all-is-forgiven/#comments</comments>
		<pubDate>Mon, 01 Oct 2007 13:43:00 +0000</pubDate>
		<dc:creator>dlkinney</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[adobemax]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[chicago]]></category>
		<category><![CDATA[creativesuite]]></category>

		<guid isPermaLink="false">http://deadinkvinyl.wordpress.com/2007/10/01/dear-adobe-all-is-forgiven/</guid>
		<description><![CDATA[Dear Adobe, All is forgiven. The CS3 Master Collection I won Saturday night at the Chicago onAIR bus tour event is adequate compensation for the hassles I had with the Adobe MAX site. And yes, you have bought my eternal love and devotion. XXXOOXOXOOX, David<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=83&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Dear <a href="http://www.adobe.com/">Adobe</a>,</p>
<p>All is forgiven. The <a href="http://www.adobe.com/products/creativesuite/mastercollection/">CS3 Master Collection</a> I won Saturday night at the Chicago <a href="http://onair.adobe.com/">onAIR bus tour</a> event is adequate compensation for the hassles I had with the <a href="http://www.adobemax2007.com/na">Adobe MAX</a> site. </p>
<p>And yes, you have bought my eternal love and devotion. </p>
<p>XXXOOXOXOOX,<br />
David</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/deadinkvinyl.wordpress.com/83/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/deadinkvinyl.wordpress.com/83/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deadinkvinyl.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deadinkvinyl.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deadinkvinyl.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deadinkvinyl.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deadinkvinyl.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deadinkvinyl.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deadinkvinyl.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deadinkvinyl.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deadinkvinyl.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deadinkvinyl.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deadinkvinyl.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deadinkvinyl.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deadinkvinyl.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deadinkvinyl.wordpress.com/83/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=83&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.deadinkvinyl.com/2007/10/01/dear-adobe-all-is-forgiven/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0439564df67efd24620e338a78a8d921?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dlkinney</media:title>
		</media:content>
	</item>
		<item>
		<title>Dear AT&amp;T Wireless, You Suck.</title>
		<link>http://blog.deadinkvinyl.com/2007/10/01/dear-att-wireless-you-suck/</link>
		<comments>http://blog.deadinkvinyl.com/2007/10/01/dear-att-wireless-you-suck/#comments</comments>
		<pubDate>Mon, 01 Oct 2007 13:40:00 +0000</pubDate>
		<dc:creator>dlkinney</dc:creator>
				<category><![CDATA[Conference]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[adobemax]]></category>
		<category><![CDATA[chicago]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mccormick]]></category>
		<category><![CDATA[mccormickcenter]]></category>
		<category><![CDATA[sun]]></category>
		<category><![CDATA[tmobile]]></category>

		<guid isPermaLink="false">http://deadinkvinyl.wordpress.com/2007/10/01/dear-att-wireless-you-suck/</guid>
		<description><![CDATA[Dear AT&#38;T Wireless, You suck. I switched from you to TMobile six years ago because you didn&#8217;t provide reception in my condo. I was happy with TMobile. They had exceptional coverage in my condo&#8212;and everywhere else I went, too1! They had good prices and excellent customer service every time I called them. (Their in-store service [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=82&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Dear <a href="http://www.wireless.att.com/home/">AT&#38;T Wireless</a>, </p>
<p>You suck. I switched from you to <a href="http://www.t-mobile.com/">TMobile</a> six years ago because you didn&#8217;t provide reception in my condo. I was <em>happy</em> with TMobile. They had exceptional coverage in my condo&#8212;and everywhere else I went, too<sup><a href="#fn1">1</a></sup>! They had good prices and excellent customer service every time I called them. (Their in-store service left something to be desired, but sadly that&#8217;s parity for the industry.) </p>
<p>I had to switch back to you, AT&#38;T, because you are the exclusive carrier of the <a href="http://www.apple.com/iphone/">iPhone</a>. I had hoped that your network coverage would have improved in the last six years, but as soon as I powered on my iPhone in my condo I saw that it hadn&#8217;t changed at all. I love my iPhone, but your disgraceful coverage limits it&#8217;s utility and hampers my ability to recommend it to non-enthusiasts. </p>
<p>I was reminded of this again on Sunday while attending a pre-event for Adobe MAX in the McCormick Center west building. As soon as I stepped inside, I was down to one bar, and a half dozen paces further I had no service at all. I saw other iPhone users struggling with the same problem. People with other carriers, however, had no problems at all. </p>
<p>So, I simply have this to tell you: I completely empathize with those who are unlocking their iPhones to use them on other networks. The moment I&#8217;m out from under my contract with you, I&#8217;m unlocking my phone and returning to TMobile. </p>
<p>Good luck,<br />
David</p>
<p><sup>1</sup> TMobile&#8217;s data services in Chicago are pathetic, but I use <a href="http://www.nextel.com/en/solutions/mobile_broadband/">Sprint</a> for mobile broadband and couldn&#8217;t be happier with their coverage and speed.  </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/deadinkvinyl.wordpress.com/82/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/deadinkvinyl.wordpress.com/82/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deadinkvinyl.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deadinkvinyl.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deadinkvinyl.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deadinkvinyl.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deadinkvinyl.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deadinkvinyl.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deadinkvinyl.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deadinkvinyl.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deadinkvinyl.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deadinkvinyl.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deadinkvinyl.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deadinkvinyl.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deadinkvinyl.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deadinkvinyl.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=82&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.deadinkvinyl.com/2007/10/01/dear-att-wireless-you-suck/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0439564df67efd24620e338a78a8d921?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dlkinney</media:title>
		</media:content>
	</item>
		<item>
		<title>Nevermind. Adobe Rules!</title>
		<link>http://blog.deadinkvinyl.com/2007/09/27/nevermind-adobe-rules/</link>
		<comments>http://blog.deadinkvinyl.com/2007/09/27/nevermind-adobe-rules/#comments</comments>
		<pubDate>Fri, 28 Sep 2007 02:16:00 +0000</pubDate>
		<dc:creator>dlkinney</dc:creator>
				<category><![CDATA[Conference]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[adobemax]]></category>

		<guid isPermaLink="false">http://deadinkvinyl.wordpress.com/2007/09/27/nevermind-adobe-rules/</guid>
		<description><![CDATA[Adobe sent me a very nice email yesterday and set things right. Additionally, they blogged that&#8212;due to unprecedented attendance to MAX this year&#8212;many of the sessions will be recorded.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=80&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Adobe sent me a very nice email yesterday and set things right. Additionally, they blogged that&#8212;due to <a href="http://blog.adobemax2007.com/2007/09/adobe-max-2007-north-america-is-sold.html">unprecedented attendance</a> to MAX this year&#8212;many of the sessions <em>will</em> be recorded. </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/deadinkvinyl.wordpress.com/80/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/deadinkvinyl.wordpress.com/80/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deadinkvinyl.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deadinkvinyl.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deadinkvinyl.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deadinkvinyl.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deadinkvinyl.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deadinkvinyl.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deadinkvinyl.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deadinkvinyl.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deadinkvinyl.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deadinkvinyl.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deadinkvinyl.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deadinkvinyl.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deadinkvinyl.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deadinkvinyl.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=80&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.deadinkvinyl.com/2007/09/27/nevermind-adobe-rules/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0439564df67efd24620e338a78a8d921?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dlkinney</media:title>
		</media:content>
	</item>
		<item>
		<title>Adobe, Why Won&#8217;t You Take My Money?</title>
		<link>http://blog.deadinkvinyl.com/2007/09/24/adobe-why-wont-you-take-my-money/</link>
		<comments>http://blog.deadinkvinyl.com/2007/09/24/adobe-why-wont-you-take-my-money/#comments</comments>
		<pubDate>Mon, 24 Sep 2007 22:47:00 +0000</pubDate>
		<dc:creator>dlkinney</dc:creator>
				<category><![CDATA[Conference]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[adobemax]]></category>
		<category><![CDATA[experiencedesign]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://deadinkvinyl.wordpress.com/2007/09/24/adobe-why-wont-you-take-my-money/</guid>
		<description><![CDATA[I&#8217;m already signed up for AdobeMAX through my employer. Early last week I decided that I really wanted to attend one of the AdobeMAX all-day, pre-event, hands-on sessions&#8212;enough to drop $750 of my own money (not my employer&#8217;s) to attend. However, the AdobeMAX account page doesn&#8217;t seem to allow a person to add a pre-event [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=79&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m already signed up for AdobeMAX through my employer. Early last week I decided that I really wanted to attend one of the AdobeMAX all-day, pre-event, hands-on sessions&#8212;enough to drop $750 of my own money (not my employer&#8217;s) to attend. However, the AdobeMAX account page doesn&#8217;t seem to allow a person to add a pre-event session once a person has registered. I emailed Adobe about this last week and <strong>haven&#8217;t heard back</strong>. In the time since I emailed them, the magical boundary of September 22 has passed and now the event is $950. It was a stretch at $750, but $950 is out of my ballpark. </p>
<p>I could write this off as a simple &#8220;oops&#8221; on Adobe&#8217;s part. I understand that some emails get lost in the shuffle. But two weeks earlier I had emailed them a simple question (&#8220;Will presentations be recorded and available for free or purchase?&#8221;) and never got a response to that email, either. </p>
<p>To what email address was I sending my letters? Reasonable question. What email address <em>should</em> I be using? The email addresses are a bit buried on the site. I would have hoped to find one on the registration summary page&#8212;but, alas, they are all hiding under the Event Fees tab. I&#8217;ve emailed questions@adobemax2007.com and I&#8217;ve emailed maxops@adobemax2007.com. If you know another one to try&#8230; <strong>IT&#8217;S TOO LATE!</strong> I can no longer afford to attend the pre-event. </p>
<p>Adobe, whose XD sessions I <em>was</em> planning to attend, has managed to design a Web site hides the important contact information, won&#8217;t let me <em>give them more money</em>, and has irritated me enough to somewhat diminish my opinion of them as a company. </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/deadinkvinyl.wordpress.com/79/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/deadinkvinyl.wordpress.com/79/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deadinkvinyl.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deadinkvinyl.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deadinkvinyl.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deadinkvinyl.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deadinkvinyl.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deadinkvinyl.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deadinkvinyl.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deadinkvinyl.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deadinkvinyl.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deadinkvinyl.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deadinkvinyl.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deadinkvinyl.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deadinkvinyl.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deadinkvinyl.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=79&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.deadinkvinyl.com/2007/09/24/adobe-why-wont-you-take-my-money/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0439564df67efd24620e338a78a8d921?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dlkinney</media:title>
		</media:content>
	</item>
		<item>
		<title>My Schedule for Adobe MAX 2007 Chicago</title>
		<link>http://blog.deadinkvinyl.com/2007/09/07/my-schedule-for-adobe-max-2007-chicago/</link>
		<comments>http://blog.deadinkvinyl.com/2007/09/07/my-schedule-for-adobe-max-2007-chicago/#comments</comments>
		<pubDate>Sat, 08 Sep 2007 04:07:00 +0000</pubDate>
		<dc:creator>dlkinney</dc:creator>
				<category><![CDATA[Conference]]></category>
		<category><![CDATA[adobemax]]></category>
		<category><![CDATA[experiencedesign]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[creativesuite]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[applicationdesign]]></category>
		<category><![CDATA[continuousintegration]]></category>
		<category><![CDATA[datavisualization]]></category>
		<category><![CDATA[fireworks]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[flexunit]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[prototyping]]></category>
		<category><![CDATA[richinternetapplication]]></category>
		<category><![CDATA[rubyonrails]]></category>

		<guid isPermaLink="false">http://deadinkvinyl.wordpress.com/2007/09/07/my-schedule-for-adobe-max-2007-chicago/</guid>
		<description><![CDATA[The Adobe MAX conference is in my backyard this year. The lack of travel expenses and the steep discount provided to attendees of 360&#124;Flex made it possible for me to attend. After registering, I chatted with other developers in my company to determine what sessions would be of greatest benefit to the teams using or [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=77&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.adobemax2007.com/">Adobe MAX</a> conference is in my backyard this year. The lack of travel expenses and the steep discount provided to attendees of <a href="http://www.360flex.com/">360|Flex</a> made it possible for me to attend. </p>
<p>After registering, I chatted with other developers in my company to determine what sessions would be of greatest benefit to the teams using or investigating Flex. I shuffled those in with some sessions I really wanted to attend and the resulting schedule is below.</p>
<p><a href="https://secure.adobemax2007.com/na/sessions/locator/session/RA209W">Data Visualization with Flex</a></p>
<p><a href="https://secure.adobemax2007.com/na/sessions/locator/session/RA303W">Customizing the Flex Framework</a></p>
<p><a href="https://secure.adobemax2007.com/na/sessions/locator/session/RA207W">Continuous Integration with Flex, FlexUnit, and Ant</a></p>
<p><a href="https://secure.adobemax2007.com/na/sessions/locator/session/WD212W">Optimizing ActionScript 3.0 Performance</a></p>
<p><a href="https://secure.adobemax2007.com/na/sessions/locator/session/RA026W">Inspire Session: The Dawning of the Age of Experience</a></p>
<p><a href="https://secure.adobemax2007.com/na/sessions/locator/session/WI022W">What Makes a Design Seem Intuitive?</a></p>
<p><a href="https://secure.adobemax2007.com/na/sessions/locator/session/WI302W">Pixel Perfect Precision</a></p>
<p><a href="https://secure.adobemax2007.com/na/sessions/locator/session/WI010W">XD: Prototyping Rich Internet Applications with Fireworks CS3</a></p>
<p><a href="https://secure.adobemax2007.com/na/sessions/locator/session/RA012W">XD: Adobe&#8217;s Approach to Application Design</a></p>
<p><a href="https://secure.adobemax2007.com/na/sessions/locator/session/RA305W">Optimizing Flex Applications</a></p>
<p><a href="https://secure.adobemax2007.com/na/sessions/locator/session/WI211W">Designers and Developers CAN Love Each Other</a></p>
<p><a href="https://secure.adobemax2007.com/na/sessions/locator/session/RA208W">Creating New Flex Components</a></p>
<p><a href="https://secure.adobemax2007.com/na/sessions/locator/session/RA212W">Flex on Rails</a></p>
<p>I look forward to seeing some of you there! </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/deadinkvinyl.wordpress.com/77/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/deadinkvinyl.wordpress.com/77/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deadinkvinyl.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deadinkvinyl.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deadinkvinyl.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deadinkvinyl.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deadinkvinyl.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deadinkvinyl.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deadinkvinyl.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deadinkvinyl.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deadinkvinyl.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deadinkvinyl.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deadinkvinyl.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deadinkvinyl.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deadinkvinyl.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deadinkvinyl.wordpress.com/77/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=77&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.deadinkvinyl.com/2007/09/07/my-schedule-for-adobe-max-2007-chicago/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0439564df67efd24620e338a78a8d921?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dlkinney</media:title>
		</media:content>
	</item>
	</channel>
</rss>
