<?xml  version="1.0"?>
<rss version="2.0">
	<channel>
		<title>Ryan Brill - Personal Thoughts and Ponderings</title>
		<description>The personal site of Ryan Brill. Promoting standards compliance and CSS design, while proving that CSS layouts can be aesthetically pleasing.</description>
		<link>http://www.ryanbrill.com/</link>
		<item>
			<title>SolutionSet Blog</title>
			<description><![CDATA[<p><a href="http://www.solutionset.com/">SolutionSet</a>, the company I contract for, has recently started a <a href="http://blog.solutionset.com/">company blog</a>. I've recently written my first post over there, detailing the <a href="http://blog.solutionset.com/wpmu/2008/02/15/internet-explorer-id-class-bug/">Internet Explorer ID-Class bug</a>. I recommended checking out the article, as well as the entire blog, as there is a lot of in-house talent at SolutionSet. Once more of our developers start writing there, the blog could turn into a very good read...</p>]]></description>
			<link>http://www.ryanbrill.com/archives/solutionset-blog/</link>
		</item>
		<item>
			<title>Controlling Resizable Text Fields in Safari</title>
			<description><![CDATA[<p>As many of you likely know, Safari 3 supports resizing text fields. This is great and a welcome improvement to anyone who has suffered with a text field that just isn't big enough. One tip though: you can use <code>max-width</code>, <code>min-width</code>, <code>max-height</code> and <code>min-height</code> to control the maximum / minimum dimensions that Safari will resize the text field to. Useful if resizing a text field too large is breaking your layout.</p>
	<p>By the way, Cameron Adams wrote <a href="http://www.themaninblue.com/writing/perspective/2006/08/25/">a bookmarklet</a> a while ago that you can use to add this functionality to other browsers.</p>]]></description>
			<link>http://www.ryanbrill.com/archives/resize-textarea-in-safari/</link>
		</item>
		<item>
			<title>Multiple Classes in IE</title>
			<description><![CDATA[<p>I'm going to explain the use of multiple classes, and where IE6 chokes. When writing CSS, I find that it is often very nice to use multiple classes, so you can have a base CSS class to set up some default styles and then add an additional class to add more meaning. This is a technique I often use, setting up my base module as <code>div.box</code> and then adding additional classes to that base CSS to create new modules. Take this CSS, for instance:</p>

<textarea class="rCode" cols="50" rows="5">div.box {
	border: 1px solid #e1dfd6;
	margin-bottom: 1em;
}
div.box div.header {
	padding: 6px 30px 0px 10px;
	margin: 0 0 5px 0;
	background: #f2f0dd;
}
div.box.featured {
	background-color: #f5fbea;
}
div.box.featured div.header {
	background-color: #e9f5cE;
}</textarea>

<p>So, if I have <code>&lt;div class="box featured"&gt;</code>, the classes for <code>div.box</code> and <code>div.box.featured</code> will be applied to the <code>div</code>, giving it a "featured" style.</p>

<p><img src="/i/archives/div.box.gif" alt="div.box" />
<span class="caption">div.box</span></p>

<p><img src="/i/archives/div.box.featured.gif" alt="div.box.featured" />
<span class="caption">div.box.featured</span></p>

<h2>Working with IE6</h2>

<p>IE6, however, has an interesting caveat with multiple classes. IE6 does not make a distinction between the following rules:</p>

<textarea class="rCode" cols="50" rows="5">div.box.featured {}
div.featured {}</textarea>

<p>How these rules should work is like this:</p>

<p><code>div.box.featured</code> applies to <code>&lt;div class="box featured"&gt;</code><br />
<code>div.featured</code> applies to <code>&lt;div class="box featured"&gt;</code> <strong>OR</strong> <code>&lt;div class="featured"&gt;</code></p>

<p>However, in IE6, <code>div.box.featured</code> works the same way as <code>div.featured</code>. <span class="highlight">IE6 doesn't understand the chain of classes within a CSS selector, but rather only reads the last class.</span> So, IE6 reads <code>div.box.featured</code> as <code>div.featured</code>, while Firefox and IE7 will only apply the "featured" styles if the <code>div</code> also has a class of "box". For the most part, this isn't a big problem, as usually when you apply multiple classes, you want them all to apply. Let's look at an example of where this goes wrong. In this example, I have a table with <a href="http://alistapart.com/articles/zebratables">zebra rows</a>, and also want a darker "selected" state if the checkbox is checked.</p>

<p><img src="/i/archives/zebra_ff.gif" alt="Table with zebra rows and selected states in Firefox / IE7" />
<span class="caption">Table with zebra rows and selected states in Firefox / IE7.</span></p>

<p><img src="/i/archives/zebra_ie.gif" alt="Table with zebra rows and selected states in IE6" />
<span class="caption">Table with zebra rows and selected states in IE6.</span></p>

<p>The HTML would look something like this:</p>

<textarea class="rCode" cols="50" rows="5">&lt;table&gt;
	&lt;tr class="alt selected"&gt;
		&lt;td&gt;...&lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class="selected"&gt;
		&lt;td&gt;...&lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class="alt"&gt;
		&lt;td&gt;...&lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr&gt;
		&lt;td&gt;...&lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class="alt"&gt;
		&lt;td&gt;...&lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;</textarea>

<p>And this is the CSS:</p>

<textarea class="rCode" cols="50" rows="5">tr td { background-color: #fff; }
tr.alt td {background-color: #f0f6f9;}
tr.selected td { background-color: #d3edfb; }
tr.alt.selected td { background-color: #b1dff7; }</textarea>

<p>IE 6 does not understand the difference between <code>td.selected</code> and <code>td.alt.selected</code>, meaning your selected state cannot have zebra rows, using this technique. You would have to create them as separate classes, <code>.selected</code> and <code>.selected_alt</code>, which means you would have to do more computing with you JS or PHP (or other server side language).</p>

<div class="update">
<h3>Update</h3>
<p>I've created a <a href="/sandbox/zebra_rows_ie.html">demo</a> of the zebra rows example.</p>
</div>]]></description>
			<link>http://www.ryanbrill.com/archives/multiple-classes-in-ie/</link>
		</item>
		<item>
			<title>What I've Been Doing</title>
			<description><![CDATA[<h2>Working</h2>
<dl class="clearfix">
	<dt style="float:left; clear: left; font-weight: bold;">Technology</dt>
	<dd style="margin: 0 0 10px 80px; font-weight: bold;">Approximate percentage of time devoted to it</dd>

	<dt style="float:left; clear: left;">XML</dt>
	<dd style="margin: 0 0 10px 80px; padding: 0 3px; width: 10%; height: 1.3em; line-height: 1.3em; color: #fff; background: #c00;">10%</dd>

	<dt style="float:left; clear: left;">XSLT</dt>
	<dd style="margin: 0 0 10px 80px; padding: 0 3px; width: 35%; height: 1.3em; line-height: 1.3em; color: #fff; background: #c00;">35%</dd>

	<dt style="float:left; clear: left;">HTML</dt>
	<dd style="margin: 0 0 10px 80px; padding: 0 3px; width: 10%; height: 1.3em; line-height: 1.3em; color: #fff; background: #c00;">10%</dd>

	<dt style="float:left; clear: left;">CSS</dt>
	<dd style="margin: 0 0 10px 80px; padding: 0 3px; width: 15%; height: 1.3em; line-height: 1.3em; color: #fff; background: #c00;">15%</dd>

	<dt style="float:left; clear: left;">JS</dt>
	<dd style="margin: 0 0 10px 80px; padding: 0 3px; width: 5%; height: 1.3em; line-height: 1.3em; color: #fff; background: #c00;">5%</dd>

	<dt style="float:left; clear: left;">PHP</dt>
	<dd style="margin: 0 0 10px 80px; padding: 0 3px; width: 15%; height: 1.3em; line-height: 1.3em; color: #fff; background: #c00;">15%</dd>

	<dt style="float:left; clear: left;">MySQL</dt>
	<dd style="margin: 0 0 10px 80px; padding: 0 3px; width: 5%; height: 1.3em; line-height: 1.3em; color: #fff; background: #c00;">5%</dd>

	<dt style="float:left; clear: left;">Design</dt>
	<dd style="margin: 0 0 10px 80px; padding: 0 3px; width: 5%; height: 1.3em; line-height: 1.3em; color: #fff; background: #c00;">5%</dd>
</dl>

<h2>Playing</h2>
<ul>
	<li><a href="http://en.wikipedia.org/wiki/Disc_golf">Disc golf</a> - season best, 3 under par</li>
	<li>Halo 2</li>
	<li>Unreal Tournament</li>
	<li><a href="http://www.boardgamegeek.com/game/642">Oodles</a></li>
</ul>

<h2>Reading</h2>
<ul>
	<li><a href="http://www.amazon.com/Envisioning-Information-Edward-R-Tufte/dp/0961392118/ref=pd_bbs_sr_3/102-9529609-4432925?ie=UTF8&amp;s=books&amp;qid=1180103665&amp;sr=1-3">Envisioning Information</a> - Edward Tufte</li>
	<li><a href="http://www.amazon.com/Beautiful-Evidence-Edward-R-Tufte/dp/0961392177/ref=pd_bbs_sr_2/102-9529609-4432925?ie=UTF8&amp;s=books&amp;qid=1180103665&amp;sr=1-2">Beautiful Evidence</a> - Edward Tufte</li>
	<li><a href="http://www.amazon.com/XSLT-2-0-Programmers-Reference-Programmer/dp/0764569090/ref=pd_bbs_sr_1/102-9529609-4432925?ie=UTF8&amp;s=books&amp;qid=1180104199&amp;sr=1-1">XSLT 2.0</a> - Michael Kay</li>
</ul>

<h2>Listening</h2>
<ul>
	<li><a href="http://www.virb.com/greatnorthern">Great Northern</a> - on repeat</li>
	<li><a href="http://www.virb.com/plainwhitets">Plain White T's</a> - Hey There Delilah</li>
	<li><a href="http://www.skillet.com/">Skillet</a></li>
	<li><a href="http://www.hannity.com/">Sean Hannity</a> - 3-6 EST</li>
</ul>

<h2>Watching</h2>
<ul>
	<li>Spiderman 3 - 3/5</li>
	<li>Shooter - 4/5</li>
	<li>Deja Vu - 5/5</li>
	<li>The Guardian 4.5/5</li>
</ul>]]></description>
			<link>http://www.ryanbrill.com/archives/what-ive-been-doing/</link>
		</item>
		<item>
			<title>Why I've Not Been Blogging Lately</title>
			<description><![CDATA[<p><img src="/i/archives/wakeboarding.jpg" class="blockimg" alt="My brother, Adam, getting some airtime on the wakeboard" /></p>]]></description>
			<link>http://www.ryanbrill.com/archives/why-ive-not-been-blogging-lately/</link>
		</item>
		<item>
			<title>Infinity is Looking for a Contract Developer</title>
			<description><![CDATA[<p><a href="http://www.infinitywebdesign.com/">Infinity</a> is looking for a contract developer to handle some overflow work that we have every once in a while. The work would be primarily PHP and MySQL, along with XHTML and CSS. Since it's just to handle overflow work, this obviously isn't a full time position - we are just looking for a contractor to hire on a per-project basis when needed.</p>
	<p>If interested, please get in touch with me at ryan [at] infinitywebdesign.com. Include your skillset and links to projects you've worked on. If you have a resume, please send that as well.</p>]]></description>
			<link>http://www.ryanbrill.com/archives/infinity-is-looking-for-a-contract-developer/</link>
		</item>
		<item>
			<title>San Francisco Again</title>
			<description><![CDATA[<p>My brother and I will be heading to San Francisco <a href="/archives/san-francisco/">again</a> on Sunday for business. We'll be out there for the whole week (until next Sunday), meaning we'll have a free Saturday to bum around SF. Seems like <a href="http://superfluousbanter.org/archives/2006/04/heading-to-san-francisco/">everybody</a> <a href="http://kurafire.net/log/">has</a> <a href="http://www.mikeindustries.com/blog/">been</a> taking a trip out there lately. Anyway, I'm looking forward to it...</p>]]></description>
			<link>http://www.ryanbrill.com/archives/san-francisco-again/</link>
		</item>
		<item>
			<title>A Better Blogroll</title>
			<description><![CDATA[<p>I decided the other day that it was time to update my "blogroll", or my Friends and Colleagues links. I had two ideas that I wanted to implement, and since I just finished a  big project, I decided to take a bit of time to work on some of the things I've been wanting to do for a long time.</p>

<h2>Favicons</h2>

<p>I wanted to include the people's favicons next to their links to make them stand out from each other a bit more than just a list of links seems to do. Plus, it just looks so darned sexy...</p>

<p>I thought about using PHP to dynamically pull the icons say, once a week, but ended up deciding on just manually creating .gif images of each icon. I didn't envision a big problem with this, as the icons won't be changing often enough to cause too much trouble.</p>

<p><img src="/i/archives/friends_links.gif" alt="New Friends and Colleagues links include the sites favicons" class="blockimg"></p>

<h2>Latest Entries</h2>

<p>I also wanted to pull in the last 3 blog entries for the people I was linking to. To do this, I simply set up a database with all the info for each friend, including a link to their RSS feed. I then parse the RSS feeds with PHP (thanks to the <a href="http://pear.php.net/package/XML_Feed_Parser">XML_Feed_Parser</a> API from pear.php.net). I'm using <a href="http://blo.gs/">blo.gs</a> to track when the sites have been updated, to keep down on the number of times I need to ping the RSS feeds. This way, I only need to ping them if blo.gs tells me there is new content. Since many of the sites ping blo.gs for their sideblogs/blogmarks/links, if blo.gs indicates that the sites have been updated, I compare their last post title to the version I have stored. If they are the same, I ignore them, as I obviously don't want to update the time. If not, I update the entry titles, links and time of update that I am storing.</p>

<p><img src="/i/archives/friends_links2.gif" alt="New Friends and Colleagues links can expand to show the last three posts" class="blockimg"></p>


<h2>Wrapping up</h2>

<p>Overall, I'm extremely happy with the results. I think it is much better than the standard list of links that most people are using. I think the visual recognition that goes along with the favicons will go a long way in making the list more meaningful. Anyway, you may need to reload the CSS and JS for it to work right, so please do that and then let me know what you think. I'm rather proud of it, myself...</p>
]]></description>
			<link>http://www.ryanbrill.com/archives/a-better-blogroll/</link>
		</item>
		<item>
			<title>Where was I?</title>
			<description><![CDATA[<p><p>Seems Joshua Lane has tagged me with a <a href="http://www.blissfullyaware.com/design/where-was-i/">meme</a>. Remind me to get back at him someday...</p></p>
	<p><h2>Where was I one year ago?</h2></p>
	<p><p>One year ago, I was temporarily living in Minneapolis. I was still doing the same work that I am now - freelance web development and design for my company <a href="http://www.infinitywebdesign.com/">Infinity</a>. I got to work on some extremely exciting projects last year, with some really cool people. I was also spending a lot of time with the GF, generally enjoying life.</p></p>
	<p><h2>Where was I five years ago?</h2></p>
	<p><p>Five years ago, I was still in high school, doing some web design work on the side. Learning the ropes, designing sites for some local area businesses. The work was nothing to be proud of at this point, but it was a great learning experience and it got me where I am today. It's really been a passion all along, since I picked up the book "Teach Yourself to Create Web Pages", which basically taught how to use Netscape Composer (!!) to create the sites. It was the first book I ever read on web development, and in two days, I read all 345 pages.</p></p>
	<p><h2>Where was I ten years ago?</h2></p>
	<p><p>10 years?! That was almost half my life ago. I was probably playing in a sandbox somewhere, for crying out loud. Ok, maybe not that, but probably just generally wasting my summer away the way kids do.</p></p>
	<p><h2>Passing it off</h2></p>
	<p><p>Ok, now let's see what <a href="http://www.superfluousbanter.org/">Dan</a>, <a href="http://www.jeffcroft.com/">Jeff</a> and <a href="http://kurafire.net/">Faruk</a> were up to...</p><br />
</p>]]></description>
			<link>http://www.ryanbrill.com/archives/where-was-i/</link>
		</item>
		<item>
			<title>Apple Bootcamp</title>
			<description><![CDATA[<p>I must say that Apple floored me with their announcement of <a href="http://www.apple.com/macosx/bootcamp/">Bootcamp</a>. I was in the market for a new computer at the end of last year, and seriously contemplated switching to a Mac. In the end, however, I decided to stick with a PC, as all my software is PC based, and switching to a Mac would be extremely expensive for me as I'd need to buy not only the new computer, but new software as well. And with the software being Photoshop, Studio 8, etc. we're talking a good deal of money here. However, Bootcamp would open the possibility of switching slowly, using OS X when I can, and Windows when I have to.</p>
	<p>I really think this was an excellent move for Apple. I know for me, as a long time Windows user, I immediately wanted to switch. My next computer will very likely be a Mac now, and it is unlikely it would have been before this (for the reasons stated above).</p>
	<p>There are still a few issues I'm a bit worried about (like learning a whole new OS), but I'm really excited about this. Maybe come the end of the year I'll decide I need another tax deduction. ;)</p>]]></description>
			<link>http://www.ryanbrill.com/archives/apple-boot-camp/</link>
		</item>
		<item>
			<title>CSS Vertical Centering Brings Traffic - Apparently</title>
			<description><![CDATA[<p>So I saw this story posted to Digg yesterday: <a href="http://digg.com/design/(CSS)_At_last_Proper_vertical_centering_without_tables">(CSS) At last! Proper vertical centering without tables</a>. A bit aghast by the code, I quickly posted <a href="http://digg.com/design/(CSS)_At_last_Proper_vertical_centering_without_tables#c1238421">this comment</a> with a link to a <a href="http://www.infinitywebdesign.com/research/cssverticalcentereddiv.htm">demo</a> I whipped up 3+ years ago, while learning CSS (hard to believe it's been that long!). I think the worst part is the poster to Digg actually had the nerve to say "I developed this technique". Umm... right.</p>

<p>So anyway, this post isn't actually about the technique itself, which if you view the source code, you'll see is extremely simple and is nothing new at all. So what is it about? Traffic.</p>

<p>That page has essentially been online for 3 years (I tweaked it slightly before posting it to Digg, to make it look a bit better and to use em sizing, so it would resize better), and in the last 24 hours, it has gotten 2,115+ page views. From the comment I left on Digg, people have been bookmarking it in del.icio.us. At the time of this post, it was in the top 10 on the <a href="http://del.icio.us/popular/">del.icio.us/popular</a> page, with 287 people having saved it. What does this all mean? I have no idea, but find it very interesting for some reason - I think it's because the page has literally been around for 3 years.</p>

<p>Here's what <a href="http://www.haveamint.com/">Mint</a> looks like right now, not even 24 hours later:</p>

<p><img src="/i/archives/mint_01.gif" alt="2115 page views" class="blockimg" />
<img src="/i/archives/mint_02.gif" alt="referrers from del.icio.us, popurls.com and diggdot.us" class="blockimg" /></p>]]></description>
			<link>http://www.ryanbrill.com/archives/css-vertical-centering-brings-traffic---apparently/</link>
		</item>
		<item>
			<title>SXSW Recap</title>
			<description><![CDATA[<p>South by Southwest – what a ride. As I said in my last post, I was hoping to write a bit each day about what went on, but I was so busy I just couldn't find the time. So, I'll write one big mashup of the events during the conference. I'm not going to talk much about the panels themselves, but rather the other events of the conference, as to me, that is what SXSW is really all about.</p>

<h2>Saturday</h2>

<p>I <a href="/archives/sxsw-day-1/">wrote about</a> Saturday's panels already, so I'll just pick up from there. After the panels, I went out for dinner with some of the guys from <a href="http://www.brightcorner.com/">Bright Corner</a> and a few other people. Next, I went to the frog design opening party, which I got to toward the end, but still had a chance to meet a few people such as <a href="http://www.nixlog.com">Paul Nixon</a>, <a href="http://www.subtraction.com/">Khoi Vihn</a>, <a href="http://www.justwatchthesky.com/">Ryan Sims</a>, <a href="http://www.thebignoob.com/">Brad Smith</a>, <a href="http://www.andybudd.com/">Andy Budd</a> and others. I had a great time talking with people and meeting a few for the first time. Next, I went to the South by Northwest party for a little while. There were a few people there that I wanted to meet, but ended up leaving early, as it was extremely busy and seriously the party was too loud to talk with anyone.</p>

<h2>Sunday</h2>

<p>So on Sunday, I met <a href="http://www.shauninman.com/">Shaun Inman</a> in the hall during the panels. I'd like to say, he really is The Wolf - very smart and very talented. I went out for lunch with Shaun, <a href="http://www.jeffcroft.com/">Jeff Croft</a>, <a href="http://www.robweychert.com/">Rob Weychert</a>, <a href="http://www.carsonsystems.com/">Ryan Carson</a> and a few others. I think my favorite panel for the day was "Holistic Web Design" by Shaun, Jason, <a href="http://www.garretdimon.com/">Garret Dimon</a>, and <a href="http://www.erisfree.com/">Eris Stassi</a>. I really enjoyed the panels that focused a bit more on design, and this panel was no exception. At night, I went to the Web Awards show, and would like to congratulate <a href="http://www.avalonstar.com">Bryan Veloso</a> on his award for best blog design. Well done! Next, I went to the Web Awards after party, where I hung out with Shaun, Rob, <a href="http://www.jasonsantamaria.com">Jason Santa Maria</a>, Paul, <a href="http://www.airbagindustries.com">Greg Storey</a>, Eris, <a href="http://www.danielmall.com">Dan Mall</a>, <a href="http://www.blissfullyaware.com">Joshua Lane</a> and Jeff.</p>

<h2>Monday</h2>

<p>Monday's panels were great. I really enjoyed the "Should Your Blog Have a Business" panel, which had both Inman and Zeldman on it. I also really enjoyed the "Design Eye for the List Guy" panel, by Paul, Keith, Cameron, and Ryan. They did an excellent job with it, redesigning craigslist. After that panel, a bunch of us went out for dinner and then I grabbed a cab with <a href="http://www.7nights.com/asterisk/">Keith Robinson</a> to head to bowling. Bowling, I would have to say, was the highlight of the trip. I met up with <a href="http://www.superfluousbanter.org/">Dan Rubin</a> (keep blogging now, Dan!) for the first time, and spent a good bit of time talking to him. It was nice to meet him and I enjoyed our chat. I bowled one of the better games of my life, and ended up getting the most strikes in 10 frames (5) and getting the highest 10 frame score (179) - sorry to take your money away from you, <a href="http://www.orderedlist.com/">Steve</a>. ;) Unfortunately my team was eliminated in the second round, but still, I think everyone there had a very good time. Thanks to Bryan Veloso for putting that on for us. Hopefully next year's will be bigger and even better!</p>

<h2>Tuesday</h2>

<p>Didn't do much today – wasn't too interested in most of the panels, so I got to the conference center late and only attended one panel ("The Next Generation of Web Apps" - which ended up being very good) and said some goodbyes. The flight home was good, and while the conference was great, it's nice to be back.</p>

<h2>Recap</h2>

<p>To me, this conference was definitely more about meeting people than about sitting through panel after panel. I plan to keep in touch a bit better with many of the people I met, and look forward to going back to South by Southwest next year. If you missed it, I'd definitely encourage you to try your best to make it next year – you won't regret it. To everyone I met and hung out with at SXSW, thanks for making it a great trip – we'll keep in touch...</p>

<p>Lastly, my photos from the trip can be <a href="http://www.flickr.com/photos/ryanbrill/sets/72057594083444723/">found on Flickr</a>. Enjoy!</a></p>]]></description>
			<link>http://www.ryanbrill.com/archives/sxsw-recap/</link>
		</item>
		<item>
			<title>The End of SXSW</title>
			<description><![CDATA[<p>So I'm just writing this quick update from the airport while I wait for my flight. SXSW was an incredible time - I'm already looking forward to coming back next year. I meant to write a recap at the end of each day, but found that I wasn't using my laptop at the panels, and since the hotel was 10 blocks away (closest hotel with availability when I booked in January) I decided not to carry it around with me each day. I was getting back to the hotel around 1 or 2 am, so crashed right away rather than staying up to write about the day. I'll write a recap of the entire thing soon and upload my photos to flickr.</p>]]></description>
			<link>http://www.ryanbrill.com/archives/the-end-of-sxsw/</link>
		</item>
		<item>
			<title>SXSW Day 1</title>
			<description><![CDATA[<p>SXSW has been great so far. Got in to Austin last night, checked into the hotel, picked up my badge, and just hung out for a bit. The real fun began today...</p>
	<p>Started out the morning with the "Traditional Design and New Technology" panel. The overall panel was good, but I felt that the discussion had already been had. Some good points were still made, but most of it felt like old information. Then next panel, "How to Be a Web Design Superhero", by <a href="http://www.stuffandnonsense.co.uk/">Andy Clarke</a> and <a href="http://www.andybudd.com/">Andy Budd</a> was fabulous. Much more energy than the "Traditional Design and New Technology" panel and Malarkey and Budd were great to listen too. That panel got over at 12:30, so we were ready for some lunch. I met up with Andy Clarke (at long last) after his panel, and along with <a href="http://www.molly.com/">Molly Holzschlag</a> and a few others went and got some lunch. It was nice to finally meet Andy and Molly and I enjoyed the time we had to chat over lunch.</p>
	<p>Jumped back to the conference center and caught the end of the opening remarks by Jason Fried and Jim Coudal. Since I got there late, I was in an overflow area where they were just displaying a video feed. Spotted Jeffery Zeldman after the opening remarks and went over and introduced myself. He was very nice and it was great to meet the man who shaped the way so many people think about the web. He even invited me to write <a href="http://www.alistapart.com/articles/negativemargins">another</a> article for A List Apart, so we'll see what I can do about that. :)</p>
	<p>Right now, I'm in the "How to Bluff Your Way in DOM Scripting" panel. It's fairly basic so far, but by the title of the panel, one would expect that.</p>
	<p>Next up, I'm planning to go to the "Starting Small: Web Business for the Rest of Us" panel and that will be the last panel for today. Later, I hope to hit a couple of the after parties such as the frog design SXSW Opening Party and South by Northwest. Been meeting many great people, and hope to get a chance to chat more with many of them tonight at those parties.</p>
	<p>So yeah, having a great time so far. I'll keep you updated...</p>]]></description>
			<link>http://www.ryanbrill.com/archives/sxsw-day-1/</link>
		</item>
		<item>
			<title>SXSW Schedule</title>
			<description><![CDATA[<p>Ok, so here is my tentative schedule for SXSW. I realize that there is some overlap, so I'll have to decide which panels I most want to go to. Also, I may not be at all of them -  I mostly want this list for myself so I know what's next on my schedule. If you're at any of the same panels, be sure to stop by and say hello! I leave for SXSW in just 2 days and I'm getting super excited!</p>

<h2>Friday, March 10th</h2>

<dl>
<dt>Events</dt>
<dd><strong>6:00 pm</strong> - Friday Night Mix</dd>
</dl>

<h2>Saturday, March 11th</h2>

<dl>
<dt>Panels</dt>
<dd><strong>10:00 am</strong> - Traditional Design and New Technology</dd>
<dd><strong>11:30 am</strong> - How to Be a Web Design Superhero</dd>
<dd><strong>2:00 pm</strong> - Jim Coudal / Jason Fried Opening Remarks</dd>
<dd><strong>3:30 pm</strong> - How to Bluff Your Way in DOM Scripting</dd>
<dd><strong>5:00 pm</strong> - Starting Small: Web Business for the Rest of Us</dd>
</dl>

<dl>
<dt>Events</dt>
<dd><strong>8:00 pm</strong> - Frog Design Opening Party</dd>
<dd><strong>10:30 pm</strong> - South by Northwest</dd>
</dl>

<h2>Sunday, March 12th</h2>

<dl>
<dt>Panels</dt>
<dd><strong>10:00 am</strong> - Design and Social Responsibility</dd>
<dd><strong>10:00 am</strong> - What's Hot in Web Applications</dd>
<dd><strong>11:30 am</strong> - Tagging 2.0</dd>
<dd><strong>2:00 pm</strong> - Demystifying the Mobile Web</dd>
<dd><strong>3:30 pm</strong> - Web 2.1: Making Web 2.0 Accessible</dd>
<dd><strong>5:00 pm</strong> - Holistic Web Design: Finding the Creative Balance in Multi- Disciplined Teams</dd>
</dl>

<dl>
<dt>Events</dt>
<dd><strong>6:00 pm</strong> - SXSW Web Awards Ceremony</dd>
</dl>

<h2>Monday, March 13th</h2>

<dl>
<dt>Panels</dt>
<dd><strong>10:00 am</strong> - CSS Problem Solving</dd>
<dd><strong>11:30 am</strong> - Does Your Blog Have a Business?</dd>
<dd><strong>2:00 pm</strong> - Craig Newmark Keynote Interview</dd>
<dd><strong>3:30 pm</strong> - Selling Big Ideas to Big Clients</dd>
<dd><strong>3:30 pm</strong> - WTF: WaSP Task Force Panel: Getting the Job Done Right</dd>
<dd><strong>5:00 pm</strong> - Design Eye for the Idea Guy</dd>
</dl>

<dl>
<dt>Events</dt>
<dd><strong>6:30 pm</strong> - Blogger Party</dd>
<dd><strong>8:00 pm</strong> - Avalonstar Bowling Tournament</dd>
</dl>

<h2>Tuesday, March 14th</h2>

<dl>
<dt>Panels</dt>
<dd><strong>10:00 am</strong> - Behind the Scenes: Developing OS X and Longhorn</dd>
<dd><strong>11:30 am</strong> - Designing the Next Generation of Web Apps</dd>
</dl>]]></description>
			<link>http://www.ryanbrill.com/archives/sxsw-schedule/</link>
		</item>
	</channel>
</rss>