<?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>MASHe</title>
	<atom:link href="http://www.rsc-ne-scotland.org.uk/mashe/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rsc-ne-scotland.org.uk/mashe</link>
	<description>The Higher Education blog from the JISC RSC Scotland North &#38; East</description>
	<lastBuildDate>Thu, 11 Mar 2010 14:44:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language></language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Updating a Google Calendar and Google Site from a Google Spreadsheet (the beginnings of an event booking system)</title>
		<link>http://www.rsc-ne-scotland.org.uk/mashe/2010/03/google-apps-spreadsheet-2-calendar-site/</link>
		<comments>http://www.rsc-ne-scotland.org.uk/mashe/2010/03/google-apps-spreadsheet-2-calendar-site/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 14:09:25 +0000</pubDate>
		<dc:creator>Martin Hawksey</dc:creator>
				<category><![CDATA[Google Apps]]></category>

		<guid isPermaLink="false">http://www.rsc-ne-scotland.org.uk/mashe/?p=1575</guid>
		<description><![CDATA[
I’m going to start this most with a small homage to Tony Hirst. Tony has the honour of posting the first ever comment on this blog and ever since I’ve been an avid follower of his work on OUseful.info. When I saw Tony had started playing around experimenting with using Google Apps Scripts to post [...]]]></description>
			<content:encoded><![CDATA[
<p>I’m going to start this most with a small homage to Tony Hirst. Tony has the honour of posting the <a href="http://www.rsc-ne-scotland.org.uk/mashe/2008/06/a-mornings-learning-google-alert-edtechie-he20-sociallearn-ads-fund-he-visual-gadgets/">first ever comment on this blog</a> and ever since I’ve been an avid follower of his work on <a href="http://ouseful.info">OUseful.info</a>. When I saw Tony had started <a href="http://ouseful.wordpress.com/category/google-apps/"><span style="text-decoration: line-through;">playing around</span> experimenting with using Google Apps Scripts</a> to post data from Spreadsheet to Calendar and vice versa it looked like he was having way to much fun, so like with so many of Tony’s other ideas I thought I would have a go too.</p>
<p>The challenge I set myself was to take Tony’s work and see if I could use it as the basis on an online events booking system. The idea was to enter event details into a spreadsheet which would then be used to automatically populate a site and spreadsheet, delegates being able to book in via a form. Here’s how I got on …</p>
<p><strong>#Issue 1 – This solution requires </strong><a href="http://www.google.com/google-d-s/scripts/scripts.html">Google App Scripts</a><strong> which aren’t available to in the basic version of Docs/Site. To get access you need at least a </strong><a href="http://www.google.com/apps/intl/en/group/index.html">Google Apps Standard</a><strong>, which is free but you need to register with a domain url.</strong></p>
<p><strong>Update:</strong> I like to think it was because of my post that <a href="http://googledocs.blogspot.com/2010/03/apps-script-gallery-for-google.html">Google now makes Apps Script available to everyone</a> using Spreadsheet ;-)</p>
<p>Having signed up to Google Apps I then started following Tony’s posts on <a href="http://ouseful.wordpress.com/2010/03/04/maintaining-google-calendars-from-a-google-spreadsheet/">Updating Google Calendars from a Google Spreadsheet</a> and <a href="http://ouseful.wordpress.com/2010/03/07/maintaining-a-google-calendar-from-a-goole-spreadsheet-reprise/">Maintaining a Google Calendar from a Google Spreadsheet, Reprise</a>. My spreadsheet layout is almost identical except I added 2 more columns, an ‘Added Date’ and ‘ID’.<a href="http://www.rsc-ne-scotland.org.uk/mashe/wp-content/uploads/2010/03/image.png"><img style="display: inline; border-width: 0px;" title="image" src="http://www.rsc-ne-scotland.org.uk/mashe/wp-content/uploads/2010/03/image_thumb.png" border="0" alt="image" width="466" height="187" /></a></p>
<p>Tony, I was able to set the locale for the date in the spreadsheet via ‘File –&gt; Spreadsheet Settings’ and added some conditional formatting to highlight items which hadn’t been added yet.</p>
<p>Below is the code I dropped into the spreadsheets script editor.</p>
<pre class="brush: jscript;">
function processEvents() {
 //declare vars
 var cal = CalendarApp.getDefaultCalendar();
 var ss = SpreadsheetApp.getActiveSpreadsheet();
 var dataSheet = ss.getSheetByName(&quot;Events&quot;); // ref sheet name (thought I might have ended up with multiple sheets)
 var maxcols = dataSheet.getMaxColumns();
 var dataRange = dataSheet.getRange(2, 1, dataSheet.getMaxRows() - 1, maxcols);
 var data = dataRange.getValues();
 var cal = CalendarApp.getDefaultCalendar();
 var site = SitesApp.getSite(&quot;sub-tweeter.net&quot;, &quot;mashe-events-from-calendar&quot;); // .getSite(domain, sitename)
 var annPage = site.getAnnouncementsPages();
 var col_added, col_title, col_desc, col_tstart, col_tstop, col_loc, col_num, col_ID;
 // pull column header
 for (var j=1;j&lt;=maxcols;j++){
   var header= dataSheet.getRange(1, j, 1, 1).getValue();
   switch(header){
     case &quot;Status/Action&quot;:col_added=j-1;
     case &quot;Title&quot;:col_title=j-1; break;
     case &quot;Description&quot;:col_desc=j-1; break;
     case &quot;Start&quot;: col_tstart=j-1; break;
     case &quot;Stop&quot;: col_tstop=j-1; break;
     case &quot;Location&quot;: col_loc=j-1; break;
     case &quot;Number of places&quot;: col_num=j-1; break;
     case &quot;ID&quot;: col_ID=j-1; break;
   default:
   }
 }
 // pull data
 for (i in data) {
   var row = data[i];
   var added = row[col_added];  //Check to see if details for this event have been added to the calendar(s)
   if (added == &quot;Add&quot;){
     // collect event details
     var title = row[col_title];
     var desc = row[col_desc];
     var loc = row[col_loc];
     var tstart = row[col_tstart];
     var tstop = row[col_tstop];
     cal.createEvent(title, tstart, tstop, {location:loc, description:desc}); // create calendar event
     var message = &quot;Start:&quot; + Utilities.formatDate(tstart, &quot;GMT&quot;, &quot;dd/MM/yy HH:mm&quot;) +&quot;&lt;br/&gt;Finish: &quot;+Utilities.formatDate(tstop, &quot;GMT&quot;, &quot;dd/MM/yy HH:mm&quot;)+&quot;&lt;br/&gt;&quot;+desc; // prepare message
     site.createAnnouncement(title, message, annPage[0]); // add announcement to site
     var annList = site.getAnnouncements();
     var eventID = annList.length; // get announcement ID
     // set value in spreadsheet
     var v = parseInt(i)+2; // +2 is an offset to do with the numbering of rows and the &quot;blank&quot; header row 0;
     dataSheet.getRange(v, 3, 1, 1).setValue(eventID); // add the event ID
     dataSheet.getRange(v, 2, 1, 1).setValue(new Date()); // add today's date/time to 'Added Date' column
     dataSheet.getRange(v, 1, 1, 1).setValue(&quot;Added&quot;); //set the fact that we have updated the calendars for this event
   }
 }
</pre>
<p>My main tweaks were:</p>
<ul>
<li>dynamically capture the data range using getMaxRows() and getMaxColumns();</li>
<li>define a Google Site to push data to (as well as the Calendar);</li>
<li>adding the event to a Google Site using createAnnouncement(); and</li>
<li>adding the ‘added date’ and ‘Event ID’</li>
</ul>
<p>Here is the <a href="http://www.google.com/calendar/hosted/sub-tweeter.net/embed?src=mhawksey%40sub-tweeter.net&amp;ctz=UTC ">public calendar</a> and <a href="http://sites.google.com/a/sub-tweeter.net/mashe-events-from-calendar/events">Google site</a> populated with data from <a href="http://spreadsheets.google.com/pub?key=tV2Qoz2NXwRgJCfmPoyU6Bg&amp;single=true&amp;gid=0&amp;output=html">the spreadsheet (web page view)</a>.</p>
<p>Having gotten this far my next plan was to use the <a href="http://www.google.com/expense_report_approval.html">Expense Report Approval Tutorial</a> as a basis for a booking form which would allow a submit/approve workflow. To do this my plan was to have a template spreadsheet for each event which I duplicate using the event ID as an identifier.</p>
<p><strong># Issue 2 – Google Apps Script doesn’t have a method for duplicating spreadsheets</strong></p>
<p>I think I might have got around this by creating a function which would cycle through an existing spreadsheet, storing the values and then creating a new sheet reversing the process to populate it with data. I don’t think it would however have duplicated form functionality. The concept was beginning to unravel however because …</p>
<p><strong># Issue 3 – You can only have one form per spreadsheet.</strong></p>
<p>Oh dear!</p>
<p>It was all getting a bit too messy which is a shame because it would have been fun to use <a href="http://www.google.com/google-d-s/scripts/service_contacts.html">Contact Services API</a> to add delegates to Google Contacts either using the <a href="http://www.google.com/class_contact.html#setNotes">setNotes()</a> or <a href="http://www.google.com/class_contact.html#setUserDefinedField">setUserDefinedField()</a> to record events the delegate had signed up for, dietary requirements etc. and lots more interesting stuff.</p>
<p>One solution to the who registration issue  might have been to <a href="http://www.google.com/appengine.html">Leveraging Google App Engine services from scripts</a>, but that is going into a whole realm of coding I would prefer to avoid.</p>
<p>So SharePoint anyone? ;-)</p>
<div id="crp_related"><h3>You also might like:</h3><ul><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/01/this-weeks-solutions-export-twitter-followers-auto-anchors-for-wordpress-and-shortening-urls-in-twitter-badges/" rel="bookmark" class="crp_title">This week&rsquo;s solutions: export twitter followers, auto anchors for WordPress and shortening urls in twitter badges</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2008/10/future-of-higher-education/" rel="bookmark" class="crp_title">New Report &#8211; The future of higher education: How technology will shape learning</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2009/11/moodle-wave-embedding-google-wave-into-moodle/" rel="bookmark" class="crp_title">Moodle Wave: Embedding Google Wave into Moodle</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2008/12/digital-student/" rel="bookmark" class="crp_title">Digital Student &#8211; More than Web 2.0</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2008/09/ucisa-survey-technology-enhanced-learning-for-higher-education-in-the-uk/" rel="bookmark" class="crp_title">UCISA Survey: Technology Enhanced Learning For Higher Education in the UK</a></li></ul></div>
]]></content:encoded>
			<wfw:commentRss>http://www.rsc-ne-scotland.org.uk/mashe/2010/03/google-apps-spreadsheet-2-calendar-site/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>What I&#8217;ve starred this week: March 9, 2010</title>
		<link>http://www.rsc-ne-scotland.org.uk/mashe/2010/03/what-ive-starred-this-week-march-9-2010-2/</link>
		<comments>http://www.rsc-ne-scotland.org.uk/mashe/2010/03/what-ive-starred-this-week-march-9-2010-2/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 10:01:09 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Starred]]></category>

		<guid isPermaLink="false">http://www.rsc-ne-scotland.org.uk/mashe/2010/03/what-ive-starred-this-week-march-9-2010-2/</guid>
		<description><![CDATA[
Here&#39;s some posts which have caught my attention this week:

BBC News &#8211; Mapping the growth of the internet &#8211; March 8, 2010 
Tablets, Moodle, and Teachers &#8211; March 8, 2010 
Education secretary rules out tuition fees and calls for debate on cuts &#8211;       Herald Scotland 	 &#124;   [...]]]></description>
			<content:encoded><![CDATA[
<p>Here&#39;s some posts which have caught my attention this week:
<ul>
<li><a href="http://news.bbc.co.uk/1/hi/technology/8552410.stm">BBC News &#8211; Mapping the growth of the internet</a> &#8211; <em>March 8, 2010 </em></li>
<li><a href="http://blog.xplana.com/2010/03/tablets-moodle-and-teachers/">Tablets, Moodle, and Teachers</a> &#8211; <em>March 8, 2010 </em></li>
<li><a href="http://www.heraldscotland.com/news/education/education-secretary-rules-out-tuition-fees-and-calls-for-debate-on-cuts-1.1011644">Education secretary rules out tuition fees and calls for debate on cuts &#8211;       Herald Scotland 	 |       News 	 |       Education</a> &#8211; <em>March 8, 2010 </em></li>
<li><a href="http://feedproxy.google.com/~r/Mashable/~3/Lht5U_wsvMg/">Google Acquires Microsoft Office Collaboration Tool DocVerse</a> &#8211; <em>March 5, 2010 </em></li>
<li><a href="http://www.masteringwave.com/2010/03/new-google-wave-robot-api-v2/">New Google Wave Robot API v2</a> &#8211; <em>March 2, 2010 </em></li>
<li><a href="http://www.webmonkey.com/blog/Microsoft_to_Double_Down_on_HTML5_With_Internet_Explorer_9">Microsoft to Double Down on HTML5 With Internet Explorer 9</a> &#8211; <em>March 3, 2010 </em></li>
<li><a href="http://feedproxy.google.com/~r/Mashable/~3/xKtQyxLMAso/">How Twitter in the Classroom is Boosting Student Engagement</a> &#8211; <em>March 1, 2010 </em></li>
<li><a href="http://feedproxy.google.com/~r/rscnewsfeed/~3/xOwH7k-lldc/">New Report: Active Ageing and Universities</a> &#8211; <em>March 2, 2010 </em></li>
<li><a href="http://feedproxy.google.com/~r/rscnewsfeed/~3/LKukeV5gLV4/">Twitter Handbook for Teachers</a> &#8211; <em>March 2, 2010 </em></li>
</ul>
<div style="text-align: right"><em>Automatically generated from <a href="http://www.google.com/reader/shared/11609741331127149470">my Google Reader Shared Items</a>.</em></div>
<div id="crp_related"><h3>You also might like:</h3><ul><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/01/a-real-time-education/" rel="bookmark" class="crp_title">A real-time education (etherpad, mindmeister and cacoo)</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/01/feedbooks-pipe/" rel="bookmark" class="crp_title">Creating a PDF or eBook from an RSS feed (feedbooks.com)</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/02/the-virtual-revolution-twitter-subtitles-for-bbc-iplayer/" rel="bookmark" class="crp_title">The Virtual Revolution: Twitter subtitles for BBC iPlayer</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2008/06/university-lectures-on-itunes/" rel="bookmark" class="crp_title">University lectures on iTunes</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/02/rsc-mp3-he-update-jan-2010/" rel="bookmark" class="crp_title">RSC-MP3: HE Update Jan 2010</a></li></ul></div>
]]></content:encoded>
			<wfw:commentRss>http://www.rsc-ne-scotland.org.uk/mashe/2010/03/what-ive-starred-this-week-march-9-2010-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NSSE Survey: Enhancement of student engagement and high impact activities (aka the big beasty approach)</title>
		<link>http://www.rsc-ne-scotland.org.uk/mashe/2010/03/nsse-survey-enhancement-of-student-engagement-and-high-impact-activities-aka-the-big-beasty-approach/</link>
		<comments>http://www.rsc-ne-scotland.org.uk/mashe/2010/03/nsse-survey-enhancement-of-student-engagement-and-high-impact-activities-aka-the-big-beasty-approach/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 09:43:00 +0000</pubDate>
		<dc:creator>Martin Hawksey</dc:creator>
				<category><![CDATA[Assessment]]></category>
		<category><![CDATA[Enhancement Themes]]></category>
		<category><![CDATA[Learner Experience]]></category>

		<guid isPermaLink="false">http://www.rsc-ne-scotland.org.uk/mashe/2010/03/nsse-survey-enhancement-of-student-engagement-and-high-impact-activities-aka-the-big-beasty-approach/</guid>
		<description><![CDATA[
 The 2nd and 3rd of March saw the 7th annual Enhancement Themes conference. As with the past two year I was a delegate at this event, but this time in the slightly different role of one of the exhibitors. In between showcasing some of the JISC wares I managed to slip into some of [...]]]></description>
			<content:encoded><![CDATA[
<p><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="Me doing my bit for &#39;The Services&#39;" border="0" alt="Me doing my bit for &#39;The Services&#39;" align="right" src="http://www.rsc-ne-scotland.org.uk/mashe/wp-content/uploads/2010/03/photo.jpg" width="260" height="200" /> The 2nd and 3rd of March saw the <a href="http://www.enhancementthemes.ac.uk/Conference/Default.asp">7th annual Enhancement Themes conference</a>. As with the past two year I was a delegate at this event, but this time in the slightly different role of one of the exhibitors. In between showcasing some of the <a href="http://www.jisc.ac.uk" target="_blank">JISC</a> wares I managed to slip into some of the keynote sessions. Each year the Enhancement themes do a great job is finding presenters who are incredibly influential and thought provoking. This year my favourite was Professor George Kuh, Chancellor’s Professor of Higher Education at Indiana University Bloomington, and founding director of widely used National Survey of Student Engagement (NSSE*).</p>
<p>Unlike the NSS which is looking at general student satisfaction, NSSE is a survey which aims to <em>“assess the extent to which students engage in educational practices associated with high levels of learning and development”</em>. It assesses this by asking how students spend their time and what they gain from attending their institution. My understanding is that NSSE is </p>
<blockquote><p><strong>using engagement as an indicator of “<em>grades, persistence, student satisfaction and gains across a range of desired outcomes”</em> </strong></p>
</blockquote>
<p>The survey is broken into four main areas: student behaviours; institutional actions and requirements; reactions to the institution; and student background information. For examples of type of questions asked you can view <a href="http://nsse.iub.edu/html/survey_instruments_2010.cfm">past and present NSSE surveys</a>. </p>
<p>The NSSE has been widely adopted in North America (US: 3million responses from 1,400 institutions; Canada: 64 HEIs), South Africa and Australia and been used since 2000 resulting in a rice dataset.</p>
<blockquote><p><strong>Student engagement varies more within than between institutions</strong></p>
</blockquote>
<p>The NSSE has found that there is more local than inter institutional variation in student engagement. i.e. there is little difference in student engagement between the best and the worse institutions, but the differences between institutional departments is major.&#160; </p>
<p><a href="https://secure.aacu.org/source/Orders/index.cfm?section=unknown&amp;task=3&amp;CATEGORY=LEAP&amp;PRODUCT_TYPE=SALES&amp;SKU=HIGHIMP&amp;DESCRIPTION=&amp;FindSpec=&amp;CFTOKEN=55749981&amp;continue=1&amp;SEARCH_TYPE="><img style="display: inline; margin-left: 0px; margin-right: 0px" align="right" src="https://secure.aacu.org/PubImages/HighImpact_Cover_200.jpg" width="157" height="196" /></a>‘How can you get students more engaged?’ I hear you ask, why with ‘high-impact’ learning activities. As it happens George has written book on the topic, <a href="https://secure.aacu.org/source/Orders/index.cfm?section=unknown&amp;task=3&amp;CATEGORY=LEAP&amp;PRODUCT_TYPE=SALES&amp;SKU=HIGHIMP&amp;DESCRIPTION=&amp;FindSpec=&amp;CFTOKEN=55749981&amp;continue=1&amp;SEARCH_TYPE=">High-Impact Educational Practices: What They Are, Who Has Access to Them, and Why They Matter</a>. Although it wasn’t explicitly mentioned I image George has used the NSSE survey to identify ‘high-impact’ activities. His top 10 were:</p>
<ul>
<li><em>First-Year Seminars and Experiences</em> </li>
<li><em>Common Intellectual Experiences</em> </li>
<li><em>Learning Communities</em> </li>
<li><em>Writing-Intensive Courses</em> </li>
<li><em>Collaborative Assignments and Projects</em> </li>
<li><em>“Science as Science Is Done”; Undergraduate Research</em> </li>
<li><em>Diversity/Global Learning </em></li>
<li><em>Community-Based Learning</em> </li>
<li><em>Internships</em> </li>
<li><em>Capstone Courses and Projects</em> </li>
</ul>
<p>There are some Americanisms in this list but hopefully you get the picture. I would say all of these activities are reflected in the existing academic research on best teaching/learning practices. </p>
<p>Engaging in these activities George suggested that students are more likely to:</p>
<ul>
<li><em>Invest time and effort </em></li>
<li><em>Interact with faculty and peers about substantive matters</em> </li>
<li><em>Experience diversity</em> </li>
<li><em>Get more frequent feedback</em> </li>
<li><em>Reflect &amp; integrate learning</em> </li>
<li><em>Discover relevance of learning through real-world applications</em> </li>
</ul>
<p>The Enhancement Themes have already generated a number of resources covering these areas including <a href="http://www.enhancementthemes.ac.uk/publications/default.asp#ResearchTeaching">research teaching linkages</a>, <a href="http://www.enhancementthemes.ac.uk/publications/default.asp#Integrative">integrative assessment</a> and <a href="http://www.enhancementthemes.ac.uk/publications/default.asp#Assessment">assessment</a>, the <a href="http://www.enhancementthemes.ac.uk/publications/default.asp#FirstYear">first year</a> and <a href="http://www.enhancementthemes.ac.uk/publications/default.asp#Responding">responding to student needs</a> (as well as <a href="http://www.enhancementthemes.ac.uk/publications/default.asp#Flexible">flexible delivery</a>). The conference also saw the publication of 5 new briefing papers under the current ‘Graduates for the 21st Century strand:</p>
<ul>
<li><a href="http://www.enhancementthemes.ac.uk/documents/G21C/Assessment_230210.pdf">Assessment</a></li>
<li><a href="http://www.enhancementthemes.ac.uk/documents/G21C/Employability_230210.pdf">Employability</a></li>
<li><a href="http://www.enhancementthemes.ac.uk/documents/G21C/G21C_First_things_first.pdf">First Year</a></li>
<li><a href="http://www.enhancementthemes.ac.uk/documents/G21C/G21C_ERforE.pdf">Research-Teaching Linkages</a></li>
<li><a href="http://www.enhancementthemes.ac.uk/documents/G21C/Classroom-based_studentneeds.pdf">Responding to Student Needs</a></li>
</ul>
<p>In George’s presentation he highlighted three action steps:</p>
<ol>
<li><em>Use engaging pedagogies campus wide</em> </li>
<li><em>Put money where it will make a difference to student success</em> </li>
<li><em>Ensure programs are high quality</em>&#160; </li>
</ol>
<p>I’m sure you would agree that all of these are what we are striving for anyway and not particularly earth shattering. If you adopted the NSSE locally there is an opportunity to use the data diagnostically to identify the your ‘local variations’, identifying courses that are not engaging students. I’m sure many of you are already doing this through end of module surveys, but I would recommend looking at the NSSE questions to see if these need to be re-examined.</p>
<p>Slides for all the conference keynote sessions including George Kuh’s are available on the <a href="http://www.enhancementthemes.ac.uk/Conference/PlenaryPresentations.asp">Enhancement Themes plenary presentations page</a> (videos of the sessions will be available shortly). </p>
<p>*pronounced Nessie, hence the title of this post</p>
<div id="crp_related"><h3>You also might like:</h3><ul><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2009/03/enhancement-themes/" rel="bookmark" class="crp_title">Enhancement Themes!!!</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2008/12/sage-on-the-stage-20-beyond-the-classroom/" rel="bookmark" class="crp_title">Sage on the stage 2.0 &#8211; beyond the classroom</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2008/12/digital-student/" rel="bookmark" class="crp_title">Digital Student &#8211; More than Web 2.0</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2008/09/ucisa-survey-technology-enhanced-learning-for-higher-education-in-the-uk/" rel="bookmark" class="crp_title">UCISA Survey: Technology Enhanced Learning For Higher Education in the UK</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2009/02/rsc-mp3-he-update-feb-%e2%80%9809-%e2%80%93-interview-with-terry-mayes/" rel="bookmark" class="crp_title">RSC-MP3: HE Update Feb ‘09 – Interview with Terry Mayes</a></li></ul></div>
]]></content:encoded>
			<wfw:commentRss>http://www.rsc-ne-scotland.org.uk/mashe/2010/03/nsse-survey-enhancement-of-student-engagement-and-high-impact-activities-aka-the-big-beasty-approach/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I&#8217;ve starred this week: March 2, 2010</title>
		<link>http://www.rsc-ne-scotland.org.uk/mashe/2010/03/what-ive-starred-this-week-march-2-2010-2/</link>
		<comments>http://www.rsc-ne-scotland.org.uk/mashe/2010/03/what-ive-starred-this-week-march-2-2010-2/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 10:05:23 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Starred]]></category>

		<guid isPermaLink="false">http://www.rsc-ne-scotland.org.uk/mashe/2010/03/what-ive-starred-this-week-march-2-2010-2/</guid>
		<description><![CDATA[
Here&#39;s some posts which have caught my attention this week:

Podcasts: enhancing or replacing normal lectures? &#8211; February 25, 2010 
HEA cuts threaten future of subject centres &#8211; February 25, 2010 
Google Buzz Boosts Sharing On Google Reader By 35 Percent &#8211; February 24, 2010 
10 Essential Chrome Extensions for Web Developers &#8211; February 24, 2010 [...]]]></description>
			<content:encoded><![CDATA[
<p>Here&#39;s some posts which have caught my attention this week:
<ul>
<li><a href="http://www.timeshighereducation.co.uk/story.asp?sectioncode=26&amp;storycode=410469&amp;c=1">Podcasts: enhancing or replacing normal lectures?</a> &#8211; <em>February 25, 2010 </em></li>
<li><a href="http://www.timeshighereducation.co.uk/story.asp?sectioncode=26&amp;storycode=410540&amp;c=1">HEA cuts threaten future of subject centres</a> &#8211; <em>February 25, 2010 </em></li>
<li><a href="http://feedproxy.google.com/~r/Techcrunch/~3/oDN8Od0C9bA/">Google Buzz Boosts Sharing On Google Reader By 35 Percent</a> &#8211; <em>February 24, 2010 </em></li>
<li><a href="http://feedproxy.google.com/~r/Mashable/~3/gEWafdLRtYc/">10 Essential Chrome Extensions for Web Developers</a> &#8211; <em>February 24, 2010 </em></li>
<li><a href="http://emergingtechnologies.becta.org.uk/index.php?section=etn&amp;rid=15175">Mashups for Learning</a> &#8211; <em>February 25, 2010 &#8211; Mashups for Learning &#8211; &#8220;paper in the International Journal of Emerging Technologies in Education draws together 5 pieces of research.&#8221;</em></li>
<li><a href="http://feedproxy.google.com/~r/ac/uabG/~3/RCbzKi0nlxo/podcast99openaccesspolicy.aspx">Podcast/Press Release: How to build a business case for an Open Access policy</a> &#8211; <em>February 22, 2010 </em></li>
<li><a href="http://tweetmeme.com/story/589292480/queen-margaret-university">*Queen Margaret University*</a> &#8211; <em>February 24, 2010 &#8211; Open Professorial Event Lecture at QMU on 9th Mar 2010 &#8211; Professor Joe Goldblatt on delivery of world class events</em></li>
<li><a href="http://www.uhi.ac.uk/home/archive_news/free-uhi-seminar-series-opens-with-rural-health-discussion">Free UHI seminar series opens with rural health discussion</a> &#8211; <em>February 24, 2010 </em></li>
<li><a href="http://feedproxy.google.com/~r/Mashable/~3/XltXefmygao/">YouTube to Drop Support For IE6 Starting Next Month</a> &#8211; <em>February 24, 2010 &#8211; Wonder if many institutions still have IE6 on their desktop. Looks like they&#8217;ll be getting back some bandwidth if they do</em></li>
<li><a href="http://elearning.heacademy.ac.uk/weblogs/ea/?p=578">Seminar: Podcasting in Assessment: New Technology in Higher Education Research (PANTHER)</a> &#8211; <em>February 23, 2010 </em></li>
<li><a href="http://feedproxy.google.com/~r/Wpmu-Wordpress-Mu-PluginsThemesAndNews/~3/KyRV4TMk9Rk/">8 Tips for Keeping a Squeaky Clean WordPress Database</a> &#8211; <em>February 23, 2010 </em></li>
<li><a href="http://blogs.talis.com/education/2010/02/22/challenges-application-and-benefits-of-social-media-in-higher-education-institutions/">Challenges, application and benefits of social media in higher education institutions</a> &#8211; <em>February 22, 2010 </em></li>
</ul>
<div style="text-align: right"><em>Automatically generated from <a href="http://www.google.com/reader/shared/11609741331127149470">my Google Reader Shared Items</a>.</em></div>
<div id="crp_related"><h3>You also might like:</h3><ul><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/03/rsc-mp3-he-update-feb-2010/" rel="bookmark" class="crp_title">RSC-MP3: HE Update Feb 2010</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2008/06/university-lectures-on-itunes/" rel="bookmark" class="crp_title">University lectures on iTunes</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/02/the-virtual-revolution-twitter-subtitles-for-bbc-iplayer/" rel="bookmark" class="crp_title">The Virtual Revolution: Twitter subtitles for BBC iPlayer</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/01/feedbooks-pipe/" rel="bookmark" class="crp_title">Creating a PDF or eBook from an RSS feed (feedbooks.com)</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/02/rsc-mp3-he-update-jan-2010/" rel="bookmark" class="crp_title">RSC-MP3: HE Update Jan 2010</a></li></ul></div>
]]></content:encoded>
			<wfw:commentRss>http://www.rsc-ne-scotland.org.uk/mashe/2010/03/what-ive-starred-this-week-march-2-2010-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RSC-MP3: HE Update Feb 2010: Interview with Ian Hart</title>
		<link>http://www.rsc-ne-scotland.org.uk/mashe/2010/03/rsc-mp3-he-update-feb-2010-interview-with-ian-hart/</link>
		<comments>http://www.rsc-ne-scotland.org.uk/mashe/2010/03/rsc-mp3-he-update-feb-2010-interview-with-ian-hart/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 13:31:00 +0000</pubDate>
		<dc:creator>Martin Hawksey</dc:creator>
				<category><![CDATA[RSC-MP3]]></category>

		<guid isPermaLink="false">http://www.rsc-ne-scotland.org.uk/mashe/?p=1538</guid>
		<description><![CDATA[
This month Kevin interviewed Ian Hart, the Director of Schools and Colleges Partnerships for the University of Wolverhampton.  This role has enabled Ian to set up a number of collaborative partnerships across the area to enable effective networking of teaching professionals.  These collaborative partnerships are enhancing the design and delivery of common courses [...]]]></description>
			<content:encoded><![CDATA[
<p><img style="display: inline; margin-left: 0px; margin-right: 0px; border: 0px;" title="JISC RSC-MP3 Logo" src="http://www.rsc-ne-scotland.org.uk/mashe/wp-content/uploads/2009/01/rsc-mp3-144px.jpg" border="0" alt="JISC RSC-MP3 Logo" align="right" />This month Kevin interviewed Ian Hart, the Director of Schools and Colleges Partnerships for the University of Wolverhampton.  This role has enabled Ian to set up a number of collaborative partnerships across the area to enable effective networking of teaching professionals.  These collaborative partnerships are enhancing the design and delivery of common courses and staff CPD programmes, etc, across local HE in FE networks.  The net result is improvements in operational efficiencies, sharing of knowledge and leaner working practices.  These local communities of practice are proving that true collaborative working is yielding very positive results, under current economic strains. Ian also makes comments about how networked e-portfolio software is being used as a conduit to further enhance collaborative and teaching practices across education sectors local to Wolverhampton.</p>
<p><strong>Interview with Ian Hart</strong></p>
<p><strong>Part 1<br />
</strong><strong><object height="81" width="100%"><param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Frsc-mp3%2Fian-hart-interview-part1&amp;g=1&amp;"></param><param name="allowscriptaccess"
value="always"></param><embed allowscriptaccess="always"
height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Frsc-mp3%2Fian-hart-interview-part1&amp;g=1&amp;"
type="application/x-shockwave-flash" width="100%"> </embed> </object><br />
<br />
<a href="http://www.rsc-ne-scotland.org.uk/mashe/wp-content/uploads/2010/ian-hart-interview-part1.mp3">Download Links</a><br />
</strong>Duration:  34 minutes<br />
Size: 24MB</p>
<p><strong>Part 2<br />
</strong><strong><object height="81" width="100%"><param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Frsc-mp3%2Fian-hart-interview-part2&amp;g=1&amp;"></param><param name="allowscriptaccess"
value="always"></param><embed allowscriptaccess="always"
height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Frsc-mp3%2Fian-hart-interview-part2&amp;g=1&amp;"
type="application/x-shockwave-flash" width="100%"> </embed> </object><br />
<br />
<a href="http://www.rsc-ne-scotland.org.uk/mashe/wp-content/uploads/2010/ian-hart-interview-part2.mp3">Download Links</a><br />
</strong>Duration:  18 minutes<br />
Size: 13MB</p>
<p><strong><img title="RSS Logo" src="http://www.rsc-ne-scotland.org.uk/mashe/wp-content/themes/accord-10/images/rss.gif" border="0" alt="Subscribe to our podacst via RSS " width="16" height="16" /> <a href="http://feeds2.feedburner.com/rsc-mp3">Subscribe to our podcast via RSS</a></strong><br />
<img title="Subscribe to our podcast via iTunes" src="http://www.rsc-ne-scotland.org.uk/mashe/wp-content/uploads/2009/02/itunes.jpg" border="0" alt="Subscribe to our podcast via iTunes" width="17" height="17" /> <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=304100332"><strong>Subscribe to our podcast via iTunes</strong></a></p>
<p><strong>Summary Part 1</strong></p>
<p>01:00 &#8211; Ian introduces himself and the <a id="n9fs" title="liaison department" href="http://www.wlv.ac.uk/default.aspx?page=18099">liaison department</a> he is Director of. Liason with HE in FE and schools, and role within area</p>
<p>02:40 &#8211; How they interpret requirements from HEFCE for HEinFE. Close co-operation with local HE co-ordinators. Importance of widening participation and ensuring standards are maintained from partner colleges and an integrated approach to the curriculum.</p>
<p>11:00 &#8211; How lifelong learning networks will be sustained. Whilst scheduled to be phased out looking at what they can do to safeguard. For example, could they be turned into member organisations or become more commercial. Also what can be sustained with no cost such as progression agreements used by feeder colleges. Use of strong and weak progression agreements. Strong agreements having a guaranteed route into HE.</p>
<p>16:50 &#8211; Ian gives more background around how and why strong progression agreements are used. Making students aware of the link between the course they are on at college and the related university course they may end up on.</p>
<p>21:40 - <a id="zu.h" title="Aimhigher Learning Pathways System" href="http://www.aimhigherwm-alps.org/">Aimhigher Learning Pathways System</a> (ALPS) database of progression courses for the West Midlands</p>
<p>26:40 - <a id="owmz" title="University of Wolverhampton Collaborative Achievement Network (UWCAN)" href="http://www.wlv.ac.uk/Default.aspx?page=18792">University of Wolverhampton Collaborative Achievement Network (UWCAN)</a> -pulled resources for staff development making it freely available to partner college staff</p>
<p>31:00 &#8211; IQER strategy support to partner colleges</p>
<p><strong>Summary Part 2</strong></p>
<p>00:15 &#8211; Collaborative provision and strong work partnerships. Reducing costs with a collective approach.</p>
<p>05:20 &#8211; Need to work more with employers to maximise impact. Shared and flexible approaches, which might include bite sized learning. Intelligent Career Development approach.</p>
<p>09:00 &#8211; Uses of technology to enhance progression include the use of WOLF (VLE), and the PebblePad e-portfolio system being used at college and school level. Supports communication as part of the learning process, removing the boundaries of physical space and time. Enhancing communication and understanding.</p>
<p>Intro/Outro music: <a href="http://www.opsound.org/artist/stateoftheart/">1-2-3-4 from stream of unconsciousness by Jeremy B. Northup</a></p>
<div id="crp_related"><h3>You also might like:</h3><ul><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2009/05/rsc-mp3-he-update-apr-09-interview-with-emma-purnell/" rel="bookmark" class="crp_title">RSC-MP3: HE Update Apr 09 – Interview with Emma Purnell</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/02/rsc-mp3-he-update-jan-2010-interview-susi-peacock-e-portfolios/" rel="bookmark" class="crp_title">RSC-MP3: HE Update Jan 2010 &ndash; Interview Susi Peacock [e-portfolios]</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/03/rsc-mp3-he-update-feb-2010/" rel="bookmark" class="crp_title">RSC-MP3: HE Update Feb 2010</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2009/02/rsc-mp3-he-update-jan-09-interview-with-steve-sawbridge/" rel="bookmark" class="crp_title">RSC-MP3: HE Update Jan 09 &#8211; Interview with Steve Sawbridge</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2009/11/rsc-mp3-he-update-oct-09-interview-with-stuart-chadwick-kineo/" rel="bookmark" class="crp_title">RSC-MP3: HE Update Oct 09 &ndash; Interview with Stuart Chadwick (Kineo)</a></li></ul></div>
]]></content:encoded>
			<wfw:commentRss>http://www.rsc-ne-scotland.org.uk/mashe/2010/03/rsc-mp3-he-update-feb-2010-interview-with-ian-hart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.rsc-ne-scotland.org.uk/mashe/wp-content/uploads/2010/ian-hart-interview-part1.mp3" length="24738964" type="audio/mpeg" />
<enclosure url="http://www.rsc-ne-scotland.org.uk/mashe/wp-content/uploads/2010/ian-hart-interview-part2.mp3" length="13199843" type="audio/mpeg" />
		</item>
		<item>
		<title>RSC-MP3: HE Update Feb 2010</title>
		<link>http://www.rsc-ne-scotland.org.uk/mashe/2010/03/rsc-mp3-he-update-feb-2010/</link>
		<comments>http://www.rsc-ne-scotland.org.uk/mashe/2010/03/rsc-mp3-he-update-feb-2010/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 13:31:00 +0000</pubDate>
		<dc:creator>Martin Hawksey</dc:creator>
				<category><![CDATA[RSC-MP3]]></category>

		<guid isPermaLink="false">http://www.rsc-ne-scotland.org.uk/mashe/2010/03/rsc-mp3-he-update-feb-2010/</guid>
		<description><![CDATA[
 RSC-MP3 is a monthly audio podcast highlighting some Higher Education focused e-learning news, interviews and resources brought to you by Kevin Brace (JISC RSC West Midlands) and Martin Hawksey (JISC RSC Scotland North and East). As ever we have summarised links to the various topics we discuss and indicate the timestamps so you can [...]]]></description>
			<content:encoded><![CDATA[
<p><img style="display: inline; margin-left: 0px; margin-right: 0px;" title="JISC RSC-MP3 Logo" src="http://www.rsc-ne-scotland.org.uk/mashe/wp-content/uploads/2009/01/rsc-mp3-144px.jpg" alt="JISC RSC-MP3 Logo" align="right" /> RSC-MP3 is a monthly audio podcast highlighting some Higher Education focused e-learning news, interviews and resources brought to you by Kevin Brace (JISC RSC West Midlands) and Martin Hawksey (JISC RSC Scotland North and East). As ever we have summarised links to the various topics we discuss and indicate the timestamps so you can jump straight to our insightful repertoire. You can listen to this podcast on your computer, or when “on the move” by adding it to your ipod playlist. Here is <a href="http://www.rsc-ne-scotland.org.uk/mashe/category/rsc-mp3/"><strong>an archive of our recordings</strong></a>, which is also <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=304100332"><strong>available on iTunes</strong></a>.</p>
<blockquote><p><strong><em>&#8220;Technological convergence &#8211; changing the way we create, consume, learn and interact with each other&#8221;</em></strong></p></blockquote>
<p>This month Martin responds to a listener request and discusses Google&#8217;s latest social feature Buzz. Buzz has been designed to make sharing easier, linking to Google other services including YouTube and Reader as well as third party networks like Twitter and Facebook. We conclude that whilst Buzz is currently of limited benefit to the majority of educationalists it is another example of how the interlinking of separate communication and media streams has the potential to benefit formal and informal learning, technological convergence &#8216;changing the way we create, consume, learn and interact with each other&#8217;. An example of this convergence is outlined in Martin&#8217;s recent work which allows twitter discussions made during television broadcasts to be replayed as subtitles in BBC iPlayer downloads.</p>
<p>Aspects of &#8216;convergence&#8217; are further highlighted by Kevin has he discusses his months blog posts which includes his reflections on the recent Learning Technologies Conference and the JISC Business and Community Engagement programme. In particular Kevin highlights the growing importance of both informal and &#8220;rapid e-learning&#8221;, discussing some of the tools which can be used to facilitate and measure its impact as well as highlighting some effective practice case studies.</p>
<p>Kevin also highlights JISC&#8217;s Business and Community Engagement programme which is <em>&#8220;designed to support institutions in their strategic management of relationships &#8230; in order to deliver services which benefit the economy and society&#8221;.</em> This programme is a response to the Governments desire to enhance knowledge transfer/exchange and Kevin discusses some examples of this happening locally in the West Midlands and nationally. This also links to Kevin&#8217;s interview with Ian Hart who is Head of Schools and Colleges Partnerships at University of Wolverhampton. <a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/03/rsc-mp3-he-update-feb-2010-interview-with-ian-hart/">Click here for the interview with Ian Hart</a>.</p>
<p><strong>HE Update February 2010</strong><br />
<strong><object height="81" width="100%"><param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Frsc-mp3%2Frsc-mp3-feb-2010&amp;g=1&amp;"></param><param name="allowscriptaccess"
value="always"></param><embed allowscriptaccess="always"
height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Frsc-mp3%2Frsc-mp3-feb-2010&amp;g=1&amp;"
type="application/x-shockwave-flash" width="100%"> </embed> </object> </strong><br />
<strong><br />
<a href="http://www.rsc-ne-scotland.org.uk/mashe/wp-content/uploads/2010/RSC-MP3-FEB-2010.mp3">Download Link</a></strong><br />
Duration: 36 minutes<br />
Size: 34 MB</p>
<p><img title="RSS Logo" src="http://www.rsc-ne-scotland.org.uk/mashe/wp-content/themes/accord-10/images/rss.gif" border="0" alt="Subscribe to our podacst via RSS " width="16" height="16" /><strong><a href="http://feeds2.feedburner.com/rsc-mp3">Subscribe to our podcast via RSS</a></strong><br />
<img title="Subscribe to our podcast via iTunes" src="http://www.rsc-ne-scotland.org.uk/mashe/wp-content/uploads/2009/02/itunes.jpg" border="0" alt="Subscribe to our podcast via iTunes" width="17" height="17" /><a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=304100332"><strong>Subscribe to our podcast via iTunes</strong></a></p>
<p><strong>Our blogs</strong></p>
<ul>
<li><a href="http://kev-brace.blogspot.com/"><strong>Gabber</strong></a> – Kevin’s blog</li>
<li><a href="http://www.rsc-ne-scotland.org.uk/mashe/"><strong>MASHe</strong></a> – Martin’s blog</li>
</ul>
<p><strong>Links from Martin’s subjects: Timestamps represented as [minutes:seconds]</strong></p>
<ul>
<li><a href="http://www.google.com/buzz">Google Buzz</a> &#8211; another Web 2.0 service [1:30]
<ul>
<li><a href="http://gmailblog.blogspot.com/2010/02/google-buzz-in-gmail.html">Offical Google statement on Buzz</a> [1:30]</li>
<li><a href="http://www.orkut.com/about.aspx">Orkut</a>, Google&#8217;s first social networking tool [2:00]</li>
<li><a href="http://friendfeed.com/">Friendfeed</a>, share your digital stuff  [2:45]</li>
<li>Robert Scoble&#8217;s (<a href="http://scobleizer.com/">Scobleizer blog</a>), <a href="http://scobleizer.com/2010/02/15/google-buzz-copied-friendfeeds-worst-features-why/">article on Buzz</a> [3:15]</li>
<li><a href="http://www.bloglines.com/">bloglines</a>, A web-based personal news aggregator [3:30]</li>
<li><a href="http://www.whatisrss.com/">What is an RSS feed</a>? or <a href="http://www.commoncraft.com/rss_plain_english">Commoncraft: RSS in plain english</a> [5:30]</li>
<li><a href="http://www.google.com/reader">Google (RSS) Reader</a> [6:00]</li>
<li>MASHe <a href="http://www.rsc-ne-scotland.org.uk/mashe/2009/12/festive-fun-auto-tweeting-google-reader/">Festive fun: Auto tweeting your Google Reader shared items using Yahoo Pipes and twitterfeed</a> [6:10]</li>
</ul>
</li>
<li><a href="http://maps.google.co.uk/">Google Maps</a> [7:00]
<ul>
<li><a href="http://www.wired.com/gadgetlab/2008/05/how-to-geotag-y/">Geotagging &#8211; how to</a> [7:15]</li>
<li><a href="http://digital-photography-school.com/how-to-geotag-images">Whats is Geotagging</a>
<ul>
<li><a href="http://www.bing.com/maps/">MS Bing maps</a> [11:00]</li>
<li><a href="http://www.ted.com/talks/blaise_aguera.html">TED talks video</a> on Bing Maps &#8211; stunning!</li>
</ul>
</li>
<li><a href="http://www.google.com/a/help/intl/en/edu/index.html">Google Apps&#8217; for education</a> [7:45]</li>
<li><a href="http://www.netvibes.com/kevinbrace">Kevin&#8217;s netvibes personal (web based) aggregator</a> [8:45]</li>
<li><a href="http://www.youtube.com/watch?v=DAyfNLngfBs">What is pagecasting?</a> [9:00]</li>
<li><a href="http://www.netvibes.com/wesch">Professor Michael Wesch&#8217;s course pagecast</a> [9:15]</li>
<li><a href="http://kev-brace.blogspot.com/2009/09/vle-vs-ple.html">Personal Learning Environments</a> (PLE) &#8211; <a href="http://kev-brace.blogspot.com/2009/08/research-based-eportfolio-or-are-they.html">what is a PLE?</a> [9:45]</li>
<li><a href="http://www.livinginternet.com/e/ep_push.htm">What is push technology?</a> [10:30]
<ul>
<li><a href="http://www.google.com/alerts">Google Alerts</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/02/twitter-powered-subtitles-for-bbc-iplayer/">Martin&#8217;s BBC iplayer + twitter subtitle mash(e)up</a> [12:00]
<ul>
<li><a href="http://ouseful.wordpress.com/">Dr Tony Hirst</a> &#8211; Open University Lecturer [12:15]</li>
<li><a href="http://www.bbc.co.uk/virtualrevolution/">The Virtual Revolution TV program supporting website</a> [12:30]</li>
<li><a href="http://twitter.pbworks.com/Hashtags">What is a twitter hash tag?</a> [12:45]</li>
<li><a href="http://en.wikipedia.org/wiki/Backchannel">What is a backchannel?</a> [13:00]</li>
</ul>
<ul>
<li><a href="http://www.sapweb20.com/blog/2009/10/web-20-presentation-tools-from-sap-integrate-twitter-into-powerpoint/">Embedding Twitter into PowerPoint &#8211; free download</a> [15:15]</li>
<li><a href="http://www.bbc.co.uk/virtualrevolution/credits.shtml">Users who helped make the Virtual Revolution</a> [15:55]</li>
<li><a href="https://www.bbc.co.uk/labuk/experiments/webbehaviour">Virtual Revolution experiment: Web behaviour test &#8211; What kind of animal are you?</a> [16:50]</li>
<li>TV streaming through a web browser [17:17]
<ul>
<li><a href="http://www.seesaw.com/">SeeSaw</a></li>
<li><a href="http://www.boxee.tv/">Boxee</a></li>
<li><a href="http://www.hulu.com/">Hulu</a></li>
</ul>
</li>
</ul>
</li>
</ul>
<p><strong>Links from Kevin’s subjects: Timestamps represented as [minutes:seconds]</strong></p>
<ul>
<li><a href="http://kev-brace.blogspot.com/2010/02/trending-tools-of-2010.html">2010 Learning Technologies conference</a> [18:00]
<ul>
<li><a href="http://www.kineo.com/">Kineo Brighton based e-learning company &#8211; free resources</a> [18:30]</li>
<li><a href="http://www.learningtechnologies.co.uk/opening-address/">Keynote speech by Josh Bresin on Informal learning: new strategies and practices for greater business impact</a> [19:00]</li>
<li><a href="http://en.wikipedia.org/wiki/Informal_learning">Informal learning  &#8211; definition</a> [19:30]
<ul>
<li><a href="http://www.learningconversations.co.uk/main/index.php/2009/11/26/from-formal-courses-to-social-learning?blog=5">Mixing formal and informal learning</a></li>
</ul>
</li>
<li><a href="http://wiki.rscwmsystems.org.uk/index.php/Synchronous_webcasting_tools">Synchronous e-learning tools</a> [20:00]
<ul>
<li><a href="http://www.elearningnetwork.org/">Clive Sheppard &#8211; e-learning network</a></li>
</ul>
</li>
<li><a href="http://kev-brace.blogspot.com/2010/02/trending-tools-of-2010.html">Trending learning tools</a> of 2010 &#8211; (Huddle &amp; Yammer, etc) [20:15]</li>
<li><a href="http://www.trainingzone.co.uk/">The Training Zone website</a> [21:00]</li>
<li>The original <a href="http://etherpad.com/">etherpad</a> techology now used in <a href="http://ietherpad.com/">ietherpad</a> and <a href="http://primarypad.com/">primarypad</a> [21:15]</li>
<li><a href="http://kev-brace.blogspot.com/2010/02/video-toolz.html">Wetoku  &#8211; tested by Kevin in this post</a> [21:30]</li>
<li><a href="http://www.qe-sig.net/">SIG Quality Assurance/Quality Enhancement in e-learning</a> [22:15]</li>
<li>Micro chunks of (e)learning [22:45]
<ul>
<li><a href="http://trends.masie.com/archives/?currentPage=2">Elliot Masie&#8217;s elearning trends</a></li>
<li><a href="http://wiki.rscwmsystems.org.uk/index.php/Rapid-elearning">Rapid learning wiki page</a></li>
</ul>
</li>
<li><a href="http://www.towardsmaturity.org/article/2009/09/28/towards-maturity-efficiency-indicator/">Towards Maturity efficiency indicator</a> [23:45]</li>
<li><a href="http://www.towardsmaturity.org/article/2009/09/12/evidence-change/">Evidence for Change case studies</a> [25:15]</li>
<li><a href="http://www.excellencegateway.org.uk/page.aspx?o=casestudies">Excellence gateway e-learning case studies</a> [25:30]</li>
</ul>
</li>
<li><a href="http://kev-brace.blogspot.com/2010/02/video-toolz.html">Screencasting tools</a> (Screenr, Screentoaster) [26:00]</li>
<li><a href="http://kev-brace.blogspot.com/2010/02/bce-update.html">Business Community Engagement</a> (BCE) [26:30]
<ul>
<li><a href="http://www.jiscinfonet.ac.uk/infokits/embedding-bce">JISC BCE Infonet Infokit</a> [27:15]</li>
<li><a href="http://kev-brace.blogspot.com/2009/11/e-research.html">Knowledge exchange/transfer and research</a> [28:00]</li>
<li><a href="http://blogs.rsc-wales.ac.uk/he/2009/12/14/engaging-business-and-the-community-new-resource/">RSC Wales Engaging business and the community – new resource</a></li>
</ul>
</li>
<li><a href="http://www.wlv.ac.uk/Default.aspx?page=21322">Intelligent Career Development</a> Company and JISC funded <a href="http://www.jisc.ac.uk/whatwedo/programmes/elearning/workforcedev/pedagogyforsmes.aspx">e-Portfolio based pedagogy for SMEs</a> [28:45]</li>
<li><a href="http://www.wlv.ac.uk/default.aspx?page=18099">Ian Hart WLV partnerships</a> [29:15]
<ul>
<li><a href="http://www.uhi.ac.uk/">UHI Partnerships</a> [30:45]</li>
<li><a href="http://en.wikipedia.org/wiki/Networked_learning">Networked Learning</a> [30:50]</li>
</ul>
</li>
<li><a href="http://www.dimdim.com/">DimDim webinar tool</a> [32:15]</li>
<li><a href="http://kev-brace.blogspot.com/2009/07/harness-power-of-crowd.html">Collaborative networking practice</a> [33:15]</li>
</ul>
<p>Intro/Outro music: <a href="http://www.opsound.org/artist/stateoftheart/">1-2-3-4 from stream of unconsciousness by Jeremy B. Northup</a></p>
<div id="crp_related"><h3>You also might like:</h3><ul><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2009/10/rsc-mp3-he-update-sep-09/" rel="bookmark" class="crp_title">RSC-MP3: HE Update Sep 09</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/03/rsc-mp3-he-update-feb-2010-interview-with-ian-hart/" rel="bookmark" class="crp_title">RSC-MP3: HE Update Feb 2010: Interview with Ian Hart</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/02/rsc-mp3-he-update-jan-2010/" rel="bookmark" class="crp_title">RSC-MP3: HE Update Jan 2010</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2009/12/rsc-mp3-he-update-nov-09/" rel="bookmark" class="crp_title">RSC-MP3: HE Update Nov 09</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2009/04/rsc-mp3-he-update-feb-09/" rel="bookmark" class="crp_title">RSC-MP3: HE Update Mar &#8216;09</a></li></ul></div>
]]></content:encoded>
			<wfw:commentRss>http://www.rsc-ne-scotland.org.uk/mashe/2010/03/rsc-mp3-he-update-feb-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.rsc-ne-scotland.org.uk/mashe/wp-content/uploads/2010/RSC-MP3-FEB-2010.mp3" length="25804714" type="audio/mpeg" />
		</item>
		<item>
		<title>Twitter powered subtitles: Creation and playback for SMIL 3.0 SMILText, *.srt and Timed Text (BBC iPlayer)</title>
		<link>http://www.rsc-ne-scotland.org.uk/mashe/2010/02/twitter-powered-subtitles/</link>
		<comments>http://www.rsc-ne-scotland.org.uk/mashe/2010/02/twitter-powered-subtitles/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 23:07:38 +0000</pubDate>
		<dc:creator>Martin Hawksey</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Twitter Subtitles]]></category>

		<guid isPermaLink="false">http://www.rsc-ne-scotland.org.uk/mashe/?p=1515</guid>
		<description><![CDATA[
 Since my first post on Twitter powered subtitles for BBC iPlayer Tony Hirst has put together another interesting post presenting a method for curating supplemental content for students using his DeliTV. Tony finishes his post commenting that it would be useful to see how timed text could be used to supplement radio broadcasts with [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://www.rsc-ne-scotland.org.uk/mashe/wp-content/uploads/2010/02/image3.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="Twitter Subtitles in BBC iPlayer" border="0" alt="Twitter Subtitles in BBC iPlayer" align="right" src="http://www.rsc-ne-scotland.org.uk/mashe/wp-content/uploads/2010/02/image_thumb.png" width="244" height="181" /></a> Since my first post on <a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/02/twitter-powered-subtitles-for-bbc-iplayer/">Twitter powered subtitles for BBC iPlayer</a> Tony Hirst has put together another interesting post presenting <a href="http://ouseful.wordpress.com/2010/02/22/scheduling-content-round-the-edges-supporting-oubbc-co_productions/">a method for curating supplemental content for students</a> using his <a href="http://ouseful.wordpress.com/2009/09/02/delicious-tv-personally-programmed-social-television-channels-on-boxee-preview/">DeliTV</a>. Tony finishes his post commenting that it would be useful to see how timed text could be used to supplement radio broadcasts with either embedded subtitles or a standalone player. </p>
<p>In my original post I mentioned that I tried the <a href="http://code.google.com/p/smiltext-javascript/">smilText JavaScript engine</a> without any success. I also had a looked at how radio broadcasts are delivered via BBC iPlayer. As the majority aren’t available for download and the BBC are phasing out RealAudio next month (<a href="http://www.skillsforaccess.org.uk/howto.php?id=136">RealAudio can be synchronised with RealText for captioning</a>) these were also dead-ends (I did however come across <a href="http://www.iplayerconverter.co.uk/">iPlayer Converter</a> which is useful if you <em>“want to be able to access BBC Radio programming but can&#8217;t use the iPlayer”</em>). I also had a look at Tony’s suggested <a href="http://dev.opera.com/articles/view/accessible-html5-video-with-javascripted-captions/">Accessible HTML5 Video with JavaScripted captions</a>, again a dead-end without converting audio into a compatibly format.</p>
<p>Having exhausted these other avenues I decided to have another look at the smilText JavaScript engine again and guess what I got it to work! So as well as adding a real-time twitter player it made sense to add some other additional features below: </p>
<ul>
<li><strong>Real-time twitter playback using smilText JavaScript engine</strong> </li>
<li><a href="http://www.w3.org/TR/SMIL/smil-text.html#q26">SMIL 3.0 SMILText</a><strong> creation/download</strong> </li>
<li><a href="http://en.wikipedia.org/wiki/SubRip">SubRip .srt</a><strong> creation/download </strong></li>
<li><a href="http://www.w3.org/TR/2006/CR-ttaf1-dfxp-20061116/">Timed Text Authoring Format</a><strong> creation/download (used with BBC iPlayer and others)</strong> </li>
<li><strong>API access documentation</strong> </li>
</ul>
<p>And here is the link to the tool:</p>
<p align="center">*** <a href="http://www.rsc-ne-scotland.org.uk/mashe/ititle/">Twitter Powered Subtitles Tool</a> ***</p>
<h3>How I got it to work</h3>
<p>So what did I do wrong? Quite a bit as it turns out:</p>
<ol>
<li>Didn’t import all of the scripts for the JavaScript SMILText Player. In my defence the official documentation was a little missleading. </li>
<li>Understanding the SMILText schema (need a &lt;tev&gt; before a &lt;clear&gt;???)</li>
<li>Using closing tags like this &lt;tev /&gt; instead of &lt;tev&gt;&lt;/tev&gt;. Don’t know if this was because of the DOCTYPE was wrong or the way the JavaScript parsed the document. </li>
<li>smilText JavaScript engine doesn’t appear to implement <a href="http://www.w3.org/TR/2008/REC-SMIL3-20081201/smil-timing.html#Timing-ClockValueSyntax">hh:mm:ss ClockValueSyntax</a> </li>
</ol>
<h3>Observations and further development</h3>
<p>It is worth noting that smilText JavaScript engine doesn’t appear to automatically wrap on white-spaces. I don’t no if this is a limitation of the engine or the SMIL language. I also wanted to keep &lt;a&gt; tags in browser playback but this doesn’t appear to be part of <a href="http://www.w3.org/TR/2008/REC-SMIL3-20081201/smil-text-profile.html#q11">SMIL 3.0 smilText</a>.</p>
<p>How this tool/concept be further developed? The playback browser is very basic but could be easily enhanced with some TLC. The <a href="http://smiltext-javascript.googlecode.com/svn/trunk/docs/1.1/index.html">smilText JavaScript API</a> has some useful methods which could easily be exploited. There is also the question of how this tool could be integrated into other services like <a href="http://twapperkeeper.com/">Twapper Keeper</a>, <a href="http://www.opensubtitles.org/en">opensubtitles.org</a> (which is used by <a href="http://www.boxee.tv/">boxee</a> and others) or <a href="http://fanhu.bz/">FanHubz</a>.</p>
<p>As always the <a href="http://www.mediafire.com/file/z2zmxnqkdnj/twitter-sub-0.2.zip">source code is available here</a> for further development. </p>
<div id="crp_related"><h3>You also might like:</h3><ul><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/02/twitter-powered-subtitles-for-bbc-iplayer/" rel="bookmark" class="crp_title">Twitter powered subtitles for BBC iPlayer</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/02/the-virtual-revolution-twitter-subtitles-for-bbc-iplayer/" rel="bookmark" class="crp_title">The Virtual Revolution: Twitter subtitles for BBC iPlayer</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2009/12/festive-fun-embed-web2-outlook2007/" rel="bookmark" class="crp_title">Festive fun: Embedding and interacting with web2.0 in MS Outlook 2007</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/03/rsc-mp3-he-update-feb-2010/" rel="bookmark" class="crp_title">RSC-MP3: HE Update Feb 2010</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/01/this-weeks-solutions-export-twitter-followers-auto-anchors-for-wordpress-and-shortening-urls-in-twitter-badges/" rel="bookmark" class="crp_title">This week&rsquo;s solutions: export twitter followers, auto anchors for WordPress and shortening urls in twitter badges</a></li></ul></div>
]]></content:encoded>
			<wfw:commentRss>http://www.rsc-ne-scotland.org.uk/mashe/2010/02/twitter-powered-subtitles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I&#8217;ve starred this week: February 23, 2010</title>
		<link>http://www.rsc-ne-scotland.org.uk/mashe/2010/02/what-ive-starred-this-week-february-23-2010/</link>
		<comments>http://www.rsc-ne-scotland.org.uk/mashe/2010/02/what-ive-starred-this-week-february-23-2010/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 10:00:43 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Starred]]></category>

		<guid isPermaLink="false">http://www.rsc-ne-scotland.org.uk/mashe/2010/02/what-ive-starred-this-week-february-23-2010/</guid>
		<description><![CDATA[
Here&#39;s some posts which have caught my attention this week:

Is Second Life about to enter its “second life?” &#8211; February 22, 2010 
Marine scientist becomes head of the new UHI graduate school &#8211; February 22, 2010 
Scheduling Content Round the Edges – Supporting OU/BBC Co-Productions &#8211; February 22, 2010 
Raise your game &#8211; February 18, [...]]]></description>
			<content:encoded><![CDATA[
<p>Here&#39;s some posts which have caught my attention this week:
<ul>
<li><a href="http://scobleizer.com/2010/02/22/is-second-life-about-to-enter-its-second-life/">Is Second Life about to enter its “second life?”</a> &#8211; <em>February 22, 2010 </em></li>
<li><a href="http://www.uhi.ac.uk/home/archive_news/marine-scientist-becomes-head-of-the-new-uhi-graduate-school">Marine scientist becomes head of the new UHI graduate school</a> &#8211; <em>February 22, 2010 </em></li>
<li><a href="http://ouseful.wordpress.com/2010/02/22/scheduling-content-round-the-edges-supporting-oubbc-co_productions/">Scheduling Content Round the Edges – Supporting OU/BBC Co-Productions</a> &#8211; <em>February 22, 2010 </em></li>
<li><a href="http://www.timeshighereducation.co.uk/story.asp?sectioncode=26&amp;storycode=410392&amp;c=1">Raise your game</a> &#8211; <em>February 18, 2010 &#8211; Raise your game &#8211; &#8220;20 inexpensive ways to help their institutions climb the league tables&#8221; (from THE)</em></li>
<li><a href="http://feedproxy.google.com/~r/Makeuseof/~3/h-T2gmIqfN0/">How To Add Quizzes To Your Self-Hosted Wordpress Blog</a> &#8211; <em>February 16, 2010 </em></li>
<li><a href="http://news.bbc.co.uk/go/rss/-/1/hi/technology/8518726.stm">Facebook launch &#8216;Zero&#8217; for mobile</a> &#8211; <em>February 16, 2010 </em></li>
<li><a href="http://news.bbc.co.uk/go/rss/-/1/hi/technology/8519314.stm">Google Buzz &#8216;breaks privacy laws&#8217;</a> &#8211; <em>February 17, 2010 </em></li>
<li><a href="http://scobleizer.com/2010/02/15/google-buzz-copied-friendfeeds-worst-features-why/">Google Buzz copied FriendFeed’s worst features, why?</a> &#8211; <em>February 15, 2010 </em></li>
<li><a href="http://www.timeshighereducation.co.uk/story.asp?sectioncode=26&amp;storycode=410412&amp;c=1">Tributes paid to Robert Gordon principal</a> &#8211; <em>February 16, 2010 </em></li>
</ul>
<div style="text-align: right"><em>Automatically generated from <a href="http://www.google.com/reader/shared/11609741331127149470">my Google Reader Shared Items</a>.</em></div>
<div id="crp_related"><h3>You also might like:</h3><ul><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/03/rsc-mp3-he-update-feb-2010/" rel="bookmark" class="crp_title">RSC-MP3: HE Update Feb 2010</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/01/feedbooks-pipe/" rel="bookmark" class="crp_title">Creating a PDF or eBook from an RSS feed (feedbooks.com)</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/02/twitter-powered-subtitles/" rel="bookmark" class="crp_title">Twitter powered subtitles: Creation and playback for SMIL 3.0 SMILText, *.srt and Timed Text (BBC iPlayer)</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/02/the-virtual-revolution-twitter-subtitles-for-bbc-iplayer/" rel="bookmark" class="crp_title">The Virtual Revolution: Twitter subtitles for BBC iPlayer</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/02/rsc-mp3-he-update-jan-2010/" rel="bookmark" class="crp_title">RSC-MP3: HE Update Jan 2010</a></li></ul></div>
]]></content:encoded>
			<wfw:commentRss>http://www.rsc-ne-scotland.org.uk/mashe/2010/02/what-ive-starred-this-week-february-23-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Virtual Revolution: Twitter subtitles for BBC iPlayer</title>
		<link>http://www.rsc-ne-scotland.org.uk/mashe/2010/02/the-virtual-revolution-twitter-subtitles-for-bbc-iplayer/</link>
		<comments>http://www.rsc-ne-scotland.org.uk/mashe/2010/02/the-virtual-revolution-twitter-subtitles-for-bbc-iplayer/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 21:15:59 +0000</pubDate>
		<dc:creator>Martin Hawksey</dc:creator>
				<category><![CDATA[Twitter Subtitles]]></category>
		<category><![CDATA[#bbcrevolution]]></category>

		<guid isPermaLink="false">http://www.rsc-ne-scotland.org.uk/mashe/?p=1498</guid>
		<description><![CDATA[

Following on from my post on Twitter powered subtitles for BBC iPlayer below is the subtitle file for the latest episodes. More information on the series is available from The Virtual Revolution website.

The Cost of free Sat 13 Feb 2010 @ 21:15 &#124; Subtitle file (search term: &#8216;#bbcrevolution -watching&#8217;)
Homo Interneticus Sat 20 Feb 2010 @ [...]]]></description>
			<content:encoded><![CDATA[
<p style="text-align: center;"><a href="http://www.bbc.co.uk/virtualrevolution/"><img style="display: inline; border-width: 0px;" title="The Virtual Revolution Banner" src="http://www.rsc-ne-scotland.org.uk/mashe/wp-content/uploads/2010/02/image2.png" border="0" alt="The Virtual Revolution Banner" width="475" height="110" /></a></p>
<p>Following on from my post on <a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/02/twitter-powered-subtitles-for-bbc-iplayer/">Twitter powered subtitles for BBC iPlayer</a> below is the subtitle file for the latest episodes. More information on the series is available from <a href="http://www.bbc.co.uk/virtualrevolution/">The Virtual Revolution website</a>.</p>
<ul>
<li>The Cost of free Sat 13 Feb 2010 @ 21:15 | <a href="http://www.rsc-ne-scotland.org.uk/mashe/ititle/costoffree_prepared.xml">Subtitle file</a> (search term: &#8216;#bbcrevolution -watching&#8217;)</li>
<li>Homo Interneticus Sat 20 Feb 2010 @ 20:15 | <a href="http://www.rsc-ne-scotland.org.uk/mashe/ititle/homoInterneticus_prepared.xml">Subtitle file</a> (search term: &#8216;#bbcrevolution -watching -RT)</li>
</ul>
<p>To use these files follow these steps</p>
<ol>
<li><a href="http://www.bbc.co.uk/iplayer/search/?q=The%20Virtual%20Revolution">Download episode from iPlayer</a></li>
<li>Locate downloaded folder for the episode (default for PC it is [My Documents] &gt; [My Videos] &gt; [BBC iPlayer] &gt; [repository] &gt; [<em>obscure-broadcast-folder-name-like-b00qx4t0</em>]</li>
<li>Replace the file which ends &#8216;_prepared.xml&#8217; with the one download above using the same obscure file name ie <em>b00qx4t0_prepared.xml.</em></li>
<li>Start the clip in iPlayer pressing the ‘S’ button to turn subtitles on/off.</li>
</ol>
<p>If you would like to create twitter subtitle files for other BBC programmes available for download on iPlayer you can use the link to the tool below:</p>
<p style="text-align: center;"><a href="http://www.rsc-ne-scotland.org.uk/mashe/ititle">Click here to create twitter subtitles<br />
for other BBC iPlayer downloads</a></p>
<div id="crp_related"><h3>You also might like:</h3><ul><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/02/twitter-powered-subtitles-for-bbc-iplayer/" rel="bookmark" class="crp_title">Twitter powered subtitles for BBC iPlayer</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/02/twitter-powered-subtitles/" rel="bookmark" class="crp_title">Twitter powered subtitles: Creation and playback for SMIL 3.0 SMILText, *.srt and Timed Text (BBC iPlayer)</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/03/rsc-mp3-he-update-feb-2010/" rel="bookmark" class="crp_title">RSC-MP3: HE Update Feb 2010</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2008/09/do-virtual-worlds-have-a-place-in-education/" rel="bookmark" class="crp_title">Do Virtual Worlds have a Place in Education?</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/01/this-weeks-solutions-export-twitter-followers-auto-anchors-for-wordpress-and-shortening-urls-in-twitter-badges/" rel="bookmark" class="crp_title">This week&rsquo;s solutions: export twitter followers, auto anchors for WordPress and shortening urls in twitter badges</a></li></ul></div>
]]></content:encoded>
			<wfw:commentRss>http://www.rsc-ne-scotland.org.uk/mashe/2010/02/the-virtual-revolution-twitter-subtitles-for-bbc-iplayer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Twitter powered subtitles for BBC iPlayer</title>
		<link>http://www.rsc-ne-scotland.org.uk/mashe/2010/02/twitter-powered-subtitles-for-bbc-iplayer/</link>
		<comments>http://www.rsc-ne-scotland.org.uk/mashe/2010/02/twitter-powered-subtitles-for-bbc-iplayer/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 23:07:35 +0000</pubDate>
		<dc:creator>Martin Hawksey</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Twitter Subtitles]]></category>
		<category><![CDATA[mashed]]></category>
		<category><![CDATA[#bbcrevolution]]></category>

		<guid isPermaLink="false">http://www.rsc-ne-scotland.org.uk/mashe/2010/02/twitter-powered-subtitles-for-bbc-iplayer/</guid>
		<description><![CDATA[
Update: Latest twitter subtitle file for The Virtual Revolution
Update: Revised code to include other timed text/caption formats
On demand television like the BBC iPlayer has changed the TV habits of many users. Instead of waiting to tune into the live broadcast views can download and watch programmes at a time of their choosing and on a [...]]]></description>
			<content:encoded><![CDATA[
<p><img style="display: inline; margin-left: 0px; margin-right: 0px; border: 0px;" title="Virtual Revolution" src="http://www.rsc-ne-scotland.org.uk/mashe/wp-content/uploads/2010/02/image.png" border="0" alt="Virtual Revolution" width="240" height="231" align="right" /><strong>Update: </strong><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/02/the-virtual-revolution-twitter-subtitles-for-bbc-iplayer/"><strong>Latest twitter subtitle file for The Virtual Revolution</strong></a></p>
<p><strong>Update: </strong><strong><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/02/twitter-powered-subtitles/">Revised code to include other timed text/caption formats</a></strong></p>
<p>On demand television like the BBC iPlayer has changed the TV habits of many users. Instead of waiting to tune into the live broadcast views can download and watch programmes at a time of their choosing and on a range of devices. Another media revolution has been status update/social networking sites like twitter. Ever wanting to engage with the listeners twitter is becoming the new ‘phone-in’ or ‘SMS text your thoughts’ for broadcasters. Whilst in the general populous there is still uncertainty over the benefits of sites like twitter broadcasters are already exploring how this technology can be used. A case in point in the <a href="http://www.bbc.co.uk/virtualrevolution/">BBC/Open University The Virtual Revolution</a> series which is exploring how 20 years of the web has shaped our lives. Its not surprising that a programme of this ilk is exploring how technology can be used to support the broadcast (including allowing viewers to mash-up and reuse clips from the series), it is also the first programme that I’ve seen broadcast a hashtag within its opening credits. The hashtag is a community driven invention which allows comments and content to be tracked across the web including in comments made as tweets.</p>
<p>I find watching the programme with this backchannel communication is entertaining and for me adds a new dimension. There are perhaps educational uses to be explored such as engaging students in real-time discussion, asking them to critically reflect and evaluate what is being presented in real-time.</p>
<p>But what if you are busy on a Saturday night? Whilst you can rewind the programme via iPlayer and use the twitter search to pull up the tweets, these have become decoupled. This might have been a problem Tony Hirst encountered when he tweeted:</p>
<blockquote><p><a href="http://twitter.com/psychemedia"><img style="display: inline; margin-left: 0px; margin-right: 0px;" src="http://a1.twimg.com/profile_images/53959414/rss_globe_bigger.png" alt="" align="left" /> psychemedia</a> mulling over how to replay a hashtagged feed in real time from, say, a two hour window (bbcrevolution) <a href="http://twitter.com/psychemedia/status/9096484725">View tweet</a></p></blockquote>
<p>Tony has been a valuable source for me in past, providing inspiration for my Twitter voting mash-up (<a href="http://www.rsc-ne-scotland.org.uk/mashe/category/twevs/">TwEVS</a>). Another of his ideas is a <a href="http://ouseful.wordpress.com/2009/03/17/easier-twitter-powered-subtitles-for-youtube-movies/">Twitter YouTube subtitle mashup</a>, which extracts tweets to use as subtitles in YouTube videos of live events. Using exactly the concept I’ve come up with a way to allow a user to replay a downloaded iPlayer episode subtitling it with the tweets made during the original broadcast.</p>
<h3>In action</h3>
<p>So first to see the results in action. The video below shows the iPlayer playing ‘The Virtual Revolution: The cost of free’ displaying the tweets made during the live broadcast as subtitles.</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/ZPNSX-sqS4Q&amp;hl=en_GB&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/ZPNSX-sqS4Q&amp;hl=en_GB&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3>How it was done</h3>
<p>When you download a programme to watch using iPlayer as well as the video several other assets including a subtitle file in <a href="http://www.w3.org/TR/ttaf1-dfxp/">W3C Timed Text Authoring Format</a>. To see this episode in full with twitter subtitles <a href="http://www.bbc.co.uk/iplayer/b00n4j0r">download The Virtual Revolution: The cost of free here</a>. Once downloaded by default the programme should be saved in [My Documents] &gt; [My Videos] &gt; [BBC iPlayer] &gt; [repository] &gt; [<em>obscure-broadcast-folder-name-like-b00qx4t0</em>] (not sure what this would be for non-PC). To view with tweets open this folder and replace ‘<em>obscure-broadcast-folder-name-like-b00qx4t0</em>_prepared.xml’ file with <a href="http://www.rsc-ne-scotland.org.uk/mashe/ititle/costoffree_prepared.xml">this one</a> [righ-click save link as], keeping the folder name at the beginning of the file name. When you play the video and turn on subtitles the tweets should be displayed.</p>
<p><a href="http://www.rsc-ne-scotland.org.uk/mashe/ititle/"><img style="display: inline; margin-left: 0px; margin-right: 0px; border-width: 0px;" title="image" src="http://www.rsc-ne-scotland.org.uk/mashe/wp-content/uploads/2010/02/image1.png" border="0" alt="image" width="244" height="224" align="right" /></a>To create the XML file for any downloadable BBC broadcast I created a tool using the same concept as Tony’s subtitling YouTube example. Here is the <a href="http://www.rsc-ne-scotland.org.uk/mashe/ititle/">Twitter Powered Subtitles for BBC iPlayer Tool</a> I created.</p>
<p>Whilst the tool was designed for the iPlayer it generates a timed text xml file which might be suitable for other applications. Hopefully the tool is straight forward to use all you have to do if find a programme with an active twitter back-channel (you might be surprised at how many their already are once you start searching). If you have any questions/problems post them in the comments below.</p>
<p><a href="http://gist.github.com/306023">Here is the code used for this tool</a> (it also uses the <a href="http://simplepie.org/">SimplePie code library</a> for handling the RSS). The code includes comments to describe what is going on. Feel free to edit, modify or build upon again use the comments below to share developments.</p>
<h3>Limitations and future directions</h3>
<p>One of the limitations of this solution is it only replays tweets for the duration of the programme. Having looked around I haven’t been able to find any other twitter replay tools. A solution I did explore was using another W3C format called <a href="http://www.w3.org/AudioVideo/">Synchronized Multimedia Integration Language</a> (SMIL). This standard also integration of multimedia with text, images and other objects. My plan was to use the <a href="http://code.google.com/p/smiltext-javascript/">smilText JavaScript engine</a> to replay tweets in the browser without linking it to any media. Having played around with the JavaScript engine I couldn’t get it to work. Perhaps the baton needs to be passed back to Tony … ;)</p>
<div id="crp_related"><h3>You also might like:</h3><ul><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/02/the-virtual-revolution-twitter-subtitles-for-bbc-iplayer/" rel="bookmark" class="crp_title">The Virtual Revolution: Twitter subtitles for BBC iPlayer</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/02/twitter-powered-subtitles/" rel="bookmark" class="crp_title">Twitter powered subtitles: Creation and playback for SMIL 3.0 SMILText, *.srt and Timed Text (BBC iPlayer)</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2009/12/festive-fun-embed-web2-outlook2007/" rel="bookmark" class="crp_title">Festive fun: Embedding and interacting with web2.0 in MS Outlook 2007</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/01/a-real-time-education/" rel="bookmark" class="crp_title">A real-time education (etherpad, mindmeister and cacoo)</a></li><li><a href="http://www.rsc-ne-scotland.org.uk/mashe/2010/03/rsc-mp3-he-update-feb-2010/" rel="bookmark" class="crp_title">RSC-MP3: HE Update Feb 2010</a></li></ul></div>
]]></content:encoded>
			<wfw:commentRss>http://www.rsc-ne-scotland.org.uk/mashe/2010/02/twitter-powered-subtitles-for-bbc-iplayer/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 5.993 seconds -->
<!-- Cached page served by WP-Cache -->
