<?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>Flexknowlogy - Jared Stein &#187; moodle</title>
	<atom:link href="http://jaredstein.org/tag/moodle/feed/" rel="self" type="application/rss+xml" />
	<link>http://jaredstein.org</link>
	<description>Education, Technology, Culture, and the Internet</description>
	<lastBuildDate>Fri, 30 Jul 2010 23:18:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Condensing the &#8220;News&#8221; Feature of My Moodle Using a Show/Hide Javascript</title>
		<link>http://jaredstein.org/2010/05/19/condensing-the-news-feature-of-my-moodle-using-a-showhide-javascript/</link>
		<comments>http://jaredstein.org/2010/05/19/condensing-the-news-feature-of-my-moodle-using-a-showhide-javascript/#comments</comments>
		<pubDate>Wed, 19 May 2010 21:19:34 +0000</pubDate>
		<dc:creator>Jared Stein</dc:creator>
				<category><![CDATA[lms]]></category>
		<category><![CDATA[moodle]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[modifications]]></category>
		<category><![CDATA[mods]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://jaredstein.org/?p=1239</guid>
		<description><![CDATA[The My Moodle feature in Moodle 1.9x displays a list of registered courses to a user after logging in. The nice thing about the list is that each course link is followed by a listing of any recent news or events in the course. Unfortunately in highly active courses this list becomes quite lengthy, and [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://docs.moodle.org/en/My_Moodle">My Moodle feature</a> in <a href="http://moodle.org">Moodle</a> 1.9x displays a list of registered courses to a user after logging in. The nice thing about the list is that each course link is followed by a listing of any recent news or events in the course. Unfortunately in highly active courses this list becomes quite lengthy, and ultimately obnoxious as the length obstructs quick access to other courses in one&#8217;s view.</p>
<p>To remedy this I have, for quite some time, maintained a custom bit of very basic Javascript and CSS that sets the default view of news items to hidden, with a clickable link to show the entire list from the My Moodle page:</p>
<div>
<p><a href="http://www.flickr.com/photos/5tein/4622703444/in/photostream/"><img src="http://farm5.static.flickr.com/4033/4622703444_32679d85df_o.jpg" alt="hidden news in My Moodle" /></a></p>
<p style="font-size: 70%">Clicking &#8220;There is news in this course&#8221; expands the news.</p>
</div>
<div>
<p><a href="http://www.flickr.com/photos/5tein/4622703572/"><img src="http://farm4.static.flickr.com/3357/4622703572_74db8af2a6_o.png" alt="hidden news in My Moodle" /></a></p>
<p style="font-size: 70%">The default for news for each course is &#8220;hidden&#8221;.</p>
</div>
<p>Nothing fancy, and even as I look at it now I can think of improvements&#8230;</p>
<p>We just upgraded to 1.9.8 this semester, and because this snippet modifies Moodle core I had my developer Kevin re-test the snippet before I asked our server admin Paul to replace the existing function as follows:</p>
<pre>file Location:            '/course/lib.php'
file line:                    "800"
function to replace: "function print_overview($courses)"
</pre>
<p>Here&#8217;s the actual replacement function:</p>
<div style="margin: 1em 0em;padding: .75em;border: 1px solid gray font-family: Courier New,monospace;font-size: 75%">
// Begin My Moodle Show-Hide News modification</p>
<p>// Replaces function in &#8220;course/lib.php&#8221; to hide course news by default.<br />
// Hidden news is viewable via Javascript by clicking &#8220;There is news in this course&#8221; link.<br />
// Link does not exist if there is no news in the course.<br />
function print_overview($courses) {</p>
<p>&nbsp;&nbsp;&nbsp;global $CFG, $USER;</p>
<p>&nbsp;&nbsp;&nbsp;$htmlarray = array();</p>
<p>&nbsp;&nbsp;&nbsp;if ($modules = get_records(&#8216;modules&#8217;)) {</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;foreach ($modules as $mod) {</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (file_exists(dirname(dirname(__FILE__)).&#8217;/mod/&#8217;.$mod-&gt;name.&#8217;/lib.php&#8217;)) {</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;include_once(dirname(dirname(__FILE__)).&#8217;/mod/&#8217;.$mod-&gt;name.&#8217;/lib.php&#8217;);</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$fname = $mod-&gt;name.&#8217;_print_overview&#8217;;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (function_exists($fname)) {</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$fname($courses,$htmlarray);</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</p>
<p>&nbsp;&nbsp;&nbsp;}</p>
<p>&nbsp;&nbsp;&nbsp;foreach ($courses as $course) {</p>
<p>&nbsp;&nbsp;&nbsp;   print &#8220;&lt;ul style=\&#8221;margin: 0; padding: 0; list-style: none; width: 96%; \&#8221;&gt;&#8221;;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$linkcss = &#8221;;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (empty($course-&gt;visible)) {</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$linkcss = &#8216;class=&#8221;dimmed&#8221;&#8216;;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print&#8217;&lt;li class=&#8221;coursebox&#8221; style=&#8221;padding: .5em 1em 1em&#8221;&gt;&lt;h3 style=&#8221;font-size: 120%; font-weight: normal; margin: 0 0 .2em 0&#8243;&gt;&lt;a title=&#8221;&#8216;. format_string($course-&gt;fullname).&#8217;&#8221; &#8216;.$linkcss.&#8217; href=&#8221;&#8216;.$CFG-&gt;wwwroot.&#8217;/course/view.php?id=&#8217;.$course-&gt;id.&#8217;&#8221;&gt;&#8217;. format_string($course-&gt;fullname).&#8217;&lt;/a&gt;&lt;/h3&gt;&#8217;;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (array_key_exists($course-&gt;id,$htmlarray)) {</p>
<p>			print &#8216;&lt;a href=&#8221;#&#8221; id=&#8221;toggler_&#8217;.$course-&gt;id.&#8217;&#8221; onclick=&#8221;document.getElementById(\&#8217;coursenews_&#8217;.$course-&gt;id.&#8217;\').style.display=(document.getElementById(\&#8217;coursenews_&#8217;.$course-&gt;id.&#8217;\').style.display==\&#8217;block\&#8217;?\&#8217;none\&#8217;:\&#8217;block\&#8217;); document.getElementById(\&#8217;toggler_&#8217;.$course-&gt;id.&#8217;\').innerHTML=(document.getElementById(\&#8217;toggler_&#8217;.$course-&gt;id.&#8217;\').innerHTML == \&#8217;There is news in this course&#8230;\&#8217;?\&#8217;Hide course news&#8230;\&#8217;:\&#8217;There is news in this course&#8230;\&#8217;);&#8221;&gt;There is news in this course&#8230;&lt;/a&gt;&lt;div id=&#8221;coursenews_&#8217;.$course-&gt;id.&#8217;&#8221; style=&#8221;display: none&#8221;&gt;&#8217;;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;foreach ($htmlarray[$course-&gt;id] as $modname =&gt; $html) {</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo $html;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</p>
<p>			print &#8220;&lt;/div&gt;&lt;!&#8211;end contents&#8211;&gt;&lt;/li&gt;&#8221;;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print &#8220;&lt;/ul&gt;&#8221;;</p>
<p>&nbsp;&nbsp;&nbsp;}</p>
<p>}<br />
//End My Moodle Show-Hide News modification
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://jaredstein.org/2010/05/19/condensing-the-news-feature-of-my-moodle-using-a-showhide-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moodle 2 Dev Video Overviews</title>
		<link>http://jaredstein.org/2010/04/21/moodle-2-dev-video-overviews/</link>
		<comments>http://jaredstein.org/2010/04/21/moodle-2-dev-video-overviews/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 23:29:50 +0000</pubDate>
		<dc:creator>Jared Stein</dc:creator>
				<category><![CDATA[lms]]></category>
		<category><![CDATA[moodle]]></category>

		<guid isPermaLink="false">http://jaredstein.org/?p=1179</guid>
		<description><![CDATA[Mary Cooch has posted a number of videos on YouTube about Moodle, the latest showcasing new features found in the upcoming Moodle 2.0, now push back to Summer 11. Despite the delay, I&#8217;m still excited to see Moodle 2.0, as a number of features really help move it outside the traditional pigeonhole of the LMS.
A [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://twitter.com/moodlefairy">Mary Cooch</a> has posted a number of <a href="http://www.youtube.com/user/UsingMoodle">videos on YouTube about Moodle</a>, the latest showcasing new features found in the upcoming <a href="http://docs.moodle.org/en/Roadmap#Version_2.0">Moodle 2.0</a>, now push back to Summer 11. Despite the delay, I&#8217;m still excited to see Moodle 2.0, as a number of features really help move it outside the traditional pigeonhole of the LMS.</p>
<h4>A Brief Tour of Moodle 2.0</h4>
<p><span class="youtube">
<object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/56W-ZQ3dK3w&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0" />
<param name="allowFullScreen" value="true" />
<embed wmode="transparent" src="http://www.youtube.com/v/56W-ZQ3dK3w&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="355"></embed>
<param name="wmode" value="transparent" />
</object>
</span><p><a href="http://www.youtube.com/watch?v=56W-ZQ3dK3w">www.youtube.com/watch?v=56W-ZQ3dK3w</a></p></p>
<p>2.0 includes an entire rewrite of my favorite Moodle tool, the collaborative Workshops activity:</p>
<h4>Moodle Workshops 2.0</h4>
<p><span class="youtube">
<object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/gCT8Tm32e1k&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0" />
<param name="allowFullScreen" value="true" />
<embed wmode="transparent" src="http://www.youtube.com/v/gCT8Tm32e1k&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="355"></embed>
<param name="wmode" value="transparent" />
</object>
</span><p><a href="http://www.youtube.com/watch?v=gCT8Tm32e1k">www.youtube.com/watch?v=gCT8Tm32e1k</a></p></p>
<p>Because we&#8217;ve been anticipating its release since early 2008 my co-worker Ken jokes that Moodle 2.0 is vaporware, the Duke Nukem Forever of LMS. I joked that we should call it Twoodle. But seriously, I&#8217;m still hoping we&#8217;ll see an official, stable release by Fall 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaredstein.org/2010/04/21/moodle-2-dev-video-overviews/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Video: Moodle 1.9.5 Overview for UEN</title>
		<link>http://jaredstein.org/2010/01/21/video-moodle-1-9-5-overview-for-uen/</link>
		<comments>http://jaredstein.org/2010/01/21/video-moodle-1-9-5-overview-for-uen/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 00:22:43 +0000</pubDate>
		<dc:creator>Jared Stein</dc:creator>
				<category><![CDATA[lms]]></category>
		<category><![CDATA[moodle]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[presentations]]></category>
		<category><![CDATA[uen]]></category>

		<guid isPermaLink="false">http://jaredstein.org/?p=1047</guid>
		<description><![CDATA[I conducted a 1hr demonstration of the open source learning management system Moodle 1.9.5 for higher ed folks in Utah and the Utah Education Network. The demo went well enough, and I hope some of my colleagues from around the State got a little taste of Moodle, especially as it compares to Blackboard/WebCT Vista. UEN [...]]]></description>
			<content:encoded><![CDATA[<p>I conducted a 1hr demonstration of <a href="http://moodle.org">the open source learning management system Moodle</a> 1.9.5 for higher ed folks in Utah and the Utah Education Network. The demo went well enough, and I hope some of my colleagues from around the State got a little taste of Moodle, especially as it compares to Blackboard/WebCT Vista<span id="more-1047"></span>. UEN facilitated this presentation to State participants via Wimba; I simultaneously <a href="http://jaredstein.org/2009/10/23/stream-conference-pres-with-webcammax-ustream/">streamed the session via Ustream using WebCamMax</a> and recorded it for anyone who is interested: <a href="http://www.ustream.tv/recorded/4127437">Moodle 1.9.5 Overview on Ustream</a>.</p>
<p>As I reviewed the video I noticed I had made a handful of mis-statements that I should correct here:</p>
<ul>
<li>Martin Dougiamas is from Australia, not New Zealand.</li>
<li>The book I reference at the beginning as inspiring me to rethink Moodle was <a href="http://www.amazon.com/Using-Moodle-Teaching-Management-Community/dp/0596008635">Jason Cole&#8217;s &#8220;Using Moodle&#8221;</a></li>
<li>Our <a href="http://www.slideshare.net/eamerril/banner-to-moodle-integration">Banner system talks to Moodle</a> via a <a href="http://moodle.org/mod/data/view.php?d=13&amp;rid=849z">Luminus Message Broker plug-in</a>, not LDAP (we use LDAP for WordPress MU)</li>
<li>When I talk about adaptive quizzing, I meant to refer to educational research on <em>web-based/hypermedia learning</em> from the last decade or so.</li>
<li>Though the Workshop tool has been dropped from Moodle 2.0, its functionality will not be replaced in the Assignment tool&#8211;instead <a href="http://docs.moodle.org/en/Development:Workshop_2.0_specification">a new Workshop tool</a> is in development for 2.0</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jaredstein.org/2010/01/21/video-moodle-1-9-5-overview-for-uen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dropping Lowest 2 (or More) Scores in Blackboard or Moodle</title>
		<link>http://jaredstein.org/2008/12/16/dropping-lowest-2-scores-in-blackboard-or-moodle/</link>
		<comments>http://jaredstein.org/2008/12/16/dropping-lowest-2-scores-in-blackboard-or-moodle/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 01:06:34 +0000</pubDate>
		<dc:creator>Jared Stein</dc:creator>
				<category><![CDATA[blackboard]]></category>
		<category><![CDATA[e-learning]]></category>
		<category><![CDATA[lms]]></category>
		<category><![CDATA[moodle]]></category>
		<category><![CDATA[web dev]]></category>
		<category><![CDATA[webct]]></category>
		<category><![CDATA[formula]]></category>
		<category><![CDATA[gradebook]]></category>
		<category><![CDATA[grades]]></category>
		<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://flexknowlogy.learningfield.org/?p=140</guid>
		<description><![CDATA[WebCT was infamous for it&#8217;s calculated column formula textarea that you couldn&#8217;t type in. When John Krutsch developed a clever Javascript hack for it (just one of several cool IE-only hacks packaged as WebCT PowerTools), crafting unusual formulas was suddenly more viable, and we began dropping not just the lowest score, but several low scores.
An [...]]]></description>
			<content:encoded><![CDATA[<p>WebCT was infamous for it&#8217;s calculated column formula textarea that you couldn&#8217;t type in. When <a href="http://technagogy.learningfield.org">John Krutsch</a> developed <a href="http://www.uvsc.edu/disted/tetc/powertools/insert_formula/insert_formula.html">a clever Javascript hack for it</a> (just one of several cool IE-only hacks packaged as <a href="http://www.uvsc.edu/disted/tetc/powertools/">WebCT PowerTools</a>), crafting unusual formulas was suddenly more viable, and we began dropping not just the lowest score, but several low scores<span id="more-140"></span>.</p>
<p>An hour after trying to work around <a href="http://tracker.moodle.org/secure/IssueNavigator.jspa?reset=true&amp;&amp;type=1&amp;pid=10011&amp;query=grades&amp;summary=true&amp;description=true&amp;body=true&amp;status=1">various bugs</a> in <a href="http://moodle.org/mod/forum/discuss.php?d=105169">the awful 1.9 Moodle gradebook</a> I found myself in need of this formula again, and the only place I could find it was in my own post on the old WebCT forums. I&#8217;m posting it here for my future reference only, but maybe it will be useful to other Bb Vista or Moodle users:</p>
<h4>Drop the Lowest Score of a Series</h4>
<p>For this example we need to know the labels (Bb/WebCT) or ids (Moodle) of the columns to be included. Here I use A1, A2, A3.</p>
<p>In this example we want to drop the lowest assignment score for our total, first in Blackboard Visa and then in Moodle:</p>
<div>Blackboard/WebCT Vista/CE: <code>
<div>SUM{[A1],[A2],[A3]}-MIN{[A1],[A2],[A3]}</div>
<p></code></div>
<div>Moodle: <code>
<div>=(sum([[A1]],[[A2]],[[A3]]))-(min([[A1]],[[A2]],[[A3]]))</div>
<p></code></div>
<p>This calculates the sum total of of the 3 assignments then subtracts the minimum score of the same series.</p>
<h4>Drop the Lowest Two Scores of a Series</h4>
<p>In this example we want to drop the lowest 2 assignment scores from our total. I&#8217;m using 5 assignments to illustrate this in practice.This can get pretty hairy, but once you&#8217;ve studied this example it should make sense:</p>
<div>Blackboard/WebCT Vista/CE: <code>
<div>SUM{[A1],[A2],[A3],[A4],[A5]}-MIN{([A1]+[A2]),([A1]+[A3]),([A1]+[A4]),([A1]+[A5]),([A2]+[A3]),([A2]+[A4]),([A2],A5]),([A3]+[A4]),([A3]+[A5]),([A4]+[A5])}</div>
<p></code></div>
<div>Moodle: <code>
<div>=(sum([[A1]],[[A2]],[[A3]],[[A4]],[[A5]]))-(MIN(([[A1]]+[[A2]]),([[A1]]+[[A3]]),([[A1]]+[[A4]]),([[A1]]+[[A5]]),([[A2]]+[[A3]]),([[A2]]+[[A4]]),([[A2]],[[A5]]),([[A3]]+[[A4]]),([[A3]]+[[A5]]),([[A4]]+[[A5]])))</div>
<p></code></div>
<p>This calculates the sum total of of the 5 assignments then subtracts the <strong>lowest possible combination of two scores</strong> found in the same series.</p>
<p>The aforementioned example will work for dropping lowest 3 and more using the same principles, but obviously it gets exponentially longer.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaredstein.org/2008/12/16/dropping-lowest-2-scores-in-blackboard-or-moodle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video: Intro to OpenShare for Moodle</title>
		<link>http://jaredstein.org/2008/10/23/video-intro-to-openshare-for-moodle/</link>
		<comments>http://jaredstein.org/2008/10/23/video-intro-to-openshare-for-moodle/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 22:31:31 +0000</pubDate>
		<dc:creator>Jared Stein</dc:creator>
				<category><![CDATA[moodle]]></category>
		<category><![CDATA[oer]]></category>
		<category><![CDATA[e-learning]]></category>
		<category><![CDATA[mods]]></category>
		<category><![CDATA[openshare]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://flexknowlogy.learningfield.org/2008/10/23/video-intro-to-openshare-for-moodle/</guid>
		<description><![CDATA[Mike Caufield asked that I put up a screencast on the OpenShare mod for Moodle. Here&#8217;s one that comes in just under 8 minutes&#8211;shorter even than my hatcheted and curtailed preso at MoodleMoot &#8216;08 SFO!

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_vOvQ55MxF1Y_460314042"
			class="flashmovie"
			width="425"
			height="350">
	<param name="movie" value="http://www.youtube.com/v/vOvQ55MxF1Y" />
	<param name="wmode" value="transparent" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.youtube.com/v/vOvQ55MxF1Y"
			name="fm_vOvQ55MxF1Y_460314042"
			width="425"
			height="350">
		<param name="wmode" value="transparent" />
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
Here&#8217;s a higher quality flv version:
Intro to OpenShare for Moodle 1.9 (flv)
]]></description>
			<content:encoded><![CDATA[<p>Mike Caufield asked that I put up a screencast on <a href="http://flexknowlogy.learningfield.org/2008/10/01/openshare-v05-for-moodle-released/">the OpenShare mod for Moodle</a>. Here&#8217;s one that comes in just under 8 minutes&#8211;shorter even than my hatcheted and curtailed preso at MoodleMoot &#8216;08 SFO<span id="more-109"></span>!</p>
<p><code>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_vOvQ55MxF1Y_1136064918"
			class="flashmovie"
			width="425"
			height="350">
	<param name="movie" value="http://www.youtube.com/v/vOvQ55MxF1Y" />
	<param name="wmode" value="transparent" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.youtube.com/v/vOvQ55MxF1Y"
			name="fm_vOvQ55MxF1Y_1136064918"
			width="425"
			height="350">
		<param name="wmode" value="transparent" />
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object></code></p>
<p>Here&#8217;s a higher quality flv version:</p>
<p><a href="http://learningfield.org/resources/stein/video/openshare_intro/openshare_intro.flv">Intro to OpenShare for Moodle 1.9 (flv)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jaredstein.org/2008/10/23/video-intro-to-openshare-for-moodle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenShare (v0.5) for Moodle Released</title>
		<link>http://jaredstein.org/2008/10/01/openshare-v05-for-moodle-released/</link>
		<comments>http://jaredstein.org/2008/10/01/openshare-v05-for-moodle-released/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 04:09:37 +0000</pubDate>
		<dc:creator>Jared Stein</dc:creator>
				<category><![CDATA[e-learning]]></category>
		<category><![CDATA[moodle]]></category>
		<category><![CDATA[oer]]></category>
		<category><![CDATA[blocks]]></category>
		<category><![CDATA[lms]]></category>
		<category><![CDATA[mods]]></category>
		<category><![CDATA[ocw]]></category>
		<category><![CDATA[openshare]]></category>

		<guid isPermaLink="false">http://flexknowlogy.learningfield.org/2008/10/01/openshare-v05-for-moodle-released/</guid>
		<description><![CDATA[The OpenShare block in Moodle
Tonight I&#8217;ve released the first all-new version of the OpenShare modification for Moodle 1.9, which I demonstrated last week at OpenEd 2008.
You may view OpenShare documentation or simply download the OpenShare mod now.

Overview of OpenShare

OpenShare turns Moodle into a veritable open educational resources (OER) or opencourseware (OCW) platform by allowing instructors [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right;width:221px;margin: 0 0 1.5em 1.5em;font-size: 75%"><img src="/resources/stein/images/openshare/openshare08.jpg" alt="the OpenShare block" />The OpenShare block in Moodle</div>
<p>Tonight I&#8217;ve released the first all-new version of the OpenShare modification for Moodle 1.9, which I demonstrated last week at <a href="http://cosl.usu.edu/events/opened2008">OpenEd 2008</a>.</p>
<p>You may <a href="/addons/openshare/">view OpenShare documentation</a> or simply <a href="/resources/stein/plugins/openshare.zip">download the OpenShare mod</a> now.</p>
<p><span id="more-103"></span></p>
<h3>Overview of OpenShare</h3>
<div><img src="http://metasolutions.us/resources/moodle/images/c_red.png" alt="C" height="11"><img src="http://metasolutions.us/resources/moodle/images/cc_01.png" alt="CC" height="11"><img src="http://metasolutions.us/resources/moodle/images/door_shut.png" alt="private" height="11"><img src="http://metasolutions.us/resources/moodle/images/door_glass.png" alt="shared" height="11"><img src="http://metasolutions.us/resources/moodle/images/door_open.png" alt="open" height="11"></div>
<p>OpenShare turns Moodle into a veritable open educational resources (OER) or opencourseware (OCW) platform by allowing instructors or designers to mark all or part of their Moodle courses as open (public) or closed (enrolled students and teachers only).  The open/closed status of any module applies to Moodle&#8217;s anonymous Guest role, but OpenShare goes further, adding an Open Learner role that can actually interact and complete open activities such as quizzes.  This feature provides a means by which a fully online distance education or independent study course in Moodle can be released as a self-directed informal-social learning environment for the general public, something not provided by typical opencourseware.</p>
<div style="1.5em 0;font-size: 75%"><a href="/resources/stein/images/openshare/openshare11.jpg"><img src="/resources/stein/images/openshare/openshare13.jpg" alt="open and close modules in Moodle" /></a>License, Open, or Close Resources &amp; Activities</div>
<p>Though based on our old <a href="http://flexknowlogy.learningfield.org/2008/04/30/project-status-moodle-open-mod-for-open-educational-resources/">Open Mod for OER</a>, I have renamed this version and reset the numbering because the scripting is 100% new and based on new logic.  I owe a lot of thanks to Mike Franks, Jovca, and Eric Bollens of UCLA for explaining their own Public/Private modification to me, and setting me in the right direction with respect to Groupings.</p>
<p>Further, this version of the mod is a Moodle block that requires <em>no modification of core Moodle code</em>.  I do, however, have two add-ons to the block that provide advanced usability of the mod.  These will be available soon <a href="/addons/openshare/">on the OpenShare page</a>.</p>
<div style="1.5em 0;font-size: 75%"><a href="/resources/stein/images/openshare/openshare14.jpg"><img src="/resources/stein/images/openshare/openshare14.jpg" alt="open and close individual modules in Moodle" /></a>An optional modification allows for OpenShare changes on the fly.</div>
<p>There are several exciting applications of the OpenShare mod:</p>
<ul>
<li>open all or part of live Moodle courses during the semester(s) they are offered; students do not mingle with public unless you so desire</li>
<li>duplicate complete or self-contained Moodle courses and open them up for public self-enrollment</li>
<li>duplicate a live Moodle server with courses intact and serve those courses with self-enrollment</li>
</ul>
<p>One of the most significant advantages of this mod is that it provides an alternative to redundant OER/OCW publishing platforms, and diminishes the need for dedicated OER/OCW staff by putting the power to control the license and release of resources and activities in the hands of the course creators.</p>
<p>From informal conversations and feedback I recognize that the next step is to tackle the problem of <em>getting OER out</em> of Moodle so it is interoperable.</p>
<p>For more info see my <a href="/addons/openshare/">OpenShare documentation &amp; download</a> page.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaredstein.org/2008/10/01/openshare-v05-for-moodle-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Re. Blackboard Customers Consider Alternatives</title>
		<link>http://jaredstein.org/2008/09/09/re-blackboard-customers-consider-alternatives/</link>
		<comments>http://jaredstein.org/2008/09/09/re-blackboard-customers-consider-alternatives/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 18:28:43 +0000</pubDate>
		<dc:creator>Jared Stein</dc:creator>
				<category><![CDATA[blackboard]]></category>
		<category><![CDATA[e-learning]]></category>
		<category><![CDATA[lms]]></category>
		<category><![CDATA[moodle]]></category>
		<category><![CDATA[articles]]></category>
		<category><![CDATA[reviews]]></category>

		<guid isPermaLink="false">http://flexknowlogy.learningfield.org/2008/09/09/re-blackboard-customers-consider-alternatives/</guid>
		<description><![CDATA[Our Chief Information Office, Ray Walker sent me an article in The Chronicle: Blackboard Customers Consider Alternatives. It&#8217;s a great read to gauge the current state of the corporate LMS leviathan.
One passage in particular percolated my sense of irony. In addressing the idea that institutions may have more flexibility to innovate with open source solutions, [...]]]></description>
			<content:encoded><![CDATA[<p>Our Chief Information Office, Ray Walker sent me an <a href="http://chronicle.com/temp/email2.php?id=QWn4YdzxcjgpSYpqZ4brvrbgk5RJpFkv">article in The Chronicle: <cite>Blackboard Customers Consider Alternatives</cite></a>. It&#8217;s a great read to gauge the current state of <em>the</em> corporate LMS leviathan.</p>
<p>One passage in particular percolated my sense of irony. In addressing the idea that institutions may have more flexibility to innovate with open source solutions, Michael Chasen&#8230;<span id="more-101"></span></p>
<blockquote>
<p>&#8230;argued that there are benefits to the corporate model of software publishing, too. &#8220;I have 300 people on my development team working full time on our products and services,&#8221; he said. &#8220;I don&#8217;t know if there are 300 full-time people currently working on Sakai. Maybe there are. I have a multimillion-dollar hardware-testing lab just to test scalability.&#8221;</p>
<p>&#8220;At a minimum,&#8221; he said, &#8220;we are at least just as innovative as open source.&#8221;</p>
</blockquote>
<p><em>At least</em> as innovative as open source! With millions in expenditures on hardware and developers Bb is proud of the fact that they are at least as innovative as open source, which runs on the power of volunteers and sheer passion? <strong>Chasen&#8217;s statement can be read both ways</strong>, confirming what I&#8217;ve believed for the past two years: that free, oss platforms such as Moodle etc. are now <em>on par</em> with Bb and the other Big Boys, and thus a monumentally better deal for educational institutions. Instead of investing money in licensing, <strong>invest that money in people</strong>, and shape the direction of the LMS in ways that are best-suited to your institution&#8217;s needs.</p>
<p>Chasen poo-poo&#8217;s the <a href="http://4.79.18.250/file.php?file=/1/ITCAnnualSurveyMarch2008.pdf">evidence that institutions are leaving Bb for Moodle</a>, yet his self-assured statement on the matter reveals a flaw in his logic: &#8220;There&#8217;s not more people leaving now than there were yesterday.&#8221;  If I have 10 people on Bb on Monday and 1 person leaves, I have 9 on Tuesday. If 1 person then leaves (same count of attrition), that&#8217;s down to 8 I have on Wednesday.  There may not be an increase in the number of people leaving now than there were yesterday, but <strong>the conversion rate is still being whittled away</strong>. To exacerbate this fact, I don&#8217;t see herds of institutions stampeding towards adopting Bb for the first time (Q4 2009 call reports <a href="http://seekingalpha.com/article/118588-blackboard-inc-q4-2008-earnings-call-transcript?page=9">new higher ed customer increase at about 5%</a>).</p>
<p><a href="http://www.blackboard.com/patent/FAQ_013107.htm">Blackboard insists that it&#8217;s patent claims will not be asserted against open source software LMS development</a>, but if they really are as shark-like as the Chronicle suggests, what other plans might Chasen et al have to deal with <a href="http://mfeldstein.com/bad-news-for-blackboard-good-news-for-moodle/">the growing &#8220;threat&#8221; of Moodle and other oss platforms to their marketshare</a>? The recent <a href="http://www.insidehighered.com/news/2008/07/15/sakai">Bb partnership with Sakai to develop an open source integration tool</a> may provide some insight. <a href="http://mfeldstein.com">Michael Feldstein</a> highlighted this <a href="http://mfeldstein.com/blackboard-inc-analysis-part-2-financial-performance/">excerpt from the August 6, 2008 Bb earnings conference call wherein Chasen reported</a>,</p>
<blockquote><p>
our learning system will be able to load other course management system courses through our interface. &#8230;a lot of campuses have standardized on the Blackboard system&#8230; but there maybe an individual teacher or a very small department that is using either a home-grown system or maybe an open-source solution&#8230;
</p></blockquote>
<p>It sounds to me as if a developing Bb strategy is to partner with or leverage open source projects to produce integration or transmogrification tools in order to sweep dissident teachers and courses into Bb.</p>
<p>Thinking about Bb&#8217;s <em>modus operandi</em>, <a href="http://flexknowlogy.learningfield.org/2008/02/23/blackboard-wins-patent-lawsuit-vs-desire2learn/">the patent debacle</a>,  and of course  <a href="http://www.cedma-europe.org/newsletter%20articles/misc/On%20the%20cost%20of%20selling%20an%20Enterprise%20Learning%20System%20%20(Jan%2006).pdf">the cost of licenses</a> has already conjured some new, bitter slogans to post on John Krutsch&#8217;s &gt;Blackboard Customer-ized Mug Maker. It looks like a great place to vent for disgruntled Bb users; let&#8217;s just hope he doesn&#8217;t receive his own cease and desist notification.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaredstein.org/2008/09/09/re-blackboard-customers-consider-alternatives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moodle Demo for LMS Showcase</title>
		<link>http://jaredstein.org/2008/08/13/moodle-demo-for-lms-showcase/</link>
		<comments>http://jaredstein.org/2008/08/13/moodle-demo-for-lms-showcase/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 05:03:03 +0000</pubDate>
		<dc:creator>Jared Stein</dc:creator>
				<category><![CDATA[lms]]></category>
		<category><![CDATA[moodle]]></category>
		<category><![CDATA[demos]]></category>

		<guid isPermaLink="false">http://flexknowlogy.learningfield.org/2008/08/13/moodle-demo-for-lms-showcase/</guid>
		<description><![CDATA[UEN and USHE are hosting a showcase of current learning management systems tomorrow, August 14th, at the Marriott library in Salt Lake City.  I get to present Moodle at 9:30am, so here&#8217;s a quick link to my Moodle Demo presentation page, which includes an overview document and a backchannel for chat.
]]></description>
			<content:encoded><![CDATA[<p>UEN and USHE are hosting a showcase of current learning management systems tomorrow, August 14th, at the Marriott library in Salt Lake City.  I get to present Moodle at 9:30am, so <a href="http://flexknowlogy.learningfield.org/pres/moodledemo/">here&#8217;s a quick link to my Moodle Demo presentation page</a>, which includes an overview document and a backchannel for chat.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaredstein.org/2008/08/13/moodle-demo-for-lms-showcase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MoodleMoot Presentation: OER, OCW, &amp; the Open Mod</title>
		<link>http://jaredstein.org/2008/06/11/moodle-moot-open-educational-resources-open-mod/</link>
		<comments>http://jaredstein.org/2008/06/11/moodle-moot-open-educational-resources-open-mod/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 17:14:35 +0000</pubDate>
		<dc:creator>Jared Stein</dc:creator>
				<category><![CDATA[conferences]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[lms]]></category>
		<category><![CDATA[moodle]]></category>
		<category><![CDATA[oer]]></category>
		<category><![CDATA[ocw]]></category>
		<category><![CDATA[open]]></category>
		<category><![CDATA[presentations]]></category>

		<guid isPermaLink="false">http://flexknowlogy.learningfield.org/2008/06/11/moodle-moot-open-educational-resources-open-mod/</guid>
		<description><![CDATA[Today I am presenting at the SFo MoodleMoot on how Moodle can be used to deliver Open Educational Resources, especially through our modification of Moodle, the Open Meta Mod.
Presentation slides are now available and you are welcome to participate in the backchannel through the chat window provided below.
Presentation Slides
openmod.ppt
Web Sites Referenced

OpenCourseWare Consortium
Open Educational Resources Commons
David [...]]]></description>
			<content:encoded><![CDATA[<p>Today I am presenting at <a href="http://moodlemoot.org/course/view.php?id=6">the SFo MoodleMoot</a> on how Moodle can be used to deliver Open Educational Resources, especially through our modification of Moodle, the Open Meta Mod.</p>
<p>Presentation slides are now available and you are welcome to participate in the<a href="#yshout"> backchannel through the chat window provided below</a>.</p>
<h4>Presentation Slides</h4>
<p><a href="http://learningfield.org/resources/pres_materials/openmod.ppt">openmod.ppt</a></p>
<h4>Web Sites Referenced</h4>
<ul>
<li><a href="http://ocwconsortium.org/about/">OpenCourseWare Consortium</a></li>
<li><a href="http://oercommons.org/help/learn-more-about/oer">Open Educational Resources Commons</a></li>
<li><a href="http://opencontent.org/wiki/">David Wiley&#8217;s OpenContent Wiki</a></li>
<li><a href="http://opencontent.org/blog/">David Wiley&#8217;s OpenContent blog</a></li>
<li><a href="http://opencontent.org/blog/archives/499">Utah Open High School</a></li>
<li><a href="http://creativecommons.org/license/">Creative Commons licenses</a></li>
<li><a href="http://ocw.mit.edu/OcwWeb/HowTo/MakingTheCase.htm">MIT&#8217;s &#8220;Making the Case for OCW&#8221;</a></li>
<li><a href="http://virtualeconomics.typepad.com/virtualeconomics/2007/10/why-a-reputatio.html">Why a Reputation Economy?</a>
<li><a href="http://openlearn.open.ac.uk/">UK&#8217;s Open University LearningSpace</a></li>
<li><a href="http://opencontentdiy.wordpress.com/">OpenContentDIY</a></li>
<li><a href="http://www.flickr.com/photos/leighblackall/64955399/">Leigh Blackall&#8217;s slide on Another Way</a></li>
</ul>
<p>P.S. After my presentation was over, I came back to my hotel to find this bus in the parking lot. It&#8217;s nothing less than a sign for a questioning open education convert.</p>
<p><a href="http://www.flickr.com/photos/5tein/2571086823/"><img src="http://farm4.static.flickr.com/3119/2571086823_1cb4201aa1.jpg?v=0" alt="get on the ocw bus" /></a></p>
<div id="yshout"></div>
]]></content:encoded>
			<wfw:commentRss>http://jaredstein.org/2008/06/11/moodle-moot-open-educational-resources-open-mod/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Presenting OER Mod at MoodleMoot San Francisco</title>
		<link>http://jaredstein.org/2008/05/15/presenting-oer-mod-at-moodlemoot-san-francisco/</link>
		<comments>http://jaredstein.org/2008/05/15/presenting-oer-mod-at-moodlemoot-san-francisco/#comments</comments>
		<pubDate>Thu, 15 May 2008 19:06:34 +0000</pubDate>
		<dc:creator>Jared Stein</dc:creator>
				<category><![CDATA[conferences]]></category>
		<category><![CDATA[moodle]]></category>
		<category><![CDATA[oer]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[e-learning]]></category>
		<category><![CDATA[moodlemoot]]></category>
		<category><![CDATA[ocw]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[presentations]]></category>

		<guid isPermaLink="false">http://flexknowlogy.learningfield.org/2008/05/15/presenting-oer-mod-at-moodlemoot-san-francisco/</guid>
		<description><![CDATA[It looks like I&#8217;ll be presenting at the 2008 MoodleMoot San Francisco, June 9 &#8211; 11, 2008 South San Francisco Conference Center on our Open Mod for sharing open educational resources.  I&#8217;ll be dragging Kenneth Woodward along to explain the technical facets of the mod, and to delve into the community of Moodle developers.
Of [...]]]></description>
			<content:encoded><![CDATA[<p>It looks like <a href="http://moodlemoot.org/mod/data/view.php?d=2&amp;rid=98">I&#8217;ll be presenting</a> at the <a href="http://moodlemoot.org/course/view.php?id=6">2008 MoodleMoot San Francisco</a>, June 9 &#8211; 11, 2008 <a href="http://www.ssfconf.com">South San Francisco Conference Center</a> on our <a href="http://flexknowlogy.learningfield.org/2008/04/30/project-status-moodle-open-mod-for-open-educational-resources/">Open Mod for sharing open educational resources</a>.  I&#8217;ll be dragging <a href="http://twitter.com/kenwoodward">Kenneth Woodward</a> along to explain the technical facets of the mod, and to delve into the community of Moodle developers.</p>
<p>Of course, prior to the conference Ken and I will have to work pretty aggressively with <a href="http://twitter.com/clarknielsen">Clark Nielsen</a> and <a href="http://technagogy.learningfield.org">John Krutsch</a> to ensure that the mod&#8217;s features and functionalities are stable and presentable.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaredstein.org/2008/05/15/presenting-oer-mod-at-moodlemoot-san-francisco/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
