<?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></title>
	<atom:link href="http://briangunzenhauser.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://briangunzenhauser.com</link>
	<description>Personal website of Brian Gunzenhauser</description>
	<lastBuildDate>Thu, 12 Aug 2010 16:51:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Building a Better Online Course</title>
		<link>http://briangunzenhauser.com/building-a-better-online-course/</link>
		<comments>http://briangunzenhauser.com/building-a-better-online-course/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 19:02:17 +0000</pubDate>
		<dc:creator>brian</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Web Education]]></category>

		<guid isPermaLink="false">http://briangunzenhauser.com/?p=181</guid>
		<description><![CDATA[Last spring I was asked to teach an online version of HTML &#038; Web Design. At that point I had never taught an online course, but my mind immediately started to run with ideas on how to make it a &#8230; <a href="http://briangunzenhauser.com/building-a-better-online-course/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Last spring I was asked to teach an online version of HTML &#038; Web Design. At that point I had never taught an online course, but my mind immediately started to run with ideas on how to make it a better experience for my students.</p>
<p>I wanted the site to emulate the social aspects of a physical classroom environment as much as possible, including:</p>
<ul>
<li><strong>Student profiles</strong> for students to see and learn more about each other.</li>
<li><strong>A public stream</strong> for students to ask questions and share information and so I could share answers publicly with the class. </li>
<li><strong>Blog posts</strong> for announcements, assignments, lessons and course information.</li>
<li><strong>Comment threading</strong> used across the site to compartmentalize questions that students have about any piece of content on the site.</li>
</ul>
<p>Nearly all activity, including assignment submissions, would be done through the site. In addition to providing the students with a single place to get information, this would allow me to use Google Analytics to track the site performance.</p>
<h3>The Framework</h3>
<p>The extensible <a href="http://wordpress.org">WordPress framework</a> matched a lot of what I needed, but it was the <a href="http://buddypress.org/">social networking plugin Buddypress</a> that was a perfect fit. WordPress allowed me to create posts and pages with post- and page-specific comment threading, and Buddypress added the core social networking aspects of the site. All other functionality was added with the following plugins:</p>
<ul>
<li><a href="http://wordpress.org/extend/plugins/contact-form-7/">Contact Form 7</a> for all contact forms and assignment submissions.</li>
<li><a href="http://wordpress.org/extend/plugins/custom-admin-branding/">Custom Admin Branding</a> for customizing the log in page. </li>
<li><a href="http://wordpress.org/extend/plugins/flash-video-player/">Flash Video Player</a> for embedding video screencasts into lesson posts.</li>
<li><a href="http://wordpress.org/extend/plugins/buddypress-group-email-subscription/">Group Email Subscription</a> for notifying students via email when someone has added to the activity stream or posted to the forum.</li>
<li><a href="http://wordpress.org/extend/plugins/members-only/">Members Only</a> to keep the site private by locking out the rest of the world. </li>
<li><a href="http://wordpress.org/extend/plugins/remove-buddypress-admin-bar/">Remove BuddyPress Admin Bar</a> to remove the admin bar inherent in BuddyPress. </li>
<li><a href="http://wordpress.org/extend/plugins/syntaxhighlighter/">SyntaxHighlighter Evolved</a> for posting HTML and CSS in an easy-to-read and easy-to-copy format.</li>
<li><a href="http://wordpress.org/extend/plugins/wp-db-backup/">WP DB Backup</a> to backup the database daily in case the website or server goes down.</li>
</ul>
<h3>The Result</h3>
<p><img src="http://briangunzenhauser.com/wp-content/uploads/2010/08/course-ss.png" alt="Online course screenshot" title="Online course screenshot" width="520" height="250" class="alignnone size-full wp-image-202 entry-img" /></p>
<p>The course ran smoothly and met my expectations. The framework allowed students to get information quickly, easily ask questions and interact with each other, and the blog format allowed me to answer questions efficiently. In some cases I created new lesson posts to further extrapolate on a topic based on conversations in comment threads.</p>
<p>Students were not required to log in at a specific day or time. Instead they were provided with an announcement, assignments and lessons every Monday, all of which could be done at their convenience as long as they adhered to the assignment deadlines. I believe the autonomy, combined with the public activity stream and comment-threading, allowed them to learn the material in a way that worked well for the course content. The work that the students submitted was fantastic and showed an impressive grasp of the course concepts.</p>
<p>There are ways I could improve upon the site. First and foremost I would like to put more time into customizing the site design and layout. I&#8217;d also like to incorporate more socialized activities on the site, build custom contact and assignment submission forms and implement email notifications for announcement, assignment and lesson posts. </p>
<h3>Next Steps</h3>
<p>I’ve received a lot of excitement and good feedback from the college, but the implementation prospects for the website are not clear. I will most likely be putting it into use as a supplement course site for one or more of my undergraduate classes this coming fall semester.</p>
<p>Now that the multi-site functionality of <a href="http://mu.wordpress.org/">WordPress &mu;</a> is built-in to WordPress 3.0, I believe it will be relatively easy to set up one-click installs for additional courses. I’m hoping this will come in handy in case I deploy this framework for multiple courses in a curriculum. </p>
<p>At the very least I will improve the site and continue creating a better course environment for my students.<br />
<em><br />
<strong>Hat Tip: </strong>Friend and colleague <a href="http://creativeslice.com">Tim Bowen</a> informed me that I can also add the line <code>define('BP_DISABLE_ADMIN_BAR', true);</code> to wp-config.php  to remove the Buddypress Admin Bar. Thanks, Tim!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://briangunzenhauser.com/building-a-better-online-course/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Time to Breathe</title>
		<link>http://briangunzenhauser.com/time-to-breathe/</link>
		<comments>http://briangunzenhauser.com/time-to-breathe/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 03:20:01 +0000</pubDate>
		<dc:creator>brian</dc:creator>
				<category><![CDATA[Web Education]]></category>

		<guid isPermaLink="false">http://briangunzenhauser.com/new/?p=11</guid>
		<description><![CDATA[Quite a lot has happened after my last post. I was awarded a position as a full-time Instructor at Pennsylvania College of Art &#38; Design in August, 2009, to teach Interactive and Web-related coursework. That position, plus working with Aurora Creative Group, &#8230; <a href="http://briangunzenhauser.com/time-to-breathe/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Quite a lot has happened after my last post. I was awarded a position as a full-time Instructor at <a href="http://www.pcad.edu">Pennsylvania College of Art &amp; Design</a> in August, 2009, to teach Interactive and Web-related coursework. That position, plus working with <a href="http://www.auroracreativegroup.com">Aurora Creative Group</a>, teaching night classes and taking on additional work of my own has kept me quite busy over the past four months. Now, as the fall semester has come to a close, I have some time to rest over the holiday break. Breathe in, breathe out. Ahh.</p>
]]></content:encoded>
			<wfw:commentRss>http://briangunzenhauser.com/time-to-breathe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Open Web Education Alliance</title>
		<link>http://briangunzenhauser.com/the-open-web-education-alliance/</link>
		<comments>http://briangunzenhauser.com/the-open-web-education-alliance/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 12:00:02 +0000</pubDate>
		<dc:creator>brian</dc:creator>
				<category><![CDATA[Web Education]]></category>

		<guid isPermaLink="false">http://briangunzenhauser.com/new/?p=9</guid>
		<description><![CDATA[This is cool. A new group formed by the W3C intends to bring together companies, organizations, educators and students that are interested in improving Web education. I learned about this via an announcement at the Web Standards Project website. A more &#8230; <a href="http://briangunzenhauser.com/the-open-web-education-alliance/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is cool. A new group formed by the W3C intends to bring together companies, organizations, educators and students that are interested in improving Web education. I learned about this via an <a href="http://www.webstandards.org/2009/06/29/introducing-the-open-web-education-alliance/">announcement at the Web Standards Project</a> website. A more exhaustive description can be found at the <a href="http://www.w3.org/2005/Incubator/owea/">Open Web Education Alliance section</a> of the W3C website.</p>
]]></content:encoded>
			<wfw:commentRss>http://briangunzenhauser.com/the-open-web-education-alliance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Redesign</title>
		<link>http://briangunzenhauser.com/hello-world/</link>
		<comments>http://briangunzenhauser.com/hello-world/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 18:00:36 +0000</pubDate>
		<dc:creator>brian</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://briangunzenhauser.com/new/?p=1</guid>
		<description><![CDATA[It’s been just about 4 months since I started redesigning this site, and today I’m finally turning it on. All right.]]></description>
			<content:encoded><![CDATA[<p>It’s been just about 4 months since I started redesigning this site, and today I’m finally turning it on. All right.</p>
]]></content:encoded>
			<wfw:commentRss>http://briangunzenhauser.com/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
