<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>The State of Affairs</title>
	
	<link>http://stateofaffairs.info</link>
	<description />
	<lastBuildDate>Wed, 01 Jul 2009 02:17:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/3.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by-nc-nd/3.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/thestateofaffairs" type="application/rss+xml" /><feedburner:emailServiceId>thestateofaffairs</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Create Custom Edit Profile Menu in BuddyPress</title>
		<link>http://feedproxy.google.com/~r/thestateofaffairs/~3/ibZkHTk05mI/</link>
		<comments>http://stateofaffairs.info/archive/create-profile-menu-buddypress/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 11:22:02 +0000</pubDate>
		<dc:creator>Jeremy Winter</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[BuddyPress]]></category>

		<guid isPermaLink="false">http://stateofaffairs.info/?p=2749</guid>
		<description><![CDATA[Some of the best customizations to a site are built through thinking about the users of a particular site. When users log into BuddyPress they are automatically redirected to the homepage and are often left with a &#8220;what now&#8221; feeling. 
Users love to be able to customize their profile and blog easily, so it only [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Some of the best customizations to a site are built through thinking about the users of a particular site. When users log into BuddyPress they are automatically redirected to the homepage and are often left with a &#8220;what now&#8221; feeling. </p>
<p>Users love to be able to customize their profile and blog easily, so it only makes sense to add easy to use navigation menus to logged in users landing pages. I created the following code to make it semi-easy to add a edit profile menu. </p>
<p>The menu has been tested with BP 1.0.1 and WPMU 2.7.1</p>
<p>We&#8217;ll look at each link individually first</p>
<div class="plasticwarp">
<h4>Edit Profile Link</h4>
<p>&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;profile/editc&quot;&gt;Edit Profile Info&lt;/a&gt;
</p></div>
<div class="plasticwarp">
<h4>Change Avatar</h4>
<p>  &lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;profile/change-avatar&quot;&gt;Change Avatar&lt;/a&gt;
</p></div>
<div class="plasticwarp">
<h4>Change Theme</h4>
<p>&lt;a href=&quot;/wp-admin/themes.php&quot;&gt;Change Themes&lt;/a&gt;
 </p></div>
<div class="plasticwarp">
<h4>Create a Blog</h4>
<p>&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;blogs/create-a-blog&quot;&gt;Create a Blog&lt;/a&gt;
</p></div>
<div class="plasticwarp">
<h4>Create a Group</h4>
<p>&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;groups/create&quot;&gt;Create a Group&lt;/a&gt;
  </p></div>
<div class="plasticwarp">
<h4>Change Email or Password</h4>
<p>&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;settings/general&quot;&gt;Change E-Mail or Password&lt;/a&gt;
  </p></div>
<div class="plasticwarp">
<h4>Notification Settings</h4>
<p>&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;settings/notifications&quot;&gt;Notifications Settings&lt;/a&gt;
</p></div>
<div class="plasticwarp">
<h4>Blog Settings</h4>
<p>&lt;a href=&quot;/wp-admin/options-general.php&quot;&gt;Blog Settings&lt;/a&gt;</p>
</div>
<p>Here is the full code in a unordered list that is only displayed to logged in users.</p>
<div class="plasticwarp">
<p>&lt;?php if($user_ID) : ?&gt;</p>
<p>&lt;ul&gt;</p>
<p>  &lt;li&gt;&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;profile/editc&quot;&gt;Edit Profile Info&lt;/a&gt;&lt;/li&gt;</p>
<p>  &lt;li&gt;&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;profile/change-avatar&quot;&gt;Change Avatar&lt;/a&gt;&lt;/li&gt;</p>
<p>  &lt;li&gt;&lt;a href=&quot;/wp-admin/themes.php&quot;&gt;Change Themes&lt;/a&gt;&lt;/li&gt;</p>
<p>  &lt;li&gt;&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;blogs/create-a-blog&quot;&gt;Create a Blog&lt;/a&gt;&lt;/li&gt;</p>
<p>  &lt;li&gt;&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;groups/create&quot;&gt;Create a Group&lt;/a&gt;&lt;/li&gt;</p>
<p>  &lt;li&gt;&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;settings/general&quot;&gt;Change E-Mail or Password&lt;/a&gt;&lt;/li&gt;</p>
<p>  &lt;li&gt;&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;settings/notifications&quot;&gt;Notifications Settings&lt;/a&gt;&lt;/li&gt;</p>
<p>  &lt;li&gt;&lt;a href=&quot;/wp-admin/options-general.php&quot;&gt;Blog Settings&lt;/a&gt;&lt;/li&gt;</p>
<p>	&lt;/ul&gt;</p>
<p>	&lt;?php else : ?&gt;</p>
<p>    &lt;?php endif; ?&gt;
</p></div>
<p>Now you can wrap it in a div and style to your liking. If you would like to use it as a widget I recommend downloading the <a rel="nofollow" target="_blank" href="http://www.samsarin.com/blog/2007/03/10/samsarin-php-widget/">Samsarin PHP Widget</a>, which allows you to add PHP to certain widgets.</p>
<p>One last css design hint, the default BuddyPress widget title is styled as class=&#8221;widgettitle&#8221;</p>
 <div style="margin-bottom:20px;">         
<script type="text/javascript"><!--
google_ad_client = "pub-8509987812848664";
/* 468x15, created 5/28/09 */
google_ad_slot = "7692418257";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div> <p class="ttags">Technorati Tags: <a href="http://technorati.com/tag/buddypress" class="ttags" target="_blank" rel="tag nofollow">buddypress</a>, <a href="http://technorati.com/tag/buddypress+menu" class="ttags" target="_blank" rel="tag nofollow"> buddypress menu</a>, <a href="http://technorati.com/tag/custom+buddypress+menu" class="ttags" target="_blank" rel="tag nofollow"> custom buddypress menu</a>, <a href="http://technorati.com/tag/buddypress+profile+menu" class="ttags" target="_blank" rel="tag nofollow"> buddypress profile menu</a>, <a href="http://technorati.com/tag/buddypress+code" class="ttags" target="_blank" rel="tag nofollow"> buddypress code</a>, <a href="http://technorati.com/tag/create+menu+buddypress" class="ttags" target="_blank" rel="tag nofollow"> create menu buddypress</a>, <a href="http://technorati.com/tag/buddypress+menu+code" class="ttags" target="_blank" rel="tag nofollow"> buddypress menu code</a>, <a href="http://technorati.com/tag/buddypress+customization" class="ttags" target="_blank" rel="tag nofollow"> buddypress customization</a>, <a href="http://technorati.com/tag/buddypress+theme+edit" class="ttags" target="_blank" rel="tag nofollow"> buddypress theme edit</a></p>
<!-- google_ad_section_end --><div id="wherego_related"><h3>Readers who viewed this page, also viewed:</h3><ul><li><a href="http://stateofaffairs.info/archive/best-laptop-june-09/">Best Laptops Under $1000 (June 2009)</a></li><li><a href="http://stateofaffairs.info/archive/buddypress-beta-release/">BuddyPress V1.0 Beta Release Today</a></li><li><a href="http://stateofaffairs.info/archive/display-code-wordpress-post/">How to Display Code in WordPress Posts</a></li><li><a href="http://stateofaffairs.info/archive/buddypress-seo-plugin/">SEO Plugin for BuddyPress</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=ibZkHTk05mI:Qfp3cl9fvBc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=ibZkHTk05mI:Qfp3cl9fvBc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?i=ibZkHTk05mI:Qfp3cl9fvBc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=ibZkHTk05mI:Qfp3cl9fvBc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?i=ibZkHTk05mI:Qfp3cl9fvBc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=ibZkHTk05mI:Qfp3cl9fvBc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=ibZkHTk05mI:Qfp3cl9fvBc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=ibZkHTk05mI:Qfp3cl9fvBc:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=ibZkHTk05mI:Qfp3cl9fvBc:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/thestateofaffairs/~4/ibZkHTk05mI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stateofaffairs.info/archive/create-profile-menu-buddypress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://stateofaffairs.info/archive/create-profile-menu-buddypress/</feedburner:origLink></item>
		<item>
		<title>The Fastest Laptop Video Card (June 09)</title>
		<link>http://feedproxy.google.com/~r/thestateofaffairs/~3/6vnT0A5P_e4/</link>
		<comments>http://stateofaffairs.info/archive/fastest-laptop-video-card-june-09/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 23:23:10 +0000</pubDate>
		<dc:creator>Jeremy Winter</dc:creator>
				<category><![CDATA[Tech Gadgets]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://stateofaffairs.info/?p=2742</guid>
		<description><![CDATA[Traditionally desktops have been leading the way in gaming performance, but now there are many different mobile versions of video cards. Hands down the fastest card is the Nvidia GeForce GTX 280M. 
Power consumption is always a concern when using a laptops so Nvidia released the NVIDIA® HybridPower™ options with the GTX 280m. HybridPower switches [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Traditionally desktops have been leading the way in gaming performance, but now there are many different mobile versions of video cards. Hands down the fastest card is the Nvidia GeForce GTX 280M. </p>
<p>Power consumption is always a concern when using a laptops so Nvidia released the NVIDIA® HybridPower™ options with the GTX 280m. HybridPower switches to a integrated low-power GPU to conserve the battery life. </p>
<h2>Nvidia GeForce GTX 280M Benchmarks</h2>
<ol>
<li>3DMark 06 &#8211; 11767</li>
<li>Far Cry 2 SXGA very high  &#8211; 40FPS</li>
<li>Call of Juarez high XGA 4xAA &#8211; 33FPS</li>
<li>Crysis XGA high &#8211; 44FPS</li>
</ol>
<p>Not too bad for a laptop! The system used in the test was the following. </p>
<ul>
<li>Clevo M980NU 18.4“ barebone (pre-production sample)</li>
<li>Nvidia GeForce GTX 280M with 1024 GDDR 3 </li>
<li>Intel Core 2 Duo X9100 3.1 GHz CPU</li>
<li>2 Gigs DDR3</li>
<li>320 GB 5400 U/min HDD</li>
<li>Vista 64 Bit</li>
</ul>
 <div style="margin-bottom:20px;">         
<script type="text/javascript"><!--
google_ad_client = "pub-8509987812848664";
/* 468x15, created 5/28/09 */
google_ad_slot = "7692418257";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div> <p class="ttags">Technorati Tags: <a href="http://technorati.com/tag/fastest+laptop+video+card" class="ttags" target="_blank" rel="tag nofollow">fastest laptop video card</a>, <a href="http://technorati.com/tag/fastest+laptop+gpu" class="ttags" target="_blank" rel="tag nofollow"> fastest laptop gpu</a>, <a href="http://technorati.com/tag/laptop+gpu" class="ttags" target="_blank" rel="tag nofollow"> laptop gpu</a>, <a href="http://technorati.com/tag/laptop+video+card" class="ttags" target="_blank" rel="tag nofollow"> laptop video card</a>, <a href="http://technorati.com/tag/GeForce+GTX+280M" class="ttags" target="_blank" rel="tag nofollow"> GeForce GTX 280M</a>, <a href="http://technorati.com/tag/laptop+video+cards" class="ttags" target="_blank" rel="tag nofollow"> laptop video cards</a>, <a href="http://technorati.com/tag/laptop+graphics+card" class="ttags" target="_blank" rel="tag nofollow"> laptop graphics card</a>, <a href="http://technorati.com/tag/best+laptop" class="ttags" target="_blank" rel="tag nofollow"> best laptop</a>, <a href="http://technorati.com/tag/laptop+video+card+review" class="ttags" target="_blank" rel="tag nofollow"> laptop video card review</a></p>
<!-- google_ad_section_end --><div id="wherego_related"><h3>Readers who viewed this page, also viewed:</h3><ul><li><a href="http://stateofaffairs.info/archive/fastest-ssd-sata-drive/">Fastest (SSD) Solid State Drive</a></li><li><a href="http://stateofaffairs.info/archive/stop-verizon-charges/">Stop Verizon Wireless Megabyte Usage Charges</a></li><li><a href="http://stateofaffairs.info/archive/gaming-laptop-jan-09/">Best Gaming Laptop for the Money (Jan 09)</a></li><li><a href="http://stateofaffairs.info/archive/best-laptop-june-09/">Best Laptops Under $1000 (June 2009)</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=6vnT0A5P_e4:IDqjXRaTyF4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=6vnT0A5P_e4:IDqjXRaTyF4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?i=6vnT0A5P_e4:IDqjXRaTyF4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=6vnT0A5P_e4:IDqjXRaTyF4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?i=6vnT0A5P_e4:IDqjXRaTyF4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=6vnT0A5P_e4:IDqjXRaTyF4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=6vnT0A5P_e4:IDqjXRaTyF4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=6vnT0A5P_e4:IDqjXRaTyF4:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=6vnT0A5P_e4:IDqjXRaTyF4:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/thestateofaffairs/~4/6vnT0A5P_e4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stateofaffairs.info/archive/fastest-laptop-video-card-june-09/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://stateofaffairs.info/archive/fastest-laptop-video-card-june-09/</feedburner:origLink></item>
		<item>
		<title>How to Display Code in WordPress Posts</title>
		<link>http://feedproxy.google.com/~r/thestateofaffairs/~3/AoCzGwwTHIo/</link>
		<comments>http://stateofaffairs.info/archive/display-code-wordpress-post/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 06:18:58 +0000</pubDate>
		<dc:creator>Jeremy Winter</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://stateofaffairs.info/?p=2701</guid>
		<description><![CDATA[Adding code to your WordPress post can be easy and pain free&#8230; or it can be a huge hassle! I originally thought it would be easy enough to just add a new plugin that will allow code to be wrapped in a tag, which will output the exact text that was entered. 
I unfortunately found [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Adding code to your WordPress post can be easy and pain free&#8230; or it can be a huge hassle! I originally thought it would be easy enough to just add a new plugin that will allow code to be wrapped in a tag, which will output the exact text that was entered. </p>
<p>I unfortunately found out that many of the plugins available for this need, don&#8217;t always seem to work correctly.</p>
<p>If you&#8217;re going to be constantly displaying code in almost every post, you may want to try out the plugins that are available. However, if you are just going to be displaying code every once in a while, I highly recommend you use the simple text converter HTMLizer by www.onlinetools.org.</p>
<h3>Display Code, The Easy Way</h3>
<p><img src="http://stateofaffairs.info/wp-content/uploads/2009/06/htmlizer-225x102.png" alt="htmlizer 225x102 How to Display Code in WordPress Posts" title="htmlizer" width="225" height="102" class="alignnone size-medium wp-image-2736" />HTMLizer is a simple form that converts all of the special characters in your code into HTML standard code. Its as simple as copy, paste, cut, and then paste. Now that is much easier then spending 30 minutes trying to get a plugin to behave. </p>
<p><a href="http://www.onlinetools.org/tools/htmlizerdata/">Try out HTMLizer</a> and let me know how it works for you.</p>
 <div style="margin-bottom:20px;">         
<script type="text/javascript"><!--
google_ad_client = "pub-8509987812848664";
/* 468x15, created 5/28/09 */
google_ad_slot = "7692418257";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div> <p class="ttags">Technorati Tags: <a href="http://technorati.com/tag/display+code+wordpress" class="ttags" target="_blank" rel="tag nofollow">display code wordpress</a>, <a href="http://technorati.com/tag/display+code" class="ttags" target="_blank" rel="tag nofollow"> display code</a>, <a href="http://technorati.com/tag/wordpress" class="ttags" target="_blank" rel="tag nofollow"> wordpress</a>, <a href="http://technorati.com/tag/wordpress+post" class="ttags" target="_blank" rel="tag nofollow"> wordpress post</a>, <a href="http://technorati.com/tag/convert+code" class="ttags" target="_blank" rel="tag nofollow"> convert code</a>, <a href="http://technorati.com/tag/html+display+code" class="ttags" target="_blank" rel="tag nofollow"> html display code</a>, <a href="http://technorati.com/tag/display+html" class="ttags" target="_blank" rel="tag nofollow"> display html</a>, <a href="http://technorati.com/tag/display+code+block" class="ttags" target="_blank" rel="tag nofollow"> display code block</a>, <a href="http://technorati.com/tag/code+on+website" class="ttags" target="_blank" rel="tag nofollow"> code on website</a>, <a href="http://technorati.com/tag/display+source+code" class="ttags" target="_blank" rel="tag nofollow"> display source code</a>, <a href="http://technorati.com/tag/how+to+display+code" class="ttags" target="_blank" rel="tag nofollow"> how to display code </a></p>
<!-- google_ad_section_end --><div id="wherego_related"><h3>Readers who viewed this page, also viewed:</h3><ul><li><a href="http://stateofaffairs.info/archive/mtsidesigncom-dynamic-php/">Mtsidesign.com &#8211; Static HTML Out, Dynamic PHP In</a></li><li><a href="http://stateofaffairs.info/archive/best-laptop-june-09/">Best Laptops Under $1000 (June 2009)</a></li><li><a href="http://stateofaffairs.info/archive/myspace-music-contests/">Why Myspace Music Contests are Bad for Musicians</a></li><li><a href="http://stateofaffairs.info/archive/stop-verizon-charges/">Stop Verizon Wireless Megabyte Usage Charges</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=AoCzGwwTHIo:t3mIyW4R8Ro:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=AoCzGwwTHIo:t3mIyW4R8Ro:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?i=AoCzGwwTHIo:t3mIyW4R8Ro:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=AoCzGwwTHIo:t3mIyW4R8Ro:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?i=AoCzGwwTHIo:t3mIyW4R8Ro:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=AoCzGwwTHIo:t3mIyW4R8Ro:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=AoCzGwwTHIo:t3mIyW4R8Ro:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=AoCzGwwTHIo:t3mIyW4R8Ro:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=AoCzGwwTHIo:t3mIyW4R8Ro:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/thestateofaffairs/~4/AoCzGwwTHIo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stateofaffairs.info/archive/display-code-wordpress-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://stateofaffairs.info/archive/display-code-wordpress-post/</feedburner:origLink></item>
		<item>
		<title>Fused Network Review: The Best Web Host?</title>
		<link>http://feedproxy.google.com/~r/thestateofaffairs/~3/BntzWafmuik/</link>
		<comments>http://stateofaffairs.info/archive/fused-network-review-web-host/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 07:48:49 +0000</pubDate>
		<dc:creator>Jeremy Winter</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web News]]></category>
		<category><![CDATA[affordable web hosting]]></category>
		<category><![CDATA[best web hosting]]></category>
		<category><![CDATA[dependable host]]></category>
		<category><![CDATA[fused network]]></category>
		<category><![CDATA[fused network review]]></category>
		<category><![CDATA[fused networks]]></category>
		<category><![CDATA[fused networks review]]></category>
		<category><![CDATA[host companies]]></category>
		<category><![CDATA[hosting provider review]]></category>
		<category><![CDATA[hosting reviews]]></category>
		<category><![CDATA[reliable host]]></category>
		<category><![CDATA[web host]]></category>
		<category><![CDATA[web host php]]></category>
		<category><![CDATA[web hosting review]]></category>

		<guid isPermaLink="false">http://stateofaffairs.info/?p=2722</guid>
		<description><![CDATA[Disclaimer &#8211; This article is my opinion and is based solely on my experience with Fused Network over the past year. I am not affiliated with Fused Network and will receive no compensation for referring you too them.
Finding a reliable and affordable web hosting provider can be a difficult and daunting task. One reason is [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><em>Disclaimer &#8211; This article is my opinion and is based solely on my experience with Fused Network over the past year. I am not affiliated with Fused Network and will receive no compensation for referring you too them.</em></p>
<p>Finding a reliable and affordable web hosting provider can be a difficult and daunting task. One reason is that it is very difficult to find a unbiased review, as many people choose to join the affiliate network for a provide and then attempt to convince people to sign up so they can get a percentage of the profits. This leads to a diluted review base and makes it difficult to know who to trust.</p>
<p>I am just going to say it right out from the start, Fused Network has been reliable, dependable, and honest in every regard since I joined them nearly a year ago. Needles to say, they are one of the best web host providers on the web and here is why I hold that too be true.</p>
<h2>5 Reasons Why I love Fused Networks</h2>
<p></br></p>
<h4>1. Friendly, Timely, and Reliable Customer Service</h4>
<p>Since day one I felt like I was part of the Fused Network family. When I needed support they responded in less then 3 minutes, every time. David and his team are one of the friendlies support networks I have ever talked with through email. Their genuine and fast replies have always kept our site running consistently, without a hitch.</p>
<h4>2. True 99.9% Server and Site Uptime</h4>
<p>Our Site literally has a 99.9% uptime. It&#8217;s gotten to the point where I don&#8217;t even think about our site having downtime, which allows me to go on trips, visit friends, or wash my car all without having to worry about our site not being available to our readers. The one exception to this over the past year was when our site was down for a bit and we were offered a free month of hosting to compensate. I declined, as it was a trivial amount of downtime and I honestly like to support them as a company.</p>
<h4>3. Honest and Quality Hosting Packages</h4>
<p>At Fused you get ample disk space and plenty of bandwidth. None of the &#8220;unlimited everything attitude&#8221; where companies claim to give you the sky and more. Nobody needs unlimited space and bandwidth, in reality it is just a marketing tactic to convince people into believing that they are getting something special. Avoid host like that, they usually have crowded servers and horrible support.</p>
<h4>4. Powerful Servers with The Best Software</h4>
<p>Cpanel &#8211; Check<br />
Lamp &#8211; Check<br />
Easy Script Installer &#8211; Check<br />
MySQL 5 &#038; PHP 5 &#8211; Check<br />
SSH Access &#8211; Check<br />
Free Nightly Backups &#8211; Check</p>
<p>You get everything, except the kitchen sink.</p>
<h4>5. You Get What You Pay For</h4>
<p>Fused Network is a steal. They may not be the cheapest hosting provider on the web, but no matter what package you select it will be worth every penny. They will even move your current site over to their system and ensure zero downtime, all for free, when you sign up.</p>
<p>If your in need of a host, you can&#8217;t go wrong with Fused Network. If you do sign up, I guarantee you&#8217;ll see why I wrote this possibly over the top appraisal.</p>
<p><a style="padding: 10px; color: rgb(255, 255, 255);" rel="nofollow" target="_blank" class="buttonstyle" href="http://www.fusednetwork.com">More Info On Fused Network</a></p>
 <div style="margin-bottom:20px;">         
<script type="text/javascript"><!--
google_ad_client = "pub-8509987812848664";
/* 468x15, created 5/28/09 */
google_ad_slot = "7692418257";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div> <p class="ttags">Technorati Tags: <a href="http://technorati.com/tag/fused+network+review" class="ttags" target="_blank" rel="tag nofollow">fused network review</a>, <a href="http://technorati.com/tag/fused+networks+review" class="ttags" target="_blank" rel="tag nofollow"> fused networks review</a>, <a href="http://technorati.com/tag/web+hosting+review" class="ttags" target="_blank" rel="tag nofollow"> web hosting review</a>, <a href="http://technorati.com/tag/fused+network" class="ttags" target="_blank" rel="tag nofollow"> fused network</a>, <a href="http://technorati.com/tag/fused+networks" class="ttags" target="_blank" rel="tag nofollow"> fused networks</a>, <a href="http://technorati.com/tag/web+host" class="ttags" target="_blank" rel="tag nofollow"> web host</a>, <a href="http://technorati.com/tag/affordable+web+hosting" class="ttags" target="_blank" rel="tag nofollow"> affordable web hosting</a>, <a href="http://technorati.com/tag/best+web+hosting" class="ttags" target="_blank" rel="tag nofollow"> best web hosting</a>, <a href="http://technorati.com/tag/hosting+reviews" class="ttags" target="_blank" rel="tag nofollow"> hosting reviews</a>, <a href="http://technorati.com/tag/reliable+host" class="ttags" target="_blank" rel="tag nofollow"> reliable host</a>, <a href="http://technorati.com/tag/dependable+host" class="ttags" target="_blank" rel="tag nofollow"> dependable host</a>, <a href="http://technorati.com/tag/web+host+php" class="ttags" target="_blank" rel="tag nofollow"> web host php</a>, <a href="http://technorati.com/tag/host+companies" class="ttags" target="_blank" rel="tag nofollow"> host companies</a>, <a href="http://technorati.com/tag/hosting+provider+review" class="ttags" target="_blank" rel="tag nofollow"> hosting provider review</a></p>
<!-- google_ad_section_end --><div id="wherego_related"><h3>Readers who viewed this page, also viewed:</h3><ul><li><a href="http://stateofaffairs.info/archive/television-shows-watch-online/">9 Awesome TV Shows to Watch Online</a></li><li><a href="http://stateofaffairs.info/archive/state-affairs-moved/">The State of Affairs has Moved!</a></li><li><a href="http://stateofaffairs.info/archive/bass-pickups-review/">Bass Guitar Pickups Review</a></li><li><a href="http://stateofaffairs.info/archive/best-website-start-blog/">Best Website to Start a Free Blog</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=BntzWafmuik:2qre1cmliKs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=BntzWafmuik:2qre1cmliKs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?i=BntzWafmuik:2qre1cmliKs:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=BntzWafmuik:2qre1cmliKs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?i=BntzWafmuik:2qre1cmliKs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=BntzWafmuik:2qre1cmliKs:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=BntzWafmuik:2qre1cmliKs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=BntzWafmuik:2qre1cmliKs:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=BntzWafmuik:2qre1cmliKs:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/thestateofaffairs/~4/BntzWafmuik" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stateofaffairs.info/archive/fused-network-review-web-host/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://stateofaffairs.info/archive/fused-network-review-web-host/</feedburner:origLink></item>
		<item>
		<title>Best Laptops Under $1000 (June 2009)</title>
		<link>http://feedproxy.google.com/~r/thestateofaffairs/~3/gkB1T-zG2xg/</link>
		<comments>http://stateofaffairs.info/archive/best-laptop-june-09/#comments</comments>
		<pubDate>Mon, 25 May 2009 05:42:26 +0000</pubDate>
		<dc:creator>Jeremy Winter</dc:creator>
				<category><![CDATA[Tech Gadgets]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[best gaming laptop under 1000]]></category>
		<category><![CDATA[best home laptop]]></category>
		<category><![CDATA[best laptop under $1000]]></category>
		<category><![CDATA[best laptop under 600]]></category>
		<category><![CDATA[best laptops]]></category>
		<category><![CDATA[best notebook under $1000]]></category>
		<category><![CDATA[gaming notebook under 1000]]></category>
		<category><![CDATA[laptop 2009]]></category>
		<category><![CDATA[laptop computer]]></category>
		<category><![CDATA[laptop for under 500]]></category>
		<category><![CDATA[laptop review]]></category>
		<category><![CDATA[laptop under 1000]]></category>
		<category><![CDATA[laptop under 2009]]></category>
		<category><![CDATA[laptop under 800]]></category>
		<category><![CDATA[notebook review]]></category>
		<category><![CDATA[notebook under 1000]]></category>

		<guid isPermaLink="false">http://stateofaffairs.info/?p=2705</guid>
		<description><![CDATA[We are just about halfway through 2009 and laptops\notebooks are still gaining popularity over the traditional desktop computer. The main reason laptops are becoming more popular than desktops is the fact that laptops are continuing to grow in power while still providing the portability we all have grown to love. 
Deciding on what laptop\notebook is [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>We are just about halfway through 2009 and laptops\notebooks are still gaining popularity over the traditional desktop computer. The main reason laptops are becoming more popular than desktops is the fact that laptops are continuing to grow in power while still providing the portability we all have grown to love. </p>
<p>Deciding on what laptop\notebook is right for you can be a very daunting task. I did some research to weed out the best cost vs. performance laptop you will need. The first laptop is recommended for the home or office user that doesn&#8217;t intent to play games on their new machine. The second is a great laptop for gaming, yet is still reasonably priced under $1000 dollars. </p>
<div style="clear:both;"></div>
<div class="plasticwarp">
<h3>Best Home\Office Laptop Notebook Under $1000</h3>
<p></br></p>
<h4>Lenovo G530</h4>
<p><a href="http://stateofaffairs.info/wp-content/uploads/2009/05/laptop1.png"><img src="http://stateofaffairs.info/wp-content/uploads/2009/05/laptop1-225x158.png" alt="laptop1 225x158 Best Laptops Under $1000 (June 2009)" title="laptop1" width="225" height="158" class="alignnone size-medium wp-image-2706" /></a><strong>Features:</strong><br />
CPU Type &#8211; Intel Pentium Dual-Core T3400(2.16GHz)<br />
Screen &#8211; 15.4&#8243; WXGA<br />
Graphics Card &#8211; Intel GMA 4500M<br />
Video Memory &#8211; Shared system memory<br />
<strong>Memory- 3GB DDR2</strong><br />
Hard Disk &#8211; 250GB SATA<br />
Optical Drive &#8211; Dual layer DVD Burner</p>
<p>Pros &#8211; Low price, lots of memory, great for school, work, or watching movies<br />
Cons &#8211; Not a gaming laptop</p>
<p>Street Price &#8211; $499.99<br />
<a rel="nofollow" target="_blank" href="http://www.newegg.com/Product/Product.aspx?Item=N82E16834146534">MORE INFO</a>
</div>
<div style="clear:both;"></div>
<div class="plasticwarp">
<h3>Best Gaming Laptop Notebook Under $1000</h3>
<p></br></p>
<h4>MSI EX625-227US</h4>
<p><a href="http://stateofaffairs.info/wp-content/uploads/2009/05/laptop2.jpeg"><img src="http://stateofaffairs.info/wp-content/uploads/2009/05/laptop2-225x162.jpg" alt="laptop2 225x162 Best Laptops Under $1000 (June 2009)" title="laptop2" width="225" height="162" class="alignnone size-medium wp-image-2707" /></a><strong>Features:</strong><br />
CPU Type &#8211; Intel Core 2 Duo P7350 (2.0GHz)<br />
Screen &#8211; 16&#8243; WXGA<br />
<strong>Graphics Card &#8211; ATI Mobility Radeon HD 4670</strong><br />
Video Memory &#8211; 512MB DDR3 VRAM<br />
<strong>Memory- 4GB DDR2</strong><br />
Hard Disk &#8211; 320GB SATA<br />
Optical Drive &#8211; DVD Super Multi</p>
<p>Pros &#8211; Radeon HD 4670, great for games, DDR3 graphics memory<br />
Cons &#8211; Technically a budget gaming laptop</p>
<p>Street Price &#8211; $749.99<br />
<a rel="nofollow" target="_blank" href="http://www.msimobile.com/level3_productpage.aspx?cid=5&#038;id=98">MORE INFO</a>
</div>
<p><em>Disclaimer: The State of Affairs received no direct compensation for writing this articles and is in no way directly affiliated with Lenovo, Msi, or Newegg.com.</em></p>
 <div style="margin-bottom:20px;">         
<script type="text/javascript"><!--
google_ad_client = "pub-8509987812848664";
/* 468x15, created 5/28/09 */
google_ad_slot = "7692418257";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div> <p class="ttags">Technorati Tags: <a href="http://technorati.com/tag/best+laptop+under+%241000" class="ttags" target="_blank" rel="tag nofollow">best laptop under 00</a>, <a href="http://technorati.com/tag/best+home+laptop" class="ttags" target="_blank" rel="tag nofollow"> best home laptop</a>, <a href="http://technorati.com/tag/best+notebook+under+%241000" class="ttags" target="_blank" rel="tag nofollow"> best notebook under 00</a>, <a href="http://technorati.com/tag/laptop+under+1000" class="ttags" target="_blank" rel="tag nofollow"> laptop under 1000</a>, <a href="http://technorati.com/tag/notebook+under+1000" class="ttags" target="_blank" rel="tag nofollow"> notebook under 1000</a>, <a href="http://technorati.com/tag/best+gaming+laptop+under+1000" class="ttags" target="_blank" rel="tag nofollow"> best gaming laptop under 1000</a>, <a href="http://technorati.com/tag/gaming+notebook+under+1000" class="ttags" target="_blank" rel="tag nofollow"> gaming notebook under 1000</a>, <a href="http://technorati.com/tag/laptop+computer" class="ttags" target="_blank" rel="tag nofollow"> laptop computer</a>, <a href="http://technorati.com/tag/laptop+under+2009" class="ttags" target="_blank" rel="tag nofollow"> laptop under 2009</a>, <a href="http://technorati.com/tag/laptop+2009" class="ttags" target="_blank" rel="tag nofollow"> laptop 2009</a>, <a href="http://technorati.com/tag/notebook+review" class="ttags" target="_blank" rel="tag nofollow"> notebook review</a>, <a href="http://technorati.com/tag/laptop+review" class="ttags" target="_blank" rel="tag nofollow"> laptop review</a>, <a href="http://technorati.com/tag/best+laptop+under+600" class="ttags" target="_blank" rel="tag nofollow"> best laptop under 600</a>, <a href="http://technorati.com/tag/laptop+under+800" class="ttags" target="_blank" rel="tag nofollow"> laptop under 800</a>, <a href="http://technorati.com/tag/laptop+for+under+500" class="ttags" target="_blank" rel="tag nofollow"> laptop for under 500</a>, <a href="http://technorati.com/tag/best+laptops" class="ttags" target="_blank" rel="tag nofollow"> best laptops</a></p>
<!-- google_ad_section_end --><div id="wherego_related"><h3>Readers who viewed this page, also viewed:</h3><ul><li><a href="http://stateofaffairs.info/archive/gaming-laptop-jan-09/">Best Gaming Laptop for the Money (Jan 09)</a></li><li><a href="http://stateofaffairs.info/archive/elgg-theme-natural-brown/">Natural Brown Theme for Elgg 1.5</a></li><li><a href="http://stateofaffairs.info/archive/army-sergeant-refuses-iraq/">US Army Sergeant Matthis Chiroux Refuses to Go to Iraq</a></li><li><a href="http://stateofaffairs.info/archive/fastest-laptop-video-card-june-09/">The Fastest Laptop Video Card (June 09)</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=gkB1T-zG2xg:yLY-_iVp7Og:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=gkB1T-zG2xg:yLY-_iVp7Og:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?i=gkB1T-zG2xg:yLY-_iVp7Og:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=gkB1T-zG2xg:yLY-_iVp7Og:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?i=gkB1T-zG2xg:yLY-_iVp7Og:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=gkB1T-zG2xg:yLY-_iVp7Og:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=gkB1T-zG2xg:yLY-_iVp7Og:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=gkB1T-zG2xg:yLY-_iVp7Og:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=gkB1T-zG2xg:yLY-_iVp7Og:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/thestateofaffairs/~4/gkB1T-zG2xg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stateofaffairs.info/archive/best-laptop-june-09/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://stateofaffairs.info/archive/best-laptop-june-09/</feedburner:origLink></item>
		<item>
		<title>SEO Plugin for BuddyPress</title>
		<link>http://feedproxy.google.com/~r/thestateofaffairs/~3/eauAboJcFNk/</link>
		<comments>http://stateofaffairs.info/archive/buddypress-seo-plugin/#comments</comments>
		<pubDate>Fri, 22 May 2009 20:46:42 +0000</pubDate>
		<dc:creator>Jeremy Winter</dc:creator>
				<category><![CDATA[Blogging SEO]]></category>
		<category><![CDATA[BuddyPress]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[buddypress plugin]]></category>
		<category><![CDATA[buddypress search engine optimization]]></category>
		<category><![CDATA[buddypress seo]]></category>
		<category><![CDATA[buddypress seo plugin]]></category>
		<category><![CDATA[duplicate content buddypress]]></category>
		<category><![CDATA[duplicate title tags buddypress]]></category>
		<category><![CDATA[how to seo buddypress]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[seo for buddypress]]></category>
		<category><![CDATA[seo tips]]></category>
		<category><![CDATA[website optimization]]></category>

		<guid isPermaLink="false">http://stateofaffairs.info/?p=2695</guid>
		<description><![CDATA[BuddyPress is a new program that is in dire need of some SEO optimization. Luckily there is a new plugin that is going to take a lot of the duplicate content and title tag issues out of the picture for us BuddyPress site developers.
Seo for BuddyPress: a great plugin
The new plugin is called Seo for [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>BuddyPress is a new program that is in dire need of some SEO optimization. Luckily there is a new plugin that is going to take a lot of the duplicate content and title tag issues out of the picture for us BuddyPress site developers.</p>
<h2>Seo for BuddyPress: a great plugin</h2>
<p>The new plugin is called Seo for BuddyPress and was created by <a href="http://wordpress.org/extend/plugins/profile/svenl77" rel="nofollow" target="_blank">Sven Lehnert</a>. With Seo for BuddyPress you can enter</p>
<ul>
<li>Titles</li>
<li>Descriptions</li>
<li>And Keywords</li>
</ul>
<p>for the following pages:</p>
<ul>
<li>Profile Pages -profile, activity, blogs, friends, groups, wire</li>
<li>Groups Pages &#8211; groups home, groups wire, groups forum, groups members</li>
<li>Events Pages from the bp-events plugin</li>
<li>Bb-dev Youtube &#038; Flickr pages</li>
<li>Your own buddypress pages, such as your profile</li>
</ul>
<p>Also the plugin comes with these great special tags to automaticly insert the user name, group name, or event name.</p>
<ul>
<li>%username%</li>
<li>%groupname%</li>
<li>%eventname%</li>
</ul>
<p>I highly recommend you install <a href="http://wordpress.org/extend/plugins/seo-for-buddypress/" rel="nofollow" target="_blank">Seo for Buddypress</a> on your BuddyPress site. It has worked flawlessly for me and appears to be headed in the right direction for future updates.</p>
<p>The big G will love you for it.</p>
 <div style="margin-bottom:20px;">         
<script type="text/javascript"><!--
google_ad_client = "pub-8509987812848664";
/* 468x15, created 5/28/09 */
google_ad_slot = "7692418257";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div> <p class="ttags">Technorati Tags: <a href="http://technorati.com/tag/buddypress+seo" class="ttags" target="_blank" rel="tag nofollow">buddypress seo</a>, <a href="http://technorati.com/tag/buddypress" class="ttags" target="_blank" rel="tag nofollow"> buddypress</a>, <a href="http://technorati.com/tag/website+optimization" class="ttags" target="_blank" rel="tag nofollow"> website optimization</a>, <a href="http://technorati.com/tag/buddypress+search+engine+optimization" class="ttags" target="_blank" rel="tag nofollow"> buddypress search engine optimization</a>, <a href="http://technorati.com/tag/seo+for+buddypress" class="ttags" target="_blank" rel="tag nofollow"> seo for buddypress</a>, <a href="http://technorati.com/tag/how+to+seo+buddypress" class="ttags" target="_blank" rel="tag nofollow"> how to seo buddypress</a>, <a href="http://technorati.com/tag/buddypress+plugin" class="ttags" target="_blank" rel="tag nofollow"> buddypress plugin</a>, <a href="http://technorati.com/tag/buddypress+seo+plugin" class="ttags" target="_blank" rel="tag nofollow"> buddypress seo plugin</a>, <a href="http://technorati.com/tag/seo+tips" class="ttags" target="_blank" rel="tag nofollow"> seo tips</a>, <a href="http://technorati.com/tag/seo" class="ttags" target="_blank" rel="tag nofollow"> seo</a>, <a href="http://technorati.com/tag/duplicate+content+buddypress" class="ttags" target="_blank" rel="tag nofollow"> duplicate content buddypress</a>, <a href="http://technorati.com/tag/duplicate+title+tags+buddypress" class="ttags" target="_blank" rel="tag nofollow"> duplicate title tags buddypress</a></p>
<!-- google_ad_section_end --><div id="wherego_related"><h3>Readers who viewed this page, also viewed:</h3><ul><li><a href="http://stateofaffairs.info/archive/create-profile-menu-buddypress/">Create Custom Edit Profile Menu in BuddyPress</a></li><li><a href="http://stateofaffairs.info/archive/elgg-photo-gallery-plugin/">Elgg Photo Gallery Plugin</a></li><li><a href="http://stateofaffairs.info/archive/default-widgets-elgg/">Default Widgets Elgg Plugin</a></li><li><a href="http://stateofaffairs.info/archive/add-store-wordpress-blog/">Add an Online Store to your Wordpress Blog</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=eauAboJcFNk:C5wAoIeUPbU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=eauAboJcFNk:C5wAoIeUPbU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?i=eauAboJcFNk:C5wAoIeUPbU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=eauAboJcFNk:C5wAoIeUPbU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?i=eauAboJcFNk:C5wAoIeUPbU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=eauAboJcFNk:C5wAoIeUPbU:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=eauAboJcFNk:C5wAoIeUPbU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=eauAboJcFNk:C5wAoIeUPbU:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=eauAboJcFNk:C5wAoIeUPbU:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/thestateofaffairs/~4/eauAboJcFNk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stateofaffairs.info/archive/buddypress-seo-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://stateofaffairs.info/archive/buddypress-seo-plugin/</feedburner:origLink></item>
		<item>
		<title>Why Myspace Music Contests are Bad for Musicians</title>
		<link>http://feedproxy.google.com/~r/thestateofaffairs/~3/hyp69-ZJc3Q/</link>
		<comments>http://stateofaffairs.info/archive/myspace-music-contests/#comments</comments>
		<pubDate>Fri, 22 May 2009 00:20:47 +0000</pubDate>
		<dc:creator>Jeremy Winter</dc:creator>
				<category><![CDATA[Current News]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[contest rules]]></category>
		<category><![CDATA[music contest]]></category>
		<category><![CDATA[music contracts]]></category>
		<category><![CDATA[musician rights]]></category>
		<category><![CDATA[myspace]]></category>
		<category><![CDATA[myspace contest]]></category>
		<category><![CDATA[myspace music]]></category>
		<category><![CDATA[myspace music contents]]></category>
		<category><![CDATA[myspace toyota contest]]></category>
		<category><![CDATA[rap music contest]]></category>

		<guid isPermaLink="false">http://stateofaffairs.info/?p=2675</guid>
		<description><![CDATA[Myspace has teamed up with a few sponsors, such as Toyota, to start a contest for all Myspace Music users where users have a chance to win a exclusive record contract. Sounds great right? Sounds great indeed, but the fine print says otherwise. 
By Joining You Are Submitting
Few music contest contestants ever read the fine [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Myspace has teamed up with a few sponsors, such as Toyota, to start a contest for all Myspace Music users where users have a chance to win a exclusive record contract. Sounds great right? Sounds great indeed, but the fine print says otherwise. </p>
<h3>By Joining You Are Submitting</h3>
<p>Few music contest contestants ever read the fine print or the rules that drive the contest they are joining. This goes for Myspace contests or a tv show such as American Idol. Unfortunately, not only do the contest strip you of your rights, once you actually win the contracts they just take even more rights away.</p>
<p>Here is the first example of the rights you forfeit when you enter this new Myspace Music Contest. Taken from section 5 which states:</p>
<blockquote><p>
In consideration of a Submission being reviewed and evaluated for this Contest, each Entrant hereby grants to the Contest Entities the non-exclusive irrevocable, fully paid, universal license to use, copy, sublicense, transmit, distribute, publicly perform, publish, delete or display such Submission, or any portion thereof, including to the extent applicable (a) any information, biographical data, and material (e.g., the &#8220;Creative File&#8221;) submitted by Entrant in connection with the Contest; and (b) all video, audio, photographs, text, graphics, statements, any other creative materials, and quotations of or by Entrant and furnished by Entrant as part of this Contest (the &#8220;Material&#8221;) included in and/or submitted by Entrant in connection with the Contest), in any media now known or hereafter devised including, but not limited to all forms of electronic media, print media and all forms of internet and wireless protocol. </p></blockquote>
<p>Boom, bam, and your music is no longer your music. Simply by entering your song in the contest, you no longer have exclusive rights to your music.</p>
<p>Myspace can now take your song and:</p>
<ul>
<li>Sell it</li>
<li>Remake it</li>
<li>Distribute it</li>
<li>All while paying you nothing</li>
</ul>
<p>This next excerpt is in regards to your identity\band, also from section 5:</p>
<blockquote><p>In addition, by participating in the Contest and providing a Submission, each Entrant hereby grants permission (except where prohibited by law) for the Contest Entities to use Entrant&#8217;s Submission, name, likeness, voice, quotes, comments, biographical information, photograph and/or image for the purpose of advertising, trade, or promotion without further compensation or consideration in any and all media now known or hereafter developed throughout the universe.</p></blockquote>
<p>From the date of your submission, you will have given Myspace and Toyota the rights to use your image, name, lyrics and other personal content FOREVER without payment. </p>
<h3>Lessons and Reflections on Musicians Rights</h3>
<p>The main lessons to take away from contests like this are to read the fine print and know what rights you&#8217;re giving away. If you&#8217;re comfortable giving away everything you submit in hopes of that small chance of wining, then by all means, take that chance. I, for one, am not going to censor my music and give it away to Toyota for a chance to win a highly restrictive record contract.</p>
 <div style="margin-bottom:20px;">         
<script type="text/javascript"><!--
google_ad_client = "pub-8509987812848664";
/* 468x15, created 5/28/09 */
google_ad_slot = "7692418257";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div> <p class="ttags">Technorati Tags: <a href="http://technorati.com/tag/myspace" class="ttags" target="_blank" rel="tag nofollow">myspace</a>, <a href="http://technorati.com/tag/myspace+music" class="ttags" target="_blank" rel="tag nofollow"> myspace music</a>, <a href="http://technorati.com/tag/myspace+music+contents" class="ttags" target="_blank" rel="tag nofollow"> myspace music contents</a>, <a href="http://technorati.com/tag/myspace+toyota+contest" class="ttags" target="_blank" rel="tag nofollow"> myspace toyota contest</a>, <a href="http://technorati.com/tag/rap+music+contest" class="ttags" target="_blank" rel="tag nofollow"> rap music contest</a>, <a href="http://technorati.com/tag/music+contest" class="ttags" target="_blank" rel="tag nofollow"> music contest</a>, <a href="http://technorati.com/tag/myspace+contest" class="ttags" target="_blank" rel="tag nofollow"> myspace contest</a>, <a href="http://technorati.com/tag/music+contracts" class="ttags" target="_blank" rel="tag nofollow"> music contracts</a>, <a href="http://technorati.com/tag/musician+rights" class="ttags" target="_blank" rel="tag nofollow"> musician rights</a>, <a href="http://technorati.com/tag/contest+rules" class="ttags" target="_blank" rel="tag nofollow"> contest rules</a></p>
<!-- google_ad_section_end --><div id="wherego_related"><h3>Readers who viewed this page, also viewed:</h3><ul><li><a href="http://stateofaffairs.info/archive/what-tendered-usps-means/">Explanation of what Tendered to USPS Means</a></li><li><a href="http://stateofaffairs.info/archive/sell-your-music-online/">How to Sell Your Music Online</a></li><li><a href="http://stateofaffairs.info/archive/best-laptop-june-09/">Best Laptops Under $1000 (June 2009)</a></li><li><a href="http://stateofaffairs.info/archive/fastest-ssd-sata-drive/">Fastest (SSD) Solid State Drive</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=hyp69-ZJc3Q:W5wFuHBe4vg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=hyp69-ZJc3Q:W5wFuHBe4vg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?i=hyp69-ZJc3Q:W5wFuHBe4vg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=hyp69-ZJc3Q:W5wFuHBe4vg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?i=hyp69-ZJc3Q:W5wFuHBe4vg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=hyp69-ZJc3Q:W5wFuHBe4vg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=hyp69-ZJc3Q:W5wFuHBe4vg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=hyp69-ZJc3Q:W5wFuHBe4vg:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=hyp69-ZJc3Q:W5wFuHBe4vg:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/thestateofaffairs/~4/hyp69-ZJc3Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stateofaffairs.info/archive/myspace-music-contests/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://stateofaffairs.info/archive/myspace-music-contests/</feedburner:origLink></item>
		<item>
		<title>Natural Brown Theme for Elgg 1.5</title>
		<link>http://feedproxy.google.com/~r/thestateofaffairs/~3/DNn_N4217d0/</link>
		<comments>http://stateofaffairs.info/archive/elgg-theme-natural-brown/#comments</comments>
		<pubDate>Mon, 11 May 2009 12:21:18 +0000</pubDate>
		<dc:creator>Jeremy Winter</dc:creator>
				<category><![CDATA[Elgg]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[brown and green elgg theme]]></category>
		<category><![CDATA[download elgg themes]]></category>
		<category><![CDATA[elgg]]></category>
		<category><![CDATA[elgg 1.5]]></category>
		<category><![CDATA[elgg 1.5 theme]]></category>
		<category><![CDATA[elgg installation]]></category>
		<category><![CDATA[elgg template]]></category>
		<category><![CDATA[elgg theme]]></category>
		<category><![CDATA[elgg theming]]></category>
		<category><![CDATA[free elgg themes]]></category>
		<category><![CDATA[install elgg 1.5 theme]]></category>
		<category><![CDATA[install elgg theme]]></category>
		<category><![CDATA[modify elgg]]></category>
		<category><![CDATA[natural brow]]></category>

		<guid isPermaLink="false">http://stateofaffairs.info/?p=2503</guid>
		<description><![CDATA[Here is another new Elgg theme that is based off of Pete Harris&#8217;s, Elgg example theme framework (1.0). This theme requires Elgg 1.5 and is released under a GNU General Public License (GPL) version 2.
This theme is the same as my previous two themes, but with a different color scheme. With Natural Brown I used [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Here is another new Elgg theme that is based off of Pete Harris&#8217;s, <a rel="nofollow" target="_blank" href="http://community.elgg.org/pg/plugins/pete/read/33206/elgg-example-theme-framework">Elgg example theme framework (1.0)</a>. <strong>This theme requires Elgg 1.5</strong> and is released under a GNU General Public License (GPL) version 2.</p>
<p>This theme is the same as my previous two themes, but with a different color scheme. With Natural Brown I used neutral colors that resulted in low contrast. </p>
<p>*Notes &#8211; As before, renaming the theme will cause it to break. Also if you are adding text to the front page in Administration>>External Pages>>Frontpage, the information pages are reversed e.g. Lefthand is Righthand and Righthand is Lefthand </p>
<p><a href="http://stateofaffairs.info/wp-content/uploads/2009/05/profile-logged-in.png"><img src="http://stateofaffairs.info/wp-content/uploads/2009/05/profile-logged-in-225x278.png" alt="Natural Brown Theme profile-logged-in" title="Natural Brown Theme profile-logged-in" width="225" height="278" class="alignnone size-medium wp-image-2504" /></a></p>
<p><a href="http://stateofaffairs.info/wp-content/uploads/2009/05/home-logged-out.png"><img src="http://stateofaffairs.info/wp-content/uploads/2009/05/home-logged-out-225x228.png" alt="Natural Brown Theme home-logged-out" title="Natural Brown Theme home-logged-out" width="225" height="228" class="alignnone size-medium wp-image-2505" /></a></p>
<div style="clear:both;"></div>
<p><a rel="nofollow" class="buttonstyle" style="color:#FFFFFF;padding:10px;" href="/elgg-themes/natural-brown-theme.zip">Download Natural Brown 1.1</a></p>
<div style="clear:both;"></div>
<p><strong>Change log:</strong><br />
1.1 &#8211; Fixed missing homepage titles<br />
1.0 &#8211; Initial release</p>
 <div style="margin-bottom:20px;">         
<script type="text/javascript"><!--
google_ad_client = "pub-8509987812848664";
/* 468x15, created 5/28/09 */
google_ad_slot = "7692418257";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div> <p class="ttags">Technorati Tags: <a href="http://technorati.com/tag/natural+brow" class="ttags" target="_blank" rel="tag nofollow">natural brow</a>, <a href="http://technorati.com/tag/brown+and+green+elgg+theme" class="ttags" target="_blank" rel="tag nofollow"> brown and green elgg theme</a>, <a href="http://technorati.com/tag/elgg+theme" class="ttags" target="_blank" rel="tag nofollow"> elgg theme</a>, <a href="http://technorati.com/tag/elgg+template" class="ttags" target="_blank" rel="tag nofollow"> elgg template</a>, <a href="http://technorati.com/tag/elgg" class="ttags" target="_blank" rel="tag nofollow"> elgg</a>, <a href="http://technorati.com/tag/elgg+1.5+theme" class="ttags" target="_blank" rel="tag nofollow"> elgg 1.5 theme</a>, <a href="http://technorati.com/tag/free+elgg+themes" class="ttags" target="_blank" rel="tag nofollow"> free elgg themes</a>, <a href="http://technorati.com/tag/elgg+theming" class="ttags" target="_blank" rel="tag nofollow"> elgg theming</a>, <a href="http://technorati.com/tag/elgg+1.5" class="ttags" target="_blank" rel="tag nofollow"> elgg 1.5</a>, <a href="http://technorati.com/tag/install+elgg+theme" class="ttags" target="_blank" rel="tag nofollow"> install elgg theme</a>, <a href="http://technorati.com/tag/install+elgg+1.5+theme" class="ttags" target="_blank" rel="tag nofollow"> install elgg 1.5 theme</a>, <a href="http://technorati.com/tag/download+elgg+themes" class="ttags" target="_blank" rel="tag nofollow"> download elgg themes</a>, <a href="http://technorati.com/tag/elgg+installation" class="ttags" target="_blank" rel="tag nofollow"> elgg installation</a>, <a href="http://technorati.com/tag/modify+elgg" class="ttags" target="_blank" rel="tag nofollow"> modify elgg</a></p>
<!-- google_ad_section_end --><div id="wherego_related"><h3>Readers who viewed this page, also viewed:</h3><ul><li><a href="http://stateofaffairs.info/archive/elgg-theme-custom-white/">Another New Elgg Theme: Custom White (Elgg 1.5)</a></li><li><a href="http://stateofaffairs.info/archive/install-elgg-themes/">How to Install Elgg Themes</a></li><li><a href="http://stateofaffairs.info/archive/elgg-photo-gallery-plugin/">Elgg Photo Gallery Plugin</a></li><li><a href="http://stateofaffairs.info/archive/top-elgg-themes/">Top Elgg Themes</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=DNn_N4217d0:AkIRixZl6h0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=DNn_N4217d0:AkIRixZl6h0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?i=DNn_N4217d0:AkIRixZl6h0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=DNn_N4217d0:AkIRixZl6h0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?i=DNn_N4217d0:AkIRixZl6h0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=DNn_N4217d0:AkIRixZl6h0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=DNn_N4217d0:AkIRixZl6h0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=DNn_N4217d0:AkIRixZl6h0:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=DNn_N4217d0:AkIRixZl6h0:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/thestateofaffairs/~4/DNn_N4217d0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stateofaffairs.info/archive/elgg-theme-natural-brown/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://stateofaffairs.info/archive/elgg-theme-natural-brown/</feedburner:origLink></item>
		<item>
		<title>How to Install Elgg Themes</title>
		<link>http://feedproxy.google.com/~r/thestateofaffairs/~3/aO5G0ZQ7Feo/</link>
		<comments>http://stateofaffairs.info/archive/install-elgg-themes/#comments</comments>
		<pubDate>Sat, 09 May 2009 08:33:40 +0000</pubDate>
		<dc:creator>Jeremy Winter</dc:creator>
				<category><![CDATA[Elgg]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[blank screen]]></category>
		<category><![CDATA[elgg]]></category>
		<category><![CDATA[elgg installation]]></category>
		<category><![CDATA[elgg mod]]></category>
		<category><![CDATA[elgg themes]]></category>
		<category><![CDATA[elgg white screen]]></category>
		<category><![CDATA[how install]]></category>
		<category><![CDATA[how to install elgg]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[install elgg plugins]]></category>
		<category><![CDATA[install elgg themes]]></category>
		<category><![CDATA[install themes]]></category>
		<category><![CDATA[installing elgg themes]]></category>
		<category><![CDATA[mod folder]]></category>
		<category><![CDATA[tool administration]]></category>
		<category><![CDATA[white screen]]></category>

		<guid isPermaLink="false">http://stateofaffairs.info/?p=2495</guid>
		<description><![CDATA[Installing Elgg themes is a relatively easy task, but at times can be a bit confusing. One example would be the white-screen-of-death which has a way of sneaking up on us Elgg users. Here is a Quick rundown of the steps needed to install your new theme and some steps to help if the installation [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Installing Elgg themes is a relatively easy task, but at times can be a bit confusing. One example would be the white-screen-of-death which has a way of sneaking up on us Elgg users. Here is a Quick rundown of the steps needed to install your new theme and some steps to help if the installation doesn&#8217;t go too smoothly.</p>
<h3>Steps to Install Your New Elgg Theme</h3>
<ol>
<li>Extract the contents of your downloaded theme zip file to the Mod directory in your Elgg install. By default your file structure should look something like this
<p>elgg/mod/your_new_theme_folder</li>
<li>Log into your Elgg installation as a administrator</li>
<li>At the top, navigate to Administration >> Tool Administration</li>
<li>Look for your new theme in the list of installed toolsplugins and click enable</li>
<li>Last but not least, find your new theme in the the list again and click the link called &#8220;bottom&#8221;</li>
</ol>
<p>The reason for the final step is to force the theme to be loaded first instead of all of your other plugins. Definitely a good idea.</p>
<h4>Troubleshooting a Theme Gone Wrong</h4>
<p>If your new theme or current theme ever leaves you with a white blank screen and you cant access your site simply:</p>
<ol>
<li>Backup the theme, if you have made changes</li>
<li>Delete the new theme directory</li>
<li>Now your site should revert to the default theme</li>
<li>If it doesn&#8217;t, your new theme is probably not the issue</li>
<li>You can now attempt to reinstall your theme</li>
</ol>
<p>If your looking for a new theme right now you may want to try out one of my two new themes: <a href="http://stateofaffairs.info/archive/elgg-theme-custom-blue/">Custom Blue for Elgg 1.5</a>  and <a href="http://stateofaffairs.info/archive/elgg-theme-custom-white/">Custom White for Elgg 1.5</a></p>
 <div style="margin-bottom:20px;">         
<script type="text/javascript"><!--
google_ad_client = "pub-8509987812848664";
/* 468x15, created 5/28/09 */
google_ad_slot = "7692418257";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div> <p class="ttags">Technorati Tags: <a href="http://technorati.com/tag/elgg" class="ttags" target="_blank" rel="tag nofollow">elgg</a>, <a href="http://technorati.com/tag/elgg+themes" class="ttags" target="_blank" rel="tag nofollow"> elgg themes</a>, <a href="http://technorati.com/tag/install+elgg+themes" class="ttags" target="_blank" rel="tag nofollow"> install elgg themes</a>, <a href="http://technorati.com/tag/how+to" class="ttags" target="_blank" rel="tag nofollow"> how to</a>, <a href="http://technorati.com/tag/how+install" class="ttags" target="_blank" rel="tag nofollow"> how install</a>, <a href="http://technorati.com/tag/install+themes" class="ttags" target="_blank" rel="tag nofollow"> install themes</a>, <a href="http://technorati.com/tag/install+elgg+plugins" class="ttags" target="_blank" rel="tag nofollow"> install elgg plugins</a>, <a href="http://technorati.com/tag/elgg+installation" class="ttags" target="_blank" rel="tag nofollow"> elgg installation</a>, <a href="http://technorati.com/tag/installing+elgg+themes" class="ttags" target="_blank" rel="tag nofollow"> installing elgg themes</a>, <a href="http://technorati.com/tag/how+to+install+elgg" class="ttags" target="_blank" rel="tag nofollow"> how to install elgg</a>, <a href="http://technorati.com/tag/elgg+mod" class="ttags" target="_blank" rel="tag nofollow"> elgg mod</a>, <a href="http://technorati.com/tag/mod+folder" class="ttags" target="_blank" rel="tag nofollow"> mod folder</a>, <a href="http://technorati.com/tag/tool+administration" class="ttags" target="_blank" rel="tag nofollow"> tool administration</a>, <a href="http://technorati.com/tag/white+screen" class="ttags" target="_blank" rel="tag nofollow"> white screen</a>, <a href="http://technorati.com/tag/elgg+white+screen" class="ttags" target="_blank" rel="tag nofollow"> elgg white screen</a>, <a href="http://technorati.com/tag/blank+screen" class="ttags" target="_blank" rel="tag nofollow"> blank screen </a></p>
<!-- google_ad_section_end --><div id="wherego_related"><h3>Readers who viewed this page, also viewed:</h3><ul><li><a href="http://stateofaffairs.info/archive/elgg-photo-gallery-plugin/">Elgg Photo Gallery Plugin</a></li><li><a href="http://stateofaffairs.info/archive/elgg-theme-custom-blue/">New Elgg Theme: Custom Blue (Elgg 1.5)</a></li><li><a href="http://stateofaffairs.info/archive/top-elgg-themes/">Top Elgg Themes</a></li><li><a href="http://stateofaffairs.info/archive/elgg-theme-custom-white/">Another New Elgg Theme: Custom White (Elgg 1.5)</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=aO5G0ZQ7Feo:jG3wa03jFFg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=aO5G0ZQ7Feo:jG3wa03jFFg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?i=aO5G0ZQ7Feo:jG3wa03jFFg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=aO5G0ZQ7Feo:jG3wa03jFFg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?i=aO5G0ZQ7Feo:jG3wa03jFFg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=aO5G0ZQ7Feo:jG3wa03jFFg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=aO5G0ZQ7Feo:jG3wa03jFFg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=aO5G0ZQ7Feo:jG3wa03jFFg:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=aO5G0ZQ7Feo:jG3wa03jFFg:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/thestateofaffairs/~4/aO5G0ZQ7Feo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stateofaffairs.info/archive/install-elgg-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://stateofaffairs.info/archive/install-elgg-themes/</feedburner:origLink></item>
		<item>
		<title>Recycle Computers and TVs in Portland OR</title>
		<link>http://feedproxy.google.com/~r/thestateofaffairs/~3/HlLie2diiMw/</link>
		<comments>http://stateofaffairs.info/archive/recycle-oregon/#comments</comments>
		<pubDate>Sat, 09 May 2009 03:53:30 +0000</pubDate>
		<dc:creator>Jeremy Winter</dc:creator>
				<category><![CDATA[Current News]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[computer recycling]]></category>
		<category><![CDATA[e-cycle]]></category>
		<category><![CDATA[ecycle]]></category>
		<category><![CDATA[ecycle oregon]]></category>
		<category><![CDATA[ecycle portland]]></category>
		<category><![CDATA[locations]]></category>
		<category><![CDATA[monitors]]></category>
		<category><![CDATA[oregon]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[portland]]></category>
		<category><![CDATA[portland oregon]]></category>
		<category><![CDATA[recycle]]></category>
		<category><![CDATA[recycle computer]]></category>
		<category><![CDATA[recycle monitors]]></category>
		<category><![CDATA[recycle television]]></category>
		<category><![CDATA[recycle tv]]></category>
		<category><![CDATA[recycling centers]]></category>
		<category><![CDATA[recycling portland or]]></category>
		<category><![CDATA[recycling portland oregon]]></category>
		<category><![CDATA[tv]]></category>
		<category><![CDATA[where to recycle]]></category>

		<guid isPermaLink="false">http://stateofaffairs.info/?p=2475</guid>
		<description><![CDATA[Washington and Oregon have both started free recycling services for computers, monitors and TVs this year and both are having great success with the new service. Finding the locations and hours for these locations is another story though.
This is a complete list of all of the locations in Portland where you can bring your computers, [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Washington and Oregon have both started free recycling services for computers, monitors and TVs this year and both are having great success with the new service. Finding the locations and hours for these locations is another story though.</p>
<p>This is a complete list of all of the locations in Portland where you can bring your computers, monitors or TVs too. As a note, you may want to call the locations ahead of time in regards too peripherals such as mice, keyboards, and speakers.</p>
<div class="plasticwarp">
<div style="float:left;">
<h3>FAR WEST FIBERS &#8211; SE 17TH</h3>
<p><strong>Location:</strong><br />
4629 SE 17TH AVE<br />
PORTLAND OR 97202-4712<br />
<strong>Phone:</strong><br />
(503) 329-2890
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 8:00 AM- 3:30 PM<br />
Tue 8:00 AM- 3:30 PM<br />
Wed 8:00 AM- 3:30 PM<br />
Thu 8:00 AM- 3:30 PM<br />
Fri 8:00 AM- 3:30 PM<br />
Sat 8:00 AM- 3:30 PM<br />
Sun 8:00 AM- 3:30 PM
</div>
<hr />
<div style="float:left;">
<h3>TOTAL RECLAIM, INC.</h3>
<p><strong>Location:</strong><br />
5805 NE COLUMBIA BLVD<br />
PORTLAND OR 97218-1250<br />
<strong>Phone:</strong><br />
(503) 281-1899
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 8:00 AM- 4:30 PM<br />
Tue 8:00 AM- 4:30 PM<br />
Wed 8:00 AM- 4:30 PM<br />
Thu 8:00 AM- 4:30 PM<br />
Fri 8:00 AM- 4:30 PM
</div>
<hr />
<div style="float:left;">
<h3>FAR WEST FIBERS &#8211; NE MARX ST</h3>
<p><strong>Location:</strong><br />
12820 NE MARX ST<br />
PORTLAND OR 97230-1067<br />
<strong>Phone:</strong><br />
(503) 329-2890
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 7:00 AM- 5:00 PM<br />
Tue 7:00 AM- 5:00 PM<br />
Wed 7:00 AM- 5:00 PM<br />
Thu 7:00 AM- 5:00 PM<br />
Fri 7:00 AM- 5:00 PM
</div>
<hr />
<div style="float:left;">
<h3>FREE GEEK</h3>
<p><strong>Location:</strong><br />
1731 SE 10TH AVE<br />
PORTLAND OR 97214-3551<br />
<strong>Phone:</strong><br />
(503) 232-9350
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Tue 11:00 AM- 7:00 PM<br />
Wed 11:00 AM- 7:00 PM<br />
Thu 11:00 AM- 7:00 PM<br />
Fri 11:00 AM- 7:00 PM<br />
Sat 11:00 AM- 7:00 PM
</div>
<hr />
<div style="float:left;">
<h3>GOODWILL &#8211; PORTLAND STORE</h3>
<p><strong>Location:</strong><br />
1943 SE 6TH AVE<br />
PORTLAND OR 97214-4508<br />
<strong>Phone:</strong><br />
(503) 233-6589
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 8:00 AM- 9:00 PM<br />
Tue 8:00 AM- 9:00 PM<br />
Wed 8:00 AM- 9:00 PM<br />
Thu 8:00 AM- 9:00 PM<br />
Fri 8:00 AM- 9:00 PM<br />
Sat 8:00 AM- 9:00 PM<br />
Sun 9:00 AM- 8:00 PM
</div>
<hr />
<div style="float:left;">
<h3>GOODWILL &#8211; PORTLAND OUTLET</h3>
<p><strong>Location:</strong><br />
1740 SE OCHOCO ST<br />
PORTLAND OR 97222-7313<br />
<strong>Phone:</strong><br />
(503) 233-6589
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 8:00 AM- 8:00 PM<br />
Tue 8:00 AM- 8:00 PM<br />
Wed 8:00 AM- 8:00 PM<br />
Thu 8:00 AM- 8:00 PM<br />
Fri 8:00 AM- 8:00 PM<br />
Sat 8:00 AM- 8:00 PM<br />
Sun 9:00 AM- 7:00 PM
</div>
<hr />
<div style="float:left;">
<h3>GOODWILL &#8211; BARBUR BLVD DONATION EXPRESS</h3>
<p><strong>Location:</strong><br />
7635 SW BARBUR BLVD<br />
PORTLAND OR 97219<br />
<strong>Phone:</strong><br />
(503) 233-6589
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 9:00 AM- 8:00 PM<br />
Tue 9:00 AM- 8:00 PM<br />
Wed 9:00 AM- 8:00 PM<br />
Thu 9:00 AM- 8:00 PM<br />
Fri 9:00 AM- 8:00 PM<br />
Sat 9:00 AM- 8:00 PM<br />
Sun 9:00 AM- 8:00 PM
</div>
<hr />
<div style="float:left;">
<h3>GOODWILL &#8211; 57TH &#038; NE FREMONT</h3>
<p><strong>Location:</strong><br />
5625 NE FREMONT ST<br />
PORTLAND OR 97213-1754<br />
<strong>Phone:</strong><br />
(503) 233-6589
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 9:00 AM- 8:00 PM<br />
Tue 9:00 AM- 8:00 PM<br />
Wed 9:00 AM- 8:00 PM<br />
Thu 9:00 AM- 8:00 PM<br />
Fri 9:00 AM- 8:00 PM<br />
Sat 9:00 AM- 8:00 PM<br />
Sun 9:00 AM- 8:00 PM
</div>
<hr />
<div style="float:left;">
<h3>GOODWILL &#8211; NE SANDY DONATION EXPRESS</h3>
<p><strong>Location:</strong><br />
2311 NE SANDY BLVD<br />
PORTLAND OR 97232<br />
<strong>Phone:</strong><br />
(503) 233-6589
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 9:00 AM- 8:00 PM<br />
Tue 9:00 AM- 8:00 PM<br />
Wed 9:00 AM- 8:00 PM<br />
Thu 9:00 AM- 8:00 PM<br />
Fri 9:00 AM- 8:00 PM<br />
Sat 9:00 AM- 8:00 PM<br />
Sun 9:00 AM- 8:00 PM
</div>
<hr />
<div style="float:left;">
<h3>GOODWILL &#8211; DIVISION &#038; 143RD DONATION EXPRES</h3>
<p><strong>Location:</strong><br />
14331 SE DIVISION ST, STE A<br />
PORTLAND OR 97236-2668<br />
<strong>Phone:</strong><br />
(503) 233-6589
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 9:00 AM- 8:00 PM<br />
Tue 9:00 AM- 8:00 PM<br />
Wed 9:00 AM- 8:00 PM<br />
Thu 9:00 AM- 8:00 PM<br />
Fri 9:00 AM- 8:00 PM<br />
Sat 9:00 AM- 8:00 PM<br />
Sun 9:00 AM- 8:00 PM
</div>
<hr />
<div style="float:left;">
<h3>GOODWILL &#8211; DIVISION &#038; 143RD DONATION EXPRES</h3>
<p><strong>Location:</strong><br />
14331 SE DIVISION ST, STE A<br />
PORTLAND OR 97236-2668<br />
<strong>Phone:</strong><br />
(503) 233-6589
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 9:00 AM- 8:00 PM<br />
Tue 9:00 AM- 8:00 PM<br />
Wed 9:00 AM- 8:00 PM<br />
Thu 9:00 AM- 8:00 PM<br />
Fri 9:00 AM- 8:00 PM<br />
Sat 9:00 AM- 8:00 PM<br />
Sun 9:00 AM- 8:00 PM
</div>
<hr />
<div style="float:left;">
<h3>GOODWILL &#8211; GLISAN DONATION EXPRESS</h3>
<p><strong>Location:</strong><br />
10144 NE GLISAN ST<br />
PORTLAND OR 97220-4456<br />
<strong>Phone:</strong><br />
(503) 233-6589
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 9:00 AM- 8:00 PM<br />
Tue 9:00 AM- 8:00 PM<br />
Wed 9:00 AM- 8:00 PM<br />
Thu 9:00 AM- 8:00 PM<br />
Fri 9:00 AM- 8:00 PM<br />
Sat 9:00 AM- 8:00 PM<br />
Sun 9:00 AM- 8:00 PM
</div>
<hr />
<div style="float:left;">
<h3>GOODWILL &#8211; HOLGATE &#038; 82ND</h3>
<p><strong>Location:</strong><br />
8218 SE HOLGATE BLVD<br />
PORTLAND OR 97266-2936<br />
<strong>Phone:</strong><br />
(503) 323-3658
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 9:00 AM- 8:00 PM<br />
Tue 9:00 AM- 8:00 PM<br />
Wed 9:00 AM- 8:00 PM<br />
Thu 9:00 AM- 8:00 PM<br />
Fri 9:00 AM- 8:00 PM<br />
Sat 9:00 AM- 8:00 PM<br />
Sun 9:00 AM- 8:00 PM
</div>
<hr />
<div style="float:left;">
<h3>GOODWILL &#8211; MEADOWLANDS DONATION EXPRESS</h3>
<p><strong>Location:</strong><br />
17102 SE POWELL BLVD<br />
PORTLAND OR 97236-8715<br />
<strong>Phone:</strong><br />
(503) 233-6589
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 9:00 AM- 8:00 PM<br />
Tue 9:00 AM- 8:00 PM<br />
Wed 9:00 AM- 8:00 PM<br />
Thu 9:00 AM- 8:00 PM<br />
Fri 9:00 AM- 8:00 PM<br />
Sat 9:00 AM- 8:00 PM<br />
Sun 9:00 AM- 8:00 PM
</div>
<hr />
<div style="float:left;">
<h3>GOODWILL &#8211; ST. GABRIELS BETHANY/NW PORTLAND</h3>
<p><strong>Location:</strong><br />
17435 NW WEST UNION RD<br />
PORTLAND OR 97229-2190<br />
<strong>Phone:</strong><br />
(503) 233-6589
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 9:00 AM- 8:00 PM<br />
Tue 9:00 AM- 8:00 PM<br />
Wed 9:00 AM- 8:00 PM<br />
Thu 9:00 AM- 8:00 PM<br />
Fri 9:00 AM- 8:00 PM<br />
Sat 9:00 AM- 8:00 PM<br />
Sun 9:00 AM- 8:00 PM
</div>
<hr />
<div style="float:left;">
<h3>GOODWILL &#8211; W BURNSIDE STORE</h3>
<p><strong>Location:</strong><br />
2215 W BURNSIDE ST<br />
PORTLAND OR 97210-3521<br />
<strong>Phone:</strong><br />
(503) 224-3084
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 8:00 AM- 9:00 PM<br />
Tue 8:00 AM- 9:00 PM<br />
Wed 8:00 AM- 9:00 PM<br />
Thu 8:00 AM- 9:00 PM<br />
Fri 8:00 AM- 9:00 PM<br />
Sat 8:00 AM- 9:00 PM<br />
Sun 9:00 AM- 8:00 PM
</div>
<hr />
<div style="float:left;">
<h3>GOODWILL &#8211; SHATTUCK RD RITE AID</h3>
<p><strong>Location:</strong><br />
5431 SW BEAVERTON HILLSDALE H<br />
PORTLAND OR 97221-1918<br />
<strong>Phone:</strong><br />
(503) 233-6589
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 9:00 AM- 8:00 PM<br />
Tue 9:00 AM- 8:00 PM<br />
Wed 9:00 AM- 8:00 PM<br />
Thu 9:00 AM- 8:00 PM<br />
Fri 9:00 AM- 8:00 PM<br />
Sat 9:00 AM- 8:00 PM<br />
Sun 9:00 AM- 8:00 PM
</div>
<hr />
<div style="float:left;">
<h3>GOODWILL &#8211; LOMBARD STORE</h3>
<p><strong>Location:</strong><br />
3134 N LOMBARD ST<br />
PORTLAND OR 97217-1246<br />
<strong>Phone:</strong><br />
(503) 542-2000
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 8:00 AM- 9:00 PM<br />
Tue 8:00 AM- 9:00 PM<br />
Wed 8:00 AM- 9:00 PM<br />
Thu 8:00 AM- 9:00 PM<br />
Fri 8:00 AM- 9:00 PM<br />
Sat 8:00 AM- 9:00 PM<br />
Sun 9:00 AM- 8:00 PM
</div>
<hr />
<div style="float:left;">
<h3>GOODWILL &#8211; SAN RAFAEL STORE</h3>
<p><strong>Location:</strong><br />
1640 NE 122ND AVE<br />
PORTLAND OR 97230-1913<br />
<strong>Phone:</strong><br />
(503) 254-4795
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 8:00 AM- 9:00 PM<br />
Tue 8:00 AM- 9:00 PM<br />
Wed 8:00 AM- 9:00 PM<br />
Thu 8:00 AM- 9:00 PM<br />
Fri 8:00 AM- 9:00 PM<br />
Sat 8:00 AM- 9:00 PM<br />
Sun 9:00 AM- 8:00 PM
</div>
<hr />
<div style="float:left;">
<h3>GOODWILL &#8211; BROADWAY EAST STORE</h3>
<p><strong>Location:</strong><br />
1231 NE BROADWAY ST<br />
PORTLAND OR 97232-1233<br />
<strong>Phone:</strong><br />
(503) 542-3900
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 8:00 AM- 9:00 PM<br />
Tue 8:00 AM- 9:00 PM<br />
Wed 8:00 AM- 9:00 PM<br />
Thu 8:00 AM- 9:00 PM<br />
Fri 8:00 AM- 9:00 PM<br />
Sat 8:00 AM- 9:00 PM<br />
Sun 9:00 AM- 8:00 PM
</div>
<hr />
<div style="float:left;">
<h3>GOODWILL &#8211; CLACKAMAS STORE</h3>
<p><strong>Location:</strong><br />
11424 SE 82ND ST<br />
PORTLAND OR 97266<br />
<strong>Phone:</strong><br />
(503) 233-6589
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 8:00 AM- 9:00 PM<br />
Tue 8:00 AM- 9:00 PM<br />
Wed 8:00 AM- 9:00 PM<br />
Thu 8:00 AM- 9:00 PM<br />
Fri 8:00 AM- 9:00 PM<br />
Sat 8:00 AM- 9:00 PM<br />
Sun 9:00 AM- 8:00 PM
</div>
<hr />
<div style="float:left;">
<h3>GOODWILL &#8211; POWELL STORE</h3>
<p><strong>Location:</strong><br />
9015 SE POWELL BLVD<br />
PORTLAND OR 97266-1940<br />
<strong>Phone:</strong><br />
(503) 788-1700
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 8:00 AM- 9:00 PM<br />
Tue 8:00 AM- 9:00 PM<br />
Wed 8:00 AM- 9:00 PM<br />
Thu 8:00 AM- 9:00 PM<br />
Fri 8:00 AM- 9:00 PM<br />
Sat 8:00 AM- 9:00 PM<br />
Sun 9:00 AM- 8:00 PM
</div>
<hr />
<div style="float:left;">
<h3>METRO CENTRAL TRANSFER STATION</h3>
<p><strong>Location:</strong><br />
6161 NW 61ST AVE<br />
PORTLAND OR 97210-3675<br />
<strong>Phone:</strong><br />
(503) 234-3000
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 8:00 AM- 6:00 PM<br />
Tue 8:00 AM- 6:00 PM<br />
Wed 8:00 AM- 6:00 PM<br />
Thu 8:00 AM- 6:00 PM<br />
Fri 8:00 AM- 6:00 PM<br />
Sat 8:00 AM- 6:00 PM<br />
Sun 8:00 AM- 6:00 PM
</div>
<hr />
<div style="float:left;">
<h3>COLUMBIA RECYCLING PDX</h3>
<p><strong>Location:</strong><br />
11402 NE MARX ST<br />
PORTLAND OR 97220-9026<br />
<strong>Phone:</strong><br />
(503) 546-5478
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 8:30 AM- 3:30 PM<br />
Tue 8:30 AM- 3:30 PM<br />
Wed 8:30 AM- 3:30 PM<br />
Thu 8:30 AM- 3:30 PM<br />
Fri 8:30 AM- 3:30 PM
</div>
<hr />
<div style="float:left;">
<h3>FAR WEST FIBERS &#8211; ROSA PARKS WAY</h3>
<p><strong>Location:</strong><br />
2005 N. ROSA PARKS WAY<br />
PORTLAND OR 97217<br />
<strong>Phone:</strong><br />
(503) 329-2890
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 8:00 AM- 5:00 PM<br />
Tue 8:00 AM- 5:00 PM<br />
Wed 8:00 AM- 5:00 PM<br />
Thu 8:00 AM- 5:00 PM<br />
Fri 8:00 AM- 5:00 PM<br />
Sat 8:00 AM- 5:00 PM<br />
Sun 8:00 AM- 5:00 PM
</div>
<hr />
<div style="float:left;">
<h3>GOODWILL &#8211; SELLWOOD DONATION EXPRESS</h3>
<p><strong>Location:</strong><br />
1672 SE TACOMA ST<br />
PORTLAND OR 97202<br />
<strong>Phone:</strong><br />
(503) 233-6589
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 9:00 AM- 8:00 PM<br />
Tue 9:00 AM- 8:00 PM<br />
Wed 9:00 AM- 8:00 PM<br />
Thu 9:00 AM- 8:00 PM<br />
Fri 9:00 AM- 8:00 PM<br />
Sat 9:00 AM- 8:00 PM<br />
Sun 9:00 AM- 8:00 PM
</div>
<hr />
<div style="float:left;">
<h3>CITY RECYCLE</h3>
<p><strong>Location:</strong><br />
6510 NE COLUMBIA BLVD, STE B<br />
PORTLAND OR 97218-2988<br />
<strong>Phone:</strong><br />
(503) 254-1927
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 9:00 AM- 5:30 PM<br />
Tue 9:00 AM- 5:30 PM<br />
Wed 9:00 AM- 5:30 PM<br />
Thu 9:00 AM- 5:30 PM<br />
Fri 9:00 AM- 5:30 PM
</div>
<hr />
<div style="float:left;">
<h3>FAR WEST FIBERS &#8211; SE 17TH</h3>
<p><strong>Location:</strong><br />
4629 SE 17TH AVE<br />
PORTLAND OR 97202-4712<br />
<strong>Phone:</strong><br />
(503) 329-2980
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 8:00 AM- 3:30 PM<br />
Tue 8:00 AM- 3:30 PM<br />
Wed 8:00 AM- 3:30 PM<br />
Thu 8:00 AM- 3:30 PM<br />
Fri 8:00 AM- 3:30 PM<br />
Sat 8:00 AM- 3:30 PM<br />
Sun 8:00 AM- 3:30 PM
</div>
<hr />
<div style="float:left;">
<h3>FAR WEST FIBERS &#8211; SE 17TH</h3>
<p><strong>Location:</strong><br />
4629 SE 17TH AVE<br />
PORTLAND OR 97202-4712<br />
<strong>Phone:</strong><br />
(503) 329-2980
</div>
<p></br></p>
<div style="float:right;margin-top:-12px;"><strong>Hours:</strong><br />
Mon 8:00 AM- 3:30 PM<br />
Tue 8:00 AM- 3:30 PM<br />
Wed 8:00 AM- 3:30 PM<br />
Thu 8:00 AM- 3:30 PM<br />
Fri 8:00 AM- 3:30 PM<br />
Sat 8:00 AM- 3:30 PM<br />
Sun 8:00 AM- 3:30 PM
</div>
<hr />
</div>
 <div style="margin-bottom:20px;">         
<script type="text/javascript"><!--
google_ad_client = "pub-8509987812848664";
/* 468x15, created 5/28/09 */
google_ad_slot = "7692418257";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div> <p class="ttags">Technorati Tags: <a href="http://technorati.com/tag/portland" class="ttags" target="_blank" rel="tag nofollow">portland</a>, <a href="http://technorati.com/tag/recycle" class="ttags" target="_blank" rel="tag nofollow"> recycle</a>, <a href="http://technorati.com/tag/recycle+tv" class="ttags" target="_blank" rel="tag nofollow"> recycle tv</a>, <a href="http://technorati.com/tag/recycle+computer" class="ttags" target="_blank" rel="tag nofollow"> recycle computer</a>, <a href="http://technorati.com/tag/recycle+monitors" class="ttags" target="_blank" rel="tag nofollow"> recycle monitors</a>, <a href="http://technorati.com/tag/monitors" class="ttags" target="_blank" rel="tag nofollow"> monitors</a>, <a href="http://technorati.com/tag/pc" class="ttags" target="_blank" rel="tag nofollow"> pc</a>, <a href="http://technorati.com/tag/tv" class="ttags" target="_blank" rel="tag nofollow"> tv</a>, <a href="http://technorati.com/tag/recycle+television" class="ttags" target="_blank" rel="tag nofollow"> recycle television</a>, <a href="http://technorati.com/tag/portland+oregon" class="ttags" target="_blank" rel="tag nofollow"> portland oregon</a>, <a href="http://technorati.com/tag/ecycle+oregon" class="ttags" target="_blank" rel="tag nofollow"> ecycle oregon</a>, <a href="http://technorati.com/tag/ecycle+portland" class="ttags" target="_blank" rel="tag nofollow"> ecycle portland</a>, <a href="http://technorati.com/tag/where+to+recycle" class="ttags" target="_blank" rel="tag nofollow"> where to recycle</a>, <a href="http://technorati.com/tag/oregon" class="ttags" target="_blank" rel="tag nofollow"> oregon</a>, <a href="http://technorati.com/tag/recycling+portland+oregon" class="ttags" target="_blank" rel="tag nofollow"> recycling portland oregon</a>, <a href="http://technorati.com/tag/recycling+portland+or" class="ttags" target="_blank" rel="tag nofollow"> recycling portland or</a>, <a href="http://technorati.com/tag/computer+recycling" class="ttags" target="_blank" rel="tag nofollow"> computer recycling</a>, <a href="http://technorati.com/tag/recycling+centers" class="ttags" target="_blank" rel="tag nofollow"> recycling centers</a>, <a href="http://technorati.com/tag/locations" class="ttags" target="_blank" rel="tag nofollow"> locations</a>, <a href="http://technorati.com/tag/e-cycle" class="ttags" target="_blank" rel="tag nofollow"> e-cycle</a>, <a href="http://technorati.com/tag/ecycle" class="ttags" target="_blank" rel="tag nofollow"> ecycle</a>, <a href="http://technorati.com/tag/e+cycle" class="ttags" target="_blank" rel="tag nofollow"> e cycle</a></p>
<!-- google_ad_section_end --><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=HlLie2diiMw:6c7giDO_4S0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=HlLie2diiMw:6c7giDO_4S0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?i=HlLie2diiMw:6c7giDO_4S0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=HlLie2diiMw:6c7giDO_4S0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?i=HlLie2diiMw:6c7giDO_4S0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=HlLie2diiMw:6c7giDO_4S0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=HlLie2diiMw:6c7giDO_4S0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=HlLie2diiMw:6c7giDO_4S0:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/thestateofaffairs?a=HlLie2diiMw:6c7giDO_4S0:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/thestateofaffairs?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/thestateofaffairs/~4/HlLie2diiMw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stateofaffairs.info/archive/recycle-oregon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://stateofaffairs.info/archive/recycle-oregon/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 1.229 seconds. --><!-- Cached page generated by WP-Super-Cache on 2009-07-10 14:17:03 --><!-- Compression = gzip -->
