<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head profile="http://gmpg.org/xfn/11">

<script type="text/javascript" src="/static/js/analytics.js" ></script>
<link type="text/css" rel="stylesheet" href="/static/css/banner_styles.css"/>




	<title>  Open Educational Resources in the Wall Street Journal at  OERderves</title>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
	<meta name="generator" content="WordPress 2.1" />
	<meta name="template" content="K2 Beta Two 0.95 RC1" />
 	<meta name="description" content="Musings on open educational resources by Mike, Cathy and Phoenix" />
  
	<link rel="stylesheet" type="text/css" media="screen" href="/wp_content/themes/k2/style.css" />
	<link rel="stylesheet" type="text/css" media="print" href="/wp_content/themes/k2/css/print.css" />
		<link rel="stylesheet" type="text/css" media="screen" href="/wp_content/themes/k2/css/rollingarchives.css" />
		
	<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="/index_feed_rss2.html" />
	<link rel="alternate" type="text/xml" title="RSS .92" href="/index_feed_rss.html" />
	<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="/index_feed_atom.html" />

		<link rel="pingback" href="/xmlrpc.html" />
	
		<script type="text/javascript" src="/wp_content/themes/k2/js/prototype.js.html"></script>
	<script type="text/javascript" src="/wp_content/themes/k2/js/effects.js.html"></script>
	
		
	<script type="text/javascript" src="/wp_content/themes/k2/js/slider.js.html"></script>
	<script type="text/javascript" src="/wp_content/themes/k2/js/trimmer.js.html"></script>
		
	<script type="text/javascript" src="/wp_content/themes/k2/js/k2functions.js.html"></script>

		<script type="text/javascript" src="/wp_content/themes/k2/js/comments.js.html"></script>
	
		<script type="text/javascript" src="/wp_content/themes/k2/js/livesearch.js.html"></script>
	<script type="text/javascript">
	//<![CDATA[
		Event.observe(window, "load", function() {
			new Livesearch("searchform", "s", "dynamic-content", "current-content", window.location.href.match(/^(http:\/\/[^\/]+)/)[1] + '/wp_content/themes/k2/index.html' + "/rollingarchive.html", "&s=", "searchload", "Type and Wait to Search", "searchreset", "searchsubmit", "go");
		});
	//]]>
	</script>
	
		<script type="text/javascript" src="/wp_content/themes/k2/js/rollingarchives.js.html"></script>
	
	
		<link rel='archives' title='May 2007' href='/index_m_200705.html' />
	<link rel='archives' title='March 2007' href='/index_m_200703.html' />
	<link rel='archives' title='February 2007' href='/index_m_200702.html' />
	<link rel='archives' title='November 2006' href='/index_m_200611.html' />

		<link rel="EditURI" type="application/rsd+xml" title="RSD" href="/xmlrpc_rsd_.html" />

	<!-- BDP RSS Aggregator version 0.5.3 (alpha) -->
		<style type="text/css">
				#header {
			background: url("/wp_content/themes/k2/images/headers/cropped_oerdervesbanner2.jpg");
		}
										#header h1 a, #header .description {
				color: #ffffff;
			}
							</style>
			
</head>

<body class="wordpress k2 y2007 m06 d13 h07 single s-y2007 s-m02 s-d15 s-h12 s-category-oer s-author-Cathy" >
<!-- BEGIN WAYBACK TOOLBAR INSERT -->
<script> if (window.archive_analytics) { window.archive_analytics.values['server_name']="wwwb-app13.us.archive.org";}; </script>

<script type="text/javascript" src="/static/js/disclaim_element.js" ></script>
<script type="text/javascript" src="/static/js/graph_calc.js" ></script>
<script type="text/javascript" src="/static/jflot/jquery.min.js" ></script>
<script type="text/javascript">
//<![CDATA[
var firstDate = 820454400000;
var lastDate = 1388534399999;
var wbPrefix = "/web/";
var wbCurrentUrl = "http:\/\/www.oerderves.org\/?p=18";

