<?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; Tech Events</title>
	<atom:link href="http://tiffanybbrown.com/category/events/tech-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>Wed, 23 May 2012 16:23:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</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: 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>Atlanta, GA: AiMA Search Engine Marketing panel</title>
		<link>http://tiffanybbrown.com/2007/02/03/atlanta-ga-aima-search-engine-marketing-panel/</link>
		<comments>http://tiffanybbrown.com/2007/02/03/atlanta-ga-aima-search-engine-marketing-panel/#comments</comments>
		<pubDate>Sat, 03 Feb 2007 05:43:45 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Atlanta]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Tech Events]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2007/02/03/atlanta-ga-aima-search-engine-marketing-panel/</guid>
		<description><![CDATA[This is one of the more popular sessions of the AiMA calendar: Search Engine Marketing. Panelists will discuss what works, what doesn&#8217;t, and what&#8217;s changing in the world of search engine marketing and optimization. No word just yet on who is speaking, but AiMA is usually pretty good at picking first-rate speakers. Plus they serve [...]]]></description>
			<content:encoded><![CDATA[<p>This is one of the more popular sessions of the <abbr title="Atlanta Interactive Marketing Association">AiMA</abbr> calendar: <a href="http://atlantaima.org/">Search Engine Marketing</a>. Panelists will discuss what works, what doesn&#8217;t, and what&#8217;s changing in the world of search engine marketing and optimization. </p>
<p>No word just yet on who is speaking, but <abbr title="Atlanta Interactive Marketing Association">AiMA</abbr> is usually pretty good at picking first-rate speakers. Plus they serve wine and beer during the networking sessions. I&#8217;ll update this post as details become available.</p>
<div class="event-details">
<h3>Event details</h3>
<ul>
<li>Where: Georgia Tech&#8217;s <a href="http://www.gatechcenter.com/"><abbr title="Global Learning and Conference Center">GLCC</abbr></a>, 84 5th St, NW, Atlanta, GA</li>
<li>When: Wednesday, February 28, 2007, 6:30 p.m.</li>
<li>How much: Usually it&#8217;s $25 for non-members and $15 for members</li>
<li><a href="http://atlantaima.org/">More info</a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2007/02/03/atlanta-ga-aima-search-engine-marketing-panel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>San Francisco: @media 2007 &#8211; America</title>
		<link>http://tiffanybbrown.com/2007/01/18/san-francisco-media-2007-america/</link>
		<comments>http://tiffanybbrown.com/2007/01/18/san-francisco-media-2007-america/#comments</comments>
		<pubDate>Thu, 18 Jan 2007 20:01:16 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[(x)HTML]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[JavaScript/ECMAScript]]></category>
		<category><![CDATA[Microformats]]></category>
		<category><![CDATA[Tech Events]]></category>
		<category><![CDATA[Web Development & Programming]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2007/01/18/san-francisco-media-2007-america/</guid>
		<description><![CDATA[The @media conference has grown from being a U. K. thing to a world-wide thing. This year, they&#8217;re doing three sessions in San Francisco, Hong Kong and in the conference&#8217;s hometown of London. The S. F. conference will include presentations by Tantek &#199;elik, Dan Cederholm, Jesse James Garrett, Molly Holzschlag, and Cameron Moll (check out [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.vivabit.com/atmedia2007/">@media conference</a> has grown from being a U. K. thing to a world-wide thing. This year, they&#8217;re doing three sessions in San Francisco, Hong Kong and in the conference&#8217;s hometown of London.</p>
<p>The S. F. conference will include presentations by <a href="http://tantek.com/">Tantek &Ccedil;elik</a>, <a href="http://www.simplebits.com/">Dan Cederholm</a>, <a href="http://www.jjg.net/">Jesse James Garrett</a>, <a href="http://www.molly.com/">Molly Holzschlag</a>, and <a href="http://cameronmoll.com/">Cameron Moll</a> (check out the <a href="http://www.vivabit.com/atmedia2007/america/speakers/">full speaker list</a>). Sessions will cover Ajax, usability, accessibility and other web development goodness.</p>
<div class="event-details">
<h3>Event details</h3>
<ul>
<li>When: May 24th through May 25th, 2007</li>
<li>Where: <a href="http://argenthotel.com/">Argent Hotel</a>, 50 Third Street, San Francisco, CA  [<a href="http://maps.google.com/maps?f=q&#038;hl=en&#038;q=50+Third+Street+San+Francisco,+CA++&#038;ie=UTF8&#038;z=15&#038;om=1&#038;iwloc=addr">map</a>]</li>
<li>How much:   $795 (Early bird rate; conference only. Conference and hotel packages available)</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2007/01/18/san-francisco-media-2007-america/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Portland, Oregon: RailsConf 2007</title>
		<link>http://tiffanybbrown.com/2006/11/14/railsconf-2007/</link>
		<comments>http://tiffanybbrown.com/2006/11/14/railsconf-2007/#comments</comments>
		<pubDate>Tue, 14 Nov 2006 09:00:05 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Tech Events]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2006/11/14/railsconf-2007/</guid>
		<description><![CDATA[Ruby Central and O&#8217;Reilly have teamed up for RailsConf 2007, a conference all about the Ruby on Rails framework. It promises to offer sessions for beginners through experts, with lots of networking opportunities mixed in. At this point, the conference is accepting proposals (deadline: November 27, 2006). I&#8217;ll update this post when more details are [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rubycentral.com/">Ruby Central</a> and <a href="http://www.oreilly.com/">O&#8217;Reilly</a> have teamed up for <a href="http://conferences.oreillynet.com/rails/">RailsConf 2007</a>, a conference all about the <a href="http://www.rubyonrails.org/">Ruby on Rails</a> framework. It promises to offer sessions for beginners through experts, with lots of networking opportunities mixed in.</p>
<p>At this point, the conference is <a href="http://conferences.oreillynet.com/cs/rails2007/create/e_sess/">accepting proposals</a> (deadline: <strong>November 27, 2006</strong>). I&#8217;ll update this post when more details are available. </p>
<div class="event-details">
<h3>Event details</h3>
<ul>
<li>When: Thursday, May 17 through Sunday, May 20, 2007</li>
<li>Where: <a href="http://www.oregoncc.org/">Oregon Convention Center</a>, Portland, Oregon (<a href="http://maps.google.com/maps?oi=map&#038;q=777+Ne+Martin+Luther+King+Jr+Blvd,+Portland,+OR+97232">map</a>)</li>
<li>How much: To be announced</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2006/11/14/railsconf-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chicago, Illinois: php&#124;tek 2007</title>
		<link>http://tiffanybbrown.com/2006/11/08/chicago-illinois-phptek-2007/</link>
		<comments>http://tiffanybbrown.com/2006/11/08/chicago-illinois-phptek-2007/#comments</comments>
		<pubDate>Wed, 08 Nov 2006 09:00:50 +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/2006/11/08/chicago-illinois-phptek-2007/</guid>
		<description><![CDATA[Details for php&#124;tek are finally up. Speakers include PHP heavyweights Wez Furlong, Ilia Alshanetsk, and John Coggeshall. Jay Pipes of MySQL is also set to present. Topics for talks include security, enhancing MySQL performance, debugging tools and design patterns. Sounds like a winner to me. The conference is, however, accepting papers through November 20, 2006. [...]]]></description>
			<content:encoded><![CDATA[<p>Details for <a href="http://hades.phparch.com/ceres/public/tek/">php|tek</a> are finally up. Speakers include PHP heavyweights Wez Furlong,  Ilia Alshanetsk, and John Coggeshall. Jay Pipes of MySQL is also set to present.</p>
<p>Topics for talks include security, enhancing MySQL performance, debugging tools and design patterns. Sounds like a winner to me.</p>
<p><del datetime="2006-12-15T17:13:36+00:00">The conference is, however, <a href="http://hades.phparch.com/ceres/public/tek/page/index.php/cfp">accepting papers</a> through <strong>November 20, 2006</strong>. I&#8217;ll update this page as more details are announced. </del></p>
<div class="event-details">
<h3>Event details</h3>
<ul>
<li>When: May 16 through May 18, 2007</li>
<li>Where: Hyatt Regency O&#8217;Hare, 9300 W. Bryn Mawr Avenue, Rosemont, Illinois</li>
<li>How much: US$749 (discounts available for education and non-profit attendees); Tutorial Day is another US$239</li>
</ul>
</div>
<p><strong>Related:</strong> <a href="http://tiffanybbrown.com/search.php?s=nyphp">Posts from last year&#8217;s <abbr title="New York P H P Conference">NYPHP</abbr> conference</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2006/11/08/chicago-illinois-phptek-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>San Francisco: Web 2.0 Expo</title>
		<link>http://tiffanybbrown.com/2006/11/01/san-francisco-web-20-expo/</link>
		<comments>http://tiffanybbrown.com/2006/11/01/san-francisco-web-20-expo/#comments</comments>
		<pubDate>Wed, 01 Nov 2006 20:01:46 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Tech Events]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2006/11/01/san-francisco-web-20-expo/</guid>
		<description><![CDATA[O&#8217;Reilly&#8217;s Web 2.0 Expo promises to be the first event specifically designed to help teach Web 2.0 techniques and best practices to people in the trenches directly involved in the design, development, engineering, marketing, and business of second-generation internet technology. Note that this is a separate, &#8220;companion event&#8221; to the Web 2.0 Conference, which is [...]]]></description>
			<content:encoded><![CDATA[<p>O&#8217;Reilly&#8217;s <a href="http://www.web2expo.com/">Web 2.0 Expo</a> promises to be <q cite="http://www.web2expo.com/">the first event specifically designed to help teach Web 2.0 techniques and best practices to people in the trenches directly involved in the design, development, engineering, marketing, and business of second-generation internet technology.</q></p>
<p>Note that this is a separate, &#8220;companion event&#8221; to the <a href="http://web2con.com/">Web 2.0 Conference</a>, which is happening November 7 through 9, 2006 (it&#8217;s sold out).</p>
<p>At this point, the conference is seeking proposals (deadline: <strong>November 10, 2006</strong>). Registration isn&#8217;t yet open. </p>
<p>Planned tracks include:</p>
<ul>
<li> Web 2.0 Fundamentals</li>
<li> Web 2.0 Services and Platforms</li>
<li> Marketing and Community</li>
<li> Design and User Experience</li>
<li> Strategy and Business Models</li>
<li> Products and Services </li>
</ul>
<div class="event-details">
<h3>Event details</h3>
<ul>
<li>When: Sunday, April 15 through Thursday, April 18, 2007 </li>
<li>Where: <a href="http://www.moscone.com/">Moscone West</a>, San Francisco, California</li>
<li>How much: No word just yet. Stay tuned.</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2006/11/01/san-francisco-web-20-expo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

