<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Socializing the Network</title>
	<atom:link href="http://markpea.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://markpea.wordpress.com</link>
	<description>discussing the way forward for Social Networking at Earlham</description>
	<lastBuildDate>Tue, 01 Nov 2011 17:00:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='markpea.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Socializing the Network</title>
		<link>http://markpea.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://markpea.wordpress.com/osd.xml" title="Socializing the Network" />
	<atom:link rel='hub' href='http://markpea.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Running WordPress Multisite with MAMP</title>
		<link>http://markpea.wordpress.com/2011/11/01/running-wordpress-multisite-with-mamp/</link>
		<comments>http://markpea.wordpress.com/2011/11/01/running-wordpress-multisite-with-mamp/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 16:54:57 +0000</pubDate>
		<dc:creator>Mark Pearson</dc:creator>
				<category><![CDATA[Odds'n'sods]]></category>
		<category><![CDATA[MAMP]]></category>
		<category><![CDATA[WP MU]]></category>

		<guid isPermaLink="false">http://markpea.wordpress.com/?p=234</guid>
		<description><![CDATA[Inspired by Migrating WordPress to a New Server on the WPMU.org blog I decided to attempt to move my WP-BP test install from sergius to a MAMP install on my MacBook Pro (OS-X 10.6.8). Using these resources: Moving WordPress to a new domain or server Running WordPress locally on Mac OS X Lion Installing WordPress [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markpea.wordpress.com&amp;blog=681983&amp;post=234&amp;subd=markpea&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Inspired by <a title="External link to http://wpmu.org/migrating-wordpress-to-a-new-server/" href="http://wpmu.org/migrating-wordpress-to-a-new-server/" target="_blank">Migrating WordPress to a New Server</a> on the WPMU.org blog I decided to attempt to move my WP-BP test install from <em>sergius</em> to a MAMP install on my MacBook Pro (OS-X 10.6.8). Using these resources:</p>
<ul>
<li><a title="External link to http://sltaylor.co.uk/blog/moving-wordpress-new-domain-server/" href="http://sltaylor.co.uk/blog/moving-wordpress-new-domain-server/" target="_blank">Moving WordPress to a new domain or server</a></li>
<li><a title="External link to http://soderlind.no/archives/2011/08/26/running-wordpress-locally-on-mac-os-x-lion/#more-1810" href="http://soderlind.no/archives/2011/08/26/running-wordpress-locally-on-mac-os-x-lion/#more-1810" target="_blank">Running WordPress locally on Mac OS X Lion</a></li>
<li><a title="External link to http://espositosmusings.wordpress.com/2010/07/28/installing-wordpress-multisite-with-mamp-on-os-x/" href="http://espositosmusings.wordpress.com/2010/07/28/installing-wordpress-multisite-with-mamp-on-os-x/" target="_blank">Installing WordPress Multisite with MAMP on OS X</a></li>
</ul>
<p>especially the last one, as a guide.<br />
I <a title="hide saved the database and code">saved the database and code</a></p>
<div>
<blockquote><p><code>$ mysqldump testbp -u testbp_user -p &gt;testbp-wordpressdb.sql</code><br />
Now save the code:<br />
<code>$ tar -cvzf ~/archives/sabb2011/test-bp-code.tgz test-bp/</code></p></blockquote>
</div>
<p>and copy/ftp to new server location. But where was this to be? All the spiel assumes that WP is the only application that you operate in the domain and so they always show dumping the code into the main public_html directory. But I want to run moodle etc as well, so I&#8217;m putting it in a subdirectory of <code>htdocs</code> which is the root documents dir for MAMP. The full location for the document root will be <code>/Applications/MAMP/htdocs/test-bp</code><br />
Having setup MAMP which is quite straightforward you want to reset the Apache port to 80.</p>
<dl>
<dt>Note:</dt>
<dd>Make sure that Web Sharing is off — System preferences : Sharing : uncheck Web Sharing service</dd>
</dl>
<p>Having copied and untarred the code into the chosen root directory and created the database with user, there are three configuration files that now need to be modified.</p>
<h2>Configuration Files to modify</h2>
<ol>
<li><strong>Hosts</strong>. WordPress (and we&#8217;re talking multisite here) wants to run directly from a top level domain. So, unlike moodle which can run quite happily from something like <em> domain.org/~markpea/test-moodle-site/1 </em> wordpress wants to have the whole domain to itself with <em> wordpress-test.domain.org </em>. So, since we&#8217;re working on a testing system with no real external users we can make up a domain and use that. But how to direct the made up domain name to our local system? Answer: use the old fashioned <em>hosts</em> file located in <code>/private/etc/hosts</code> and associate your made up name with <em>localhost</em>. <a title="hide Here's what I did">Here&#8217;s what I did</a>
<div>
<blockquote>
<pre>127.0.0.1	localhost bptest.flyingnematode.org</pre>
</blockquote>
</div>
<p>. Having edited this (you&#8217;ll need to use <code>$sudo vim hosts</code> to circumvent hostile permissions) flush the DNS cache with <code>$ dscacheutil -flushcache</code>.</li>
<li><strong>VHOST</strong> — virtual host. Having redirected the domain to the <em>localhost</em> the web server process — Apache — has to be informed where to direct the name next. This is done by mean of <em>virtual host directives</em> which are run indirectly from the Apache configuration file <em>httpd.conf</em>. In MAMP (and also FreeBSD but Linux works slightly differently) user configurable vhost directives are located in <code>MAMP/conf/apache/extra/httpd-vhosts.conf</code>. I merely copied the vhost directives I use on my sandbox and adjusted the paths to suit. <a title="hide Example vhost">Example vhost</a>
<div>
<blockquote>
<pre>&lt;VirtualHost *:80&gt;
        ServerName bptest.flyingnematode.org
        ServerAdmin markpea@myemailaddress.com
        DocumentRoot "/Applications/MAMP/htdocs/test-bp"
        DirectoryIndex index.html index.php
        ErrorLog "/Applications/MAMP/logs/test-bp_apache_error.log"
        CustomLog "/Applications/MAMP/logs/test-bp_apache_access.log"
combined
       &lt;Directory /Applications/MAMP/htdocs/test-bp&gt;
                 AllowOverride FileInfo Options
       &lt;/Directory&gt;
&lt;/VirtualHost&gt;</pre>
<p>Explanation:</p>
<ol>
<li>ServerName should exactly match what you used in the <em>hosts</em> file</li>
<li>DocumentRoot is the full path to where the code is located</li>
<li>Logs can be customized for this particular WP install. This is nice because you can have different logs for different installs.</li>
<li>My understanding of the <em>AllowOverride</em> option is that it allows <em>.htaccess</em> files to operate in the given directory. Although this is set as default on the MAMP system it&#8217;s well to include just in case</li>
</ol>
</blockquote>
</div>
<p>The final stage is to enable the vhost processing to operate (it&#8217;s commented out by default). Just edit the <code><code>MAMP/conf/apache/</code>httpd.conf</code> to remove the comment marker <a title="hide as follows">as follows</a></p>
<div>
<blockquote>
<pre># Virtual hosts
Include /Applications/MAMP/conf/apache/extra/httpd-vhosts.conf</pre>
</blockquote>
</div>
<p>Obviously, having edited these files you need to restart Apache which can be done either with <code>sudo apachectl restart</code> on the command line or use the OS-X MAMP app to stop and start the Apache &amp; MySQL servers.</li>
<li><strong>create a new database</strong>. At this point for simplicity&#8217;s sake I decided <strong>not</strong> to use the existing database but to start from scratch using the command <code>mysql -u root -p</code> (obviously I&#8217;ve already reset the root password!) to create a <a title="hide new database">new database</a>
<div>
<blockquote>
<pre>mysql&gt; CREATE DATABASE testbp DEFAULT CHARACTER SET utf8
COLLATE utf8_unicode_ci;
mysql&gt; GRANT ALL PRIVILEGES ON testbp.* TO &lt;username&gt;@localhost
IDENTIFIED BY '***********';
mysql&gt; FLUSH PRIVILEGES;</pre>
</blockquote>
</div>
</li>
<li>
<div>
<blockquote><p>Where <em>testbp</em> is the arbitrary database name you choose, <em>&lt;username&gt;</em> is the name you choose to operate the database (obviously leave out the <code>&lt;</code> and <code>&gt;</code>) and <em>&#8216;****&#8217;</em> it&#8217;s password.</p></blockquote>
</div>
</li>
<li><strong>wp-config.php</strong>. So now we&#8217;ve configured the web server Apache to look in the right place and hook to <em>index.php</em> and the final piece of the puzzle is configuring the wordpress system itself using the <code>wp-config.php</code> file. In wp-config.php configure the database name, user, password using the parameters from the create database stage and the hostname has to be &#8216;localhost&#8217; and make sure to configure <a title="hide charset and collate">charset and collate</a>
<div>
<blockquote>
<pre>/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', 'utf8_unicode_ci');</pre>
</blockquote>
</div>
<p>as well. Configuring multisite is not intuitive however. You have to add the following directive just before the end o the file : <code>define('WP_ALLOW_MULTISITE', true);</code> and then <strong>save but don&#8217;t quit</strong>. Now start up your WP with the domain URL you used (mine was <code>bptest.flyingnematode.org</code>) and it&#8217;ll ask you to configure an admin username and password. <em>Write this down somewhere</em>. You now logout and then log in with the admin username / password combo you&#8217;ve just forgotten! Click on Tools : Network Setup (or it might be Settings : Network Setup) and here you&#8217;ll find code to add to the <em>wp-config.php</em> file and <em>.htaccess</em>. Do this while the WP is still running (command line editing with <em>vim</em> makes this so much easier), save wp-config and .htaccess and logout of WP. Now when you login as admin again you&#8217;ll see <em>&#8216;Howdy admin&#8217;</em> at the top right and pulling this down will reveal either <em>Site Admin</em> or <em>Network Admin</em> screens. Yea — it works!</li>
</ol>
<p>Actually, you&#8217;ve edited five files, but there you are.</p>
<h2>But I really want to use my current database and code</h2>
<p>Here&#8217;s what to do, but as yet it is untested by me.<br />
Unfortunately (unlike moodle again) the WP domain use for the site is hard coded into the database records. What this means is that if you want to move the site to a different domain (yes) we&#8217;re going to have to change that hard coded URL. This is actually quite straightforward using the command line (in fact on a Unix system everything turns out to be more straightforward this way). So we&#8217;re going to edit the dumped database sql code, create the new database with the <em>same settings (name, username, password) as before</em> (for ease of operation only) and then use the <em>same wp-config.php</em> file.</p>
<ol>
<li><a title="hide Fix the exported database">Fix the exported database</a>
<div>
<blockquote>
<pre>$ sed -e 's;blogs.sergius.earlham.edu;bptest.flyingnematode.org;g'
testbp-wordpressdb.sql &gt;testbp-wordpressdb-fix.sql</pre>
<p>This uses the stream edit <em>sed</em> to to do a global substitute <code>s; .... ;g</code> of the old domain name <em>blogs.sergius.earlham.edu</em> for the new domain name <em>bptest.flyingnematode.org</em> from the exported database <em>testbp-wordpressdb.sql</em> and outputting to the fixed db <em>testbp-wordpressdb-fix.sql</em></p></blockquote>
</div>
</li>
<li>Create a fresh database as above (use existing name, username, etc)</li>
<li><a title="hide Import the fixed database">Import the fixed database</a>
<div>
<blockquote>
<pre>$ /Applications/MAMP/Library/bin/mysql -u &lt;username&gt; -p -D testbp
&lt;testbp-wordpressdb-fix.sql</pre>
<p>Where <em>&lt;username&gt;</em> is the username you have created the database with above and <em>testbp</em> is the newly created database name. You will be prompted for the database user password.</p></blockquote>
</div>
</li>
</ol>
<p>Now, having untarred the code into a suitable directory, configure <em>hosts</em> and VHOST as above with the appropriate directory location and configure your <em>wp-config.php</em> file accordingly. Keep the current multisite directives and if the paths match, you should be good to go. I have not tested this yet so I&#8217;m not sure of it&#8217;s outcome.</p>
<h2>Problems</h2>
<ul>
<li>Check paths in <em>hosts</em> and <em>httpd-vhosts.conf</em>. Make sure that <em>httpd.conf</em> is calling the vhosts. Check permissions. On MAMP Apache runs as the local user so ownership should not be an issue (normally it runs as user &#8216;www&#8217; or &#8216;nobody&#8217;).</li>
<li>Check for consistency between <em>wp-config.php</em> and the database setup paramters you used (you did write these down?)</li>
<li>The error log and custom log that you specified in <em>httpd-vhosts.conf</em> which should be located in <em> /Applications/MAMP/logs </em> can often throw a lot of light on why things are pear shaped. Use <code>tail -20 &lt;log file name&gt;</code> to examine.</li>
</ul>
<p>Hope this helps someone &#8230;&#8230;&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/markpea.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/markpea.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/markpea.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/markpea.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/markpea.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/markpea.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/markpea.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/markpea.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/markpea.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/markpea.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/markpea.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/markpea.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/markpea.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/markpea.wordpress.com/234/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markpea.wordpress.com&amp;blog=681983&amp;post=234&amp;subd=markpea&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://markpea.wordpress.com/2011/11/01/running-wordpress-multisite-with-mamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ff71544ea8e3f5e92e4241af447b80d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">markpea</media:title>
		</media:content>
	</item>
		<item>
		<title>Displaying video media</title>
		<link>http://markpea.wordpress.com/2011/02/04/displaying-video-media/</link>
		<comments>http://markpea.wordpress.com/2011/02/04/displaying-video-media/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 20:41:50 +0000</pubDate>
		<dc:creator>Mark Pearson</dc:creator>
				<category><![CDATA[pedagogy]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://markpea.wordpress.com/?p=229</guid>
		<description><![CDATA[When we open up a blog site or wiki or whatever it&#8217;s nice to see all the media there and ready to go, right? Not necessarily. The problem is that when the player is set to &#8216;automatic play&#8217; it&#8217;ll load in the media file as soon as the page is opened. As an example, here&#8217;s [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markpea.wordpress.com&amp;blog=681983&amp;post=229&amp;subd=markpea&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When we open up a blog site or wiki or whatever it&#8217;s nice to see all the media there and ready to go, right? Not necessarily. The problem is that when the player is set to &#8216;automatic play&#8217; it&#8217;ll load in the media file as soon as the page is opened. As an example, here&#8217;s a latest Moodle blog entry from my Choral  Conducting class:</p>
<div id="attachment_227" class="wp-caption aligncenter" style="width: 356px"><a href="http://markpea.files.wordpress.com/2011/02/mus350-blogvideo-small.png"><img class="size-full wp-image-227" title="mus350-blogvideo-small" src="http://markpea.files.wordpress.com/2011/02/mus350-blogvideo-small.png?w=346&#038;h=348" alt="Choral Conducting blog video entry" width="346" height="348" /></a><p class="wp-caption-text">Choral Conducting blog video entry</p></div>
<p>The &#8216;track&#8217; in the player is grey because it has fully loaded the video. And every video clip gets loaded in the same way as soon as the displaying page opens. Which means that you cannot do anything until all the players have cached their content. Not so bad on campus with a wired connection; a pain in the botty department at home via a DSL internet connection. Here&#8217;s an expanded view of the same page (which had 7 video clips on it) (click to see full size):</p>
<div id="attachment_228" class="wp-caption aligncenter" style="width: 142px"><a href="http://markpea.files.wordpress.com/2011/02/mus350-blogvideo-large.png"><img class="size-medium wp-image-228" title="mus350-blogvideo-large" src="http://markpea.files.wordpress.com/2011/02/mus350-blogvideo-large.png?w=132&#038;h=300" alt="Choral Conducting blog video entry -- 3 videos" width="132" height="300" /></a><p class="wp-caption-text">Choral Conducting blog video entry -- 3 videos</p></div>
<p>So, adding videos as blog postings evidently doesn&#8217;t scale up very well since they all get displayed on the same page. I&#8217;m not sure how many entries are displayed by the OUBlog before it paginates but there is no setting to change this. Now to come up with a workable alternative.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/markpea.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/markpea.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/markpea.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/markpea.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/markpea.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/markpea.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/markpea.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/markpea.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/markpea.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/markpea.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/markpea.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/markpea.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/markpea.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/markpea.wordpress.com/229/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markpea.wordpress.com&amp;blog=681983&amp;post=229&amp;subd=markpea&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://markpea.wordpress.com/2011/02/04/displaying-video-media/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ff71544ea8e3f5e92e4241af447b80d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">markpea</media:title>
		</media:content>

		<media:content url="http://markpea.files.wordpress.com/2011/02/mus350-blogvideo-small.png" medium="image">
			<media:title type="html">mus350-blogvideo-small</media:title>
		</media:content>

		<media:content url="http://markpea.files.wordpress.com/2011/02/mus350-blogvideo-large.png?w=132" medium="image">
			<media:title type="html">mus350-blogvideo-large</media:title>
		</media:content>
	</item>
		<item>
		<title>Online, offline, classroom</title>
		<link>http://markpea.wordpress.com/2011/02/04/online-offline-classroom/</link>
		<comments>http://markpea.wordpress.com/2011/02/04/online-offline-classroom/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 16:37:16 +0000</pubDate>
		<dc:creator>Mark Pearson</dc:creator>
				<category><![CDATA[pedagogy]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://markpea.wordpress.com/?p=222</guid>
		<description><![CDATA[This posting may seem to be a little off subject but I think it&#8217;s germane in the long run. This Spring semester of newly minted year 2011 I&#8217;m auditing a class called &#8216;Choral Conducting&#8217; with Dan Graves (who also happens to be a good cycling buddy). It&#8217;s at 8am Monday, Wednesday, &#38; Friday and initially [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markpea.wordpress.com&amp;blog=681983&amp;post=222&amp;subd=markpea&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This posting may seem to be a little off subject but I think it&#8217;s germane in the long run.</p>
<p>This Spring semester of newly minted year 2011 I&#8217;m auditing a class called &#8216;Choral Conducting&#8217; with Dan Graves (who also happens to be a good cycling buddy). It&#8217;s at 8am Monday, Wednesday, &amp; Friday and initially I thought that I would have difficulty getting up in time to attend the class. But it&#8217;s been so compelling that the early start has not been a problem even in the icy weather we&#8217;ve had lately.</p>
<p>There are a number of reflections I have about the class, the pedagogic process and the role of technology. Conducting for a choir is one of those areas where, though there is a vast body of written work out there, one cannot learn how to conduct from books (or, as we will find, by any other media); rather one needs a teacher who has the role of tutor or coach. But this is also not just an individual exercise since one also needs a group of people to sing &#8212; the other members of the class. Observing Dan&#8217;s teaching method as well as focussing on improving my own technique has been an interesting experience.</p>
<h2>Technology</h2>
<p>There are three areas that I saw where technology could be used.</p>
<ol>
<li>In the past, Dan has used a video camera to record the student&#8217;s practice sessions and has employed a Teaching Assistant, Bernie, to do the work. However, this has been cumbersome since the tape has to be edited to extract the student&#8217;s individual work and then burned to a CD/DVD.<br />
This year we&#8217;re using a Flip camera (recording HD quality!) to record digitally. This has some marked advantages and a couple of drawbacks. Advantages are that it&#8217;s easy to create separate recording files for each person &#8212; just hit the red button to record and to finish.  Disadvantages are the HD video, while good quality, produces big files very fast and we have a 128Mb upload limit. So Bernie (the TA) has to use VideoChimp on the Mac to downshift the video size from 1200 to 960&#215;528 (Apple TV size). The other drawback is that there is no real zoom to this camera so it&#8217;s not possible to zoom in on the conductor.</li>
<li>Commenting. An initial assignment was to comment on someone else&#8217;s conducting efforts for the first assignment.  I was gung-ho to do this by means of a Forum in Moodle. After all that&#8217;s what forums are for, right? Well, Dan shrugged off my badgering and opted for written assessments which we had to give copies to him and to the other person. In the event, it proved wise since some of the comments were apparently rather sharp.</li>
<li>Moodle. How to display the video recordings of conductor&#8217;s practice efforts? I found by trial and (lots of) error that Moodle 1.9.9 will play MOV and MP4 video files. So, what moodle activity should I use to frame the student&#8217;s videos? It had to be something that was straightforward for the TA to operate, so cutting and pasting URLs was out. There were three options:
<ol type="a">
<li> Forum. This would have been fine if we were looking for comments to be made by everyone in the class. But this wasn&#8217;t the case so we passed on that.</li>
<li>OUWiki. I had in mind a class wiki with the videos for each class session on a single page. Here again Dan wanted individual display of videos.</li>
<li>OUBlog. We ended up using the OUBlog activity and one &#8216;blog&#8217; per student. Bernie would have write access to the blogs and would upload the video files, create a new blog post and link to the new video.</li>
</ol>
</li>
<li>Dan wanted the students to have access to all their conducting videos at the end of the course. Here is where some forethought was required in the arrangement of folders. Rather than group the video files by class (which would have been initially easiest) I had Bernie create one folder per students and then upload the student&#8217;s most recent video file into that location. Thus at the end of the course it&#8217;s a simple matter to zip up all the files together and place a link to the Zip in the appropriate blog entry.</li>
</ol>
<p>Dan opted not to do anything else online. Written assignments were to be handed in during class, and were returned. Comments <em>on one&#8217;s own performance</em> were to be written down and handed in on paper. Even the readings, of which there were many to start with, were &#8216;on reserve&#8217; in the Library rather than scanned as moodle resources.</p>
<h2>Observations</h2>
<p>As I alluded to above, it&#8217;s been instructive to both observe the teaching style of a highly experienced teacher and to be taught Choral Conducting technique at the same time. One thing that does stand out is the importance of discernment in the use of technology. If Dan had been more comfortable with technology the perhaps more things would be done online (eg handing in written assignments). But even as I complained about the hassle of having to take books out on two hour reserve and read them in that time I realised that there&#8217;s something to be said for encountering the written word in it&#8217;s original medium. There&#8217;s no way to replicate the feel, and even the smell, of an older book which does add a certain something to the way we process the knowledge contained therein.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/markpea.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/markpea.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/markpea.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/markpea.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/markpea.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/markpea.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/markpea.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/markpea.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/markpea.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/markpea.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/markpea.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/markpea.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/markpea.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/markpea.wordpress.com/222/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markpea.wordpress.com&amp;blog=681983&amp;post=222&amp;subd=markpea&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://markpea.wordpress.com/2011/02/04/online-offline-classroom/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ff71544ea8e3f5e92e4241af447b80d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">markpea</media:title>
		</media:content>
	</item>
		<item>
		<title>A media post</title>
		<link>http://markpea.wordpress.com/2010/12/02/a-media-post/</link>
		<comments>http://markpea.wordpress.com/2010/12/02/a-media-post/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 22:34:42 +0000</pubDate>
		<dc:creator>Mark Pearson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://markpea.wordpress.com/?p=212</guid>
		<description><![CDATA[Here&#8217;s an avatar worth branding:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markpea.wordpress.com&amp;blog=681983&amp;post=212&amp;subd=markpea&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s an avatar worth branding:</p>
<div id="attachment_211" class="wp-caption aligncenter" style="width: 310px"><a href="http://markpea.files.wordpress.com/2010/12/flying_nematode.png"><img class="size-medium wp-image-211" title="flying_nematode" src="http://markpea.files.wordpress.com/2010/12/flying_nematode.png?w=300&#038;h=300" alt="" width="300" height="300" /></a><p class="wp-caption-text">The Flying Nematode</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/markpea.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/markpea.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/markpea.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/markpea.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/markpea.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/markpea.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/markpea.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/markpea.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/markpea.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/markpea.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/markpea.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/markpea.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/markpea.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/markpea.wordpress.com/212/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markpea.wordpress.com&amp;blog=681983&amp;post=212&amp;subd=markpea&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://markpea.wordpress.com/2010/12/02/a-media-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ff71544ea8e3f5e92e4241af447b80d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">markpea</media:title>
		</media:content>

		<media:content url="http://markpea.files.wordpress.com/2010/12/flying_nematode.png?w=300" medium="image">
			<media:title type="html">flying_nematode</media:title>
		</media:content>
	</item>
		<item>
		<title>Distinctiveness and community of learning</title>
		<link>http://markpea.wordpress.com/2010/10/19/distinctiveness-and-community-of-learning/</link>
		<comments>http://markpea.wordpress.com/2010/10/19/distinctiveness-and-community-of-learning/#comments</comments>
		<pubDate>Tue, 19 Oct 2010 15:50:34 +0000</pubDate>
		<dc:creator>Mark Pearson</dc:creator>
				<category><![CDATA[theory]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[pedagogy]]></category>

		<guid isPermaLink="false">http://markpea.wordpress.com/?p=206</guid>
		<description><![CDATA[Does a small Liberal Arts college such as Earlham College need to be distinctive in order to provide a good education? Perhaps not. Does it need to be distinctive in order to survive and prosper? Probably so. President Doug Bennett&#8217;s recent blog posting IS Earlham a distinctive college? made the fruitful analogy between excellence/distinctiveness and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markpea.wordpress.com&amp;blog=681983&amp;post=206&amp;subd=markpea&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Does a small Liberal Arts college such as Earlham College need to be distinctive in order to provide a good education? Perhaps not. Does it need to be distinctive in order to survive and prosper? Probably so. President Doug Bennett&#8217;s recent blog posting <a href="http://pressroom.earlham.edu/blogs/the-observatory/2010/10/earlham-distinctive-college" target="_blank">IS Earlham a distinctive college?</a> made the fruitful analogy between excellence/distinctiveness and nutritious/flavourful. If we think in these terms, what sort of <span style="font-style:italic;">flavour</span> does Earlham actually have for our students? I submit that the flavour we experience at Earlham has to do with our Quaker tradition and in that regard we are indeed unique among liberal arts colleges in North America. The question then becomes how can we articulate the nuances and subtleties of how this tradition is expressed in our campus community to young high school students in a convincing yet authentic way. A way forward, I believe, can be gleaned from an insightful video from Georgetown University in Washington. Entitled &#8216;<a href="http://cndls.georgetown.edu/#panel-5" target="_blank">Reimagining Tradition: the Spirit of Teaching and Learning at Georgetown</a>&#8216; the mere title lets us know that the teaching enterprise is grounded in a tradition of the university. What emerges later that this tradition is in fact Jesuit (we even see a priest as a faculty member) and that the spirit associated with this tradition is helping Georgetown faculty reimagine their teaching efforts to the demonstrated benefit of the students. Moreover the video doesn&#8217;t talk about curriculum (at least not directly), it doesn&#8217;t talk about teaching faculty concerns, it is even reasonably free of platitudes; instead it gives concrete examples of great teaching and how this has itself changed and also changed the lives of students, and situates this &#8216;reimagining&#8217; within the tradition of Georgetown.</p>
<p>We could do this at Earlham. We already are to some extent. I&#8217;m not thinking about producing a video, more about realizing Earlham&#8217;s Quaker tradition both in the way we teach and what students take away from their Earlham experience. What components are we talking about?</p>
<ul>
<li>Simplicity. Here is one area where we struggle to simplify our lives.</li>
<li>Peace. Peace and it&#8217;s associated virtue, justice, are undercurrents which run through many courses. The campus student body is very concerned with global peace and justice issues.</li>
<li>Integrity. This has two strands. The obvious one is living a life of truth and seeking truth. Then there is the path to achieving integrity of character and the way the Earlham helps build authentic persons who can go out into the world with a better self knowledge and understanding.</li>
<li>Community. Henri Nouwen once described community as &#8216;living with the person you would least choose to live with&#8217;. Earlham&#8217;s tradition of equality brings with it a radical diversity in which real community spirit can be forged.</li>
<li>Equality. Bringing a radical diversity both in the student body and in curricular offerings together under one tent. The absence of hierarchy is at first confusing, then perplexing, but finally liberating. Equality of persons is a strong Quaker tradition that we try to realize in our everyday lives and in teaching faculty&#8217;s respectful interactions with their students.</li>
</ul>
<p>So far,  I haven&#8217;t addressed the &#8216;community of learning&#8217; part and what, if any, relevance this has to  my social networking explorations but this will follow in a subsequent post.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/markpea.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/markpea.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/markpea.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/markpea.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/markpea.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/markpea.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/markpea.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/markpea.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/markpea.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/markpea.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/markpea.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/markpea.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/markpea.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/markpea.wordpress.com/206/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markpea.wordpress.com&amp;blog=681983&amp;post=206&amp;subd=markpea&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://markpea.wordpress.com/2010/10/19/distinctiveness-and-community-of-learning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ff71544ea8e3f5e92e4241af447b80d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">markpea</media:title>
		</media:content>
	</item>
		<item>
		<title>Stream of consciousness</title>
		<link>http://markpea.wordpress.com/2010/04/29/stream-of-consciousness/</link>
		<comments>http://markpea.wordpress.com/2010/04/29/stream-of-consciousness/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 20:49:46 +0000</pubDate>
		<dc:creator>Mark Pearson</dc:creator>
				<category><![CDATA[Odds'n'sods]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[moodle]]></category>

		<guid isPermaLink="false">http://markpea.wordpress.com/?p=202</guid>
		<description><![CDATA[I&#8217;ve been having some fun setting up a new incarnation of Moodle for next academic year. I&#8217;ve found some interesting new modules such as: BIM &#8212; Feed aggregation Management and Marking.  Mark (=grade) blog posts within moodle! This one&#8217;s from Australia and promises to change the way teachers can use blogs. More about this later. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markpea.wordpress.com&amp;blog=681983&amp;post=202&amp;subd=markpea&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been having some fun setting up a new incarnation of Moodle for next academic year. I&#8217;ve found some interesting new modules such as:</p>
<ul>
<li>BIM &#8212; Feed aggregation Management and Marking.  Mark (=grade) blog posts <strong>within</strong> moodle! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
This one&#8217;s from Australia and promises to change the way teachers can use blogs. More about this later.</li>
<li>ForumNG &#8212; Open University&#8217;s discussion Forum on steriods. This really ought to become that standard Moodle Forum type for version 2.0. It&#8217;s that good.</li>
<li>Enhanced File Module &#8212; single simple upload of multiple files and generate resources. Great for Course Assistants like Cheri Gaddis.</li>
<li>Time Management Module &#8212; aka &#8216;progress&#8217;. This is a simple block which shows a student&#8217;s progress on doing the stuff ina course. Wonderfully simple yet pedagogically powerful.</li>
</ul>
<p>Much more details on my <a title="Opens in new window" href="http://www.earlham.edu/markp/millmiss" target="_blank">Millenium Moodle Issues</a> tiddlywiki site.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/markpea.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/markpea.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/markpea.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/markpea.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/markpea.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/markpea.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/markpea.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/markpea.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/markpea.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/markpea.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/markpea.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/markpea.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/markpea.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/markpea.wordpress.com/202/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markpea.wordpress.com&amp;blog=681983&amp;post=202&amp;subd=markpea&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://markpea.wordpress.com/2010/04/29/stream-of-consciousness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ff71544ea8e3f5e92e4241af447b80d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">markpea</media:title>
		</media:content>
	</item>
		<item>
		<title>More thoughts on course blogs</title>
		<link>http://markpea.wordpress.com/2010/04/09/more-thoughts-on-course-blogs/</link>
		<comments>http://markpea.wordpress.com/2010/04/09/more-thoughts-on-course-blogs/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 17:08:45 +0000</pubDate>
		<dc:creator>Mark Pearson</dc:creator>
				<category><![CDATA[Course delivery]]></category>
		<category><![CDATA[Examples in operation]]></category>

		<guid isPermaLink="false">http://markpea.wordpress.com/?p=197</guid>
		<description><![CDATA[When it comes to creating a course site on WordPress I run into branding issues. WordPress MU is so much more than a blogging system. It&#8217;s a really effective pedagogical tool. But how can it be labelled so that the breadth of applications are not constrained by nomenclature? &#8220;Blog&#8217; is too narrow. &#8216;Eportfolio&#8217; too focussed. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markpea.wordpress.com&amp;blog=681983&amp;post=197&amp;subd=markpea&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When it comes to creating a course site on WordPress I run into branding issues. WordPress MU is so much more than a blogging system. It&#8217;s a really effective pedagogical tool. But how can it be labelled so that the breadth of applications are not constrained by nomenclature? &#8220;Blog&#8217; is too narrow. &#8216;Eportfolio&#8217; too focussed. Can one system be used both for academic pursuits as well as social, community, philanthropic activities? Currently I&#8217;m running an all-in-one system that I have called &#8216;Earlham Learning Spaces&#8217; (which is based on an obsolete and extinct version of Elgg (0.9)) but this is a mouthful and somewhat pretentious (&#8220;pretentious, moi?&#8221;).  All this is preamble to a look at Macaulay Honors College&#8217;s WordPress system that they brand with the title of <a href="http://macaulay.cuny.edu/eportfolios/" target="_blank">Eportfolios@Macaulay</a>.</p>
<p>The whole front page is rather smart with explanation about what they mean by &#8216;eportfolio&#8217; and a &#8216;Getting started&#8217; page and helpful videos:</p>
<div id="attachment_199" class="wp-caption aligncenter" style="width: 310px"><a href="http://markpea.files.wordpress.com/2010/04/eportfolios-macaulay.png"><img class="size-medium wp-image-199" title="Macaulay eportfolio home page" src="http://markpea.files.wordpress.com/2010/04/eportfolios-macaulay.png?w=300&#038;h=52" alt="" width="300" height="52" /></a><p class="wp-caption-text">Macaulay eportfolio home page</p></div>
<p>Most of the student eportfolio sites are inaccessible from the web (which is OK if your portfolio is strictly for internal use) but class blogs are not. I stumbled across an interesting course site called &#8220;<a href="http://macaulay.cuny.edu/eportfolios/laxmi/" target="_blank">Shaping the Future of the City</a>&#8220;. Now first off, this is a course and not an eportfolio and yet it has a URL with &#8220;eportfolio&#8221; in it. So straight away we hit a problem with naming. But the site itself is rather cool and accessible with an inviting home page with graphic, course overview and syllabus sections and right hand column with Course Information, Contacts and Tags. The pull down menus are tres froid and evidently based on Categories.  The <a href="http://macaulay.cuny.edu/eportfolios/laxmi/2010/02/07/weekly-blog/" target="_blank">instructions for posting</a> make it clear that this is a shared blog for the class (rather than post to your own blog and feed into the class blog) and that students are meant to assign a <em>single category</em> to each posting. That this is difficult to follow is evidenced by the number of posts that were miscategorized as &#8216;blog&#8217; (besides the Weekly Blog&#8217; instructions there were 4 introductions also cross categorized as &#8216;Introductions&#8217; and one long posting &#8216;Anatomy of a Planning Study &#8212; Roosevelt Island&#8217; which obviously belonged in the &#8216;Planning Projects&#8217; Category).</p>
<div id="attachment_198" class="wp-caption aligncenter" style="width: 225px"><a href="http://markpea.files.wordpress.com/2010/04/maculay_eportfolios-categories.png"><img class="size-medium wp-image-198" title="Course categories" src="http://markpea.files.wordpress.com/2010/04/maculay_eportfolios-categories.png?w=215&#038;h=300" alt="" width="215" height="300" /></a><p class="wp-caption-text">Posts in the Introductions category</p></div>
<p>Having said that I liked the &#8216;home page&#8217; I do think that it would be nice to have a different layout for the other pages though I&#8217;m not sure I could find a theme to do that!</p>
<p>What can Earlham take away from this course site example? I think that for our situation this would not be too difficult to either setup or manage.  Having a course site that incorporates student work is, to my mind, pedagogically very powerful &#8212; much more so than the Moodle model where the teacher-student relationship dominates. However, one could still play to Moodle&#8217;s strengths by using the <a href="http://www.earlham.edu/markp/millmiss/index.html#%5b%5bBIM – Feed Aggregation Management and Marking%5d%5d" target="_blank">BIM – Feed Aggregation Management and Marking</a> module to grade appropriate entries into the class blog within the Moodle system. Thus one would have a public course and private grading and feedback &#8212; ideal!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/markpea.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/markpea.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/markpea.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/markpea.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/markpea.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/markpea.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/markpea.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/markpea.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/markpea.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/markpea.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/markpea.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/markpea.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/markpea.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/markpea.wordpress.com/197/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markpea.wordpress.com&amp;blog=681983&amp;post=197&amp;subd=markpea&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://markpea.wordpress.com/2010/04/09/more-thoughts-on-course-blogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ff71544ea8e3f5e92e4241af447b80d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">markpea</media:title>
		</media:content>

		<media:content url="http://markpea.files.wordpress.com/2010/04/eportfolios-macaulay.png?w=300" medium="image">
			<media:title type="html">Macaulay eportfolio home page</media:title>
		</media:content>

		<media:content url="http://markpea.files.wordpress.com/2010/04/maculay_eportfolios-categories.png?w=215" medium="image">
			<media:title type="html">Course categories</media:title>
		</media:content>
	</item>
		<item>
		<title>Anti-Social Networking</title>
		<link>http://markpea.wordpress.com/2010/04/08/anti-social-networking/</link>
		<comments>http://markpea.wordpress.com/2010/04/08/anti-social-networking/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 16:17:19 +0000</pubDate>
		<dc:creator>Mark Pearson</dc:creator>
				<category><![CDATA[theory]]></category>
		<category><![CDATA[BuddyPress]]></category>
		<category><![CDATA[social_networking]]></category>

		<guid isPermaLink="false">http://markpea.wordpress.com/?p=194</guid>
		<description><![CDATA[The amazing Boone Gorges has recently released yet another wizzo BuddyPress plugin called Invite Anyone (mk 2) . Not content with this I followed a link to a comment thread from which the topic of &#8216;Friends&#8217; in social networks emerged: &#8220;It seems to me that the asymmetric model of twitter followers is one that encourages [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markpea.wordpress.com&amp;blog=681983&amp;post=194&amp;subd=markpea&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The amazing Boone Gorges has recently released yet another wizzo BuddyPress plugin called <a href="http://teleogistic.net/code/buddypress/invite-anyone/" target="_blank">Invite Anyone (mk 2)</a> . Not content with this I followed a link to a <a href="http://teleogistic.net/2009/12/new-buddypress-plugin-invite-anyone/" target="_blank">comment thread </a>from which the topic of &#8216;Friends&#8217; in social networks emerged:</p>
<blockquote><p>&#8220;It seems to me that the asymmetric model of twitter followers is one that encourages fandom rather than mutual connection. &#8230;&#8230;  we’re probably less interested in encouraging “fans” than in establishing mutually affirmed, symmetric, friend connections. An asymmetric model could cause all sorts of social problems, with people being upset that someone didn’t follow him or her back.&#8221;</p></blockquote>
<p>and more from the same poster:</p>
<blockquote><p>&#8220;Having said all of that, I’ve been talking to a few members of our community lately who feel uncomfortable with facebook-like friending entirely. These discussions have made me realize how <em>little we’ve actually theorized these issues, and how important it is that we do so soon</em>.&#8221; (my italics)</p></blockquote>
<p>and from the next poster:</p>
<blockquote><p>&#8220;On Twitter, if you’re “following” someone, you’re not a fan as well, you’re just interested in what the person is up to, which is why I love how they use the term “follower”. It doesn’t create any connotations or anything, it is what it is. <em>Another reason why terminology is important when developing a product or service</em>!&#8221; (my italics again)</p></blockquote>
<p>[What's interesting to me is that Twitter has done this and the term has 'stuck'].</p>
<p>And Boone himself weighed in with :</p>
<blockquote><p>&#8220;It seems overly simplistic to claim that the possibility of asymmetric relationships “encourages fandom”, as Matt puts it. Twitter is a case in point. Just because Twitter is set up such that the only relationships that are technically relevant in the system are asymmetric, it doesn’t follow that the Twitter platform encourages fandom rather than what you might call a more genuine connection. Bidirectional friendships emerge from and supervene on unidirectional relationships without there being a formal structure to describe them. I see this kind of emergence as a strength of the system, as relationships that arise without a formal structure underlying them are on balance more likely to be worthwhile (I would think, anyway).</p></blockquote>
<p>[But here is where a study might be in order -- hands up Dana Boyd? . Perhaps the <em>possibility</em> of asymmetric relations doesn't necessarily encourage 'fandom' but maybe in actual practice this is often the case. Problem is that to compare you'd need  to find a Twitter like service that has does not have this system, and that's well nigh impossible. Maybe there are other ways of approaching this? ]</p>
<blockquote><p>From a practical point of view, though, Matt’s right that there are social issues that arise in spaces like Twitter that don’t in spaces like Facebook or BuddyPress. Hurt feelings might be one of them, though I’m skeptical that such consequences are really all that dire, all so-and-so-didn’t-follow-me-back-on-Twitter bitching aside. I’m more interested in what might happen (both good and bad) as members of a professional community start to experience the arc exemplified by the Twitter user lifecycle: feeling uncomfortable about the idea of following people you don’t know, feeling stalked when other start following you, feeling like you have to follow people back, feeling proud when you get certain kinds of followers, and so on.&#8221;</p></blockquote>
<p>This brought back to my mind an extremely perceptive blog posting (a term paper in fact) that a student in my class (Tessa Bricker) wrote several years ago (five to be precise) bewailing the commodification of friendship as she termed it. Entitled &#8216;<a href="http://www.earlham.edu/~brickte/blog/archives/005288.html" target="_blank">Anti-Social  Networking: The Commodity of &#8220;friend&#8221;ship</a>&#8216; she makes the following points (did I say already that they were perceptive?):</p>
<ul>
<li>&#8220;Friendships are built on shared experiences and trust. With social networks, friendships are broken down to the simplest terms. Instead of being based on trust and experiences, friendships in social networks are engaged in for less pure purposes. Instead of quality friendships, services like Friendster, are all about collecting the most friends.&#8221;[She writes about Uncomfortable Situations (referred to above), classifying friends and then quality of friendship :]</li>
<li>&#8220;Social networks cheapen friendship, turning it into a commodity, to be collected not valued for anything other a number or a means to get in contact with someone else.&#8221;[And here's the stinger :]</li>
<li>&#8220;Social networks are designed to bring people together and they do that successfully. People meet, find dates, make friends, and find employers through social networks. <em>The term friend really shouldn’t be used to describe buddies on the Internet</em>. The term implies more of an emotional bond and connection than most people have with people they meet on the Internet. Social networks are eroding the values placed on friendship by turning friends into commodities.&#8221;</li>
</ul>
<p>So there you have it. <em>The term &#8216;friend&#8217; should not be used to describe buddies on the internet</em>. How right this is. I think that this is an excellent point, and thanks to a video from <a title="Making BuddyPress do thy bidding" href="http://sandbox.ywamcloud.com/screenshots/2010/03/20/boone-gorges-making-buddypress-do-thy-bidding/" target="_blank">Boone Gorges himself </a>it&#8217;s possible to change the term on a BuddyPress installation. But what to? &#8220;buddy&#8221;? After all, it&#8217;s called <span style="text-decoration:underline;">Buddy</span> Press <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/markpea.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/markpea.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/markpea.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/markpea.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/markpea.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/markpea.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/markpea.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/markpea.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/markpea.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/markpea.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/markpea.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/markpea.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/markpea.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/markpea.wordpress.com/194/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markpea.wordpress.com&amp;blog=681983&amp;post=194&amp;subd=markpea&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://markpea.wordpress.com/2010/04/08/anti-social-networking/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ff71544ea8e3f5e92e4241af447b80d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">markpea</media:title>
		</media:content>
	</item>
		<item>
		<title>Tracking progress</title>
		<link>http://markpea.wordpress.com/2010/03/12/tracking-progress/</link>
		<comments>http://markpea.wordpress.com/2010/03/12/tracking-progress/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 20:57:38 +0000</pubDate>
		<dc:creator>Mark Pearson</dc:creator>
				<category><![CDATA[Choosing SN system]]></category>
		<category><![CDATA[tiddlywiki]]></category>

		<guid isPermaLink="false">http://markpea.wordpress.com/?p=190</guid>
		<description><![CDATA[I&#8217;ve been tracking all my intimate  doings with implementing Social Networking s/w in a spanking new and über double plus cool TiddlyWiki system at http://www.earlham.edu/markp/kate_bush/. This implements a javascript subsystem called Treeview which makes creating the side menu a proverbial piece of cake. So, what&#8217;s cooler WordPress-MU + BuddyPress or Morris Gray&#8217;s Treeview Tiddlywiki ? [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markpea.wordpress.com&amp;blog=681983&amp;post=190&amp;subd=markpea&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been tracking all my intimate  doings with implementing Social Networking s/w in a spanking new and über double plus cool TiddlyWiki system at <a title="TiddlyWiki of Mark's S/N doings" href="http://www.earlham.edu/markp/kate_bush/" target="_blank">http://www.earlham.edu/markp/kate_bush/</a>. This implements a javascript subsystem called Treeview which makes creating the side menu a proverbial piece of cake.</p>
<p>So, what&#8217;s cooler WordPress-MU + BuddyPress or <a title="Tiddlyspot site" href="http://twt-treeview.tiddlyspot.com" target="_blank">Morris Gray&#8217;s Treeview Tiddlywiki</a> ? That&#8217;s a hard one!</p>
<p>Why &#8216;kate_bush&#8217;? Well, everyone knows that she was the premier woman artiste of the mid 70s and a great track of hers is called Experiment IV. Since this tracks my experiments I figured I would pay homage to Kate.</p>
<div class="wp-caption alignnone" style="width: 250px"><a href="http://ecx.images-amazon.com/images/I/31ZsD8ohtcL._SL500_AA240_.jpg"><img title="Kate Bush" src="http://ecx.images-amazon.com/images/I/31ZsD8ohtcL._SL500_AA240_.jpg" alt="Kate!" width="240" height="240" /></a><p class="wp-caption-text">Kate Bush - the Whole Story</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/markpea.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/markpea.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/markpea.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/markpea.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/markpea.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/markpea.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/markpea.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/markpea.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/markpea.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/markpea.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/markpea.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/markpea.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/markpea.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/markpea.wordpress.com/190/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markpea.wordpress.com&amp;blog=681983&amp;post=190&amp;subd=markpea&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://markpea.wordpress.com/2010/03/12/tracking-progress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ff71544ea8e3f5e92e4241af447b80d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">markpea</media:title>
		</media:content>

		<media:content url="http://ecx.images-amazon.com/images/I/31ZsD8ohtcL._SL500_AA240_.jpg" medium="image">
			<media:title type="html">Kate Bush</media:title>
		</media:content>
	</item>
		<item>
		<title>NextGEN goodness</title>
		<link>http://markpea.wordpress.com/2010/03/11/nextgen-goodness/</link>
		<comments>http://markpea.wordpress.com/2010/03/11/nextgen-goodness/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 20:34:01 +0000</pubDate>
		<dc:creator>Mark Pearson</dc:creator>
				<category><![CDATA[Functionality]]></category>
		<category><![CDATA[photo-gallery]]></category>

		<guid isPermaLink="false">http://markpea.wordpress.com/?p=181</guid>
		<description><![CDATA[Just spent some time fooling around with the NextGEN gallery plugin for WP-MU. It has to be said that this is uber cool. I figured out how to use it with any old template. It does everything that Gallery3 does and more. Ideal for travel blogs I would say. There is one glitch however. The [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markpea.wordpress.com&amp;blog=681983&amp;post=181&amp;subd=markpea&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just spent some time fooling around with the <a title="NextGen" href="http://alexrabe.de/wordpress-plugins/nextgen-gallery/" target="_blank">NextGEN gallery</a> plugin for WP-MU. It has to be said that this is uber cool. I figured out how to use it with any old template. It does everything that Gallery3 does and more. Ideal for travel blogs I would say. There is one glitch however. The &#8216;slideshow&#8217; feature does not render properly. This screenshot from Windows Exploder 8 shows the gaps where the slideshow ought to be placed (the gaps do not appear in Firefox or Flock browsers):</p>
<div id="attachment_182" class="wp-caption aligncenter" style="width: 310px"><a href="http://markpea.files.wordpress.com/2010/03/nextgen_wpplugin-slideshow-ie8.png"><img class="size-medium wp-image-182" title="Blog with slideshow" src="http://markpea.files.wordpress.com/2010/03/nextgen_wpplugin-slideshow-ie8.png?w=300&#038;h=206" alt="Blog with slideshow" width="300" height="206" /></a><p class="wp-caption-text">Screenshot of blog display with NextGEN slidehow (browser: I.E v8) </p></div>
<p>I&#8217;m not actually sure whether this is a problem with WP-MU 2.9.1 or the NextGEN plugin or the template (don&#8217;t think so) or (perhaps) the imagerotator.swf. I downloaded the latest version of the <a href="http://www.longtailvideo.com/players/jw-image-rotator/" target="_blank">JW Image Rotator</a> (v3.17) and I know that I set the absolute path correctly in Gallery : Options : Slideshow. Having gorn back to the download and opened the accompanying demo html file (which displays a working slideshow) I&#8217;m now thinking that it&#8217;s a version discombobulation between NextGEN and the rotator.  However, even absent the slideshow this plugin is double plus super triffic!</p>
<h3>Update</h3>
<p>Rather embarrassing this. I&#8217;ve sussed the problem. It was the path descriptor. When I see the phrase &#8216;path&#8217; I always assume that it means absolute file path, so I had <code>/usr/local/www/apache/data/wordpress/wp-content/uploads/imagerotator.swf</code> as the &#8220;path to imagerotator&#8221;. What it actually means is the URL, so changing this to <code>http://blogs.sergius.earlham.edu/wp-contents/uploads/imagerotator.swf</code> did the trick. I guess it does say (URL) in the field descriptor but the if the [Search now] button doesn&#8217;t work (which mine didn&#8217;t) then you have to trial and error it.</p>
<div id="attachment_187" class="wp-caption aligncenter" style="width: 310px"><a href="http://markpea.files.wordpress.com/2010/03/nextgen_wpplugin-slideshow-fixed.png"><img class="size-medium wp-image-187" title="NextGEN slideshow fixed" src="http://markpea.files.wordpress.com/2010/03/nextgen_wpplugin-slideshow-fixed.png?w=300&#038;h=201" alt="" width="300" height="201" /></a><p class="wp-caption-text">Correct display of slideshow</p></div>
<p>One thing that this does show is an issue with aspect ratios. I often like taking &#8216;portrait&#8217; style photos and so will turn my camera onto it&#8217;s long axis to take the photo. But mixing &#8216;wide&#8217; landscape orientation and tall portrait orientation within a single slideshow does not work well as the widget shows. This is because the slideshow has to have a fixed size and this can accommodate either one or the other orientation, but not both. So, I will  have to think about sorting photos before displaying in a slideshow format. Fortunately, the system of Albums &#8211; Galleries makes this easy to do. One can just have a Gallery of tall images and wide images in the same Album and then use two different slideshow settings to display.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/markpea.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/markpea.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/markpea.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/markpea.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/markpea.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/markpea.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/markpea.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/markpea.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/markpea.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/markpea.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/markpea.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/markpea.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/markpea.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/markpea.wordpress.com/181/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markpea.wordpress.com&amp;blog=681983&amp;post=181&amp;subd=markpea&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://markpea.wordpress.com/2010/03/11/nextgen-goodness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ff71544ea8e3f5e92e4241af447b80d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">markpea</media:title>
		</media:content>

		<media:content url="http://markpea.files.wordpress.com/2010/03/nextgen_wpplugin-slideshow-ie8.png?w=300" medium="image">
			<media:title type="html">Blog with slideshow</media:title>
		</media:content>

		<media:content url="http://markpea.files.wordpress.com/2010/03/nextgen_wpplugin-slideshow-fixed.png?w=300" medium="image">
			<media:title type="html">NextGEN slideshow fixed</media:title>
		</media:content>
	</item>
	</channel>
</rss>
