<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.2" -->
<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/"
	>

<channel>
	<title>Move the Crowd</title>
	<link>http://tradermike.net/movethecrowd</link>
	<description></description>
	<pubDate>Sat, 10 Mar 2007 23:33:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.2</generator>
	<language>en</language>
			<item>
		<title>Lack of Indexes on Ultimate Tag Warrior Tables</title>
		<link>http://tradermike.net/movethecrowd/archives/2007/03/lack-of-indexes-on-ultimate-tag-warrior-tables/</link>
		<comments>http://tradermike.net/movethecrowd/archives/2007/03/lack-of-indexes-on-ultimate-tag-warrior-tables/#comments</comments>
		<pubDate>Sat, 10 Mar 2007 23:29:06 +0000</pubDate>
		<dc:creator>michael</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

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

		<guid isPermaLink="false">http://tradermike.net/movethecrowd/archives/2007/03/lack-of-indexes-on-ultimate-tag-warrior-tables/</guid>
		<description><![CDATA[Over the last week or so I&#8217;ve been on a mission to improve the performance of my web server, and especially MySQL.  I took Arne&#8217;s advice and turned on the query cache.  That helped but I still needed to do more.  After doing some research I discovered MySQL&#8217;s slow query log, which [...]]]></description>
			<content:encoded><![CDATA[<p>Over the last week or so I&#8217;ve been on a mission to improve the performance of my web server, and especially MySQL.  I took <a href="http://www.arnebrachhold.de/2007/02/16/four-plus-one-ways-to-speed-up-the-performance-of-wordpress-with-caching">Arne&#8217;s advice and turned on the query cache</a>.  That helped but I still needed to do more.  After doing some research I discovered <a href="http://www.databasejournal.com/features/mysql/article.php/2013631">MySQL&#8217;s slow query log</a>, which does exactly what it sounds like.  I enabled slow query logging and set &#8220;long_query_time&#8221; to 5 seconds.  Shortly after I restarted MySQL the slow query count started to rise.  </p>
<p>Every query in the slow query log was sent from the <a href="http://www.neato.co.nz/ultimate-tag-warrior/">Ultimate Tag Warrior WordPress plugin</a> which I use on <a href="http://tradermike.net/">my other blog</a>.  Here are some of the queries:</p>
<blockquote><p>
SELECT count( p2t.post_id ) cnt<br />
FROM wp_tags t<br />
INNER JOIN wp_post2tag p2t ON t.tag_id = p2t.tag_id<br />
INNER JOIN wp_posts p ON p2t.post_id = p.ID<br />
WHERE post_date_gmt < '2007-03-08 21:49:06'<br />
AND (<br />
post_type = 'post'<br />
)<br />
GROUP BY t.tag<br />
ORDER BY cnt DESC<br />
LIMIT 1 ;
</p></blockquote>
<p>and</p>
<blockquote><p>
SELECT tag, t.tag_id, count( p2t.post_id ) AS count, (<br />
(<br />
count( p2t.post_id ) /3661<br />
) *100<br />
) AS weight, (<br />
(<br />
count( p2t.post_id ) /1825<br />
) *100<br />
) AS relativeweight<br />
FROM wp_tags t<br />
INNER JOIN wp_post2tag p2t ON t.tag_id = p2t.tag_id<br />
INNER JOIN wp_posts p ON p2t.post_id = p.ID<br />
WHERE post_date_gmt < '2007-03-09 02:27:39'<br />
AND (<br />
post_type = 'post'<br />
)<br />
GROUP BY t.tag<br />
ORDER BY weight DESC<br />
LIMIT 50 ;
</p></blockquote>
<p>That led me to take a look at what was going on with the wp_tags and wp_post2tag tables.  I did <a href="http://www.databasejournal.com/features/mysql/article.php/1382791">EXPLAINs</a> on the queries and saw that they were doing table scans instead of using the indexes.  So I went to look at the table definitions and was surprised at what I saw.  The only index on the wp_post2tag table was rel_id, the auto-incremented primary key.  So the columns that were actually used to do joins with, tag_id and post_id, had no indices.  My SQL is very rusty but I knew that wasn&#8217;t a good thing.  I also took a look at the wp_tags table and saw that it only had an index on the tag_id column.  I&#8217;ve seen some queries with &#8220;tag = &#8216;tag_name&#8217; &#8221; in the WHERE clause so I figured that it would be good to have an index on the tag column as well.</p>
<p>After consulting with <a href="http://tonytalkstech.com/">my brother</a>, whose SQL skills are much more up to date than my own I decided to add indexes to those tables.  I created an index called &#8216;tags_tag_idx&#8217; on the wp_tags.tag column.  On the wp_post2tag column I created two indexes &#8212; the post2tag_tag_post_idx index is on tag_id then post_id and the post2tag_post_tag_idx index is on post_id then tag_id.  I&#8217;m not sure if using concatenated indexes is better than just creating separate single column indexes for each column but I think it&#8217;s the way to go after discussing with my brother and looking at how the wp_post2cat and wp_linktocat tables are indexed.  They both have concatenated indices.  </p>
<p>I ran some queries on the tables before and after to see if things were sped up and indeed they were.  Unfortunately when I ran the EXPLAIN on the queries in the slow query log I saw mixed results.  The keys that I added were now showing up as  &#8220;possible_keys&#8221; and the actual keys but the queries still ended up doing table scans.  For the tags table the EXPLAIN shows the dreaded &#8220;Using temporary; Using filesort&#8221;.  </p>
<p>So while I didn&#8217;t completely solve my slow query problem the new indexes do help for many of the simpler queries which access wp_post2tag and wp_tag.  If you&#8217;re using Ultimate Tag Warrior and are concerned about your database load you may want to add some indexes to the tag tables.</p>
]]></content:encoded>
			<wfw:commentRss>http://tradermike.net/movethecrowd/archives/2007/03/lack-of-indexes-on-ultimate-tag-warrior-tables/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My Top 20+ Movies</title>
		<link>http://tradermike.net/movethecrowd/archives/2007/03/my-top-20-movies/</link>
		<comments>http://tradermike.net/movethecrowd/archives/2007/03/my-top-20-movies/#comments</comments>
		<pubDate>Sun, 04 Mar 2007 23:33:37 +0000</pubDate>
		<dc:creator>michael</dc:creator>
		
		<category><![CDATA[Movies]]></category>

		<guid isPermaLink="false">http://tradermike.net/movethecrowd/archives/2007/03/my-top-20-movies/</guid>
		<description><![CDATA[In answer to Trader X&#8217;s question, here are some of my favorite movies.  There&#8217;s no way I can rank them beyond maybe the first three.  Nor could I stop at just twenty so with the help of my historical rankings on NetFlix I&#8217;ve gone 40 deep.  Depending on my mood, any of [...]]]></description>
			<content:encoded><![CDATA[<p>In answer to <a href="http://traderx.blogspot.com/2007/03/my-top-20-movies.html">Trader X&#8217;s question</a>, here are some of my favorite movies.  There&#8217;s no way I can rank them beyond maybe the first three.  Nor could I stop at just twenty so with the help of my historical rankings on NetFlix I&#8217;ve gone 40 deep.  Depending on my mood, any of these could be in the top 20:</p>
<ul>
<li>The Shawshank Redemption</li>
<li><a href="http://www.imdb.com/title/tt0317248/">City of God (Cidade de Deus)</a></li>
<li>Trading Places</li>
<li>A Fish Called Wanda</li>
<li>O Brother, Where Art Thou?</li>
<li>Clear and Present Danger</li>
<li>Friday</li>
<li>Malcolm X</li>
<li>The Matrix</li>
<li>The Devil&#8217;s Advocate</li>
<li>Rabbit-Proof Fence</li>
<li>Memento</li>
<li>Get Shorty</li>
<li>Rush Hour</li>
<li>Brown Sugar</li>
<li>The Sixth Sense</li>
<li>Austin Powers 1</li>
<li>There&#8217;s Something About Mary</li>
<li>Buena Vista Social Club</li>
<li>The Fifth Element</li>
<li>Desperado</li>
</ul>
<p><b>Honorable Mention:</b></p>
<ul>
<li>Training Day</li>
<li>The Usual Suspects</li>
<li>Misery</li>
<li>Pulp Fiction</li>
<li>Amistad</li>
<li>Analyze This</li>
<li>As Good as It Gets</li>
<li>Better Than Chocolate</li>
<li>Black Hawk Down</li>
<li>Blade</li>
<li>Casino</li>
<li><a href="http://www.imdb.com/title/tt0119174/">The Game</a></li>
<li>GoodFellas</li>
<li>Heat</li>
<li>Set it Off</li>
<li>Sling Blade</li>
<li>The Thomas Crown Affair </li>
<li>The Untouchables</li>
<li>Donnie Brasco</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://tradermike.net/movethecrowd/archives/2007/03/my-top-20-movies/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Archived for Posterity: Kenneth Eng&#8217;s &#8216;Why I Hate Blacks&#8217; Article</title>
		<link>http://tradermike.net/movethecrowd/archives/2007/03/archived-for-posterity-kenneth-engs-why-i-hate-blacks-article/</link>
		<comments>http://tradermike.net/movethecrowd/archives/2007/03/archived-for-posterity-kenneth-engs-why-i-hate-blacks-article/#comments</comments>
		<pubDate>Thu, 01 Mar 2007 19:32:40 +0000</pubDate>
		<dc:creator>michael</dc:creator>
		
		<category><![CDATA[Current Events]]></category>

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

		<guid isPermaLink="false">http://tradermike.net/movethecrowd/archives/2007/03/archived-for-posterity-kenneth-engs-why-i-hate-blacks-article/</guid>
		<description><![CDATA[Just thought I&#8217;d archive some (more) ignorance:
This is a copy of the controversial opinion piece by Kenneth Eng in Asian Week magazine:
Here is a list of reasons why we should discriminate against blacks, starting from the most obvious down to the least obvious:
• Blacks hate us. Every Asian who has ever come across them knows [...]]]></description>
			<content:encoded><![CDATA[<p>Just thought I&#8217;d archive some (more) ignorance:</p>
<p>This is a copy of the controversial opinion piece by Kenneth Eng in Asian Week magazine:</p>
<p>Here is a list of reasons why we should discriminate against blacks, starting from the most obvious down to the least obvious:</p>
<p>• Blacks hate us. Every Asian who has ever come across them knows that they take almost every opportunity to hurl racist remarks at us.</p>
<p>In my experience, I would say about 90 percent of blacks I have met, regardless of age or environment, poke fun at the very sight of an Asian. Furthermore, their activity in the media proves their hatred: Rush Hour, Exit Wounds, Hot 97, etc.</p>
<p>• Contrary to media depictions, I would argue that blacks are weak-willed. They are the only race that has been enslaved for 300 years. It&#8217;s unbelievable that it took them that long to fight back.</p>
<p>On the other hand, we slaughtered the Russians in the Japanese-Russo War.</p>
<p>• Blacks are easy to coerce. This is proven by the fact that so many of them, including Reverend Al Sharpton, tend to be Christians.</p>
<p>Yet, at the same time, they spend much of their time whining about how much they hate &#8220;the whites that oppressed them.&#8221;</p>
<p>Correct me if I&#8217;m wrong, but wasn&#8217;t Christianity the religion that the whites forced upon them?</p>
<p>• Blacks don&#8217;t get it. I know it&#8217;s a blunt and crass comment, but it&#8217;s true. When I was in high school, I recall a class debate in which one half of the class was chosen to defend black slavery and the other half was chosen to defend liberation.</p>
<p>Disturbingly, blacks on the prior side viciously defended slavery as well as Christianity. They say if you don&#8217;t study history, you&#8217;re condemned to repeat it.</p>
<p>In high school, I only remember one black student ever attending any of my honors and AP courses. And that student was caught cheating.</p>
<p>It is rather troubling that they are treated as heroes, but then again, whites will do anything to defend them.</p>
<p>Here&#8217;s some follow up on the situation:  <a href="http://www.sfgate.com/cgi-bin/article.cgi?f=/c/a/2007/02/27/HATE.TMP">Asian paper&#8217;s &#8216;I Hate Blacks&#8217; column assailed</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tradermike.net/movethecrowd/archives/2007/03/archived-for-posterity-kenneth-engs-why-i-hate-blacks-article/feed/</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;The Secret&#8221; on Oprah</title>
		<link>http://tradermike.net/movethecrowd/archives/2007/02/the-secret-on-oprah/</link>
		<comments>http://tradermike.net/movethecrowd/archives/2007/02/the-secret-on-oprah/#comments</comments>
		<pubDate>Tue, 06 Feb 2007 23:32:31 +0000</pubDate>
		<dc:creator>michael</dc:creator>
		
		<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://tradermike.net/movethecrowd/archives/2007/02/the-secret-on-oprah/</guid>
		<description><![CDATA[

(In case anybody&#8217;s still reading this blog   I just posted this on my main blog and thought I&#8217;d post it here too&#8230;)
I think the movie The Secret is about to hit its tipping point.  On Thursday Oprah Winfrey&#8217;s show will be all about that movie &#8212; or more specifically the topic of [...]]]></description>
			<content:encoded><![CDATA[<div align="center"><img src="/images/Oprah_Secret.png"></div>
<p></p>
<p>(In case anybody&#8217;s still reading this blog <img src='http://tradermike.net/movethecrowd/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  I just posted this on my main blog and thought I&#8217;d post it here too&#8230;)</p>
<p>I think the movie <i><a href="http://thesecret.tv/home.html">The Secret</a></i> is about to hit its tipping point.  On Thursday Oprah Winfrey&#8217;s show will be all about that movie &#8212; or more specifically the topic of the movie which is the <a href="http://en.wikipedia.org/wiki/Law_of_Attraction">law of attraction</a>.  That law basically states that &#8220;whatever you focus on you get more of.&#8221;   I saw the movie <a href="http://tradermike.net/2006/08/links_for_2006-08-18/">back in August</a> after seeing a mention on another trader&#8217;s blog.  What was most interesting about it is that it was nothing new.  The movie crystallized concepts that I&#8217;ve read and heard about over the years.</p>
<p>One thing that really stood out to me was that focusing on a negative doesn&#8217;t work.  A good example of that is when you see a football team with a big lead go into the <a href="http://daily.stanford.edu/article/2006/10/27/preventDPreventsVictory" title="Prevent Defense prevents victory">dreaded</a> &#8220;prevent <a href="http://media.www.hartfordinformer.com/media/storage/paper146/news/2000/11/16/Sports/The-Prevent.Defense.An.Opponents.Best.Friend-9899.shtml?sourcedomain=www.hartfordinformer.com&#038;MIIHost=media.collegepublisher.com" title="The Prevent Defense: An opponent's best friend">defense</a>&#8220;.  Instead of continuing to play to win they start playing <b>not</b> to lose.  We all know what typically happens next &#8212; the team blows the game.  </p>
<p>Anyway, there are tons of applications of the law of attraction in all facets of life.  I highly recommend watching the movie and/or the Oprah show on Thursday.   Here&#8217;s some stuff to give you a better idea of what to expect:</p>
<p>The promo from Larry King&#8217;s first show on &#8220;The Secret&#8221;:</p>
<div align="center"><object width="425" height="350">
<param name="movie" value="http://www.youtube.com/v/ZJ2sC56-ybw"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/ZJ2sC56-ybw" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></div>
<p>I happened to catch that episode of Larry King live back in October while flipping through channels in a hotel room.  (Something I never do at home thanks to TiVo.)  The show got such a good response that Larry did a second Law of Attraction show:</p>
<div align="center">
<object width="425" height="350">
<param name="movie" value="http://www.youtube.com/v/pJM9OSIX1QM"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/pJM9OSIX1QM" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
</div>
<p><a href="http://www.youtube.com/results?search_query=%22the+secret%22&#038;search=Search">It seems that about half of the movie is available on YouTube</a> but you can stream the whole thing from <a href="http://thesecret.tv/home.html">the official website</a> for about $5.  I streamed it to my laptop and even over WiFi and the quality was excellent.  I recommend going that route for the first viewing.  </p>
<p>Steve Pavlina has <a href="http://www.stevepavlina.com/blog/2006/05/the-secret/">a review of <i>The Secret</i></a> and a good post about the <a href="http://www.stevepavlina.com/blog/2006/08/the-law-of-attraction/">Law of Attraction</a>.    And here are 100 quotes from <i><a href="http://www.massagemindandbody.com/blog/in-case-you-still-dont-know-the-secret/">The Secret</a></i>.</p>
]]></content:encoded>
			<wfw:commentRss>http://tradermike.net/movethecrowd/archives/2007/02/the-secret-on-oprah/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dear Santa&#8230;</title>
		<link>http://tradermike.net/movethecrowd/archives/2005/12/dear_santa/</link>
		<comments>http://tradermike.net/movethecrowd/archives/2005/12/dear_santa/#comments</comments>
		<pubDate>Tue, 20 Dec 2005 18:41:59 +0000</pubDate>
		<dc:creator>michael</dc:creator>
		
		<category><![CDATA[Entertainment]]></category>

		<guid isPermaLink="false">http://www.tradermike.net/movethecrowd/2005/12/dear_santa/</guid>
		<description><![CDATA[It&#8217;s been a while since I&#8217;ve posted a Boondocks (or anything to this blog for that matter).  The first one below moved me to post.  BTW, am I the only one who isn&#8217;t feeling the TV version of the Boondocks?  The boys&#8217; voices are just a bit too high pitched IMHO and [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since I&#8217;ve posted a Boondocks (or <em>anything</em> to this blog for that matter).  The first one below moved me to post.  BTW, am I the only one who isn&#8217;t feeling the TV version of the Boondocks?  The boys&#8217; voices are just a bit too high pitched IMHO and I won&#8217;t even get started on the language&#8230;</p>
<div><img src="/movethecrowd/images/bo051219.gif" /></div>
<p></p>
<div><img src="/movethecrowd/images/bo051220.gif" /></div>
<p></p>
<p>Anyway, I doubt that I&#8217;ll get a chance to post anything else on this blog before the holidays so happy holidays to everybody.  See you on the other side of 2006, when I&#8217;ll hopefully have more to write on this site. <img src='http://tradermike.net/movethecrowd/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://tradermike.net/movethecrowd/archives/2005/12/dear_santa/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WeFunk&#8217;s PodCast</title>
		<link>http://tradermike.net/movethecrowd/archives/2005/11/wefunks_podcast/</link>
		<comments>http://tradermike.net/movethecrowd/archives/2005/11/wefunks_podcast/#comments</comments>
		<pubDate>Sat, 05 Nov 2005 20:25:56 +0000</pubDate>
		<dc:creator>michael</dc:creator>
		
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.tradermike.net/movethecrowd/2005/11/wefunks_podcast/</guid>
		<description><![CDATA[I just discovered WeFunk&#8217;s podcast.  It&#8217;s by far the best podcasts I&#8217;ve come across.  They&#8217;re spinning hip-hop, reggae, rare groove, funk, etc.  Here&#8217;s the playlist from the latest episode to give you an idea of what you&#8217;re in for:

intro
gene harris - don&#8217;t call me nigger, whitey
talk (over ?? - be happy)
cymande - [...]]]></description>
			<content:encoded><![CDATA[<p>I just discovered <a href="http://www.wefunkradio.com/rssfeeds.plx">WeFunk&#8217;s podcast</a>.  It&#8217;s by far the best podcasts I&#8217;ve come across.  They&#8217;re spinning hip-hop, reggae, rare groove, funk, etc.  Here&#8217;s <a href="http://www.wefunkradio.com/show/2005-10-21">the playlist from the latest episode</a> to give you an idea of what you&#8217;re in for:</p>
<blockquote><p>
intro<br />
gene harris - don&#8217;t call me nigger, whitey<br />
talk (over ?? - be happy)<br />
cymande - getting it back<br />
blackbyrds - runaway<br />
les demerle - moondial<br />
reuben bell - superjock<br />
notations - super people<br />
marley marl feat. masta ace, craig g, kool g rap &amp; big daddy kane - the symphony<br />
capleton feat. method man - wings of the morning<br />
bounty killa feat. jeru da damaja - suicide or murder<br />
krs-one - rappaz r.n. dainja<br />
masta ace - b-side<br />
keith murray - herb is pumpin&#8217;<br />
channel live - mad izm (remix)<br />
nas - it ain&#8217;t hard to tell (remix)<br />
cannonball adderly - walk tall (live)<br />
sonny stitt - slick eddie<br />
roy ayers - tarzan<br />
crown heights affair - streakin&#8217;<br />
brooklyn people - peace and love<br />
dj shadow - lesson 4<br />
l.l. cool j - mama said knock you out<br />
jungle brothers - j. beez comin&#8217; through<br />
digital underground - the humpty dance<br />
e.p.m.d. - so wat cha sayin&#8217;<br />
eric b &amp; rakim - the r<br />
y.z. - sons of the father<br />
x-clan - raise the flag<br />
digital underground - arguin&#8217; on the funk<br />
talk (over lin que - let it fall instrumental)
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://tradermike.net/movethecrowd/archives/2005/11/wefunks_podcast/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Foiling Phishers</title>
		<link>http://tradermike.net/movethecrowd/archives/2005/10/foiling_phishers/</link>
		<comments>http://tradermike.net/movethecrowd/archives/2005/10/foiling_phishers/#comments</comments>
		<pubDate>Sun, 30 Oct 2005 21:06:18 +0000</pubDate>
		<dc:creator>michael</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.tradermike.net/movethecrowd/2005/10/foiling_phishers/</guid>
		<description><![CDATA[Recently the editor of Kiplinger&#8217;s magazine asked readers to suggest (nonviolent) ways to punish phishers.  This month they printed the most popular response: overwhelm the phishers with false information.  I think that&#8217;s a great idea.  And since I got a phishing email just hours after reading that this (obvious) fake Wells Fargo [...]]]></description>
			<content:encoded><![CDATA[<p>Recently the editor of Kiplinger&#8217;s magazine asked readers to suggest (nonviolent) ways to punish <a href="http://en.wikipedia.org/wiki/Phishing">phishers</a>.  This month they printed the most popular response: overwhelm the phishers with false information.  I think that&#8217;s a great idea.  And since I got a phishing email just hours after reading that <a href="http://www.ssfusion.com/gallery/data/.../" rel="&rdquo;nofollow&rdquo;">this (obvious) fake Wells Fargo site</a> will be my first victim.  I think I&#8217;ll hit them with about 10 fake sets of data.  Somebody should make a site to collect URLs of these clowns.  Just imagine if they started getting hit with thousands of useless user IDs &amp; passwords each day&#8230; <img src='http://tradermike.net/movethecrowd/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://tradermike.net/movethecrowd/archives/2005/10/foiling_phishers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Kanye West&#8217;s &#8216;Gold Digger&#8217; Remixed into &#8216;George Bush Doesn’t Like Black People&#8217;</title>
		<link>http://tradermike.net/movethecrowd/archives/2005/09/kanye_wests_gold_digger_remixed_into_george_bush_doesnt_like_black_people/</link>
		<comments>http://tradermike.net/movethecrowd/archives/2005/09/kanye_wests_gold_digger_remixed_into_george_bush_doesnt_like_black_people/#comments</comments>
		<pubDate>Sat, 10 Sep 2005 11:01:17 +0000</pubDate>
		<dc:creator>michael</dc:creator>
		
		<category><![CDATA[Music]]></category>

		<category><![CDATA[Radio.Blog]]></category>

		<guid isPermaLink="false">http://www.tradermike.net/movethecrowd/2005/09/kanye_wests_gold_digger_remixed_into_george_bush_doesnt_like_black_people/</guid>
		<description><![CDATA[


If you haven&#8217;t heard the new reworking of &#8216;Gold Digger&#8217; take a listen to the MP3 of  &#8216;George Bush Doesn’t Like Black People&#8217;
]]></description>
			<content:encoded><![CDATA[<p>
<div><a href="http://negritu.de/2005/09/10/george-bush-doesnt-like-black-people-the-gold-digger-remix/"><img src="http://negritu.de/images/ko_bush.jpg" /></a></div>
<p></p>
<p>If you haven&#8217;t heard the new reworking of &#8216;Gold Digger&#8217; take a listen to the <a href="http://negritu.de/2005/09/10/george-bush-doesnt-like-black-people-the-gold-digger-remix/">MP3 of  &#8216;George Bush Doesn’t Like Black People&#8217;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tradermike.net/movethecrowd/archives/2005/09/kanye_wests_gold_digger_remixed_into_george_bush_doesnt_like_black_people/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Winners of the 2005 Black Weblog Awards</title>
		<link>http://tradermike.net/movethecrowd/archives/2005/09/winners_of_the_2005_black_weblog_awards/</link>
		<comments>http://tradermike.net/movethecrowd/archives/2005/09/winners_of_the_2005_black_weblog_awards/#comments</comments>
		<pubDate>Mon, 05 Sep 2005 15:38:33 +0000</pubDate>
		<dc:creator>michael</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.tradermike.net/movethecrowd/2005/09/winners_of_the_2005_black_weblog_awards/</guid>
		<description><![CDATA[
Congratulations to all of the winners of the 2005 Black Weblog Awards.  Here they are:

Daily Views, Pop Culture, Rants and News &#8212; Blogger of the Year, Best Humor Blog, Best Writing in a Blog and Blog of the Year
The Heiress Diaries &#8212; Best New Blog
Crunk and Disorderly &#8212; Best Entertainment Blog
Brown Glasses &#8212; Best [...]]]></description>
			<content:encoded><![CDATA[<div><a href="http://www.blackweblogawards.com/"><img src="http://negritu.de/images/BWA_000.gif" /></a></div>
<p>Congratulations to all of the winners of the <a href="http://www.blackweblogawards.com/">2005 Black Weblog Awards</a>.  Here they are:</p>
<ul>
<li><a href="http://nappydiatribe.blogspot.com/">Daily Views, Pop Culture, Rants and News</a> &#8212; Blogger of the Year, Best Humor Blog, Best Writing in a Blog and Blog of the Year</li>
<li><a href="http://dats-hot.blogspot.com/">The Heiress Diaries</a> &#8212; Best New Blog</li>
<li><a href="http://crunktastical.blogspot.com/">Crunk and Disorderly</a> &#8212; Best Entertainment Blog</li>
<li><a href="http://www.brownglasses.com/">Brown Glasses</a> &#8212; Best Photoblog</li>
<li><a href="http://www.rockaonline.com/">Rocka Online</a> &#8212; Best Blog Design (too bad the author just stopped blogging!)</li>
<li><a href="http://www.sexandthe2ndcity.com/">Sex and the Second City</a> &#8212; Best LGBT Blog</li>
<li><a href="http://www.negrophile.com/">Negrophile</a> &#8212; Best Political/News Blog</li>
<li>George Kelly won the &#8216;Black Blogger Achievement Award&#8217;.  George runs <a href="http://www.negrophile.com/">Negrophile</a>, <a href="http://www.allaboutgeorge.com/">AllAboutGeorge.com</a> and <a href="http://journals.aol.com/allaboutgeorge/blackosphere/">Blackosphere</a></li>
</ul>
<p>I guess I need to see what <a href="http://nappydiatribe.blogspot.com/">Daily Views, Pop Culture, Rants and News</a> is all about since it won all those awards.  </p>
<p>Thanks to the organizer(s) (whoever you are!) of the awards for spotlighting our little corner of the blogosphere. </p>
<p>Hopefully next year (or even this year!) we&#8217;ll get to see the other nominees.  I found it difficult to vote in all of the categories since in many cases I couldn&#8217;t think of a blog for that category.  It would also be nice to give those nominees some exposure and more traffic.   Some permalinks on the awards site would be nice too!</p>
<p>(Originally posted on <a href="http://negritu.de/2005/09/05/2005-black-weblog-award-winners-announced/">Negritude</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://tradermike.net/movethecrowd/archives/2005/09/winners_of_the_2005_black_weblog_awards/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Video of Kanye West&#8217;s Rant on NBC</title>
		<link>http://tradermike.net/movethecrowd/archives/2005/09/video_of_kanye_wests_rant_on_nbc/</link>
		<comments>http://tradermike.net/movethecrowd/archives/2005/09/video_of_kanye_wests_rant_on_nbc/#comments</comments>
		<pubDate>Sun, 04 Sep 2005 00:57:26 +0000</pubDate>
		<dc:creator>michael</dc:creator>
		
		<category><![CDATA[Current Events]]></category>

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

		<guid isPermaLink="false">http://www.tradermike.net/movethecrowd/2005/09/video_of_kanye_wests_rant_on_nbc/</guid>
		<description><![CDATA[


Negritu.de has the video of Kanye West going off on President Bush and his response to hurricane Katrina.  It&#8217;s worth watching for the look on Mike Myers&#8217; face alone. 
]]></description>
			<content:encoded><![CDATA[<p>
<div><a href="http://negritu.de/2005/09/03/video-of-kanye-wests-criticism-of-president-bush/"><img src="http://negritu.de//images/Kanye_NBC_rant.png" /></a></div>
<p></p>
<p><a href="http://negritu.de/2005/09/03/video-of-kanye-wests-criticism-of-president-bush/">Negritu.de has the video of Kanye West going off on President Bush</a> and his response to hurricane Katrina.  It&#8217;s worth watching for the look on Mike Myers&#8217; face alone. <img src='http://tradermike.net/movethecrowd/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://tradermike.net/movethecrowd/archives/2005/09/video_of_kanye_wests_rant_on_nbc/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