var curYear = -1;
var curMonth = -1;
var yearCount = 18;
var firstYear = 1996;
var imgWidth = 450;
var yearImgWidth = 25;
var monthImgWidth = 2;
var trackerVal = "none";
var displayDay = "13";
var displayMonth = "Jun";
var displayYear = "2007";
var prettyMonths = ["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];

function showTrackers(val) {
	if(val == trackerVal) {
		return;
	}
	if(val == "inline") {
		document.getElementById("displayYearEl").style.color = "#ec008c";
		document.getElementById("displayMonthEl").style.color = "#ec008c";
		document.getElementById("displayDayEl").style.color = "#ec008c";		
	} else {
		document.getElementById("displayYearEl").innerHTML = displayYear;
		document.getElementById("displayYearEl").style.color = "#ff0";
		document.getElementById("displayMonthEl").innerHTML = displayMonth;
		document.getElementById("displayMonthEl").style.color = "#ff0";
		document.getElementById("displayDayEl").innerHTML = displayDay;
		document.getElementById("displayDayEl").style.color = "#ff0";
	}
   document.getElementById("wbMouseTrackYearImg").style.display = val;
   document.getElementById("wbMouseTrackMonthImg").style.display = val;
   trackerVal = val;
}
function getElementX2(obj) {
	var thing = jQuery(obj);
	if((thing == undefined) 
			|| (typeof thing == "undefined") 
			|| (typeof thing.offset == "undefined")) {
		return getElementX(obj);
	}
	return Math.round(thing.offset().left);
}
function trackMouseMove(event,element) {

   var eventX = getEventX(event);
   var elementX = getElementX2(element);
   var xOff = eventX - elementX;
	if(xOff < 0) {
		xOff = 0;
	} else if(xOff > imgWidth) {
		xOff = imgWidth;
	}
   var monthOff = xOff % yearImgWidth;

   var year = Math.floor(xOff / yearImgWidth);
	var yearStart = year * yearImgWidth;
   var monthOfYear = Math.floor(monthOff / monthImgWidth);
   if(monthOfYear > 11) {
       monthOfYear = 11;
   }
   // 1 extra border pixel at the left edge of the year:
   var month = (year * 12) + monthOfYear;
   var day = 1;
	if(monthOff % 2 == 1) {
		day = 15;
	}
	var dateString = 
		zeroPad(year + firstYear) + 
		zeroPad(monthOfYear+1,2) +
		zeroPad(day,2) + "000000";

	var monthString = prettyMonths[monthOfYear];
	document.getElementById("displayYearEl").innerHTML = year + 1996;
	document.getElementById("displayMonthEl").innerHTML = monthString;
	// looks too jarring when it changes..
	//document.getElementById("displayDayEl").innerHTML = zeroPad(day,2);

	var url = wbPrefix + dateString + '/index.html' +  wbCurrentUrl;
	document.getElementById('wm-graph-anchor').href = url;

   //document.getElementById("wmtbURL").value="evX("+eventX+") elX("+elementX+") xO("+xOff+") y("+year+") m("+month+") monthOff("+monthOff+") DS("+dateString+") Moy("+monthOfYear+") ms("+monthString+")";
   if(curYear != year) {
       var yrOff = year * yearImgWidth;
       document.getElementById("wbMouseTrackYearImg").style.left = yrOff + "px";
       curYear = year;
   }
   if(curMonth != month) {
       var mtOff = year + (month * monthImgWidth) + 1;
       document.getElementById("wbMouseTrackMonthImg").style.left = mtOff + "px";
       curMonth = month;
   }
}
//]]>
</script>

<style type="text/css">body{margin-top:0!important;padding-top:0!important;min-width:800px!important;}#wm-ipp a:hover{text-decoration:underline!important;}</style>
<div id="wm-ipp" lang="en" class="__wb_banner_div" style="display:none; position:relative;padding:0 5px;min-height:70px;min-width:800px">


<div id="wm-ipp-inside" class="__wb_banner_div" style="position:fixed;padding:0!important;margin:0!important;width:97%;min-width:780px;border:5px solid #000;border-top:none;background-image:url(/static/images/toolbar/wm_tb_bk_trns.png);text-align:center;-moz-box-shadow:1px 1px 3px #333;-webkit-box-shadow:1px 1px 3px #333;box-shadow:1px 1px 3px #333;font-size:11px!important;font-family:'Lucida Grande','Arial',sans-serif!important;">
   <table style="border-collapse:collapse;margin:0;padding:0;width:100%;"><tbody><tr>
   <td style="padding:10px;vertical-align:top;min-width:110px;">
   <a href="/web/" title="Wayback Machine home page" style="background-color:transparent;border:none;"><img src="/static/images/toolbar/wayback_toolbar_logo.png" alt="Wayback Machine" width="110" height="39" border="0"/></a>
   </td>
   <td style="padding:0!important;text-align:center;vertical-align:top;width:100%;">

       <table style="border-collapse:collapse;margin:0 auto;padding:0;width:570px;"><tbody><tr>
       <td style="padding:3px 0;" colspan="2">
       <form target="_top" method="get" action="/web/form-submit.jsp" name="wmtb" id="wmtb" style="margin:0!important;padding:0!important;"><input type="text" name="url" id="wmtbURL" value="/index_p_18.css" style="width:400px;font-size:11px;font-family:'Lucida Grande','Arial',sans-serif;" onfocus="javascript:this.focus();this.select();" /><input type="hidden" name="type" value="replay" /><input type="hidden" name="date" value="20070613144343" /><input type="submit" value="Go" style="font-size:11px;font-family:'Lucida Grande','Arial',sans-serif;margin-left:5px;width: inherit !important" /><span id="wm_tb_options" style="display:block;"></span></form>
       </td>
       <td style="vertical-align:bottom;padding:5px 0 0 0!important;" rowspan="2">
           <table style="border-collapse:collapse;width:110px;color:#99a;font-family:'Helvetica','Lucida Grande','Arial',sans-serif;"><tbody>
			
           <!-- NEXT/PREV MONTH NAV AND MONTH INDICATOR -->
           <tr style="width:110px;height:16px;font-size:10px!important;">
           	<td style="padding-right:9px;font-size:11px!important;font-weight:bold;text-transform:uppercase;text-align:right;white-space:nowrap;overflow:visible;" nowrap="nowrap">
               
                       May
                       
               </td>
               <td id="displayMonthEl" style="background:#000;color:#ff0;font-size:11px!important;font-weight:bold;text-transform:uppercase;width:34px;height:15px;padding-top:1px;text-align:center;" title="You are here: 14:43:43 Jun 13, 2007">JUN</td>
				<td style="padding-left:9px;font-size:11px!important;font-weight:bold;text-transform:uppercase;white-space:nowrap;overflow:visible;" nowrap="nowrap">
               
                       Jul
                       
               </td>
           </tr>

           <!-- NEXT/PREV CAPTURE NAV AND DAY OF MONTH INDICATOR -->
           <tr>
               <td style="padding-right:9px;white-space:nowrap;overflow:visible;text-align:right!important;vertical-align:middle!important;" nowrap="nowrap">
               
                       <img src="/static/images/toolbar/wm_tb_prv_off.png" alt="Previous capture" width="14" height="16" border="0" />
                       
               </td>
               <td id="displayDayEl" style="background:#000;color:#ff0;width:34px;height:24px;padding:2px 0 0 0;text-align:center;font-size:24px;font-weight: bold;" title="You are here: 14:43:43 Jun 13, 2007">13</td>
				<td style="padding-left:9px;white-space:nowrap;overflow:visible;text-align:left!important;vertical-align:middle!important;" nowrap="nowrap">
               
		                <a href="/index_p_18.css" title="5:17:46 Jun 17, 2007" style="background-color:transparent;border:none;"><img src="/static/images/toolbar/wm_tb_nxt_on.png" alt="Next capture" width="14" height="16" border="0"/></a>
		                
			    </td>
           </tr>

           <!-- NEXT/PREV YEAR NAV AND YEAR INDICATOR -->
           <tr style="width:110px;height:13px;font-size:9px!important;">
				<td style="padding-right:9px;font-size:11px!important;font-weight: bold;text-align:right;white-space:nowrap;overflow:visible;" nowrap="nowrap">
               
                       2006
                       
               </td>
               <td id="displayYearEl" style="background:#000;color:#ff0;font-size:11px!important;font-weight: bold;padding-top:1px;width:34px;height:13px;text-align:center;" title="You are here: 14:43:43 Jun 13, 2007">2007</td>
				<td style="padding-left:9px;font-size:11px!important;font-weight: bold;white-space:nowrap;overflow:visible;" nowrap="nowrap">
               
                       2008
                       
				</td>
           </tr>
           </tbody></table>
       </td>

       </tr>
       <tr>
       <td style="vertical-align:middle;padding:0!important;">
           <a href="/index_p_18.css" style="color:#33f;font-size:11px;font-weight:bold;background-color:transparent;border:none;" title="See a list of every capture for this URL"><strong>3 captures</strong></a>
           <div class="__wb_banner_div" style="margin:0!important;padding:0!important;color:#666;font-size:9px;padding-top:2px!important;white-space:nowrap;" title="Timespan for captures of this URL">13 Jun 07 - 17 Jun 07</div>
       </td>
       <td style="padding:0!important;">
       <a style="position:relative; white-space:nowrap; width:450px;height:27px;" href="" id="wm-graph-anchor">
       <div class="__wb_banner_div" id="wm-ipp-sparkline" style="position:relative; white-space:nowrap; width:450px;height:27px;background-color:#fff;cursor:pointer;border-right:1px solid #ccc;" title="Explore captures for this URL">
			<img id="sparklineImgId" style="position:absolute; z-index:9012; top:0px; left:0px;"
				onmouseover="showTrackers('inline');" 
				onmouseout="showTrackers('none');"
				onmousemove="trackMouseMove(event,this)"
				alt="sparklines"
				width="450"
				height="27"
				border="0"
				src="graph.jsp?graphdata=450_27_1996:-1:000000000000_1997:-1:000000000000_1998:-1:000000000000_1999:-1:000000000000_2000:-1:000000000000_2001:-1:000000000000_2002:-1:000000000000_2003:-1:000000000000_2004:-1:000000000000_2005:-1:000000000000_2006:-1:000000000000_2007:5:000003000000_2008:-1:000000000000_2009:-1:000000000000_2010:-1:000000000000_2011:-1:000000000000_2012:-1:000000000000_2013:-1:000000000000"></img>
			<img id="wbMouseTrackYearImg" 
				style="display:none; position:absolute; z-index:9010;"
				width="25" 
				height="27"
				border="0"
				src="/static/images/toolbar/transp_yellow_pixel.png"></img>
			<img id="wbMouseTrackMonthImg"
				style="display:none; position:absolute; z-index:9011; " 
				width="2"
				height="27" 
				border="0"
				src="/static/images/toolbar/transp_red_pixel.png"></img>
       </div>
		</a>

       </td>
       </tr></tbody></table>
   </td>
   <td style="text-align:right;padding:5px;width:65px;font-size:11px!important;">
       <a href="javascript:;" onclick="document.getElementById('wm-ipp').style.display='none';" style="display:block;padding-right:18px;background:url(/static/images/toolbar/wm_tb_close.png) no-repeat 100% 0;color:#33f;font-family:'Lucida Grande','Arial',sans-serif;margin-bottom:23px;background-color:transparent;border:none;" title="Close the toolbar">Close</a>
       <a href="http://faq.web.archive.org/" style="display:block;padding-right:18px;background:url(/static/images/toolbar/wm_tb_help.png) no-repeat 100% 0;color:#33f;font-family:'Lucida Grande','Arial',sans-serif;background-color:transparent;border:none;" title="Get some help using the Wayback Machine">Help</a>
   </td>
   </tr></tbody></table>

</div>
</div>
<script type="text/javascript">
 var wmDisclaimBanner = document.getElementById("wm-ipp");
 if(wmDisclaimBanner != null) {
   disclaimElement(wmDisclaimBanner);
 }
</script>
<!-- END WAYBACK TOOLBAR INSERT -->


<div id="page">

	<div id="header">

		<h1><a href="/index.html">OERderves</a></h1>
		<p class="description">Musings on open educational resources by Mike, Cathy and Phoenix</p>

		<ul class="menu">
						<li class="current_page_item"><a href="/index.html" title="Blog">Blog</a></li>
						<li class="page_item"><a href="/index_page_id_4.html" title="OER Blogs">OER Blogs</a></li>
<li class="page_item"><a href="/index_page_id_5.html" title="OCW Blogs">OCW Blogs</a></li>
<li class="page_item"><a href="/index_page_id_2.html" title="About">About</a></li>
					</ul>

	</div>

		<hr />
<div class="content">

	<div id="primary">
		<div id="current-content">
			<div id="primarycontent" class="hfeed">

				
	
	 

	
	
		
	<hr />

	
	<div class="navigation">
		<div class="left"><span>&laquo;</span> <a href="/index_p_17.css">Open Source - Open Access at the University of Toronto</a></div>		<div class="right"><a href="/index_p_21.css">Community portal</a> <span>&raquo;</span></div>		<div class="clear"></div>
	</div>

	
	<hr />

	
		<div id="post-18" class="hentry p1 post publish author-Cathy category-oer y2007 m02 d15 h12 alt">
			<div class="entry-head">
				<h3 class="entry-title"><a href="/index_p_18.css" rel="bookmark" title='Permanent Link to "Open Educational Resources in the Wall Street Journal"'>Open Educational Resources in the Wall Street Journal</a></h3>
				
				<small class="entry-meta">
					<span class="chronodata">
						Published by <span class="vcard author"><a href="/index_author_2.html" class="url fn">Cathy</a></span> <abbr class="published" title="2007-02-15T12:42:24-0700">February 15th, 2007</abbr>					</span>

					<span class="entry-category">in <a href="/index_cat_8.html" title="View all posts in OER">OER</a>.</span>
									
									
									</small> <!-- .entry-meta -->
			</div> <!-- .entry-head -->

			<div class="entry-content">
				<p> Today&#8217;s <a href="http://online.wsj.com/article_email/article_print/SB117150338599609332-lMyQjAxMDE3NzExNTUxMDUzWj.html" title="Yale on $0 A Day - wSJ">Wall Street Journal</a> published a terrific article on OpenCourseWare institutions and the movement by universities to open content to all. As we think about the growth of the number of universities freely sharing content over the past five years - it is truly amazing - institutions of higher education have made a significant cultural shift, whereas previously they hoarded knowledge they now support a culture of sharing. So how do we ratchet our collective work to the next level? How does OCW become so cost efficient and integrated into the fabric of a university that it doesn&#8217;t make sense not to participate?</p>

							</div> <!-- .entry-content -->

		</div> <!-- #post-ID -->

	
		
	
				
	
	<div class="comments">

		<h4><span id="comments">0</span> Responses to &#8220;Open Educational Resources in the Wall Street Journal&#8221;</h4>

		<div class="metalinks">
			<span class="commentsrsslink"><a href='/index_feed_rss2_p_18.html'>Feed for this Entry</a></span>
			<span class="trackbacklink"><a href="/wp_trackback_p_18.html" title="Copy this URI to trackback this entry.">Trackback Address</a></span>		</div>

		
	<hr />

				
				
		 
		<ol id="commentlist">
			<li id="leavecomment">
				No Comments			</li>
		</ol>
				
		
	</div> <!-- END .comments 1 -->
		
		
		<div class="comments">
		<h4 id="respond" class="reply">Leave a Reply</h4>
		
		
			<form action="/wp_comments_post.html" method="post" id="commentform">

						
							<div id="comment-personaldetails">
					<p><input type="text" name="author" id="author" value="" size="22" tabindex="1" />
					<label for="author"><small><strong>Name</strong> </small></label></p>

					<p><input type="text" name="email" id="email" value="" size="22" tabindex="2" />
					<label for="email"><small><strong>Mail</strong> (will not be published) </small></label></p>

					<p><input type="text" name="url" id="url" value="" size="22" tabindex="3" />
					<label for="url"><small><strong>Website</strong></small></label></p>
				</div>
							<!--<p><small><strong>XHTML:</strong> You can use these tags &lt;a href=&quot;&quot; title=&quot;&quot;&gt; &lt;abbr title=&quot;&quot;&gt; &lt;acronym title=&quot;&quot;&gt; &lt;b&gt; &lt;blockquote cite=&quot;&quot;&gt; &lt;code&gt; &lt;em&gt; &lt;i&gt; &lt;strike&gt; &lt;strong&gt; :</small></p>-->
		
				<p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>
		
								
				<p>
					<input name="submit" type="submit" id="submit" tabindex="5" value="Submit" />
					<input type="hidden" name="comment_post_ID" value="18" />
				</p>
				
				<div class="clear"></div>

				
			</form>

				
			
	<hr />

	
	<div class="navigation">
		<div class="left"><span>&laquo;</span> <a href="/index_p_17.css">Open Source - Open Access at the University of Toronto</a></div>		<div class="right"><a href="/index_p_21.css">Community portal</a> <span>&raquo;</span></div>		<div class="clear"></div>
	</div>

	
	<hr />
	
	</div> <!-- END .comments #2 -->
	
			</div> <!-- #primarycontent .hfeed -->
		</div> <!-- #current-content -->

		<div id="dynamic-content"></div>
	</div> <!-- #primary -->

	<hr />

<div class="secondary">

<div id="recent-comments" class="widget sb-comments"><h2 class="widgettitle">Recent Comments</h2>
	<a href="/index_feed_comments_rss2.html" title="RSS Feed for all Comments" class="feedlink"><img src="/wp_content/themes/k2/images/feed.png" alt="RSS" /></a>
			<ul>
							<li><a href='/index.html' rel='external nofollow'>Henry Williams</a> on post <a href="/index_p_30.html">Grantees Brainstorm #3: How do we build these key components and connect them?</a></li>
							<li><a href='/index.html' rel='external nofollow'>Henry Williams</a> on post <a href="/index_p_31.css">Open Access Success Stories</a></li>
							<li><a href='http://www.wikirandy.com/' rel='external nofollow'>Randy Fisher</a> on post <a href="/index_p_33.css">OpenCourseWare Consortium Meeting - Santander, Spain</a></li>
							<li>johndehlin on post <a href="/index_p_33.css">OpenCourseWare Consortium Meeting - Santander, Spain</a></li>
							<li><a href='http://www.intelligenttelevision.com/' rel='external nofollow'>Peter Kaufman</a> on post <a href="/index_p_30.html">Grantees Brainstorm #3: How do we build these key components and connect them?</a></li>
							<li><a href='http://www.paulhillsdon.com/blog/?p=137' rel='external nofollow'>Update! And links. | paulhillsdon.com</a> on post <a href="/index_p_28.css">Grantees Brainstorm #1: What does transformed teaching and learning look like? </a></li>
							<li><a href='http://is.tm.tue.nl/staff/jgoossenaerts/' rel='external nofollow'>Jan Goossenaerts</a> on post <a href="/index_p_23.css">A Review of the Open Educational Resources (OER) Movement</a></li>
							<li><a href='http://kmi.open.ac.uk/people/marc/2007/04/16/open-participatory-learning-infrastructure-opli/' rel='external nofollow'>EisenBlog - Marc Eisenstadt's Home Page Blog at The Open University's Knowledge Media Institute &raquo; Blog Archive &raquo; Open Participatory Learning Infrastructure (OPLI)</a> on post <a href="/index_p_23.css">A Review of the Open Educational Resources (OER) Movement</a></li>
							<li><a href='http://b2fxxx.blogspot.com/' rel='external nofollow'>Ray Corrigan</a> on post <a href="/index_p_31.css">Open Access Success Stories</a></li>
							<li><a href='http://www.open.ac.uk/openlearn' rel='external nofollow'>Andy Lane</a> on post <a href="/index_p_23.css">A Review of the Open Educational Resources (OER) Movement</a></li>
					</ul>
		</div><div id="links" class="widget sb-links">	<ul>
			<li id="linkcat-5" class="linkcat"><h2>OCW Sites</h2>
	<ul>
<li><a href="http://www.core.org.cn/cn/jpkc/index_en.html">CORE</a></li>
<li><a href="http://rightstraining.fahamu.org/">Fahamu OCW</a></li>
<li><a href="http://www.jocw.jp/">Japan OCW</a></li>
<li><a href="http://ocw.jhsph.edu/">JHSPH OCW</a></li>
<li><a href="http://ocw.mit.edu/">MIT OCW</a></li>
<li><a href="http://ocw.nd.edu/">Notre Dame OCW</a></li>
<li><a href="http://ocwblog.org/">OCWBlog</a></li>
<li><a href="http://www.opener.ou.nl/">OU Netherlands OCW</a></li>
<li><a href="http://openlearn.open.ac.uk/">OU UK OpenLearn</a></li>
<li><a href="http://graduateschool.paristech.org/">Paris Tech OCW</a></li>
<li><a href="http://ocw.tufts.edu/">Tufts OCW</a></li>
<li><a href="http://ocw.uci.edu/">UC Irvine OCW</a></li>
<li><a href="http://www.virtual.unal.edu.co/">Universidad Nacional de Colombia OCW</a></li>
<li><a href="http://ocw.usu.edu/">USU OCW</a></li>
<li><a href="http://www.fetp.edu.vn/fetpocw.htm">Vietnam Fulbright OCW</a></li>

	</ul>
</li>
	<li id="linkcat-6" class="linkcat"><h2>OCW Translation Affiliates</h2>
	<ul>
<li><a href="http://mit-ocw-thai.eng.chula.ac.th/">Chulalongkorn OCW</a></li>
<li><a href="http://www.core.org.cn/cn/jpkc/index_en.html">CORE</a></li>
<li><a href="http://www.twocw.net/">OOPS OCW</a></li>
<li><a href="http://mit.ocw.universia.net/">Universia OCW</a></li>

	</ul>
</li>
	<li id="linkcat-3" class="linkcat"><h2>OER Blogs</h2>
	<ul>
<li><a href="http://cyber.law.harvard.edu/home/home?wid=10">Berkman Blog</a></li>
<li><a href="http://weblogs.elearning.ubc.ca/brian/">Brian Lamb</a></li>
<li><a href="http://www.darcynorman.net/">D&#039;Arcy Norman</a></li>
<li><a href="http://opencontent.org/blog/">David Wiley</a></li>
<li><a href="http://edtechpost.ca/wordpress/">edtechpost</a></li>
<li><a href="http://ariadne.cs.kuleuven.be/wordpress/eduval/">Erik Duval</a></li>
<li><a href="http://flosse.dicole.org/">FLOSSE Posse</a></li>
<li><a href="http://www.johnseelybrown.com/">John Seely Brown</a></li>
<li><a href="http://www.lessig.org/blog/">Larry Lessig</a></li>
<li><a href="http://www.lessig.org/blog/">lessig blog</a></li>
<li><a href="http://www.oculture.com/">Open Culture</a></li>
<li><a href="http://www.tofp.org/blog/">OpenFiction</a></li>
<li><a href="http://blogs.open.ac.uk/Maths/ajh59/">OUseful Info</a></li>
<li><a href="http://www.downes.ca/news/OLDaily.htm">Stephen Downes</a></li>
<li><a href="http://www.stingyscholar.blogspot.com/">Stingy Scholar</a></li>

	</ul>
</li>
	<li id="linkcat-4" class="linkcat"><h2>OER Web Sites</h2>
	<ul>
<li><a href="http://www.col.org/colweb/site">Commonwealth of Learning</a></li>
<li><a href="http://cnx.org/">Connexions</a></li>
<li><a href="http://creativecommons.org/">Creative Commons</a></li>
<li><a href="http://www.curriki.org/">Curriki</a></li>
<li><a href="http://www.hewlett.org/Programs/Education/OER/">Hewlett OER</a></li>
<li><a href="http://hippocampus.org/">Hippocampus</a></li>
<li><a href="http://icommons.org/">iCommons</a></li>
<li><a href="http://www.archive.org/">Internet Archive</a></li>
<li><a href="http://www.ithaka.org/">Ithaka</a></li>
<li><a href="http://www.ocwconsortium.org/">OCW Consortium</a></li>
<li><a href="http://www.oercommons.org/">OER Commons</a></li>
<li><a href="http://www.sakaiproject.org/">Sakai</a></li>
<li><a href="http://www.teachersdomain.org/">WGBH Teachers Domain</a></li>
<li><a href="http://www.uiowa.edu/">WiderNet</a></li>

	</ul>
</li>
	</ul>
	</div><div id="categories" class="widget sb-categories"><h2 class="widgettitle">Categories</h2>
	<ul>
			<li><a href="/index_cat_9.html" title="View all posts filed under Education">Education</a> (3)
</li>
	<li><a href="/index_cat_14.html" title="View all posts filed under Government">Government</a> (1)
</li>
	<li><a href="/index_cat_15.html" title="View all posts filed under Higer Education">Higer Education</a> (3)
</li>
	<li><a href="/index_cat_10.html" title="View all posts filed under K-12">K-12</a> (3)
</li>
	<li><a href="/index_cat_8.html" title="View all posts filed under OER">OER</a> (14)
</li>
	<li><a href="/index_cat_7.html" title="View all posts filed under OpenCourseWare">OpenCourseWare</a> (1)
</li>
	<li><a href="/index_cat_13.html" title="View all posts filed under Policy">Policy</a> (2)
</li>
	<li><a href="/index_cat_1.html" title="View all posts filed under Uncategorized">Uncategorized</a> (1)
</li>
	</ul>
	</div><div id="admin" class="widget sb-meta"><h2 class="widgettitle">Admin</h2>
	<ul>
				<li><a href="/wp_login.html">Login</a></li>
		<li><a href="/index_feed_rss2.html" title="Syndicate this site using RSS 2.0">Entries <abbr title="Really Simple Syndication">RSS</abbr></a></li>
		<li><a href="/index_feed_comments_rss2.html" title="The latest comments to all posts in RSS">Comments <abbr title="Really Simple Syndication">RSS</abbr></a></li>
		<li><a href="http://wordpress.org/" title="Powered by Wordpress, state-of-the-art semantic personal publishing platform.">WordPress</a></li>
			</ul>
	</div><div id="code" class="widget sb-html"><!-- Start of StatCounter Code -->
<script type="text/javascript" language="javascript">
var sc_project=2061625; 
var sc_invisible=1; 
var sc_partition=19; 
var sc_security="531c2e9a"; 
</script>

<script type="text/javascript" language="javascript" src="http://www.statcounter.com/counter/counter.js"></script><noscript><a href="http://www.statcounter.com/" target="_blank"><img  src="http://c20.statcounter.com/counter.php?sc_project=2061625&java=0&security=531c2e9a&invisible=1" alt="hit counter script" border="0"></a> </noscript>
<!-- End of StatCounter Code --></div>
</div>
<div class="clear"></div>

</div> <!-- .content -->

	<div class="clear"></div>

</div> <!-- Close Page -->

<hr />

<p id="footer"><small>
	OERderves is powered by <a href="http://wordpress.org/" title="Where children sing songs of binary bliss">WordPress 2.1</a> and <a href="http://getk2.com/" title="Loves you like a kitten.">K2<!--Beta Two 0.95 RC1--></a><br /> 
		<a href="/index_feed_rss2.html">RSS Entries</a> and <a href="/index_feed_comments_rss2.html">RSS Comments</a>
	<!-- 37 queries. 0.1220 seconds. -->
</small></p>


	
</body>
</html> 





<!--
     FILE ARCHIVED ON 14:43:43 Jun 13, 2007 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 11:15:00 Dec 15, 2013.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
-->
