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

<channel>
	<title>Tiffany B. Brown</title>
	<atom:link href="http://tiffanybbrown.com/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>
	<pubDate>Fri, 09 May 2008 13:00:10 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Clearing LoadVars() in ActionScript</title>
		<link>http://tiffanybbrown.com/2008/05/09/clearing-loadvars-in-actionscript/</link>
		<comments>http://tiffanybbrown.com/2008/05/09/clearing-loadvars-in-actionscript/#comments</comments>
		<pubDate>Fri, 09 May 2008 13:00:10 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
		
		<category><![CDATA[ActionScript]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[loadvars]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=1286</guid>
		<description><![CDATA[The LoadVars() object is a funny thing. It&#8217;s basically a bucket for variables that you&#8217;d like to load into and send from an SWF file, as well as any methods and event handlers you invoke. 
LoadVars() can be problematic, however, if you ever find yourself reusing the same object for repeated load() or sendAndLoad() operations. [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://livedocs.adobe.com/flash/9.0/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&#038;file=00001777.html#wp302958"><code>LoadVars()</code> object</a> is a funny thing. It&#8217;s basically a bucket for variables that you&#8217;d like to load into and send from an SWF file, as well as any methods and event handlers you invoke. </p>
<p><code>LoadVars()</code> can be problematic, however, if you ever find yourself reusing the same object for repeated <code>load()</code> or <code>sendAndLoad()</code> operations. As explained in the ActionScript 2.0 Language Reference:</p>
<blockquote><p>
Downloads variables from the specified URL, parses the variable data, and places the resulting variables in <code>my_lv</code>. Any properties in <code>my_lv</code> with the same names as downloaded variables are overwritten. Any properties in <code>my_lv</code> with different names than downloaded variables are not deleted.
</p></blockquote>
<p>In other words, if you continue reusing the same <code>LoadVars()</code> object, you&#8217;re going to have more data floating around than you may need at a time. Let&#8217;s take a look.</p>
<p>First we&#8217;ll request a file containing variables with a <code>load()</code> operation.</p>
<pre class="code">var bucket:LoadVars = new LoadVars();
bucket.load('vars.txt');</pre>
<p>The file vars.txt looks like this:</p>
<pre class="code">content1=The+quick+brown+fox&#038;content2=Jumps+over+the&#038;content3=lazy+dog.</pre>
<p>Each variable (that bit to the left of the = sign) becomes a property of your <code>LoadVars</code> object (bucket), and each variable&#8217;s value becomes a the value for that property. </p>
<p>If we iterate through bucket using a for loop when the variables are loaded, we&#8217;ll see that content1, content2, and content3 are now properties of bucket.</p>
<pre>
bucket.onLoad = function(){
     for(i in bucket){  trace(i+': '+bucket[i]+&#8221;\n&#8221;); }
}
</pre>
<p>Outputs:</p>
<pre>
content1: The quick brown fox
content2: Jumps over the
content3: lazy dog.
onLoad: [type Function]
</pre>
<p>Now let&#8217;s say we need to send a variable to our server and retrieve some new results. We&#8217;ll do a <code>sendAndLoad()</code> operation, and store the results in the same <code>bucket</code> object.</p>
<pre class="code">bucket.username = 'cleophus';
bucket.sendAndLoad('morevars.txt',bucket,"POST");</pre>
<p>The data received from morevars.txt looks like this:</p>
<pre>firstname=Dwayne&#038;lastname=Wayne&#038;major=math</pre>
<p>If we execute another for loop, once the data is loaded, we&#8217;ll now see that there are more properties stored in LoadVars().</p>
<pre>
bucket.onLoad = function(){
     for(i in bucket){  trace(i+': '+bucket[i]+&#8221;\n&#8221;); }
}
</pre>
<p>Now outputs:</p>
<pre>
content1: The quick brown fox
content2: Jumps over the
content3: lazy dog.
username: cleophus
firstname: Dwayne
lastname: Wayne
major: math
onLoad: [type Function]
</pre>
<p>Any more <code>load</code> or <code>sendAndLoad</code> operations will only add properties to the object unless you overwrite them &#8212; or <em><a href="http://livedocs.adobe.com/flash/9.0/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&#038;file=00001316.html#wp208259">delete</a></em> them. </p>
<p>Before deleting anything from your LoadVars object, however, copy the properties and values to another variable. Arrays and objects are a good fit here. You can create an array that only copies the variable-value pairs that you need to keep, then delete each variable from the <code>LoadVars</code> object, emptying it for reuse.</p>
<pre>
function turnVarsToArray(sendAndLoadObj:LoadVars):Array{
	var loadVarsArr:Array = new Array();
	for(var e in sendAndLoadObj){
		if( typeof(sendAndLoadObj[e]) !== &#8216;function&#8217;){
			var pair:Object = {vari:e, val:sendAndLoadObj[e]};
			loadVarsArr.push(pair);
		}
          delete e;
	}
	return loadVarsArr;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2008/05/09/clearing-loadvars-in-actionscript/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mike Gravel vs. Obama: &#8220;Juneau What? Anchorage What?&#8221;</title>
		<link>http://tiffanybbrown.com/2008/05/08/mike-gravel-vs-obama-juneau-what-anchorage-what/</link>
		<comments>http://tiffanybbrown.com/2008/05/08/mike-gravel-vs-obama-juneau-what-anchorage-what/#comments</comments>
		<pubDate>Thu, 08 May 2008 10:00:44 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
		
		<category><![CDATA[Cool / Weird / Funny]]></category>

		<category><![CDATA[Politics]]></category>

		<category><![CDATA[barack obama]]></category>

		<category><![CDATA[funny]]></category>

		<category><![CDATA[mike gravel]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=1287</guid>
		<description><![CDATA[


I might just vote for him. He says he&#8217;s a Libertarian, but he&#8217;s also quite progressive and I agree with him on many issues. Anyone who doesn&#8217;t take himself so seriously that he will learn and do the Soulja Boy in a campaign video has to be at least a little bit cool, right?
]]></description>
			<content:encoded><![CDATA[<div class="video">
<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/WjK-iSkLJlQ&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/WjK-iSkLJlQ&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object>
</div>
<p>I might just vote for him. He says he&#8217;s a <a href="http://www.gravel2008.us/issues">Libertarian</a>, but he&#8217;s also quite progressive and I agree with him on many issues. Anyone who doesn&#8217;t take himself so seriously that he will learn and do the Soulja Boy in a campaign video has to be at least a little bit cool, right?</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2008/05/08/mike-gravel-vs-obama-juneau-what-anchorage-what/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Debugging tip: &#8220;Disallowed Key Character&#8221; error in CodeIgniter</title>
		<link>http://tiffanybbrown.com/2008/05/06/debugging-tip-disallowed-key-character-error-in-codeigniter/</link>
		<comments>http://tiffanybbrown.com/2008/05/06/debugging-tip-disallowed-key-character-error-in-codeigniter/#comments</comments>
		<pubDate>Tue, 06 May 2008 21:24:17 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Web development]]></category>

		<category><![CDATA[carriage return]]></category>

		<category><![CDATA[codeigniter]]></category>

		<category><![CDATA[debugging]]></category>

		<category><![CDATA[line breaks]]></category>

		<category><![CDATA[line feed]]></category>

		<category><![CDATA[whitespace]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=1285</guid>
		<description><![CDATA[After 6 hours of massive anxiety, stress, near tears, one pound on my desk, and some hair pulling, I tracked down the source of a nagging Disallowed Key Character error that I received while using CodeIgniter: an extra line break.
The line feed (LF) and carriage return (CR) characters (and their hex code equivalents (%0D and [...]]]></description>
			<content:encoded><![CDATA[<p>After 6 hours of massive anxiety, stress, near tears, one pound on my desk, and some hair pulling, I tracked down the source of a nagging <strong>Disallowed Key Character</strong> error that I received while using <a href="http://www.codeigniter.com/">CodeIgniter</a>: <strong>an extra line break</strong>.</p>
<p>The line feed (LF) and carriage return (CR) characters (and their hex code equivalents (%0D and %0A) are forbidden in CodeIgniter&#8217;s framework. The hard part is tracking down exactly <em>where</em> that extra line break character lives.</p>
<p>In my case, there was an extra line of blank, barren, not-all-that-obvious white space at the very, very end of one of my controller files, just <em>after</em> the closing <code>?&gt;</code>. </p>
<h3>Related:</h3>
<ul>
<li><a href="http://tiffanybbrown.com/2005/02/15/php_header_error_messages/">PHP header error messages</a></li>
<li><a href="http://tiffanybbrown.com/2006/03/21/four_common_p_h_p_errors_and_what_they_mean/">Four common P H P errors and what they mean</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2008/05/06/debugging-tip-disallowed-key-character-error-in-codeigniter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Who do you trust more: Corporations or Government?</title>
		<link>http://tiffanybbrown.com/2008/04/28/who-do-you-trust-more-corporations-or-government/</link>
		<comments>http://tiffanybbrown.com/2008/04/28/who-do-you-trust-more-corporations-or-government/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 09:00:31 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
		
		<category><![CDATA[Politics]]></category>

		<category><![CDATA[Pop culture]]></category>

		<category><![CDATA[culture]]></category>

		<category><![CDATA[net neutrality]]></category>

		<category><![CDATA[society]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=1281</guid>
		<description><![CDATA[This post takes the long road. If you don&#8217;t want to take the long road, skip the train of thought and get to the point.
In one of my moments of Random Thoughtitude, I was thinking about what my ideal country would look like. My first thought was infrastructure. I want a government that adequately funds [...]]]></description>
			<content:encoded><![CDATA[<p class="editors-note">This post takes the long road. If you don&#8217;t want to take the long road, <a href="#n20080424a">skip the train</a> of thought and get to the point.</p>
<p>In one of my moments of Random Thoughtitude, I was thinking about what my ideal country would look like. My first thought was infrastructure. I want a government that adequately funds and maintains a viable, nation-wide mass transit system and mandates bike lanes on every road. I want an educational system that actually teaches kids.</p>
<p>My next thought was: and what if our telecommunications infrastructure was owned and maintained by the government? What if our cable wires, our radio, our phone lines, and &#8212;  the thing that sparked my original thought &#8212; <b>our Internet</b> were seen as massive public works projects on the order of sewers and roads?</p>
<p>Corporations would then compete in other ways. They might, for example, offer special content and charge for access to it. Or they might sell the hardware to connect to this otherwise national infrastructure. </p>
<p>Telecommunications, and the Internet in particular, has become this sort of basic, critical business commodity that is key to economic growth. But the corporations that run them are either too concerned with profits or really don&#8217;t have enough capital to upgrade their networks. </p>
<p>And we wouldn&#8217;t have this &#8216;Net Neutrality issue of corporations wanting to charge more or limit the flow of certain forms of data because boo-frickin-hoo, they don&#8217;t want to invest in their systems. Corporations <em>are</em>, after all, legally-bound to pursue profit. Their decisions  <strong>must</strong> be made &#8212; for the bottom line, not the common good. Our government, on the other hand, would really <em>have to</em> treat all data the same and invest in our systems because we were all paying for it with our tax dollars. </p>
<p>Makes perfect sense, right?</p>
<p>Or does it? I thought some more and remembered that China controls its Internet infrastructure. And they have <a href="http://www.greatfirewallofchina.org/">a few issues</a> with censorship. Ditto <a href="http://news.bbc.co.uk/2/hi/technology/3312841.stm">Iran</a>. </p>
<p>Our own government also has issues with <a href="http://en.wikipedia.org/wiki/NSA_warrantless_surveillance_controversy">freedom and privacy</a>. Maybe handing them the keys to the Internet car would not be such a good idea after all.</p>
<p>I realized then that this is a pretty big conundrum. I wholeheartedly believe that corporations are evil, heartless, parasites who are incapable of doing The Right Thing unless it will make money. But I also believe the U.S. government is more concerned with maintaining power, control, and protecting their own personal safety and wealth than with building a just, free, and fair society. </p>
<p id="n20080424a">So the question becomes: <b>Who do you trust more? Corporations or Government?</b></p>
<p>And as importantly, what entities do you trust or would you trust? What does your ideal nation look like?</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2008/04/28/who-do-you-trust-more-corporations-or-government/feed/</wfw:commentRss>
		</item>
		<item>
		<title>VoIP links: Skype launches mobile version; Zfone releases beta</title>
		<link>http://tiffanybbrown.com/2008/04/27/voip-links-skype-launches-mobile-version-zfone-releases-beta/</link>
		<comments>http://tiffanybbrown.com/2008/04/27/voip-links-skype-launches-mobile-version-zfone-releases-beta/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 13:00:35 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=1283</guid>
		<description><![CDATA[
Skype finally releases a version for mobile phones, including S60 phones like the Nokia N80 and N95. [via Crunchgear]
Zfone launches a beta version of its VoIP encryption software for Mac OS X, Windows and Linux

]]></description>
			<content:encoded><![CDATA[<ul>
<li>Skype finally releases a <a href="http://www.skype.com/download/skype/mobile/">version for mobile phones</a>, including S60 phones like the Nokia N80 and N95. [via <a href="http://www.crunchgear.com/2008/04/25/skype-releases-voice-client-for-a-plethora-of-cellphones/">Crunchgear</a>]</li>
<li>Zfone launches a beta version of its <a href="http://zfoneproject.com/">VoIP encryption software</a> for Mac OS X, Windows and Linux</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2008/04/27/voip-links-skype-launches-mobile-version-zfone-releases-beta/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Yeah, what Baratunde said.</title>
		<link>http://tiffanybbrown.com/2008/04/25/baratunde-on-sean-bell/</link>
		<comments>http://tiffanybbrown.com/2008/04/25/baratunde-on-sean-bell/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 15:15:52 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=1282</guid>
		<description><![CDATA[All that needs to be said about the verdict in the Sean Bell case.


Related: Original Twitter status
 Related: Baratunde Thurston

]]></description>
			<content:encoded><![CDATA[<p>All that needs to be said about the verdict in the <a href="http://news.google.com/news?hl=en&#038;ned=us&#038;q=sean+bell+new+york&#038;btnG=Search+News">Sean Bell</a> case.<br />
<img src="http://tiffanybbrown.com/images/uploads/2008/04/baratunde-on-bell.png" alt="The NYPD things black people are made of Kevlar." /></p>
<ul>
<li><b>Related:</b> <a href="http://twitter.com/baratunde/statuses/796763551">Original Twitter status</a></li>
<li><b> Related: <a href="http://baratunde.com/">Baratunde Thurston</a></b></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2008/04/25/baratunde-on-sean-bell/feed/</wfw:commentRss>
		</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[Atlanta]]></category>

		<category><![CDATA[art]]></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. More [...]]]></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 - 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>
		</item>
		<item>
		<title>Post-Sex 2.0 Fun</title>
		<link>http://tiffanybbrown.com/2008/04/06/post-sex-20-fun/</link>
		<comments>http://tiffanybbrown.com/2008/04/06/post-sex-20-fun/#comments</comments>
		<pubDate>Sun, 06 Apr 2008 16:35:18 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
		
		<category><![CDATA[Arts and Theatre]]></category>

		<category><![CDATA[Atlanta]]></category>

		<category><![CDATA[sex 2.0 conference]]></category>

		<category><![CDATA[sex20con]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=1276</guid>
		<description><![CDATA[Cross-posted to the Sex 2.0 site
If the post-Sex 2.0 fetish and swing party isn&#8217;t your thing, but you still want to have a sex-centric Saturday night, I&#8217;ve got some options for you.
Atlanta Film Festival
These screenings and panels take place Saturday, April 12. Admission is $10.

Out On Film: Distribution Issues in LGBT Film [Panel; 5:15 p.m. [...]]]></description>
			<content:encoded><![CDATA[<p class="editors-note">Cross-posted to the <a href="http://sex20con.com/">Sex 2.0 site</a></p>
<p>If the post-<a href="http://sex20con.com/">Sex 2.0</a> fetish and swing party isn&#8217;t your thing, but you still want to have a sex-centric Saturday night, I&#8217;ve got some options for you.</p>
<h3>Atlanta Film Festival</h3>
<p>These screenings and panels take place <strong>Saturday, April 12</strong>. Admission is $10.</p>
<ul>
<li><a href="http://atlanta.bside.com/2008/films/outonfilmdistributionissuesinlgbtfilm_atlanta2008">Out On Film: Distribution Issues in LGBT Film</a> [Panel; 5:15 p.m. at Wyndham Midtown]</li>
<li><a href="http://atlanta.bside.com/2008/films/sextherevolution_atlanta2008" class="film title">SEX: The Revolution</a> [Screening; 8 p.m. Landmark Art Cinema]</li>
<li><a href="http://atlanta.bside.com/2008/films/fightfuckpray_atlanta2008" class="film title">FIGHTFUCKPRAY</a> [Screening; 8:10 p.m. Landmark Art Cinema]</li>
</ul>
<p>Will you be here Sunday too? Groovy. I&#8217;ve got some more goodies for you:</p>
<ul>
<li><a href="http://atlanta.bside.com/2008/films/theaidschroniclesheretorepresent_atlanta2008" class="film title">The AIDS Chronicles - Here to Represent</a> [Screening; 4:45 p.m. Landmark Art Cinema]</li>
<li><a href="http://atlanta.bside.com/2008/films/outonfilmshorts_atlanta2008" class="film title">Out on Film Shorts</a> [Screening; 9:45 p.m. Landmark Art Cinema]</li>
</ul>
<h3>Strip clubs</h3>
<p>More into strip clubs? All clubs listed below feature female dancers <em>except</em> for the Coronet Club and Swinging Richards. I have only been to one (Strokers). Information below is based on local reputation and/or the venue&#8217;s web site. (For your information: Atlanta strip clubs are all nude, but you can&#8217;t touch the dancers.)</p>
<dl>
<dt>Swinging Richards</dt>
<dd>1400 Northside Dr., Atlanta. Gay male crowd. Women aren&#8217;t banned, but bridal shower and raucous girls night out types of groups are. Please respect the space.</dd>
<dt>Coronet Club</dt>
<dd>5275-B Roswell Rd, Atlanta. All male dancers for a female clientele. </dd>
<dt>The Cheetah</dt>
<dd>887 Spring Street, Atlanta. The Cheetah is a &#8216;Gentleman&#8217;s Club&#8216; geared toward the business set. What does that mean? No poles. (Boo!) Rumor is that their upscale restaurant Alluvia is pretty good. Mostly white dancers.</dd>
<dt>Magic City</dt>
<dd>241 Forsyth St SW, Atlanta. Word is that Magic City is the premier strip club featuring black dancers. Ludacris filmed his &#8216;P-Poppin&#8217; video here. The crowd tends towards &#8216;baller&#8217; (as well as the &#8216;I just cashed my check so I can fake it&#8217; set). I also hear the table dances and cover charge are higher than most places. Music = hip-hop.</dd>
<dt>Strokers</dt>
<dd>1353 Brockett Rd, Clarkston. It&#8217;s in a strip mall. Crowd: hip-hop. Dancers? Mostly black. Not as heavy on the eye-candy as Magic City is rumored to be. Dances are $10. Cover is $10. Music? All crunk.</dd>
<dt>Pink Pony</dt>
<dd>1837 Corporate Blvd., Atlanta, GA. Kind of legendary. I hear it&#8217;s fun. Dancers are mostly white.</dd>
</dl>
<h3>All sexed out? (Impossible!)</h3>
<p>Will you be all-sexed out by conference end? Here are some other options:</p>
<ul>
<li><a href="http://apachecafe.info/event.php?display=event&#038;id=1997&#038;date=1969-Dec-31&#038;returnto=month">Dan Marshall</a> at Apache Cafe. $10</li>
<li><a href="http://high.org/experience/films/nowplaying.aspx" class="film title">La Moustache</a> at the High Museum. $5</li>
<li><a href="http://www.tix.com/Event.asp?Event=109519" class="play title">When Something Wonderful Ends</a> at Actor&#8217;s Express. $27 (Closing night)</li>
<li><a href="http://alliancetheatre.org/performance.aspx?id=2270&#038;linkidentifier=id&#038;itemid=2270">Doubt</a> at the Alliance Theatre. $40 - $50</li>
<li><a href="http://www.alliancetheatre.org/performance.aspx?id=682">Eurydice</a> at the Alliance Theatre (Hertz Stage). $30</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2008/04/06/post-sex-20-fun/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Review: Nokia N800</title>
		<link>http://tiffanybbrown.com/2008/04/02/review-nokia-n800/</link>
		<comments>http://tiffanybbrown.com/2008/04/02/review-nokia-n800/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 09:00:44 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
		
		<category><![CDATA[Gadgets / Tech]]></category>

		<category><![CDATA[Mobile]]></category>

		<category><![CDATA[Reviews]]></category>

		<category><![CDATA[internet device]]></category>

		<category><![CDATA[internet tablet]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[maemo]]></category>

		<category><![CDATA[nokia]]></category>

		<category><![CDATA[nokia n800]]></category>

		<category><![CDATA[os2008]]></category>

		<category><![CDATA[wom]]></category>

		<category><![CDATA[womworld]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=1269</guid>
		<description><![CDATA[I received a Nokia N800 to test and review from the fine folks at WOM World, a Nokia-sponsored meta-blog. 

The basics
The N800 runs a flavor of Linux known as OS 2008. Several software packages come loaded with the N800, including a full-featured web browser (with Flash!), e-mail client, media player, and instant messaging application. Perhaps [...]]]></description>
			<content:encoded><![CDATA[<p>I received a <a href="http://www.nseries.com/index.html#l=products,n800">Nokia N800</a> to test and review from the fine folks at <a href="http://womworld.com/">WOM World</a>, a <a href="http://www.nokia.com/">Nokia</a>-sponsored meta-blog. </p>
<div class="video"><a href="http://www.flickr.com/photos/tiffanybrown76/2365938197/" title="Nokia N800 by tiffanybbrown, on Flickr"><img src="http://farm4.static.flickr.com/3104/2365938197_a72edfedf7.jpg" width="500" height="375" alt="Nokia N800" /></a></div>
<h3>The basics</h3>
<p>The N800 runs a flavor of Linux known as <a href="http://nokia.com/os2008">OS 2008</a>. Several software packages come loaded with the N800, including a full-featured web browser (with Flash!), e-mail client, media player, and instant messaging application. Perhaps most notable is the inclusion of the internet telephony service <a href="http://www.skype.com/">Skype</a>. Pair your N800 with a Bluetooth headset and a WiFi connection and you almost have a phone. You can also choose to install <a href="http://gizmo5.com/">Gizmo</a>.<br />
<span id="more-1269"></span><br />
It&#8217;s an &#8220;internet tablet,&#8221; which means it is WLAN / Wi-Fi capable. You can also pair the N800 with an internet-enabled GSM phone via Bluetooth. Unfortunately, the N800 does not have a SIM-card slot so you can&#8217;t connect via GSM/GPRS directly.</p>
<p>There are 128 MB of DDR RAM installed &#8212; the same amount as the iPod Touch &#8212; but only 256MB of storage. Two internal memory card slots are available, and they support cards with up to 8 gigabytes of storage. </p>
<p>The N800 also comes with an integrated VGA (640 by 480 pixel resolution) web camera for video calls and chats. Install some additional software, and you can use the camera to capture stills as well.</p>
<h3>Using the device</h3>
<p>I could not successfully set up the e-mail client to work with my Gmail account. I&#8217;m not entirely sure it works with secure IMAP connections. It does, however support regular IMAP and POP connections. Its email client is easy to use, once configured. Oddly enough, the N800 does not have a pre-installed calendar application. It&#8217;s a curious omission, in my opinion. You can, however,  <a href="http://maemo.org/downloads/product/OS2007/gpe-calendar/">install one</a>.</p>
<p>There are three input options on the N800: a full(er)-screen finger-sized keyboard, a stylus-sized keyboard, and handwriting input. I found the handwriting recognition system a pretty easy system to train, though as with any such system, you may also have to retrain yourself. The way I write my lower case T made the N800 think I was entering an X. Once trained &#8212; I only tried two characters &#8212; the tablet was able to recognize most of my non-cursive input. </p>
<p>Typing on it the full(er)-screen keyboard is easier than using the stylus keyboard, but you can&#8217;t see all of what you&#8217;re typing at once.  I also don&#8217;t like hunting-and-tapping with a stylus for input. Two-thumbed typing using the stylus keyboard actually worked pretty well for me. In fact, I found that the touch-recognition was at least as (if not more) accurate as my iPod Touch, even though the stylus keyboard has smaller &#8216;keys.&#8217;</p>
<p>The N800 uses physical buttons for zooming, scrolling, and toggling between full-screen and partial screen. Being able to toggle between screen modes is an excellent feature, especially for watching videos. But it&#8217;s a feature I would look for in the application menu or on the screen rather than the top edge of a <em>touchscreen</em> device. Overall, the combination of a touchscreen and  buttons is an incongruous one. </p>
<h3>So is this a computer or what?</h3>
<p>Feature-wise, I&#8217;d say it&#8217;s most comparable to the <a href="http://www.apple.com/ipodtouch/">iPod Touch</a> and the <a href="http://www.us.playstation.com/PSP/">Sony <abbr title="Play Station Portable">PSP</abbr></a>. Think of the N800 a mini-computer that&#8217;s been optimized for the Internet. The iPod Touch is a first-and-foremost a music player and the PSP is primarily a gaming device. The N800, by comparison, is made for surfing the web, checking e-mail, and communicating via IM and VoIP.  </p>
<p>Internet communications is not all you can do with the device, however. You can also play music and videos, and <a href="http://maemo.org/downloads/OS2007/">install a range of software</a>. That brings the N800 a little bit closer to the world of ultra-portable laptops such as the <a href="http://eeepc.asus.com/global/">ASUS Eee PC</a>. </p>
<div class="video">
<a href="http://www.flickr.com/photos/tiffanybrown76/2370365478/" title="Me: A view from the Nokia N800 by tiffanybbrown, on Flickr"><img src="http://farm4.static.flickr.com/3242/2370365478_75ff54f903.jpg" width="500" height="375" alt="Me: A view from the Nokia N800" /></a>
</div>
<p>In other words, the N800 is a bit like a smart phone without the phone or a computer without much software. And that&#8217;s kind of the problem with it. It occupies a weird niche that makes less and less sense when you consider the availability of ultra-portable notebooks like the <a href="http://www.oqo.com/">OQO</a> and Eee PC, devices like iPod Touch and PSP, and smart phones such as the iPhone or Nokia&#8217;s own <a href="http://www.nseries.com/index.html#l=news,n8">N80</a>, <a href="http://www.nseries.com/index.html#l=products,n95_8gb">N95</a> and <a href="http://www.nseries.com/index.html#l=products,n96">N96</a>. </p>
<h3>Will it fit in my pocket?</h3>
<div class="video"><a href="http://www.flickr.com/photos/tiffanybrown76/2370384158/" title="Nokia N800 vs. the iPod Touch by tiffanybbrown, on Flickr"><img src="http://farm3.static.flickr.com/2076/2370384158_70f9acd9e6.jpg" width="500" height="375" alt="Nokia N800 vs. the iPod Touch" /></a></div>
<p>In terms of size, the N800 is slightly smaller than the <abbr title="Play Station Portable">PSP</abbr>, but significantly larger and heavier than the iPhone and iPod Touch. I was able to fit most of it in the front pocket of my jeans, while standing, but it wasn&#8217;t a good fit. It&#8217;s weight also makes it awkward to carry in a hoodie or jacket pocket. If you plan to keep it with you, also plan on carrying a purse. Men may have slightly better luck since their pants tend to have deeper pockets. </p>
<h3>Is it worth the money?</h3>
<p>Price may just be the N800&#8217;s killer feature. As of this writing, you can buy an N800 from Amazon.com for <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2FNokia-N800-Portable-Internet-Tablet%2Fdp%2FB000MK4GGM%3Fie%3DUTF8%26s%3Delectronics%26qid%3D1206628270%26sr%3D8-1&#038;tag=webinista-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=9325">about $250</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;" />. That&#8217;s at least $100 less than most smart phones. I see the advantages of the N800 for globetrotters who want to stay connected, yet don&#8217;t want to carry a pricey, heavy laptop, or don&#8217;t have a GSM-enabled mobile phone. </p>
<p>But the N800 is only $50 less than the <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2FAsus-Screen-Celeron-Processor-Preloaded%2Fdp%2FB00114T9WY%3Fie%3DUTF8%26s%3Delectronics%26qid%3D1206628495%26sr%3D8-6&#038;tag=webinista-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=9325">Eee PC Surf</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;" />, which has four times the RAM, a larger screen, full keyboard, and a faster processor. Plus, since it&#8217;s a full-fledged computer, you can be productive without a WiFi connection.  When compared to the Eee, the N800 doesn&#8217;t look so appealing. </p>
<p>Is it worth it? If you want a small, connected device, and $250 is your absolute limit, yes. But I say spend the extra cash to get a device that&#8217;s smaller (iPod Touch), more capable (Eee PC) or both (most smart phones).</p>
<h3>Related posts</h3>
<ul>
<li><a href="http://tiffanybbrown.com/2007/09/07/skype-versus-gizmo-project/">Why I ditched Skype for Gizmo Project*</a></li>
<li><a href="http://tiffanybbrown.com/2007/11/30/my-essential-mobile-applications/">My essential mobile applications</a></li>
</ul>
<h3>Related sites</h3>
<ul>
<li><a href="http://maemo.org/">Maemo</a></li>
<li><a href="http://nseries.com/">Nokia N-series</a></li>
<li><a href="http://womworld.com/">WOM World</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2008/04/02/review-nokia-n800/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WordPress 2.5 released; This blog was upgraded</title>
		<link>http://tiffanybbrown.com/2008/03/29/wordpress-25-released-this-blog-was-upgraded/</link>
		<comments>http://tiffanybbrown.com/2008/03/29/wordpress-25-released-this-blog-was-upgraded/#comments</comments>
		<pubDate>Sun, 30 Mar 2008 00:11:53 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
		
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=1274</guid>
		<description><![CDATA[WordPress 2.5 was officially released today. I have upgraded my blog accordingly.
So far, I have not noticed any issues from a site visitor&#8217;s perspective. But I&#8217;m seeing at least one bug with the comments tab of the administrative panel. I&#8217;m not sure whether this is an issue with WP 2.5 or whether I broke something. [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress 2.5 was <a href="http://wordpress.org/development/2008/03/wordpress-25-brecker/">officially released today</a>. I have upgraded my blog accordingly.</p>
<p>So far, I have not noticed any issues from a site visitor&#8217;s perspective. But I&#8217;m seeing at least one bug with the comments tab of the administrative panel. I&#8217;m not sure whether this is an issue with WP 2.5 or whether I broke something. If you&#8217;re experiencing the same problem, please let me know in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2008/03/29/wordpress-25-released-this-blog-was-upgraded/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Recommended: &#8220;Ugly Violet&#8221;</title>
		<link>http://tiffanybbrown.com/2008/03/29/recommended-ugly-violet/</link>
		<comments>http://tiffanybbrown.com/2008/03/29/recommended-ugly-violet/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 16:38:32 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
		
		<category><![CDATA[Blogging and Metablogging]]></category>

		<category><![CDATA[Internet life]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2008/03/29/recommended-ugly-violet/</guid>
		<description><![CDATA[Quoted  from the piece:
I just write and talk about sex. But every woman on the Internet gets called slutty and ugly and fat (to put it lightly) no matter what; all we have to be is female. In dinner conversation, my friend Lori reminded me of the Oscar Wilde quote, &#8220;Give a man a [...]]]></description>
			<content:encoded><![CDATA[<p>Quoted  <a href="http://www.sfgate.com/cgi-bin/article/article?f=/g/a/2008/03/27/violetblue.DTL">from the piece</a>:</p>
<blockquote><p>I just write and talk about sex. But every woman on the Internet gets called slutty and ugly and fat (to put it lightly) no matter what; all we have to be is female. In dinner conversation, my friend Lori reminded me of the Oscar Wilde quote, &#8220;Give a man a mask, and he&#8217;ll tell you the truth.&#8221; I restated it for the Internet, replying, &#8220;Give a man a mask, and he&#8217;ll slit your throat.&#8221; The application here is, &#8220;Give a man (or a woman) an anonymous account, and he&#8217;ll eviscerate your self-esteem.&#8221;</p></blockquote>
<p>Sad but true: if you&#8217;re a woman who blogs about politics or culture, at some point someone will make a disagreement with you into a problem with your looks, relationship status, and/or sexual orientation. Men can just be stupid. Women are invariably stupid, ugly, man-less bitches. Whether straight or gay, we&#8217;re always &#8216;lesbos&#8217; who should be hate-fucked.* And yeah, the critic is <b>ALMOST ALWAYS</b> male &#8212; &lt;hypocrite&gt;and probably one who is at least as unattractive and offensive as he accuses us of being, but I digress.&lt;/hypocrite&gt;</p>
<p class="footnote">*Yes, there were two incidents in the last couple of years directed at women that used those <em>exact</em> words.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2008/03/29/recommended-ugly-violet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;Design Code&#8221; by the Poetic Prophet (AKA The SEO Rapper)</title>
		<link>http://tiffanybbrown.com/2008/03/27/design-code-by-the-poetic-prophet-aka-the-seo-rapper/</link>
		<comments>http://tiffanybbrown.com/2008/03/27/design-code-by-the-poetic-prophet-aka-the-seo-rapper/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 20:50:05 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
		
		<category><![CDATA[(x)HTML]]></category>

		<category><![CDATA[Cool / Weird / Funny]]></category>

		<category><![CDATA[Web development]]></category>

		<category><![CDATA[Web standards]]></category>

		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2008/03/27/design-code-by-the-poetic-prophet-aka-the-seo-rapper/</guid>
		<description><![CDATA[


I am incredibly impressed with this dude&#8217;s ability to rhyme about web standards. Not that his rhyming skills are hot, mind you, but the subject matter isn&#8217;t exactly the stuff of legendary hip-hop.
]]></description>
			<content:encoded><![CDATA[<div class="video">
<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/a0qMe7Z3EYg&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/a0qMe7Z3EYg&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object>
</div>
<p>I am incredibly impressed with this dude&#8217;s ability to rhyme about web standards. Not that his rhyming skills are hot, mind you, but the subject matter isn&#8217;t exactly the stuff of legendary hip-hop.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2008/03/27/design-code-by-the-poetic-prophet-aka-the-seo-rapper/feed/</wfw:commentRss>
		</item>
		<item>
		<title>DMX: I&#8217;ma need you to put down the weed and pick up a paper</title>
		<link>http://tiffanybbrown.com/2008/03/18/dmx-ima-need-you-to-put-down-the-weed-and-pick-up-a-paper/</link>
		<comments>http://tiffanybbrown.com/2008/03/18/dmx-ima-need-you-to-put-down-the-weed-and-pick-up-a-paper/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 14:52:56 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2008/03/18/dmx-ima-need-you-to-put-down-the-weed-and-pick-up-a-paper/</guid>
		<description><![CDATA[From DMX&#8217;s interview with XXLmag.com: 

Are you following the presidential race?
Not at all.
You&#8217;re not? You know there&#8217;s a Black guy running, Barack Obama and then there&#8217;s Hillary Clinton.
His name is Barack?!
Barack Obama, yeah.
Barack?!
Barack.
What the fuck is a Barack?! Barack Obama. Where he from, Africa?
Yeah, his dad is from Kenya.
Barack Obama?
Yeah.
What the fuck?! That ain&#8217;t no [...]]]></description>
			<content:encoded><![CDATA[<p>From <a href="http://www.xxlmag.com/online/?p=20332">DMX&#8217;s interview</a> with XXLmag.com: </p>
<dl class="interview">
<dt>Are you following the presidential race?</dt>
<dd>Not at all.</dd>
<dt>You&#8217;re not? You know there&#8217;s a Black guy running, Barack Obama and then there&#8217;s Hillary Clinton.</dt>
<dd>His name is Barack?!</dd>
<dt>Barack Obama, yeah.</dt>
<dd>Barack?!</dd>
<dt>Barack.</dt>
<dd>What the fuck is a Barack?! Barack Obama. Where he from, Africa?</dd>
<dt>Yeah, his dad is from Kenya.</dt>
<dd>Barack Obama?</dd>
<dt>Yeah.</dt>
<dd>What the fuck?! That ain&#8217;t no fuckin&#8217; name, yo. That ain&#8217;t that nigga&#8217;s name. You can&#8217;t be serious. Barack Obama. Get the fuck outta here.</dd>
<dt>You&#8217;re telling me you haven&#8217;t heard about him before.</dt>
<dd>I ain&#8217;t really paying much attention.</dd>
<dt>I mean, it&#8217;s pretty big if a Black&#8230;</dt>
<dd>Wow, Barack! The nigga&#8217;s name is Barack. Barack? Nigga named Barack Obama. What the fuck, man?! Is he serious? That ain&#8217;t his fuckin&#8217; name. Ima tell this nigga when I see him, &#8220;Stop that bullshit. Stop that bullshit&#8220; [laughs] “That ain&#8217;t your fuckin&#8217; name.&#8221; Your momma ain&#8217;t name you no damn Barack.</dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2008/03/18/dmx-ima-need-you-to-put-down-the-weed-and-pick-up-a-paper/feed/</wfw:commentRss>
		</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 moderated by Dr. John Knapp, [...]]]></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>
		</item>
		<item>
		<title>Jay Smooth on Ashley Dupri and the Music Biz</title>
		<link>http://tiffanybbrown.com/2008/03/17/jay-smooth-on-ashley-dupri-and-the-music-biz/</link>
		<comments>http://tiffanybbrown.com/2008/03/17/jay-smooth-on-ashley-dupri-and-the-music-biz/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 11:22:47 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
		
		<category><![CDATA[Cool / Weird / Funny]]></category>

		<category><![CDATA[Internet life]]></category>

		<category><![CDATA[Music]]></category>

		<category><![CDATA[Pop culture]]></category>

		<category><![CDATA[ashley dupri]]></category>

		<category><![CDATA[elliot spitzer]]></category>

		<category><![CDATA[hip-hop]]></category>

		<category><![CDATA[jay smooth]]></category>

		<category><![CDATA[kristen]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2008/03/17/jay-smooth-on-ashley-dupri-and-the-music-biz/</guid>
		<description><![CDATA[


Original post
]]></description>
			<content:encoded><![CDATA[<div class="video">
<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/E-KTpCnliCQ"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/E-KTpCnliCQ" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object>
</div>
<p><a href="http://www.illdoctrine.com/2008/03/the_music_biz_and_the_moral_hi.html">Original post</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2008/03/17/jay-smooth-on-ashley-dupri-and-the-music-biz/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.794 seconds -->
<!-- Cached page served by WP-Cache -->
