<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jason T Bedell &#187; Wordpress</title>
	<atom:link href="http://jasontbedell.com/tag/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://jasontbedell.com</link>
	<description>Making Connections for Learning</description>
	<lastBuildDate>Fri, 13 Apr 2012 11:32:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to Authenticate Users From Moodle Into WordPress MU</title>
		<link>http://jasontbedell.com/how-to-authenticate-users-from-moodle-into-wordpress-mu</link>
		<comments>http://jasontbedell.com/how-to-authenticate-users-from-moodle-into-wordpress-mu#comments</comments>
		<pubDate>Mon, 19 Apr 2010 16:20:42 +0000</pubDate>
		<dc:creator>Jason Bedell</dc:creator>
				<category><![CDATA[Ed Tech Consulting]]></category>
		<category><![CDATA[Teacher Librarian]]></category>
		<category><![CDATA[Moodle]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WPMU]]></category>

		<guid isPermaLink="false">http://jasontbedell.com/?p=375</guid>
		<description><![CDATA[<p id="top" />Introduction</p> <p>As I was exploring which social networks to use next year, I tried out WordPress MU with Buddypress to complement Moodle, my course management system, on the advice of Christopher Rogers. Another teacher, Colin Matheson, and I both wanted to implement this but we also required a single-sign on, if possible, <span style="color:#777"> . . . &#8594; Read More: <a href="http://jasontbedell.com/how-to-authenticate-users-from-moodle-into-wordpress-mu">How to Authenticate Users From Moodle Into WordPress MU</a></span>]]></description>
			<content:encoded><![CDATA[<p id="top" /><strong>Introduction</strong></p>
<p>As I was exploring which social networks to use next year, I tried out WordPress MU with Buddypress to complement Moodle, my course management system, on the advice of <a href="http://twitter.com/MrR0g3rs">Christopher Rogers</a>. Another teacher, <a href="http://twitter.com/cytochromec">Colin Matheson</a>, and I both wanted to implement this but we also required a single-sign on, if possible, between the two so that we could have an easier time managing users and it would be less that the kids have to remember. After much research and experimenting, I figured out a solution that works for me. It may or may not work for your particular requirements.</p>
<p>What I was able to do is relatively simple. I set it so that I create student accounts in Moodle and disabled user registration. This will keep the course to only my students. When student accounts are created in Moodle, identical accounts are created in WPMU. Students accounts in WPMU are created as subscribers and they can then choose what to call their blogs in WPMU. Creating an account does not create an account in WPMU because I want students to be able to make a blog at <a href="http://blogs.jasontbedell.com/%5btitle">http://blogs.jasontbedell.com/[title</a>] as opposed to <a href="http://blogs.jasontbedell.com/%5bStudentName">http://blogs.jasontbedell.com/[StudentName</a>]. Account information is only editable in Moodle. I currently take the first name, last name, email, username, password, and description from Moodle and import it immediately into WPMU. It is not a true single-sign on since students have to sign on to both separately. I simply use the Moodle database and only create users there.</p>
<p><strong>Step 1</strong></p>
<p>You need to mirror your WordPress administrator account on Moodle because WPMU will not look at it’s own accounts once we’re done. So, if your WPMU username is <strong>Administrator</strong> and your password is <strong>securepassword</strong>, you nee to setup an administrator account on Moodle with the same credentials.</p>
<p><strong>Step 2</strong></p>
<p>You need either direct server access or ftp access to your Moodle installation. I use Filezilla on Windows and Linux. Cyberduck works great on Mac. Whatever you use, go to the main folder of your Moodle installation. Download or edit your config.php. Write down the following fields:</p>
<ul>
<li>dbhost      =</li>
<li>dbname      =</li>
<li>dbuser      =</li>
<li>dbpass      =</li>
</ul>
<p>You will need those fields for WPMU to gain access to Moodle’s database.</p>
<p>While you are in config.php, you need to turn off password salting. This is somewhat risky because you are removing an extra security layer, but I believe it should not be issue. There are 3 lines you need to edit. Find the line that begins with <strong>passwordsaltmain</strong>. There will be a very long, random text string. You need to edit out this line.</p>
<p>Beginning:</p>
<p>$CFG-&gt;passwordsaltmain = &#8216;xl&amp;JnOK,~56tgdfyytd6/hhT.)u7uH,&#8217;;</p>
<p>End</p>
<p>/*</p>
<p>$CFG-&gt;passwordsaltmain = &#8216;xl&amp;JnOK,~56tgdfyytd6/hhT.)u7uH,&#8217;;</p>
<p>*/</p>
<p>Now, you need to put that text sting in <strong>passwordsaltalt1</strong> which should be the next line and make a new line called <strong>passwordsaltmain</strong> (Remember, you are editing php code. By adding */ and */ around a line, you basically make it invisible.) and leave it empty. So, the code should look like this in the end.</p>
<ul>
<li>*/</li>
<li>$CFG-&gt;passwordsaltmain = &#8216;xl&amp;JnOK,~E;&amp;SRi8NzpgHT.)uj0H,&#8217;;</li>
<li>*/</li>
<li>$CFG-&gt;passwordsaltalt1 = &#8216;xl&amp;JnOK,~E;&amp;SRi8NzpgHT.)uj0H,&#8217;;</li>
<li>$CFG-&gt;passwordsaltmain = &#8221;;</li>
</ul>
<p>Save your config.php and upload it to your Moodle server.</p>
<p><strong>Step 3</strong></p>
<p><strong> </strong>It is best if you are starting with clean installations of Moodle and WPMU because this step will take less work. Go to you PHPMyAdmin. If you are using a database other than MySQL, it will be slightly different. Go to the user table in your Moodle database, probably mdl_user. You need to take your administrator password, go to <a href="http://www.miraclesalad.com/webtools/md5.php">this website</a>, and run it through their MD5 hash generator. Take the output and put it in place of the password field of the administrator account in the database. This will make sense in a few steps.</p>
<p><strong>Step 4</strong></p>
<p>We are done with Moodle for now. Log into your WordPress or WPMU installation. You need to install a plugin called External DB authentication.There’s more information here: <a href="http://www.ploofle.com/tag/ext_db_auth/">http://www.ploofle.com/tag/ext_db_auth/</a>. Download, install, and activate the plugin.</p>
<p><strong>Step 5</strong></p>
<p>Under Settings on the WPMU administration page, go to External DB Settings. You should have all the info you need written down. For the External Database source fields, you should be able to get all of them from PHPMyAdmin. Make sure you choose MD5 as the password encryption method. What I used was:</p>
<p><a href="http://jasontbedell.com/wp-content/uploads/2010/04/db.png"><img class="aligncenter size-full wp-image-376" title="db" src="http://jasontbedell.com/wp-content/uploads/2010/04/db.png" alt="" width="438" height="584" /></a></p>
<p><strong>Final Thoughts</strong></p>
<p>This works well for me. I would like to get password salting working again. There is an option to use other for the password encryption and provide php code. We need to set $password2. $password2 = $password ; was in as an example. I thought that the following code would work.</p>
<ul>
<li>$password2      = md5($password);</li>
<li>$salt      = &#8216;xl&amp;JnOK,~E;&amp;SRi8NzpgHT.)uj0H,&#8217;;</li>
<li>echo      $password2;</li>
<li>echo      $salt;</li>
</ul>
<p>I also tried it without the echo statements to no avail. I get odd errors on the page about unexpected “=” on line 1. I would love some help if anyone has any ideas. Thank you.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjasontbedell.com%2Fhow-to-authenticate-users-from-moodle-into-wordpress-mu&amp;title=How%20to%20Authenticate%20Users%20From%20Moodle%20Into%20WordPress%20MU" id="wpa2a_2"><img src="http://jasontbedell.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jasontbedell.com/how-to-authenticate-users-from-moodle-into-wordpress-mu/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Tutorials Are Now Live</title>
		<link>http://jasontbedell.com/tutorials-are-now-live</link>
		<comments>http://jasontbedell.com/tutorials-are-now-live#comments</comments>
		<pubDate>Tue, 08 Dec 2009 18:29:36 +0000</pubDate>
		<dc:creator>Jason Bedell</dc:creator>
				<category><![CDATA[Ed Tech Consulting]]></category>
		<category><![CDATA[Teacher Librarian]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Edublogs]]></category>
		<category><![CDATA[Open-source]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://jasontbedell.com/?p=142</guid>
		<description><![CDATA[<p id="top" />The tutorials are now live with the completion of my first series on how to setup and use Edublogs. There are designed to be short (under 5 minutes) clips to help the normal teacher get acclimated with technical applications that can aid in teaching. The first series on Edublogs goes over how <span style="color:#777"> . . . &#8594; Read More: <a href="http://jasontbedell.com/tutorials-are-now-live">Tutorials Are Now Live</a></span>]]></description>
			<content:encoded><![CDATA[<p id="top" />The tutorials are now live with the completion of my first series on how to setup and use Edublogs. There are designed to be short (under 5 minutes) clips to help the normal teacher get acclimated with technical applications that can aid in teaching. The first series on Edublogs goes over how to set it up and maintain from the very beginning through some of the more advanced settings. I will be adding more tutorial series and if you have something you would like to see, please let me know in the comments. There is also a tutorial on ZoomIt, a magnifying tool for Windows.<br />
<strong>Edublogs</strong><br />
This series goes through how to setup and run a blog, from registering and setting up a blog through adding content and modifying settings. The series is designed about <a href="http://edublogs.org">Edublogs</a>, but also works on <a href="http://wordpress.com">WordPress</a> as Edublogs is built on WordPress, which is open-source.</p>
<p><a href="http://vimeo.com/8057369">Edublogs &#8211; Introduction</a><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=8057369&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="400" height="300" src="http://vimeo.com/moogaloop.swf?clip_id=8057369&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object><br />
<a href="http://vimeo.com/8057785">Edublogs -Dashboard Introduction</a><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=8057785&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="400" height="300" src="http://vimeo.com/moogaloop.swf?clip_id=8057785&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a href="http://vimeo.com/8057990">Edublogs &#8211; Adding and Editing Posts</a><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=8057990&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="400" height="300" src="http://vimeo.com/moogaloop.swf?clip_id=8057990&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a href="http://vimeo.com/8058122">Edublogs &#8211; Modifying Appearance and Widgets</a><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=8058122&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="400" height="300" src="http://vimeo.com/moogaloop.swf?clip_id=8058122&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object><br />
<a href="http://vimeo.com/8058319"> Edublogs &#8211; Customizing Settings</a><br />
<br />
<object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=8058319&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=8058319&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjasontbedell.com%2Ftutorials-are-now-live&amp;title=Tutorials%20Are%20Now%20Live" id="wpa2a_4"><img src="http://jasontbedell.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jasontbedell.com/tutorials-are-now-live/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogging &#8211; Should You Jump In?</title>
		<link>http://jasontbedell.com/blogging-should-you-jump-in</link>
		<comments>http://jasontbedell.com/blogging-should-you-jump-in#comments</comments>
		<pubDate>Fri, 04 Dec 2009 18:18:43 +0000</pubDate>
		<dc:creator>Jason Bedell</dc:creator>
				<category><![CDATA[Ed Tech Consulting]]></category>
		<category><![CDATA[Teacher Librarian]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Collaboration]]></category>
		<category><![CDATA[Edublogs]]></category>
		<category><![CDATA[Open-source]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://jasontbedell.com/?p=122</guid>
		<description><![CDATA[<p id="top" /></p> <p style="margin-bottom: 0in;">A blog is is web lingo for a web log, or online journal. Judging by the media, blogging has been overtaken by microblogging, such as brief status updates in Twitter or Facebook. However, judging by the number of quality blogs that I read daily and that I know of, <span style="color:#777"> . . . &#8594; Read More: <a href="http://jasontbedell.com/blogging-should-you-jump-in">Blogging &#8211; Should You Jump In?</a></span>]]></description>
			<content:encoded><![CDATA[<p id="top" /><!-- 		<a rel="nofollow" target="_blank" href="http://twitter.com/page">@page</a>{ margin: 0.79in } 		P { margin-bottom: 0.08in } 		A:link { so-language: zxx } --></p>
<p style="margin-bottom: 0in;">A blog is is web lingo for a web log, or online journal. Judging by the media, blogging has been overtaken by microblogging, such as brief status updates in <a href="http://twitter.com/">Twitter</a> or <a href="http://facebook.com/">Facebook</a>. However, judging by the number of quality blogs that I read daily and that I know of, I do not believe that to be the case. For example, almost all of the teachers that I follow in Twitter also have a blog. Most are excellent. I find blogging to be both an excellent creative outlet and a teaching tool. This post will hopefully convince you to find some blogs to read regularly (if you aren&#8217;t already doing so), and possibly start your own, either a class blog, a professional blog, or a personal blog. If you do decide to create a blog, let me know if the comments and I&#8217;ll add you to my <a href="http://www.google.com/reader">Google Reader</a>.</p>
<p style="margin-bottom: 0in;"><strong>Why should you use a blog as a teacher?</strong></p>
<p style="margin-bottom: 0in; font-weight: normal;">Teaching is one of the most time-intensive jobs on the planet. Combining that with meager salaries sometimes leaves teachers feeling like there isn&#8217;t time or motivation to add <em>something else</em><span style="font-style: normal;"> to an already overflowing plate. However, blogging is not just 1 more thing that we have to do. Blogging is both fun and rewarding. As I was discussing on Twitter with <a href="http://www.twitter.com/lasic">@lasic</a> a few weeks ago, writing helps you to figure out what you really think and blogging helps you to write responsibly and articulate your feelings properly. It is both fruitful and rewarding to use blogging as a reflective tool; it is good professional practice and can help you to see what worked well and what needs more fine tuning. </span></p>
<p style="margin-bottom: 0in; font-weight: normal;"><span style="font-style: normal;"> In addition, teachers as a whole are very giving. While there are those who hoard their ideas so that they can be the only “smart” teachers around, I find that most teachers are more than willing to share. Blogging is a way to give back to the teaching community. We all have successes and failures; both we and others can learn from both. When you publish something online, it is there permanently as a testament to what you have done. You open yourself up to critique and relationship with a gigantic potential audience. My highest volume day is 47 unique people. My average is between 0 and 10. Anyone that I can help or reach through the blog is someone that I most likely would not have been able to otherwise. People have actually looked at this blog from as far away as Germany, Saudi Arabia, and Australia (look on the left side of this page for a map of this blog&#8217;s visitors). It sounds less impressive when I say that it is only 1 person from each of those countries, but these are still people who I would not otherwise have been able to communicate with otherwise; I feel honored when someone takes time out of his or her day to see what I think about something. It is both humbling and encouraging. </span></p>
<p style="margin-bottom: 0in; font-weight: normal;"><span style="font-style: normal;"><strong>Why should you use a blog with your class?</strong></span></p>
<p style="margin-bottom: 0in; font-weight: normal;"><span style="font-style: normal;"> Blogging with your class is a great way to increase communication, productivity, moral, and student accountability. I consider having a class blog as about halfway between not having a website and having a full blown course management system, such as Moodle or Blackboard (these let you supplement your existing physical class with an online course component).</span></p>
<p style="margin-bottom: 0in; font-weight: normal;"><span style="font-style: normal;"> There are a number of ways you can approach a class blog. A teacher this year decided to replace his journals with a class blog. He posts the questions or prompts weekly and has the students respond and reply to each other. The mere fact of having a potential audience of both peers and anyone on the Internet will often cause students to spend more time on their work and take greater pride in it. Having other students respond or politely offer constructive criticism can improve the sense of community in the classroom. Students need to realize that the lack of a physical presence does not imply lack of normal boundaries, but you just train students early and reinforce as needed. I have used discussion forums online and various online publishing tools with all of my classes and never had a major problem.</span></p>
<p style="margin-bottom: 0in; font-weight: normal;"><span style="font-style: normal;"> You can also allow the students to write some or all of the main entries that are published on the front page. This gives the students more creative control and shows the students that you have confidence in them, both in their ability and their judgment. I have seen this model work well, but it does take a lot of forethought about the policies that will govern the blog and the procedure that you use to get the students from idea to publishing. Do you assign ideas or give them liberty to do so? Do you have to approve the final draft before they publish or no? Can they change the blog&#8217;s settings, such as layout or theme, or is that your decision? There is no right and wrong to these questions; it is simply preference and what you believe would work best with your students.</span></p>
<p style="margin-bottom: 0in;"><strong><span style="font-style: normal;">How do I get started?</span></strong></p>
<p style="margin-bottom: 0in;"><span style="font-style: normal;"><span style="font-weight: normal;"> First, you should definitely go to <a href="http://google.com/reader">http://google.com/reader</a>. You will need a free Google account if you do not have one already. Google Reader is an online RSS reader. What is does is take all of the blogs that you read and puts them in one place. I read between 20-30 blogs on a daily basis. I probably needs to trim it down some because it gets out of hand quickly if I don&#8217;t keep up with them. When you find a site that you like, you just put the URL in where it says </span></span><span style="font-style: normal;"><strong>Add a Subcription</strong></span><span style="font-style: normal;"><span style="font-weight: normal;">. It will from then on take every post that the website publishes and brings it to your Google Reader for you to read. Here is a screenshot on the education blogs that I follow with my Google Reader (Yours don&#8217;t have to be alphabetized – I&#8217;m a librarian so I can&#8217;t help it).</span></span></p>
<p style="margin-bottom: 0in;"><img class="alignnone size-full wp-image-124" title="reader" src="http://jasontbedell.com/wp-content/uploads/2009/12/reader1.png" alt="reader" width="758" height="437" /></p>
<p style="margin-bottom: 0in;"><span style="font-style: normal;"><span style="font-weight: normal;"> There are numerous free online applications that will let you have your own blog for free. This blog is based on WordPress, which is easy to use, powerful, and open-source. The following are some popular sites that let you run a free blog:</span></span></p>
<ul>
<li>
<p style="margin-bottom: 0in;"><span style="font-style: normal;"><span style="font-weight: normal;"><a href="http://wordpress.org/">WordPress</a> – This is both simple to use and powerful if you want more 	advanced features.</span></span></p>
</li>
<li>
<p style="margin-bottom: 0in;"><span style="font-style: normal;"><span style="font-weight: normal;"><a href="http://edublogs.org/">Edublogs</a> – Edublogs is based on WordPress but designed for teachers so even 	the most restrictive school firewalls should let you have access.</span></span></p>
</li>
<li>
<p style="margin-bottom: 0in;"><span style="font-style: normal;"><span style="font-weight: normal;"><a href="http://blogger.com/">Blogger</a> – Blogger is Google&#8217;s blogging platform and you can start one 	without having to create another account if you already have a 	Google account.</span></span></p>
</li>
</ul>
<p style="margin-bottom: 0in;"><span style="font-style: normal;"><span style="font-weight: normal;"> What has your experience with blogs been? Please leave your story, questions, or concerns in the comments.</span></span></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjasontbedell.com%2Fblogging-should-you-jump-in&amp;title=Blogging%20%26%238211%3B%20Should%20You%20Jump%20In%3F" id="wpa2a_6"><img src="http://jasontbedell.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jasontbedell.com/blogging-should-you-jump-in/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

