<?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/"
	>

<channel>
	<title>Tiffany B. Brown &#187; Events</title>
	<atom:link href="http://tiffanybbrown.com/category/events/feed/" rel="self" type="application/rss+xml" />
	<link>http://tiffanybbrown.com</link>
	<description>A web log about web development and internet culture with frequent detours into other stuff.</description>
	<lastBuildDate>Fri, 10 Feb 2012 23:35:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>XHR2 + CORS Slides, some AppCache-fu, OpenWebCamp, and Opera News</title>
		<link>http://tiffanybbrown.com/2011/06/30/xhr2-cors-slides-some-appcache-fu-openwebcamp-and-opera-news/</link>
		<comments>http://tiffanybbrown.com/2011/06/30/xhr2-cors-slides-some-appcache-fu-openwebcamp-and-opera-news/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 01:00:49 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[Tech Events]]></category>
		<category><![CDATA[Web Development & Programming]]></category>
		<category><![CDATA[appcache]]></category>
		<category><![CDATA[application cache]]></category>
		<category><![CDATA[base64_encode]]></category>
		<category><![CDATA[cors]]></category>
		<category><![CDATA[data uris]]></category>
		<category><![CDATA[html5la]]></category>
		<category><![CDATA[open web camp]]></category>
		<category><![CDATA[xhr2]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=6052</guid>
		<description><![CDATA[For the June meeting of the HTML5 &#038; CSS3 LA User Group, I spoke about XMLHttpRequest, Level 2 and Cross-Origin Resource Sharing headers. It&#8217;s always tough to present code. That goes double when you are sleep deprived, yet caffeinated and tongue-tied. In any case, the slides &#8212; which is really just one really long, really [...]]]></description>
			<content:encoded><![CDATA[<p>For the June meeting of the <a href="http://html5la.com/">HTML5 &#038; CSS3 LA User Group</a>, I spoke about XMLHttpRequest, Level 2 and Cross-Origin Resource Sharing headers. It&#8217;s always tough to present code. That goes double when you are sleep deprived, yet caffeinated and tongue-tied. </p>
<p>In any case, the slides &#8212; which is really just one really long, really heavy HTML file with inline CSS, JS, and images (thanks, data URIs!) &#8212; are <a href="http://tiffanybbrown.com/presentations/2011/xhr2/">now available</a>.</p>
<p><a href="http://en.wikipedia.org/wiki/Data_URI_scheme">Data URI</a>s have been available for quite a while now, though Internet Explorer versions 5-7 don&#8217;t support them. They are string representations of file data, typically base-64 encoded. When used as an <code>img</code> or <code>url()</code> source, they reduce the number of HTTP requests. And as we know, making fewer HTTP requests is the <a href="http://stevesouders.com/hpws/rule-min-http.php">number 1 rule</a> of web site optimization &#8230; except y&#8217;know when it creates a 1.8MB HTML file <img src='http://tiffanybbrown.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</p>
<p>It&#8217;s simple enough to convert files to a base64 encoded string with a few lines of code. Let&#8217;s assume we want to convert a file named &#8220;cars.png.&#8221; In PHP it might looks like this:</p>
<pre>$filename = 'cars.png';
$ext = pathinfo($filename,PATHINFO_EXTENSION);
switch($ext){
     case 'gif':
          $type = 'image/gif';
          break;
     case 'png':
          $type = 'image/png';
          break;
     case 'jpeg':
          $type = 'image/jpeg';
          break;
}
$fileHandler = fopen($filename,"r");
$data = fread($fileHandler, filesize($filename));
print 'data:'.$type.';base64,'.base64_encode($data);</pre>
<p>Despite the ginormous HTML file, I still think it&#8217;s useful for it to be a single-file package. After all, you only have to save and keep track of that one HTML file. </p>
<h2>Application Cache</h2>
<p>Bonus: you can view it offline because I took advantage of <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/offline.html">Application Cache</a>. </p>
<p>Application Cache is an awesome technique that can speed up load times by caching data locally. But it also ensures that if connectivity is lost or unavailable, you can still visit that URL and have access to the content. This assumes, of course, that you&#8217;re using a browser that supports AppCache. The latest versions of <a href="http://caniuse.com/#search=appcache">most major browsers</a>, <strong>including Opera 11+</strong>, do.</p>
<p>Application Cache is also quite simple &#8212; at least the basics of it are. First, add a manifest attribute to your &lt;html&gt; element.</p>
<pre>&lt;html manifest="/path/to/manifest.appcache"&gt;</pre>
<p>Then create a manifest file. It&#8217;s a simple, plain text file that <em>must</em> be sent with a <code>Content-type: text/cache-manifest</code> header. Typically the file name should have an .appcache extension, though it will work (for now, at least) if it&#8217;s named foo.manifest provided you send the correct content type header.</p>
<p>A basic manifest &#8212; the one I&#8217;ve used for the slides in fact &#8212; looks like this: </p>
<pre>CACHE MANIFEST

CACHE:
index.html
</pre>
<p>That&#8217;s it. We have told our browser to cache this page. You can also specify which files the browser should <em>always</em> retrieve from the server with <code>NETWORK</code>, or which files to use if you need to fall back.  It&#8217;s fascinating stuff. For more, check out HTML5 Doctor&#8217;s post, <a href="http://html5doctor.com/go-offline-with-application-cache/">Go offline with application cache</a>.</p>
<h2>I&#8217;ll be at Open Web Camp!</h2>
<p>I&#8217;ll be speaking more about AppCache and other things at <a href="http://openwebcamp.org/schedule" class="b">Open Web Camp</a> <b>July 16</b> at Stanford University in Palo Alto. Come say hi.</p>
<h2>Opera news, in case you missed it:</h2>
<ul>
<li><a href="http://my.opera.com/desktopteam/blog/2011/06/28/swordfish-jumps-out-of-the-water">Opera 11.50 was released Tuesday</a></li>
<li><a href="http://my.opera.com/ODIN/blog/2011/06/30/opera-mobile-11-1-new-features-and-additions">Opera Mini 6.1 and Opera Mobile 11.1</a> were released yesterday (6/29)</li>
</ul>
<p>I&#8217;m most excited that the Opera Mobile rendering engine is now running Presto 2.8 which means it now supports multi-layouts (we run on tablets too!), session history and navigation, and the <a href="http://www.w3.org/TR/FileAPI/">File API</a> (among other things).</p>
<p><h</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2011/06/30/xhr2-cors-slides-some-appcache-fu-openwebcamp-and-opera-news/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>UPDATED: Atlanta, GA: PHP Atlanta &#8220;Join-Fu: The Art of SQL&#8221;</title>
		<link>http://tiffanybbrown.com/2008/07/18/atlanta-ga-php-atlanta-join-fu-the-art-of-sql/</link>
		<comments>http://tiffanybbrown.com/2008/07/18/atlanta-ga-php-atlanta-join-fu-the-art-of-sql/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 19:33:43 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Tech Events]]></category>
		<category><![CDATA[Atlanta]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[atlantaphp]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[jay pipes]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[underarmchairmedia]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=1336</guid>
		<description><![CDATA[This meeting has been rescheduled to Thursday, August 14th at 7 p.m. Jay Pipes of MySQL AB and co-author of Pro MySQL, comes to Atlanta this month to present &#8220;Join-Fu: The Art of SQL.&#8221; I&#8217;ve seen Pipes speak before, and his presentation was incredibly informative. If you do a lot of development with MySQL, you [...]]]></description>
			<content:encoded><![CDATA[<div class="editors-note">This meeting has been <a class="ext" href="http://www.atlantaphp.org/archive/84">rescheduled</a> to <b>Thursday, August 14th at 7 p.m.</b></div>
<p><a href="http://jpipes.com/">Jay Pipes</a> of MySQL AB and co-author of <a class="book title" href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2FMySQL-Experts-Voice-Open-Source%2Fdp%2F159059505X%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1216408117%26sr%3D8-1&#038;tag=webinista-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=9325">Pro MySQL</a><img src="http://www.assoc-amazon.com/e/ir?t=webinista-20&amp;l=ur2&amp;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />, comes to Atlanta this month to present &#8220;Join-Fu: The Art of SQL.&#8221; </p>
<p>I&#8217;ve seen Pipes speak before, and his presentation was incredibly informative. If you do a lot of development with MySQL, you should definitely attend. </p>
<div class="event-details">
<h3>Event details</h3>
<ul>
<li><b>When:</b> Thursday, August 14th, 2008 from 7 p.m. until 9 p.m.
</li>
<li><b>Where:</b> <a href="http://www.atlantaphp.org/directions-canadian-consulate/">Consulate General of Canada</a> 17th floor Colony Square (see the concierge for access)</li>
<li><b>How much?:</b> Free to attend.</li>
<li><a href="http://www.atlantaphp.org/archive/83" class="ext">More information</a></li>
</ul>
</div>
<h4>Related:</h4>
<ul>
<li>Jay Pipes&#8217;s <a href="http://www.jpipes.com/index.php?/archives/239-Slides-for-Join-Fu-The-Art-of-SQL-I-and-II.html" class="ext">Slides for Join-Fu: The Art of SQL (I and II)</a> (I do not know whether this will be the same talk as the one Pipes will give next month.)</li>
<li><a href="http://tiffanybbrown.com/category/tech+events/feed/" title="RSS Feed">RSS for Tech Events</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2008/07/18/atlanta-ga-php-atlanta-join-fu-the-art-of-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Atlanta, GA: php&#124;works and PyWorks</title>
		<link>http://tiffanybbrown.com/2008/07/18/atlanta-ga-phpworks-and-pyworks/</link>
		<comments>http://tiffanybbrown.com/2008/07/18/atlanta-ga-phpworks-and-pyworks/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 15:49:48 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tech Events]]></category>
		<category><![CDATA[conferences]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2008/07/18/atlanta-ga-phpworks-and-pyworks/</guid>
		<description><![CDATA[Marco Tabini &#38; Associates, publishers of PHP Architect and Python Magazine are bringing their php&#124;works conference back to Atlanta this fall, November 12th through 14th, 2008. This year, though, the conference has an added bonus: PyWorks, a conference devoted to Python. Registering for one conference allows you to attend both. Both conferences have an open [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://tiffanybbrown.com/images/uploads/2008/phpandpy.png" alt="" class="rightimg"/><br />
Marco Tabini &amp; Associates, publishers of <a href="http://www.phparch.com/">PHP Architect</a> and <a href="http://pymag.phparch.com/">Python Magazine</a> are bringing their <a href="http://phpworks.mtacon.com/" class="b">php|works</a> conference back to Atlanta this fall, <b class="event-date">November 12th through 14th, 2008</b>. </p>
<p>This year, though, the conference has an added bonus: <a href="http://pyworks.mtacon.com/" class="b">PyWorks</a>, a conference devoted to Python. Registering for one conference allows you to attend both. </p>
<p>Both conferences have an open call for papers, which ends July 25, 2008. Registration costs $599 (discounts are available).</p>
<p><a href="http://tiffanybbrown.com/tag/tech+events/feed/"><b>RSS:</b> Tech Events</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2008/07/18/atlanta-ga-phpworks-and-pyworks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Atlanta, GA: Modern Atlanta 2008</title>
		<link>http://tiffanybbrown.com/2008/04/16/atlanta-ga-modern-atlanta-2008/</link>
		<comments>http://tiffanybbrown.com/2008/04/16/atlanta-ga-modern-atlanta-2008/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 13:48:17 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Art]]></category>
		<category><![CDATA[Atlanta]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=1278</guid>
		<description><![CDATA[Modernistas, get giddy. Next month, Atlanta&#8217;s modern architecture and design will be showcased as a part of &#8220;Modern Atlanta 2008: Design Is Human.&#8221; Highlights of Design Is Human include a wine tasting at Poliform SWITCH, the Belgium Design &#038; Fashion Event for Darfur, and a modern home tour. Ticket prices vary. Many events are free. [...]]]></description>
			<content:encoded><![CDATA[<p>Modernistas, get giddy. Next month, Atlanta&#8217;s modern architecture and design will be showcased as a part of &#8220;Modern Atlanta 2008: Design Is Human.&#8221;</p>
<p>Highlights of Design Is Human include a wine tasting at <a href="http://modern-atlanta.org/ma_08_design_is_human/poliformswitch-party/">Poliform SWITCH</a>, the <a href="http://modern-atlanta.org/ma_08_design_is_human/belgium-design-fashion-weekend-fundraiser-to-benefit-darfur/">Belgium Design &#038; Fashion Event for Darfur</a>, and a <a href="http://modern-atlanta.org/ma_08_design_is_human/modern-home-tour/">modern home tour</a>. </p>
<p>Ticket prices vary. Many events are free. More information is available at the <a href="http://modern-atlanta.org/">Modern Atlanta</a> web site (designed and developed by some <a href="http://www.armchairmedia.com/">ultra-groovy folks</a>). </p>
<div class="event-details">
<h3>Event details</h3>
<ul>
<li><b>When:</b> May 6 &#8211; 11, 2008</li>
<li><b>Where:</b> Various locations across the City of Atlanta</li>
<li><b>How much?</b>
<ul>
<li>Most parties are $20, though some are free (and all are free with a home tour ticket)</li>
<li>Home Tour: $30 for one day pass; $50 for weekend pass</li>
<li>Fashion show: $60</li>
</ul>
</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2008/04/16/atlanta-ga-modern-atlanta-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Atlanta, GA: &#8220;Ethics and New Media: How the Blogosphere is Affecting Journalism and Business&#8221;</title>
		<link>http://tiffanybbrown.com/2008/03/17/atlanta-ga-ethics-and-new-media-how-the-blogosphere-is-affecting-journalism-and-business/</link>
		<comments>http://tiffanybbrown.com/2008/03/17/atlanta-ga-ethics-and-new-media-how-the-blogosphere-is-affecting-journalism-and-business/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 21:32:42 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Atlanta]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Journalism]]></category>
		<category><![CDATA[atlanta press club]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[metablogging]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2008/03/17/atlanta-ga-ethics-and-new-media-how-the-blogosphere-is-affecting-journalism-and-business/</guid>
		<description><![CDATA[Presented by the Atlanta Press Club, this will be a panel discussion about how the impact of blogs on traditional media. Panelists include: Lea Donosky, interactivity manager, Atlanta Journal-Constitution Jeremy C. Garlington, publisher of The Garlington Report Greg Lisby, professor of journalism, Georgia State University David Rubinger, VP, Corporate Communications, Equifax This panel will be [...]]]></description>
			<content:encoded><![CDATA[<p>Presented by the Atlanta Press Club, this will be a panel discussion about how the impact of blogs on traditional media. Panelists include:</p>
<ul>
<li>Lea Donosky, interactivity manager, Atlanta Journal-Constitution</li>
<li>Jeremy C. Garlington, publisher of <a href="http://povblogger.blogspot.com/" class="website title">The Garlington Report</a></li>
<li>Greg Lisby, professor of journalism, Georgia State University</li>
<li>David Rubinger, VP, Corporate Communications, Equifax</li>
</ul>
<p>This panel will be moderated by Dr. John Knapp, Director of <abbr title="Georgia State University">GSU</abbr> <a href="http://robinson.gsu.edu/ethics/index.html">Center for Ethics and Corporate Responsibility</a></p>
<div class="event-details">
<h3>Event details</h3>
<ul>
<li><b>When:</b> Thursday, March 27, 2008 5:30 p.m. reception; 6:30 p.m. panel start</li>
<li><b>Where:</b> <a href="ttp://www.thecommerceclub.org/">The Commerce Club</a>, 16th Floor, 34 Broad Street, Atlanta, GA 30303 (Peachtree Center or 5 Points MARTA Stations)</li>
<li><b>How much:</b> $15 for non-members. <a href="https://www.atlantapressclub.org/events/register.php?id=113">Register online</a></li>
</ul>
</div>
<p>I encourage all bloggers to go and be vocal about what journalists and businesspeople do and (sadly) don&#8217;t get about online.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2008/03/17/atlanta-ga-ethics-and-new-media-how-the-blogosphere-is-affecting-journalism-and-business/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Atlanta, Ga: php&#124;works 2007</title>
		<link>http://tiffanybbrown.com/2007/08/15/atlanta-ga-phpworks-2007/</link>
		<comments>http://tiffanybbrown.com/2007/08/15/atlanta-ga-phpworks-2007/#comments</comments>
		<pubDate>Wed, 15 Aug 2007 17:39:13 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Atlanta]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tech Events]]></category>
		<category><![CDATA[Web Development & Programming]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2007/08/15/atlanta-ga-phpworks-2007/</guid>
		<description><![CDATA[Local PHP geeks rejoice! php&#124;works 2007 is happening in our neck of the woods in about a month. Speakers include Atlanta PHP founder Ben Ramsey, PHP guru Sara Goleman and security expert Chris Shiflett. Event details When: Sept 13 &#8211; 14, 2007 Where: Sheraton Gateway Hotel How much: US$650 and $200 for the tutorial add-on. [...]]]></description>
			<content:encoded><![CDATA[<p>Local PHP geeks rejoice! php|works 2007 is happening in our neck of the woods in about a month. Speakers include <a href="http://www.atlantaphp.org/">Atlanta PHP</a> founder <a href="http://benramsey.com/">Ben Ramsey</a>, PHP guru <a href="http://blog.libssh2.org/">Sara Goleman</a> and security expert <a href="http://shiflett.org/">Chris Shiflett</a>.</p>
<div class="event-details">
<h3>Event details</h3>
<ul>
<li>When: Sept 13 &#8211; 14, 2007</li>
<li>Where: <a href="http://www.starwoodhotels.com/sheraton/property/overview/index.html?propertyID=48&#038;requestedChainCode=SI&#038;requestedAffiliationCode=SI&#038;localeCode=en_US&#038;language=en_US&#038;">Sheraton Gateway Hotel</a></li>
<li>How much: US$650 and $200 for the tutorial add-on. Discounts available for students, non-profits, educators and groups</li>
<li><a href="http://works.phparch.com/c/p/index">More info</a></li>
</ul>
</div>
<h3>Related entries</h3>
<ul>
<li><a href="http://tiffanybbrown.com/2007/03/29/atlanta-ga-apachecon-us-2007/">Atlanta, GA: ApacheCon US 2007</a></li>
<li><a href="http://tiffanybbrown.com/2007/08/07/dallas-tx-webmaster-jam-session/">Dallas, TX: Webmaster Jam Session</a></li>
<li><a href="http://tiffanybbrown.com/2007/04/02/santa-clara-ca-ajaxworld-conference-expo/">Santa Clara, CA: AJAXWorld Conference &#038; Expo</a></li>
<li><a href="http://tiffanybbrown.com/2007/06/28/future-of-web-design-new-york/">New York City: Future of Web Design</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2007/08/15/atlanta-ga-phpworks-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dallas, TX: Webmaster Jam Session</title>
		<link>http://tiffanybbrown.com/2007/08/07/dallas-tx-webmaster-jam-session/</link>
		<comments>http://tiffanybbrown.com/2007/08/07/dallas-tx-webmaster-jam-session/#comments</comments>
		<pubDate>Tue, 07 Aug 2007 19:03:02 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[(x)HTML]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Tech Events]]></category>
		<category><![CDATA[Web Development & Programming]]></category>
		<category><![CDATA[Web standards]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2007/08/07/dallas-tx-webmaster-jam-session/</guid>
		<description><![CDATA[Get up to speed on web standards and design techniques with some of the industry&#8217;s top names. Just based on the speaker list, this could be the web conference to attend if you can&#8217;t make it to South by Southwest next March. Speakers include Molly Holzschlag, Garrett Dimon, Stephanie Sullivan, and Jared Spool. It&#8217;s really [...]]]></description>
			<content:encoded><![CDATA[<p>Get up to speed on web standards and design techniques with some of the industry&#8217;s top names. Just based on the <a href="http://2007.webjamsession.com/speakers/">speaker list</a>, this could be the web conference to attend if you can&#8217;t make it to South by Southwest next March.</p>
<p>Speakers include <a href="http://www.molly.com/">Molly Holzschlag</a>, <a href="http://garrettdimon.com/">Garrett Dimon</a>, <a href="http://www.w3conversions.com/">Stephanie Sullivan</a>, and <a href="http://www.uie.com/about/consultants/">Jared Spool</a>. It&#8217;s really a top-notch list.</p>
<div class="event-details">
<h3>Event details</h3>
<ul>
<li>Where: Adam&#8217;s Mark Hotel and Resort, 400 North Olive Street, Dallas, TX 75201 (<a href="http://maps.google.com/maps?f=q&#038;hl=en&#038;geocode=&#038;q=adam's+mark+dallas,+tx&#038;ie=UTF8&#038;ll=32.778038,-96.795731&#038;spn=0.424902,0.755997&#038;z=11&#038;iwloc=A&#038;om=1">map</a>)</li>
<li>When: September 20th and 21st, 2007</li>
<li>How much: $199 for an attendee badge; $399 for a platinum badge with access to special sessions</li>
</ul>
</div>
<div class="related-posts">
<h3>Other upcoming conferences</h3>
<ul>
<li><a href="http://tiffanybbrown.com/2007/05/16/burlingame-ca-zend-php-conference-2007/">Burlingame, CA: Zend / PHP Conference 2007</a></li>
<li><a href="http://tiffanybbrown.com/2007/05/23/boston-ma-flashforward-2007/">Boston, MA: Flashforward 2007</a></li>
<li><a href="http://tiffanybbrown.com/2007/06/28/future-of-web-design-new-york/">New York City: Future of Web Design</a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2007/08/07/dallas-tx-webmaster-jam-session/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New York City: Future of Web Design</title>
		<link>http://tiffanybbrown.com/2007/06/28/future-of-web-design-new-york/</link>
		<comments>http://tiffanybbrown.com/2007/06/28/future-of-web-design-new-york/#comments</comments>
		<pubDate>Thu, 28 Jun 2007 19:00:58 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Tech Events]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2007/06/28/future-of-web-design-new-york/</guid>
		<description><![CDATA[UK-based Carson Systems brings its Future of Web Design conference to the Big Apple this fall. Details are thin at this point, but registration begins July 5, 2007. I&#8217;ll update this page as more information becomes available. Confirmed speakers include Jina Bolton, Andy Clarke, Jeffrey Zeldman, and Brian Fling. And that&#8217;s the short list. The [...]]]></description>
			<content:encoded><![CDATA[<p>UK-based <a href="http://www.carsonsystems.com/">Carson Systems</a> brings its <a href="http://www.futureofwebdesign.com/">Future of Web Design</a> conference to the Big Apple this fall. </p>
<p><del datetime="2007-07-24T15:06:21+00:00">Details are thin at this point, but registration begins <strong>July 5, 2007</strong>. I&#8217;ll update this page as more information becomes available.</del></p>
<p>Confirmed speakers include <a href="http://jinabolton.com/">Jina Bolton</a>, <a href="http://www.stuffandnonsense.co.uk/">Andy Clarke</a>, <a href="http://zeldman.com/">Jeffrey Zeldman</a>, and <a href="http://www.blueflavor.com/">Brian Fling</a>. And that&#8217;s the short list. The <a href="http://www.futureofwebdesign.com/speakers.html">entire roster</a> is pretty bad-ass.</p>
<p>It&#8217;s being held at the <a href="http://www.futureofwebdesign.com/venue.html">Javits Convention Center</a> which has some pretty cool views of the Hudson River. </p>
<div class="event-details">
<h3>Event details</h3>
<ul>
<li>When: November 7th and 8th, 2007</li>
<li>Where: <a href="http://www.javitscenter.com/">Javits Center</a>, 655 West 34th Street, New York, NY 10001 [<a href="http://maps.google.com/maps?f=q&#038;hl=en&#038;geocode=&#038;q=Jacob+K+Javits+Convention+Center,+11th+Ave,+New+York,+NY&#038;sll=42.032974,-87.539062&#038;sspn=38.474384,63.632813&#038;ie=UTF8&#038;z=16&#038;iwloc=addr&#038;om=1">map</a>]</li>
<li>How much: $195 for the conference. $595 for the conference and workshops. Early bird discounts are available.</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2007/06/28/future-of-web-design-new-york/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Boston, MA: Flashforward 2007</title>
		<link>http://tiffanybbrown.com/2007/05/23/boston-ma-flashforward-2007/</link>
		<comments>http://tiffanybbrown.com/2007/05/23/boston-ma-flashforward-2007/#comments</comments>
		<pubDate>Wed, 23 May 2007 21:10:28 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[ActionScript, Flash & Flex]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Tech Events]]></category>
		<category><![CDATA[Web Development & Programming]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2007/05/23/boston-ma-flashforward-2007/</guid>
		<description><![CDATA[Flash and ActionScript heads listen up: This year&#8217;s Flashforward conference will be held in Boston in the fall. Speakers include John Maeda of of the MIT Media Lab and Craig Swann of CRASH!MEDIA. Session topics will include ActionScript 3.0, Flex and Designing with Sound. Flashforward is produced by Lynda.com events. Event details When: September 19th [...]]]></description>
			<content:encoded><![CDATA[<p>Flash and ActionScript heads listen up: This year&#8217;s <a href="http://www.flashforwardconference.com/">Flashforward</a> conference will be held in Boston in the fall. </p>
<p>Speakers include <a href="http://plw.media.mit.edu/people/maeda/">John Maeda</a> of of the <abbr title="Massachusetts Institute of Technology">MIT</abbr> Media Lab and <a href="http://craigswann.com/">Craig Swann</a> of <a href="http://www.crashmedia.com/">CRASH!MEDIA</a>. Session topics will include ActionScript 3.0, Flex and Designing with Sound.</p>
<p>Flashforward is produced by <a href="http://www.lynda.com">Lynda.com</a> events.</p>
<div class="event-details">
<h3>Event details</h3>
<ul>
<li>When: September 19th through 21st, 2007</li>
<li>Where: <a href="http://marriott.com/hotels/travel/bosco-boston-marriott-copley-place/">Marriott Copley Place</a>, Boston Massachusetts</li>
<li>How much: $899 &#8211; $1299 depending on when you register and which package you choose. Exhibits and Film Festival-only admission is $50.</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2007/05/23/boston-ma-flashforward-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Burlingame, CA: Zend / PHP Conference 2007</title>
		<link>http://tiffanybbrown.com/2007/05/16/burlingame-ca-zend-php-conference-2007/</link>
		<comments>http://tiffanybbrown.com/2007/05/16/burlingame-ca-zend-php-conference-2007/#comments</comments>
		<pubDate>Wed, 16 May 2007 08:00:37 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tech Events]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2007/05/16/burlingame-ca-zend-php-conference-2007/</guid>
		<description><![CDATA[The conference is now in its &#8220;Call for Papers&#8221; stage (proposals are due May 31). But it should feature a strong lineup of PHP industry experts. I will update this post ass more information becomes available, or you can follow the conference web site for details. When: October 8 &#8211; 11, 2007 Where: Hyatt Regency [...]]]></description>
			<content:encoded><![CDATA[<p>The conference is now in its &#8220;Call for Papers&#8221; stage (proposals are due May 31). But it should feature a strong lineup of PHP industry experts. I will update this post ass more information becomes available, or you can follow the <a href="http://www.kbconferences.com/zendcon07/">conference web site</a> for details.</p>
<ul>
<li>When: October 8 &#8211; 11, 2007</li>
<li>Where: Hyatt Regency San Francisco Airport, 1333 Bayshore Highway, Burlingame, CA 94010 [<a href="http://maps.google.com/maps?f=q&#038;hl=en&#038;q=1333+Bayshore+Highway,+burlingame,+ca&#038;sll=37.0625,-95.677068&#038;sspn=50.51141,66.445312&#038;ie=UTF8&#038;z=16&#038;iwloc=addr&#038;om=1">map</a>]</li>
<li>How much: $795 for previous conference attendees; Early registration: $895 (before August 15, 2007); Regular registration: $1,295; Onsite: $1,395</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2007/05/16/burlingame-ca-zend-php-conference-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Santa Clara, CA: AJAXWorld Conference &amp; Expo</title>
		<link>http://tiffanybbrown.com/2007/04/02/santa-clara-ca-ajaxworld-conference-expo/</link>
		<comments>http://tiffanybbrown.com/2007/04/02/santa-clara-ca-ajaxworld-conference-expo/#comments</comments>
		<pubDate>Mon, 02 Apr 2007 14:00:50 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Tech Events]]></category>
		<category><![CDATA[Web Development & Programming]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2007/04/02/santa-clara-ca-ajaxworld-conference-expo/</guid>
		<description><![CDATA[Three days of Ajax development and nerdery. Featuring keynotes by Brad Adams of Microsoft and JSON creator Douglas Crockford. Session speakers include FutureText founder Ajit Jaokar, Steve Rubel, Yahoo! front-end guru Eric Miraglia, and web developer / educator Molly Holzschlag. When: September 24 &#8211; 26, 2007 Where: Santa Clara, CA (a more specific locale is [...]]]></description>
			<content:encoded><![CDATA[<p>Three days of Ajax development and nerdery. Featuring keynotes by Brad Adams of Microsoft and <abbr title="JavaScript Object Notation">JSON</abbr> creator Douglas Crockford. Session speakers include FutureText founder Ajit Jaokar, <a href="http://www.micropersuasion.com/">Steve Rubel</a>, Yahoo! front-end guru Eric Miraglia, and web developer / educator <a href="http://www.molly.com/">Molly Holzschlag</a>. </p>
<ul>
<li>When: September 24 &#8211; 26, 2007</li>
<li>Where: Santa Clara, CA (a more specific locale is forthcoming)</li>
<li>How much: US$1,395 before April 25; $1,495 before May 25; $1595 before July 25; $1695 on site. Also developer bootcamps for an additional fee.</li>
<li><a href="http://www.ajaxworldexpo.com/">More information</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2007/04/02/santa-clara-ca-ajaxworld-conference-expo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Atlanta, GA: ApacheCon US 2007</title>
		<link>http://tiffanybbrown.com/2007/03/29/atlanta-ga-apachecon-us-2007/</link>
		<comments>http://tiffanybbrown.com/2007/03/29/atlanta-ga-apachecon-us-2007/#comments</comments>
		<pubDate>Thu, 29 Mar 2007 15:48:23 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Atlanta]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Tech Events]]></category>
		<category><![CDATA[Web Development & Programming]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2007/03/29/atlanta-ga-apachecon-us-2007/</guid>
		<description><![CDATA[ApacheCon US will be in Atlanta from November 12 &#8211; 16, 2007 at the Westin Peachtree Plaza. As of April 27, the conference is seeking papers. Topics include: Apache HTTP server Apache Software Foundation projects and incubated projects such as Jakarta, SpamAssassin and Roller Dynamic content and scripting, including Python and PHP Security and e-commerce [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.us.apache.org/">ApacheCon US</a> will be in Atlanta from  November 12 &#8211; 16, 2007 at the <a href="http://www.starwoodhotels.com/westin/property/overview/index.html?propertyID=1023">Westin Peachtree Plaza</a>. </p>
<p>As of April 27, the conference is seeking papers. Topics include:</p>
<ul>
<li>Apache HTTP server</li>
<li>Apache Software Foundation projects and incubated projects such as Jakarta, SpamAssassin and Roller</li>
<li>Dynamic content and scripting, including Python and PHP</li>
<li>Security and e-commerce</li>
<li>Performance and availability</li>
<li>Web services and web 2.0</li>
</ul>
<p>More information forthcoming.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2007/03/29/atlanta-ga-apachecon-us-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lazy blogging South by Southwest</title>
		<link>http://tiffanybbrown.com/2007/03/12/lazy-blogging-south-by-southwest/</link>
		<comments>http://tiffanybbrown.com/2007/03/12/lazy-blogging-south-by-southwest/#comments</comments>
		<pubDate>Mon, 12 Mar 2007 16:41:16 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[SXSW07]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2007/03/12/lazy-blogging-south-by-southwest/</guid>
		<description><![CDATA[I am too friggin lazy to blog SXSW. Instead, I will post URLs that I hear about. Tails Export: An extension for Showing and Exporting Microformats. Operator: A microformats tool for Firefox. More here. Mike&#8217;s Musings: Microformats are in there somewhere. Open Dildonics: Open source teledildonics. Slashdong: Teledildonics and other sex gadgetry. Probably not safe [...]]]></description>
			<content:encoded><![CDATA[<p>I am too friggin lazy to blog SXSW. Instead, I will post URLs that I hear about.</p>
<ul>
<li><a href="https://addons.mozilla.org/firefox/2240/">Tails Export</a>: <q>An extension for Showing and Exporting Microformats.</q></li>
<li><a href="https://addons.mozilla.org/firefox/4106/">Operator</a>: A microformats tool for Firefox. <a href="http://www.kaply.com/weblog/category/operator/">More here</a>.
<li><a href="http://www.kaply.com/weblog/">Mike&#8217;s Musings</a>: Microformats are in there somewhere.</li>
<li><a href="http://www.opendildonics.org/">Open Dildonics</a>: Open source teledildonics.</li>
<li><a href="http://slashdong.org/">Slashdong</a>: Teledildonics and other sex gadgetry. Probably not safe for work.</li>
<li><a href="http://zonetag.research.yahoo.com/">Zone tag</a>: Context-aware photo upload tool for series 60 Nokia mobile phones</li>
<li><a href="http://www.scanr.com/">Scanr</a>: Photograph a document and <abbr title="optical character recognition">OCR</abbr> magic turns it into a fax.</li>
<li><a href="http://radar.net/">Radar</a>: Mobile photo uploading and sharing</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2007/03/12/lazy-blogging-south-by-southwest/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SXSW Bound</title>
		<link>http://tiffanybbrown.com/2007/03/09/sxsw-bound/</link>
		<comments>http://tiffanybbrown.com/2007/03/09/sxsw-bound/#comments</comments>
		<pubDate>Fri, 09 Mar 2007 14:50:32 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[SXSW07]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2007/03/09/sxsw-bound/</guid>
		<description><![CDATA[Ahh, four glorious days of geek conversations, networking and hanging out with my conference crew. Here are some of the sessions I&#8217;m planning to attend as of right now. But that could change depending on my mood and/or need for a nap. Thank goodness I&#8217;m not on any panels this year. I&#8217;ll be able to [...]]]></description>
			<content:encoded><![CDATA[<p>Ahh, four glorious days of geek conversations, networking and hanging out with my conference crew. Here are some of the <a href="http://www.google.com/calendar/embed?src=mvjio17vvjgcchu338rmiee5kc%40group.calendar.google.com">sessions</a> I&#8217;m planning to attend as of right now. But that could change depending on my mood and/or need for a nap.</p>
<p>Thank goodness I&#8217;m not on any panels this year. I&#8217;ll be able to <em>enjoy</em> the entire conference. </p>
<p>If you&#8217;re in Austin keep a look-out for me and say &#8216;hi.&#8217; I&#8217;ll be all a-<a href="http://twitter.com/tiffanybbrown">Twitter</a>, and also on IM (webinista) and Skype (tiffanybbrown). Alas my phone ain&#8217;t cool enough for Dodgeball &#8230; remind me to upgrade when I get back.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2007/03/09/sxsw-bound/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Atlanta, GA: &#8220;When Art and Kink Collide&#8221;</title>
		<link>http://tiffanybbrown.com/2007/02/12/atlanta-ga-dirty-south-pinkeye-indie-queer-movie-salon/</link>
		<comments>http://tiffanybbrown.com/2007/02/12/atlanta-ga-dirty-south-pinkeye-indie-queer-movie-salon/#comments</comments>
		<pubDate>Tue, 13 Feb 2007 01:13:22 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Atlanta]]></category>
		<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2007/02/12/atlanta-ga-dirty-south-pinkeye-indie-queer-movie-salon/</guid>
		<description><![CDATA[Spend your Valentine&#8217;s day watching hot naked chicks (and a couple of dudes). The PinkEye Indie Queer Movie Salon presents two independent queer porn / erotica movies for your viewing pleasure. They&#8217;re screening the director&#8217;s cut of Teri Rice&#8217;s The Kindling Point (lesbian, bondage and domination), which was filmed in Atlanta in the early 1990s. [...]]]></description>
			<content:encoded><![CDATA[<p>Spend your Valentine&#8217;s day watching hot naked chicks (and a couple of dudes). The PinkEye Indie Queer Movie Salon presents two independent queer porn / erotica movies for your viewing pleasure. </p>
<p>They&#8217;re screening the director&#8217;s cut of Teri Rice&#8217;s <span class="movie title">The Kindling Point</span> (lesbian, bondage and domination), which was filmed in Atlanta in the early 1990s. Also showing: the made-in-New Orleans cult classic <span class="movie title">Squishy Does Porn</span> (some gay, some lesbian, some &#8220;pansexual&#8221;).</p>
<p>Also peforming: burlesque duo Good N&#8217; Plenty. </p>
<p>They&#8217;re also serving red velvet cupcakes and sparkling wine too, y&#8217;all. 18 and over, since it involves porn and such.</p>
<div class="event-details">
<h3>Event details</h3>
<ul>
<li>When: Wednesday, February 14, 2007 at 8 p.m. (That&#8217;s Valentine&#8217;s Day.)</li>
<li>Where: <a href="http://www.eyedrum.org/">Eyedrum</a> 290 Martin Luther King Drive, Suite 8, Atlanta, Ga.</li>
<li>How much: about $8 (site says $7. Flyers say $8. Also something about a sliding scale.)</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2007/02/12/atlanta-ga-dirty-south-pinkeye-indie-queer-movie-salon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

