<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Smuggle Me &#187; Technology</title>
	<atom:link href="http://www.crashutah.com/blog/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.crashutah.com/blog</link>
	<description>These are a few of my favorite Things!!</description>
	<pubDate>Mon, 25 Aug 2008 20:18:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>Export One Wordpress Blog Category to Create a New Blog</title>
		<link>http://www.crashutah.com/blog/juanchito/2008/08/14/export-one-wordpress-blog-category-to-create-a-new-blog/</link>
		<comments>http://www.crashutah.com/blog/juanchito/2008/08/14/export-one-wordpress-blog-category-to-create-a-new-blog/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 07:46:56 +0000</pubDate>
		<dc:creator>Juanchito</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

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

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

		<category><![CDATA[Wordpress Export]]></category>

		<category><![CDATA[Wordpress Import]]></category>

		<guid isPermaLink="false">http://www.crashutah.com/blog/?p=550</guid>
		<description><![CDATA[I&#8217;ve searched high and low for a way to move just one blog category from an existing blog into a new blog.  I found tons of ways and great documentation on how to move an entire blog to a new domain, but I couldn&#8217;t find anything that showed how to take one Wordpress blog [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve searched high and low for a way to move just one blog category from an existing blog into a new blog.  I found tons of ways and great documentation on <a href="http://codex.wordpress.org/Moving_WordPress">how to move an entire blog to a new domain</a>, but I couldn&#8217;t find anything that showed how to take one Wordpress blog category and create a new blog using that category.</p>
<p>I found an <a href="http://technosailor.com/2006/07/05/wordpress-to-wordpress-import/">old plugin/import</a> that should have done the job, but hadn&#8217;t been kept updated with the latest version of Wordpress and so it didn&#8217;t work for me.  I also found a ton of people on the <a href="http://wordpress.org/search/export+category+from+wordpress?forums=1">Wordpress forums</a> interested in doing the same thing, but no one offering an answer.  The best they could offer was importing just the RSS feed for that category.  Problem there is that then you lose all the comments, categories and tags for those posts.  Comments being the real kicker for me.</p>
<p>Therefore, I decided to go it alone and figure out a way to do it using the only option given in the Wordpress Export which was the user that created the post.  My goal was:<br />
-Export All the posts, categories, comments, tags for just one category of my blog<br />
-Create a list of those posts that I could use to redirect traffic/google to the new location</p>
<p>There might be easier ways (and hopefully they&#8217;ll make this an option in the Import), but this worked for me.  Also, I wouldn&#8217;t try this method unless you&#8217;re pretty good at find and replace, executing SQL queries and editing themes.</p>
<p>Overview of Process:<br />
<strong>*Export Blog to Test Server<br />
*Change Theme to Get list of Blog Post IDs/Posts for Category<br />
*Change Author of Each Post ID to a new author<br />
*Export posts for new author<br />
*Import into new blog<br />
*Create list of 301 Redirects on old blog<br />
*Clean Up new blog DB</strong><br />
<span id="more-550"></span></p>
<p>Export the entire blog using the standard Wordpress export feature.</p>
<p>Import the blog using the standard Wordpress import feature onto some test blog.  I prefer using xampp or something similar for my test blogs, but it&#8217;s up to you.  However, I wouldn&#8217;t suggest doing this on your production blog.</p>
<p>Change the index.php file for your theme (wp-content/theme/nameofyourtheme/index.php) to the following code:<br />
<code>< ?php $posts = query_posts('order=DESC&#038;cat=10'); ?><br />
< ?php //you'll need to change the above category number to match the category you want to export ?><br />
< ?php //if (have_posts()) : while ( have_posts() ) : the_post(); ?><br />
< ?php 	foreach($posts as $post) : ?><br />
^^< ?php the_permalink(); ?>**<br />
< ?php endforeach; ?></code><br />
-I&#8217;m sure you could add this code other pages in your theme, but index.php was easiest for me.<br />
-This is why I suggest doing it on a test system. Since changing this index.php file on your blog will essentially ruin the look of it.<br />
-You&#8217;ll need to set the number of posts on the main page to a high number in Settings&#8211;>Reading and change the value of &#8220;Blog pages show at most&#8221;</p>
<p><strong>Change Author of Blog Posts</strong><br />
Now change your blog permalinks settings to the default.  When you load your blog&#8217;s main page with Permalinks set to default, you&#8217;ll see a list something like the following:<br />
^^http://localhost/testexport/?p=621**<br />
Note: I like to add the ^^ and ** at the beginning and end to help with find and replace later.</p>
<p>Now we need to take this list and change it into a list of SQL commands that will change the author of every blog post in that category to a specific user that has no other posts.  In my case, I created a new user called exportuser in the Wordpress admin panel and then I found it&#8217;s id was 2 using phpMyAdmin (select * from wp_users)</p>
<p>Then, using the list from above, I could find and replace to easily create a list of update statements like the following:<br />
UPDATE wp_posts set post_author = 2 where ID = 621;</p>
<p>Once you run those SQL statements in phpMyAdmin, then you can go into the Wordpress Export feature and export all the posts by the &#8220;exportuser&#8221; (or whichever user you created) into a nice xml file.  Now that file is an export of blog posts, comments, categories and tags from just that one category.  ***Now all you have to do is import this file into your new blog.</p>
<p>***I personally imported this file into a separate blog so that I could clean out any unneeded categories, pages, posts, etc that I didn&#8217;t need on the new blog.  Then, after I cleaned up I exported the cleaned version and then uploaded it to the new blog, but it&#8217;s up to you if your anal like me.</p>
<p><strong>Redirecting Old Blog Posts URL</strong><br />
Next, change your blog permalink settings to the same as the original blog.  When you load your blog&#8217;s main page with Permalinks set to your normal Permalinks setting, you&#8217;ll see a list something like the following:<br />
^^http://localhost/testexport/2008/08/05/some-page/**<br />
Note: I like to add the ^^ and ** at the beginning and end to help with find and replace later.</p>
<p>Now we need to convert this list into a list of 301 redirects so that posts on your old blog will forward to the new one.  Using a little find and replace and pasting the columns into a csv or tab delimited file in excel, you can pretty easily produce a list of 301 redirects like the following:<br />
RedirectPermanent /2008/08/05/some-page/ http://www.new-domain.com/2008/08/05/some-page/<br />
**If you&#8217;re blog is in the blog folder instead of the root of your domain, you&#8217;ll need the redirect to look something like this:<br />
RedirectPermanent /blog/2008/08/05/some-page/ http://www.new-domain.com/2008/08/05/some-page/</p>
<p>Copy this list of Redirects into the bottom of your .htaccess file and your old blog post urls will now redirect to your new blog.</p>
<p>Note: You should also consider redirecting the category itself and any relevant tags that might get traffic.</p>
<p>Once you have uploaded the posts to the new blog, you&#8217;ll also want to consider running the following 2 queries as suggested <a href="http://www.mydigitallife.info/2007/10/01/how-to-move-wordpress-blog-to-new-domain-or-location/">here</a>:</p>
<p>UPDATE wp_posts SET guid = replace(guid, &#8216;http://www.old-domain.com&#8217;,'http://www.new-domain.com&#8217;);<br />
This query updates the guid for the post to your new domain.  Don&#8217;t ask me why the guid needs to be updated, but I tried it and it didn&#8217;t hurt anything.  So, I&#8217;m suggesting you do it too.  Better to leave no trace of the previous blog.</p>
<p>UPDATE wp_posts SET post_content = replace(post_content, &#8216;http://www.old-domain.com&#8217;, &#8216;http://www.new-domain.com&#8217;);<br />
This one changes any links in the posts content to point to the new domain.  Be careful with this one, because since you moved only one category you may not want to update ALL of the links.  I&#8217;d consider using something like:<br />
Select post_content from wp_posts where post_content like &#8216;%http://www.old-domain.com%&#8217;<br />
and then editing the links manually.  Or you could do the same search in the wordpress admin panel.  Either way it shouldn&#8217;t matter too much since you redirected the traffic anyway.</p>
<p>Let me know what you think or if I missed something easy I could have done instead.</p>
<p>Update: I also wanted a list of all the tags that were used for that category so that I could forward most of those tags to the new site.  Here&#8217;s the SQL query I used to export a list of tag slugs:<br />
<code> SELECT slug<br />
FROM `wp_term_taxonomy` tax, `wp_terms` t<br />
WHERE tax.`taxonomy` LIKE 'post_tag'<br />
AND tax.`count` !=0<br />
AND tax.term_id = t.term_id </code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.crashutah.com/blog/juanchito/2008/08/14/export-one-wordpress-blog-category-to-create-a-new-blog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>If Facebook Would Have Existed During the Civil War</title>
		<link>http://www.crashutah.com/blog/juanchito/2008/07/11/if-facebook-would-have-existed-during-the-civil-war/</link>
		<comments>http://www.crashutah.com/blog/juanchito/2008/07/11/if-facebook-would-have-existed-during-the-civil-war/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 15:25:23 +0000</pubDate>
		<dc:creator>Juanchito</dc:creator>
		
		<category><![CDATA[Funny Things]]></category>

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

		<category><![CDATA[Civil War]]></category>

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

		<guid isPermaLink="false">http://www.crashutah.com/blog/?p=545</guid>
		<description><![CDATA[I think the image pretty much speaks for itself.  One of the funniest images I&#8217;ve seen in a while.  I love the relationship one.
]]></description>
			<content:encoded><![CDATA[<p>I think the <a href="http://www.holytaco.com/details/?image-path=http://cdn.holytaco.com/www/wp-content/uploads/2008/07/civilwarfacebook.jpg">image</a> pretty much speaks for itself.  One of the funniest images I&#8217;ve seen in a while.  I love the relationship one.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crashutah.com/blog/juanchito/2008/07/11/if-facebook-would-have-existed-during-the-civil-war/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Live Tour de France 2008 Online Streaming</title>
		<link>http://www.crashutah.com/blog/juanchito/2008/07/05/live-tour-de-france-2008-online-streaming/</link>
		<comments>http://www.crashutah.com/blog/juanchito/2008/07/05/live-tour-de-france-2008-online-streaming/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 22:06:19 +0000</pubDate>
		<dc:creator>Juanchito</dc:creator>
		
		<category><![CDATA[Online TV]]></category>

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

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

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

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

		<category><![CDATA[Online Streaming]]></category>

		<category><![CDATA[Tour de France]]></category>

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

		<guid isPermaLink="false">http://www.crashutah.com/blog/?p=544</guid>
		<description><![CDATA[In the past years I&#8217;ve always been able to find a nice stream of Versus that allowed me to stream the Tour de France online without any problem.  This year I have yet to find a nice stream except for the free one that Versus offers for the first 2 stages at a very [...]]]></description>
			<content:encoded><![CDATA[<p>In the past years I&#8217;ve always been able to find a nice stream of Versus that allowed me to stream the Tour de France online without any problem.  This year I have yet to find a nice stream except for the free one that Versus offers for the first 2 stages at a very ungodly hour in the morning.</p>
<p>This year, it looks like Justin.tv is going to save us with the <a href="http://www.justin.tv/giac2007">EuroSport Live stream of the Tour de France</a>.  I love that it also archives the race so that if you aren&#8217;t there live you can watch the race after the fact too.  Granted, you have to put up with the english commentary, but essentially that&#8217;s what Versus has with Phil Ligget too.  I actually prefer the english commentary since it&#8217;s a quite refreshing perspective.</p>
<p>I am just a little bummed about even watching this year&#8217;s Tour de France since they kicked off Levi Leipheimer and Alberto Contador and their entire team.  Just doesn&#8217;t seem right.  However, I&#8217;m sure I won&#8217;t worry too much once I see a crazy sprint or a tough mountain stage.  I&#8217;m just a little sad that there are only 4 Americans participating.  That&#8217;s really unfortunate that there&#8217;s so few.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crashutah.com/blog/juanchito/2008/07/05/live-tour-de-france-2008-online-streaming/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Facebook Now the Largest Social Network</title>
		<link>http://www.crashutah.com/blog/juanchito/2008/06/12/facebook-now-the-largest-social-network/</link>
		<comments>http://www.crashutah.com/blog/juanchito/2008/06/12/facebook-now-the-largest-social-network/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 05:08:53 +0000</pubDate>
		<dc:creator>Juanchito</dc:creator>
		
		<category><![CDATA[Facebook]]></category>

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

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

		<guid isPermaLink="false">http://www.crashutah.com/blog/?p=542</guid>
		<description><![CDATA[Today Techcrunch announced that Facebook just passed up MySpace as the largest social network.  I think we all knew that this was inevitable.  MySpace sucks and Facebook sucks much less.
The worst part of it all is that MySpace is still going to be around for a long time to come.  In fact, [...]]]></description>
			<content:encoded><![CDATA[<p>Today Techcrunch <a href="http://www.techcrunch.com/2008/06/12/facebook-no-longer-the-second-largest-social-network/">announced</a> that Facebook just passed up MySpace as the largest social network.  I think we all knew that this was inevitable.  MySpace sucks and Facebook sucks much less.</p>
<p>The worst part of it all is that MySpace is still going to be around for a long time to come.  In fact, last I checked it was still growing quite rapidly.  MySpace is to social networking what AOL was to dial up.  We&#8217;re getting really close to the end of AOL, but I&#8217;m afraid that we may not see the end of MySpace.  Let&#8217;s just hope I can keep my children away from it.</p>
<p>Congratulations Facebook.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crashutah.com/blog/juanchito/2008/06/12/facebook-now-the-largest-social-network/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Is Facebook Following Twitter&#8217;s Downtime Methodology?</title>
		<link>http://www.crashutah.com/blog/juanchito/2008/05/22/is-facebook-following-twitters-downtime-methodology/</link>
		<comments>http://www.crashutah.com/blog/juanchito/2008/05/22/is-facebook-following-twitters-downtime-methodology/#comments</comments>
		<pubDate>Fri, 23 May 2008 06:15:57 +0000</pubDate>
		<dc:creator>Juanchito</dc:creator>
		
		<category><![CDATA[Technology]]></category>

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

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

		<guid isPermaLink="false">http://www.crashutah.com/blog/?p=540</guid>
		<description><![CDATA[Today I was trying to click through to Facebook and got a screen saying &#8220;Your account is temporarily unavailable due to site maintenance. It should be available again within a few hours. We apologize for the inconvenience.&#8221;

Of course, this all comes a day after Michael Arrington declared on Twitter that Facebook was loading faster than [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was trying to click through to Facebook and got a screen saying &#8220;Your account is temporarily unavailable due to site maintenance. It should be available again within a few hours. We apologize for the inconvenience.&#8221;<br />
<a href="http://s96.photobucket.com/albums/l176/crashutah/?action=view&#038;current=facebookoutage.gif" target="_blank"><img src="http://i96.photobucket.com/albums/l176/crashutah/facebookoutage.gif" border="0" alt="facebook,twitter"/></a></p>
<p>Of course, this all comes a day after Michael Arrington <a href="http://twitter.com/TechCrunch/statuses/817169650">declared</a> on Twitter that Facebook was loading faster than ever.  I actually tried it myself when I saw the tweet and he was right.  Facebook was zippy last night.  Too bad tonight they decided to follow the twitter model and declare that &#8220;It should be available again within a few hours.&#8221;  Nice of Facebook to leave it vague so that it can be down more than a few hours.</p>
<p>Seriously?  Did Facebook actually post on their website that I have to wait a few hours for my Facebook addiction?  Seems like Facebook might want to recruit a few more Google engineers that can find a way to recover/update in less then a few hours.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crashutah.com/blog/juanchito/2008/05/22/is-facebook-following-twitters-downtime-methodology/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Online Collaboration Tool - Vyew</title>
		<link>http://www.crashutah.com/blog/juanchito/2008/05/08/online-collaboration-tool-vyew/</link>
		<comments>http://www.crashutah.com/blog/juanchito/2008/05/08/online-collaboration-tool-vyew/#comments</comments>
		<pubDate>Fri, 09 May 2008 06:07:35 +0000</pubDate>
		<dc:creator>Juanchito</dc:creator>
		
		<category><![CDATA[Cambrian House]]></category>

		<category><![CDATA[General Life]]></category>

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

		<category><![CDATA[online collaboration]]></category>

		<guid isPermaLink="false">http://www.crashutah.com/blog/?p=539</guid>
		<description><![CDATA[I&#8217;ve always been interested in the collaboration tools available on the internet.  I&#8217;ve also always felt that there had to be something better out there.  In fact, it&#8217;s been a topic of many discussions on Cambrian House.  You see, Cambrian House is a website where people are trying to collaborate with a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always been interested in the collaboration tools available on the internet.  I&#8217;ve also always felt that there had to be something better out there.  In fact, it&#8217;s been a topic of many discussions on <a href="http://www.cambrianhouse.com">Cambrian House</a>.  You see, Cambrian House is a website where people are trying to collaborate with a large crowd of people in order to build an idea.  The question is how do you easily organize a group of people who are from all over the world?</p>
<p>Today I found something I want to try called <a href="http://vyew.com/site/">Vyew</a>.  It&#8217;s an ad supported site with a premium service for those that don&#8217;t want the ads.  I haven&#8217;t tried it yet, but soon I want to give it a whirl.  I think that I might do it with the great group of people that have been working on my <a href="http://www.spoilon.com">Spoil On</a> website.  I&#8217;ll let you know how it goes.</p>
<p>If you know of any other sites that are similar or better, then let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crashutah.com/blog/juanchito/2008/05/08/online-collaboration-tool-vyew/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Vote for Me In The You Be The VC Finals</title>
		<link>http://www.crashutah.com/blog/juanchito/2008/04/26/vote-for-me-in-the-you-be-the-vc-finals/</link>
		<comments>http://www.crashutah.com/blog/juanchito/2008/04/26/vote-for-me-in-the-you-be-the-vc-finals/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 04:48:23 +0000</pubDate>
		<dc:creator>Juanchito</dc:creator>
		
		<category><![CDATA[Entrepreneurship]]></category>

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

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

		<guid isPermaLink="false">http://www.crashutah.com/blog/?p=537</guid>
		<description><![CDATA[I have a big HUGE MAJOR ULTRA BIG favor to ask that I guarantee I won&#8217;t forget.
It will only take five minutes of your time and this isn&#8217;t some random request, asking you to spend any money or do anything more then register on a site and click a button to vote for me.
You&#8217;ll be [...]]]></description>
			<content:encoded><![CDATA[<p>I have a big HUGE MAJOR ULTRA BIG favor to ask that I guarantee I won&#8217;t forget.</p>
<p>It will only take five minutes of your time and this isn&#8217;t some random request, asking you to spend any money or do anything more then register on a site and click a button to vote for me.</p>
<p>You&#8217;ll be helping me and a good friend out a lot and I&#8217;ll be forever in your debt.</p>
<p>Click on this link: <a href="http://www.youbethevc.com/users/new">http://www.youbethevc.com/users/new</a><br />
Fill out the form. I&#8217;d suggest using your name as your username.<br />
Use your real email address and for your bio putting something very short about yourself. You don&#8217;t have to get really descriptive. Just one line will do&#8230; it worked for me. </p>
<p>In the Do you want to section I&#8217;d suggest clicking &#8220;meet people&#8221; which is the very last option.</p>
<p>Once you&#8217;ve registered with YBTVC, I just need you to click and vote for two ideas. One of them is obviously mine and the other is a good friend who I&#8217;d like to see joining me in Boston.</p>
<p>Go here to vote:<br />
<a href="http://www.youbethevc.com/users/new">http://www.youbethevc.com/finalists</a></p>
<p>Then look for &#8220;techguy&#8221; (that&#8217;s me) and rate it FIVE stars and &#8220;moshmobile&#8221; and rate it FIVE stars.  The winner is determined by average vote, so the more 5 star votes we get the better.</p>
<p>I greatly appreciate your help and let me know if you voted. I will be forever in your debt. I promise you that I won&#8217;t forget it either.</p>
<p>Also, if you really love me, then I&#8217;d appreciate you asking everyone you know to vote about me.  If you blog about it, send a trackback so I know you did.</p>
<p>Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crashutah.com/blog/juanchito/2008/04/26/vote-for-me-in-the-you-be-the-vc-finals/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Social Spark Has Been Launched</title>
		<link>http://www.crashutah.com/blog/juanchito/2008/04/23/social-spark-has-been-launched/</link>
		<comments>http://www.crashutah.com/blog/juanchito/2008/04/23/social-spark-has-been-launched/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 01:30:52 +0000</pubDate>
		<dc:creator>Juanchito</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

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

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

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

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

		<category><![CDATA[social spark]]></category>

		<guid isPermaLink="false">http://www.crashutah.com/blog/?p=536</guid>
		<description><![CDATA[I&#8217;m sure that many of you know by now that I have been with PayPerPost since nearly the beginning of Ted&#8217;s journey to make money for bloggers.  It&#8217;s been quite the adventure for me and a true learning process.  I&#8217;ve met hundreds of amazing bloggers and learned a ton about blogging.  Oh [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure that many of you know by now that I have been with PayPerPost since nearly the beginning of Ted&#8217;s journey to make money for bloggers.  It&#8217;s been quite the adventure for me and a true learning process.  I&#8217;ve met hundreds of amazing bloggers and learned a ton about blogging.  Oh yeah, and I made a bunch of cash along the way too.  I personally call it my &#8220;date&#8221; money.</p>
<p>Well, back in November I attended Postie Con where <a href="http://socialspark.com/metrics/click/post?slot_id=654&#038;url=http%3A%2F%2Fwww.socialspark.com" rel="nofollow">SocialSpark</a> was announced for the first time.  It was a very exciting time to see what Ted and crew had been working on for so long.</p>
<p>I was invited into the alpha version of Social Spark and it&#8217;s been quite the experience.  My favorite part has been the blog sponsorships.  I can see why this might not fit right for many of the bloggers out there, but it&#8217;s perfect for a number of my blogs.  In fact, I&#8217;d like to automate the blog sponsorship so that my blog always has a sponsorship with the highest paying sponsor (possibly with the option for me to block certain sponsors).  Overall though, sponsorships are really neat and I haven&#8217;t heard any complaints from my blog readers.  Granted I understand how I generate traffic to my blog and these type of sponsorships aren&#8217;t a problem.  I&#8217;m still generating just as much traffic as before.</p>
<p>The next best part of social spark is the transparency and disclosure (ie. no follow).  Here&#8217;s what social spark offers (which quite frankly was a problem with PayPerPost):<br />
-100% Audit-able In-Post Disclosure<br />
-100% Transparency<br />
-100% Real Opinions<br />
-100% Search Engine Friendly</p>
<p>Now that those problems are out of the way, I think that Social Spark can bring in some really large brands.  Hopefully that means more revenue for us bloggers.</p>
<p>I think the most disappointing part of Social Spark to me has been the method of filtering, organizing and finding blog opportunities.   It was bad in PayPerPost and is still bad in Social Spark.  It should be much easier for me to know what opportunities are available and a way to sort them the way I want to see them.  Plus, if I no longer want to see an opportunity, then give me an option to hide that opportunity forever.</p>
<p>Some of the social aspects of the site are interesting, but I would have preferred if Social Spark would have focused on more of the functional parts of the site and less on the look and feel of it all.  I&#8217;m sure that hundreds of hours of design and development time were spent making it look pretty.  When the reality is that functionality would have been more beneficial to all involved.</p>
<p>In the end, this is still the beginning of social spark, but I honestly had hoped for a little more after all the delays.  However, it&#8217;s a good foundation for making bloggers a good amount of money.  Especially with blog sponsorships.  Let&#8217;s just hope the market will pay well for those blog sponsorships.  They definitely can&#8217;t be missed by blog readers.<br />
<a href="http://socialspark.com/metrics/click/disclosure?slot_id=654&#038;url=http%3A%2F%2Fwww.socialspark.com" rel="nofollow"><img alt="Sponsored by SocialSpark" src="http://socialspark.com/metrics/view/post?slot_id=654&#038;url=http%3A%2F%2Fsocialspark.com%2Fuploads%2Fsocialspark%2Fpublic%2Fimages%2Fdisclosure_badges%2F526%2Fgray_disclosure_badge.jpg" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.crashutah.com/blog/juanchito/2008/04/23/social-spark-has-been-launched/feed/</wfw:commentRss>
		</item>
		<item>
		<title>eBay&#8217;s Subversive Plan to Save Money</title>
		<link>http://www.crashutah.com/blog/juanchito/2008/04/17/ebays-subversive-plan-to-save-money/</link>
		<comments>http://www.crashutah.com/blog/juanchito/2008/04/17/ebays-subversive-plan-to-save-money/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 02:59:42 +0000</pubDate>
		<dc:creator>Juanchito</dc:creator>
		
		<category><![CDATA[Technology]]></category>

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

		<category><![CDATA[eBay Partner Program]]></category>

		<guid isPermaLink="false">http://www.crashutah.com/blog/?p=535</guid>
		<description><![CDATA[Today I received an email from eBay&#8217;s affiliate program.  Basically they wanted to remind me that I needed to change all my ebay affiliate links to their new eBay Partner Network.  The following is pieces of the email and my personal commentary.
Dear John,
As you know, eBay’s new global platform, the eBay Partner Network, [...]]]></description>
			<content:encoded><![CDATA[<p>Today I received an email from eBay&#8217;s affiliate program.  Basically they wanted to remind me that I needed to change all my ebay affiliate links to their new eBay Partner Network.  The following is pieces of the email and my personal commentary.</p>
<blockquote><p>Dear John,<br />
As you know, eBay’s new global platform, the eBay Partner Network, went live on April 1st.  We have gotten a great amount of interest and response to the new network’s new creatives, new single global registration, and enhanced reporting capabilities!</p></blockquote>
<p>Note that eBay said they&#8217;ve gotten a lot of interest and response to this program.  They didn&#8217;t mention whether this was good or bad response.  My guess is most of it has been bad.</p>
<blockquote><p>As a reminder – please register now and plan to complete your migration to the eBay Partner Network by April 30th, 2008 as we anticipate access to parallel reporting to discontinue shortly thereafter.</p>
<p>Note that unless you migrate your links, you will stop receiving commissions from eBay sometime shortly after April 30th.</p></blockquote>
<p>This is really the core of this post.  eBay wants users to go in and change all of their eBay affiliate links over to a new system.  Sure, if you only have a few links this is not a big deal, but imagine if you have a few thousand links.  I only personally have a few hundred, but even that has me overwhelmed at the thought of having to update them.  I did some of them so long ago, that I&#8217;d have to try to remember what I was even linking to on eBay.</p>
<p>Basically a total pain and let&#8217;s be frank, hundreds of thousands of affiliate links won&#8217;t be changed because either the webmaster doesn&#8217;t get the notice, doesn&#8217;t care to change them, they don&#8217;t know where to find the links or they just have so many that they can&#8217;t change them all.  I see most affiliate members doing like myself and only converting the links that convert well.  The rest just aren&#8217;t worth the extra time to convert.</p>
<p>However, the real question is why should I have to convert them?  eBay should honor those links as mine.  It&#8217;s really a rather genius plan for eBay to be able to save a ton of affiliate money.  By telling everyone that they have to update all their links, eBay can stop paying affiliate payments on literally thousand of old links that people don&#8217;t update.</p>
<p>Is this fair?  Well, it doesn&#8217;t seem like eBay really cares.  I mean, eBay isn&#8217;t doing this to save money.  they&#8217;re doing it to provide better tools to their affiliates.  Yes, that is a byproduct of this change, but I can&#8217;t imagine that this huge cost savings wasn&#8217;t part of the strategy too.</p>
<blockquote><p>You can still receive an additional 5% bonus for all traffic tracked through eBay Partner Network in April 2008 (bonus applicable to traffic sent to Half.com and US, UK, Australia, Canada, Italy, India and Spain eBay sites).  The sooner you migrate, the more you’ll earn!  Just:<br />
•       Register at https://www.ebaypartnernetwork.com and confirm your registration via an e-mail you will receive<br />
•       Obtain your new links in the “tools” tab, then update your eBay links on your websites with the new code.  See our migration guide for more details: http://www.ebaypartnernetworkblog.com/english/ebay-partner-network-migration-guide/<br />
•       Enter your payment and tax information in the “accounts” tab</p></blockquote>
<p>See, you can even get a bonus for selling more eBay products.  I wonder how this 5% bonus will compare with the savings from old affiliate links.</p>
<blockquote><p>If you still have questions, we have several additional resources for you:</p>
<p>•       Check out our new blog (http://www.ebaypartnernetworkblog.com/), and specifically our step-by-step how to get started guide: http://www.ebaypartnernetworkblog.com/english/getting-started/</p>
<p>•       Take a look at our cool new video tutorials for help!  http://eyeview.vo.llnwd.net/o23/eBay/FullMode/Player/Player.html?Video=1&#038;Lang=EN.</p>
<p>•       Get help from our other users on our new Discussion Boards (http://forums.ebay.com/db2/forum.jspa?forumID=1000000047)</p>
<p>•       Or visit the HELP section of eBay Partner Network, where there are links in each topic where you can ask questions to our dedicated support team (note that you have to click on specific help topics to see the “Contact Us” link).</p></blockquote>
<p>At least they did offer a bunch of support options.  In fact, so many that it illustrates how overwhelming it is to switch.</p>
<blockquote><p>Thanks for being a valued partner.  We’re excited for a successful transition, and the opportunity to grow your business through even more innovation, information and communication moving forward!</p></blockquote>
<p>Thank you, but if you were a valued partner you&#8217;d figure out a way to have commission junction track our old affiliate links for a lot longer.  Shafting your &#8220;valued partners&#8221; with a whole bunch of work changing links is not a good way to thank your partners.  A nice big fat bonus check would be a better option.  Maybe that&#8217;s just me.</p>
<blockquote><p>Sincerely,<br />
eBay’s Affiliates Managers</p></blockquote>
<p>Cordially,<br />
Overworked Link Changer</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crashutah.com/blog/juanchito/2008/04/17/ebays-subversive-plan-to-save-money/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Windows XP Will Last Longer Than Troops in Iraq</title>
		<link>http://www.crashutah.com/blog/juanchito/2008/04/14/windows-xp-will-last-longer-than-troops-in-iraq/</link>
		<comments>http://www.crashutah.com/blog/juanchito/2008/04/14/windows-xp-will-last-longer-than-troops-in-iraq/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 07:19:31 +0000</pubDate>
		<dc:creator>Juanchito</dc:creator>
		
		<category><![CDATA[Technology]]></category>

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

		<category><![CDATA[windows xp]]></category>

		<category><![CDATA[windows xp oem]]></category>

		<guid isPermaLink="false">http://www.crashutah.com/blog/?p=534</guid>
		<description><![CDATA[I just read that the Windows XP OEM will end on June 30, 2008.  The fact of the matter is&#8230;I don&#8217;t really care.  No, I&#8217;m not a Mac or Linux fanboi (although they are both very nice and workable offerings).  I&#8217;m just not concerned, because Windows stopping the OEM license doesn&#8217;t mean [...]]]></description>
			<content:encoded><![CDATA[<p>I just <a href="http://www.livecrunch.com/2008/04/13/windows-xp-petition-windows-xpire/">read</a> that the Windows XP OEM will end on June 30, 2008.  The fact of the matter is&#8230;I don&#8217;t really care.  No, I&#8217;m not a Mac or Linux fanboi (although they are both very nice and workable offerings).  I&#8217;m just not concerned, because Windows stopping the OEM license doesn&#8217;t mean that XP isn&#8217;t going to be around for a long time to come.</p>
<p>I still have a friend who swears by Windows 2000.  Despite my personal dislike for Windows 2000, I&#8217;ve installed it on a few &#8220;throw away&#8221; laptops for my little sisters to use.  Windows 2000 hasn&#8217;t been offered for how long?  Eternity in tech terms.  However, I had no problem finding a CD and license to install it for my sisters.  Windows XP will be no different.</p>
<p><del datetime="2008-04-14T07:11:57+00:00">Until</del> If Vista can finally get things together, then it might catch on and start to take some share from XP.  If it doesn&#8217;t, then people will continue to use XP for the foreseeable future.  It won&#8217;t be that hard to find an XP install CD, legally or illegally.</p>
<p>So, all those worried about Vista and not wanting to switch from XP, stop it.  There&#8217;s nothing to worry about.  Go back to worrying about getting the US troops back from Iraq, because that&#8217;s going to happen before Windows XP stops being the main O/S people use.</p>
<p>Update: This post on <a href="http://www.techcrunch.com/2008/04/11/gartner-says-vista-will-collapse-and-thats-why-the-yahoo-deal-must-happen/">Techcrunch</a> made me think about how much the O/S matters.  It&#8217;s true that a lot of things can be done with a web browser.  Certainly gives pause for thought, but realistically corporations have thousands of products that run clients on Windows O/S.  The majority of people use the web browser, Office Documents (which the web still hasn&#8217;t completely replaced), and at least one other major application to do their job (and many more than one application).  Microsoft will still be dominate on desktops for a while.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crashutah.com/blog/juanchito/2008/04/14/windows-xp-will-last-longer-than-troops-in-iraq/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
