<?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>Playing with Technology&#187; Instructional Technology</title>
	<atom:link href="http://jon.breitenbucher.net/topics/it/feed/" rel="self" type="application/rss+xml" />
	<link>http://jon.breitenbucher.net</link>
	<description>Any sufficiently advanced technology is indistinguishable from magic. ~Arthur C. Clarke</description>
	<lastBuildDate>Sat, 25 May 2013 16:04:12 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Fun with Moodle, Not!</title>
		<link>http://jon.breitenbucher.net/fun-with-moodle-not/</link>
		<comments>http://jon.breitenbucher.net/fun-with-moodle-not/#comments</comments>
		<pubDate>Wed, 29 Aug 2012 19:50:41 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Instructional Technology]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[woodle]]></category>
		<category><![CDATA[Bob Puffer]]></category>
		<category><![CDATA[Educational technology]]></category>
		<category><![CDATA[Moodle]]></category>

		<guid isPermaLink="false">http://jon.breitenbucher.net/?p=977</guid>
		<description><![CDATA[Breathe. Take a long breath. That&#8217;s what you do when you&#8217;re faced with a Moodle issue that has your phone ringing off the hook with confused faculty on the other end. Let&#8217;s spell out what the issue was and how it got fixed. A few weeks ago a faculty member noticed that there were extra [...]]]></description>
				<content:encoded><![CDATA[<p>Breathe. Take a long breath. That&#8217;s what you do when you&#8217;re faced with a Moodle issue that has your phone ringing off the hook with confused faculty on the other end. Let&#8217;s spell out what the issue was and how it got fixed.</p>
<p>A few weeks ago a faculty member noticed that there were extra people displaying in the Participants list of all their courses. Seems like not a big deal maybe the automatic course creation scripts had a minor issue and when rosters got updated things would be alright. Well, it turns out that the role assignments for the course were correct and didn&#8217;t match what was displaying in the Participants block. OK, so turn of the Participants block and stop displaying students and faculty on the course descriptions. Search Moodle.org for the issue and find nothing relevant. Make some posts on Moodle.org and the CLAMP Moodle Exchange and wait.</p>
<p>The Moodle.org thread got no action. Maybe the title wasn&#8217;t clear enough or maybe nobody had any more clue how to fix it than we did. The CLAMP folks make some suggestions to check for system-wide role assignments and a couple other things. Check everything that the CLAMP people suggest and everything looks fine. Bob Puffer suggests some queries to run against the database. We run:</p>
<p><code><br />
SELECT a.*, u.username FROM mdl_role_assignments a<br />
JOIN mdl_context con on con.id = a.contextid<br />
JOIN mdl_user u on u.id = a.userid<br />
WHERE con.contextlevel = 50<br />
AND con.instanceid = yourcourseid<br />
</code></p>
<p>and it doesn&#8217;t return any of these phantom users. It just returns the people that should be enrolled.</p>
<p>We notice that the 63 (yeah 63 phantom users) all have some connection to the Music courses in the system. Some Music faculty are displaying as Faculty participants in all classes and some students enrolled in Music courses are displaying as student participants in all courses. Our systems admin looks at the code that generates the code to display participants, students in the gradebook, and users in the course description. He notes that all the code does something with contexts but we don&#8217;t know what that could have to do with anything.</p>
<p>Our system admin tries deleting all the Music course from our test clone of the production box. We check a few courses and the Participant lists and gradebook look fine. We don&#8217;t think to check anything else and decide to contact the chair of the Music department to ask if any Music faculty are actually using Moodle. Only one Music faculty member has put any content into a course and so we help her backup and export everything and then proceed to delete all the Music courses.</p>
<p>Since there isn&#8217;t an easy way to remove a bunch of courses at once, or because we don&#8217;t really know all the ins and outs of Moodle, we move all the Music courses into their own category and then delete the category. Do this deletes all the courses and the Participants lists look fine. The phone continues to ring but now faculty are saying that they see all courses in the system in their My Moodle list. What? We check a few user and sure enough all courses now show for all users in their My Moodle page. We scratch our heads (we should have tried logging in as one of the phantoms on the test).</p>
<p>At this point a member of the Math department drops by my office and says she is getting a strange error when she tries to update a quiz that had previously been working. I login and take a look and sure enough I get the same error &#8220;context () in print_context_name!&#8221;. This is the first error we have ever gotten while working on this issue (going on a month). So now we head over to Moodle.org with the error in hand and do a search and what do you know <a href="http://moodle.org/mod/forum/discuss.php?d=93656">http://moodle.org/mod/forum/discuss.php?d=93656</a> pops up. Hey, this talks about paths (something else the system admin was mumbling about) and the quiz issue. They suggest trying to create a fixcontexts.php that contains:</p>
<p><code><br />
require_once('config.php');<br />
require_login();<br />
build_context_path(true, true);<br />
echo 'Done';<br />
</code></p>
<p>We try this on the test box and things look to be normal. We check the Participant lists, gradebook, and login as some of the phantom users. Everything looks fine and so we run the fix on the production server and everything is as it should be. The phone is silent.</p>
<p>I&#8217;m not sure how anyone is supposed to have realized that all the strange issues we were seeing were related to contexts. In hindsight it is easy to see that having contexts messed up could affect all the areas where we were seeing problems, but we never got any error messages and wouldn&#8217;t have if we hadn&#8217;t moved the Music courses to their own category (creating a new context) and then deleted them, which caused the context of the Math professors quiz to get screwed up.</p>
<p>TL;DR<br />
If you see strange issues and no errors then rebuild the contexts!</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.breitenbucher.net/fun-with-moodle-not/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digital Scholarship and Interactive Publishing</title>
		<link>http://jon.breitenbucher.net/digital-scholarship-and-interactive-publishing/</link>
		<comments>http://jon.breitenbucher.net/digital-scholarship-and-interactive-publishing/#comments</comments>
		<pubDate>Mon, 12 Mar 2012 17:49:39 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Instructional Technology]]></category>
		<category><![CDATA[Multimedia]]></category>
		<category><![CDATA[NMC]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Open Access Publishing]]></category>
		<category><![CDATA[Tenure]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://jon.breitenbucher.net/?p=962</guid>
		<description><![CDATA[Digital Scholarship and Open Access Publishing are two trends that have been emerging for several years, and at this point have probably arrived. The advent of platforms such as Blogger and WordPress have made it extremely easy for faculty to share their research and &#8220;publish&#8221;. I like tools such as these because they are free [...]]]></description>
				<content:encoded><![CDATA[<p>Digital Scholarship and Open Access Publishing are two trends that have been emerging for several years, and at this point have probably arrived. The advent of platforms such as Blogger and WordPress have made it extremely easy for faculty to share their research and &#8220;publish&#8221;. I like tools such as these because they are free and very easy to learn and put the control in the hands of the faculty member. Of course there are thorny issues about how such self-published work should figure into the tenure decision. I&#8217;m sure many institutions are developing policies to help their faculty understand how blogging, tweeting, etc. figure into the tenure process and hopefully Wooster is one of them.</p>
<p>Being very interested in this issue, I was happy to see a session on Digital Scholarship and Interactive Publishing at the NMC conference held this past June. It turns out the session was not what I expected. This session focused on the Adobe Digital Publishing Suite. This is the set of tools used to create magazines such as Martha Stewart&#8217;s Living for the iPad. I was a little disappointed but then I remembered that Instructional Technology had been asked to find a method for creating digital abstracts for the Independent Study projects completed by Wooster Seniors.</p>
<p>You can get a sense of how the suite is being used in education by taking a look at a post on Adobe&#8217;s site about <a href="http://www.adobe.com/cfusion/showcase/index.cfm?event=casestudydetail&amp;casestudyid=1254409&amp;loc=en_us">Case Western Reserve University</a>. Wendy was at the session and demonstrated a prototype for a scientific journal. The demonstration included interactive animations of one of the author&#8217;s experiments and video clips of the author explaining or demonstrating aspects of the article in more detail. It was a very interesting example of what exactly could be done with the digital publishing suite. The downside is that it requires students to use Illustrator which is not something most of our students have been trained to use and of which we only have about 20 licenses for on campus. In addition, it might require the college to use Adobe&#8217;s service for delivering the final products.</p>
<p>Fast forward to April and Apple&#8217;s announcement of iBooks Author. This is again a proprietary format and delivery system, but it is so much easier to use than Adobe&#8217;s digital publishing suite. Students also have much more access to iBooks Author since it is free to download and about 40-50% of students have some form of Apple computer. iBooks Author also has the ability to export to formats other than iBook format. While it is not perfect, I see it as a better solution for Wooster at this time.</p>
<p>This also seemed to be the view of a group of faculty and staff that attended a brown bag lunch in April on the state of digital publishing. The group considered Adobe&#8217;s solution to be too complicated for a first time user and thought significant training would be required. In contrast they thought someone could create a simple iBook in under an hour, but also noted that users were locked in to the templates supplied with iBooks Author. At least one faculty member left saying they will have two or three of their IS students create iBooks as part of their IS experience this spring.</p>
<p>I would say that there still isn&#8217;t a killer app for digital publishing, but developers are getting closer.</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.breitenbucher.net/digital-scholarship-and-interactive-publishing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter in the classroom</title>
		<link>http://jon.breitenbucher.net/twitter-in-the-classroom/</link>
		<comments>http://jon.breitenbucher.net/twitter-in-the-classroom/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 14:45:14 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Instructional Technology]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[engagement]]></category>
		<category><![CDATA[grades]]></category>
		<category><![CDATA[Rey Junco]]></category>
		<category><![CDATA[SXSW]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://jon.breitenbucher.net/?p=959</guid>
		<description><![CDATA[I&#8217;m not sure why but I haven&#8217;t really had the urge to post (as evidenced by the absence of more than a year). It&#8217;s not that I don&#8217;t have things to write about or say. I think I&#8217;ve just had other things that I felt were more important. Anyway, I&#8217;m going to try and work [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m not sure why but I haven&#8217;t really had the urge to post (as evidenced by the absence of more than a year). It&#8217;s not that I don&#8217;t have things to write about or say. I think I&#8217;ve just had other things that I felt were more important. Anyway, I&#8217;m going to try and work through my backlog of notes from SXSW, NMC, NERCOMP, and some other things.</p>
<p>In March of this year I attended SXSW and tried to focus on presentations and panels with a higher ed focus. The first event and by far the most interesting was <a title="Using Twitter to Improve College Student Engagement" href="http://schedule.sxsw.com/events/event_IAP5359">Using Twitter to Improve College Student Engagement</a> by <a title="Rey Junco" href="http://www.reyjunco.com/Welcome.html">Rey Junco</a>.You can listen to his presentation</p>
<!-- Audio shortcode source not set -->
<p>or view the slides</p>
<div id="__ss_7245104" style="width: 425px;"><strong style="display: block; margin: 12px 0 4px;"><a title="Using Twitter to Improve College Student Engagement: Rey Junco SxSWi '11" href="http://www.slideshare.net/reyjunco/using-twitter-to-improve-college-student-engagement" target="_blank">Using Twitter to Improve College Student Engagement: Rey Junco SxSWi &#8217;11</a></strong> <iframe src="http://www.slideshare.net/slideshow/embed_code/7245104" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" width="425" height="355"></iframe></p>
<div style="padding: 5px 0 12px;">View more <a href="http://www.slideshare.net/" target="_blank">presentations</a> from <a href="http://www.slideshare.net/reyjunco" target="_blank">Rey Junco</a></div>
</div>
<p>The gist of Dr. Junco&#8217;s presentation was that students were more engaged, as long as it was clear that Twitter was an important aspect of the class. Dr. Junco presented the findings of a <a title="The effect of Twitter on college student engagement and grades" href="http://blog.reyjunco.com/pdf/JuncoHeibergerLokenTwitterEngagementGrades.pdf">study conducted with colleagues</a> to substantiate this statement. The study had faculty use Twitter for announcements, to have students organize study groups, to have students ask the professor questions, and discuss a class reading. The class had a twitter account and each student had an account. Ning was used as a control. The stats gathered from pre- and post-engagement surveys indicate that the students felt more engaged and actually were more engaged. Also of interest was the fact that the Twitter group had a .5 higher mean GPA.</p>
<p>Interestingly, in a larger class of 300 with no control and where students self-selected to use Twitter, were not encouraged, and where the instructor never really used Twitter or the class hashtag, the students claimed to feel more engaged but showed no statistical evidence of being more engaged.</p>
<p>The take aways for me were:</p>
<ul>
<li>Faculty should be interacting with students on Twitter.</li>
<li>Course content must be integrated with Twitter for engagement to be increased.</li>
<li>Faculty should encourage students to use Twitter to collaborate.</li>
</ul>
<p>As with any technology, if the faculty member isn&#8217;t invested in using it then there is a very good chance that the technology will not benefit the students or help meet the learning goals.</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.breitenbucher.net/twitter-in-the-classroom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://audio.sxsw.com/2011/podcasts/UsingTwitterToImproveCollegetudentEngagement.mp3" length="43777880" type="audio/mpeg" />
		</item>
		<item>
		<title>iPad! What is it good for?</title>
		<link>http://jon.breitenbucher.net/ipad-what-is-it-good-for/</link>
		<comments>http://jon.breitenbucher.net/ipad-what-is-it-good-for/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 00:19:09 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Instructional Technology]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[iPad]]></category>

		<guid isPermaLink="false">http://jon.breitenbucher.net/?p=952</guid>
		<description><![CDATA[Absolutely nothing. OK, maybe that is not true. I did find it is very good for watching videos streamed from Netflix. I also enjoyed surfing the Web on it. Using it as an e-reader was a little awkward for me. In all the situations though it was hard to get comfortable. The iPad could be the first [...]]]></description>
				<content:encoded><![CDATA[<p>Absolutely nothing. OK, maybe that is not true. I did find it is very good for watching videos streamed from Netflix. I also enjoyed surfing the Web on it. Using it as an e-reader was a little awkward for me. In all the situations though it was hard to get comfortable. The iPad could be the first new technology that I just don&#8217;t get but that students might.</p>
<p>I also struggled with just how one would produce content on the iPad. There are a few apps, such as <a href="http://itunes.apple.com/us/app/brushes/id288230264?mt=8">Brushes</a>, that seem to make great use of the multi-touch, but that list is pretty short when you focus on apps that could be used for education. Katie Stansberry gives a <a href="http://www.isteconnects.org/2010/04/12/ipad-apps-for-education/">list of a few</a> that she considers to have educational potential. Most of them seem to be geared toward K-12 and not undergrad. Maybe the best way for colleges and universities to use the iPad in their curriculums is to have faculty and students develop apps for the iPad. I think it would be of even greater benefit if the apps they develop were geared toward K-12.</p>
<p>I know Apple is <a href="http://www.appleinsider.com/articles/10/09/03/apple_now_building_2m_ipads_per_month_to_meet_demand.html">selling them like mad</a>, but I just have to shake my head at <a href="http://www.huffingtonpost.com/2010/08/19/ipad-college_n_687355.html">institutions giving them to all the incoming first-years</a>. Stanford Medical School is on that list so maybe my former colleague, Joe Benfield, can shed a little light on how Stanford Medical School is using them in the curriculum. I guess for the moment I&#8217;d just like to try an understand why these schools think the iPad is important to their curricula. Am I completely off-base?</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.breitenbucher.net/ipad-what-is-it-good-for/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Digging into custom post types</title>
		<link>http://jon.breitenbucher.net/digging-in-to-custom-post-types/</link>
		<comments>http://jon.breitenbucher.net/digging-in-to-custom-post-types/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 22:42:28 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Instructional Technology]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[custom post types]]></category>
		<category><![CDATA[Electronic portfolio]]></category>
		<category><![CDATA[EPUB]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://jon.breitenbucher.net/?p=931</guid>
		<description><![CDATA[With the announcement of Anthologize (a product of the One Week &#124; One Tool program), I started wondering about the possibilities for using WordPress as an eportfolio that was capable of producing a neatly formatted portfolio. The benefit of Anthologize is that this porfolio could be formatted as a PDF, ePub book, or as an [...]]]></description>
				<content:encoded><![CDATA[<p>With the announcement of <a href="http://www.anthologize.org">Anthologize</a> (a product of the <a href="http://oneweekonetool.org/">One Week | One Tool</a> program), I started wondering about the possibilities for using WordPress as an eportfolio that was capable of producing a neatly formatted portfolio. The benefit of Anthologize is that this porfolio could be formatted as a PDF, ePub book, or as an RTF document. There are still a lot of bugs with Anthologize, but the potential is exciting.</p>
<p>As I was describing it to <a href="http://thepedestalgroup.com">my wife</a>, she said she thought this would be great for one of her clients. Her client is in the recruiting business and collects information on up to six potential candidates for each position they are trying to fill. This information is currently typed up and then put together in a candidate book that is presented to the firm with which the recruiter is working. My wife wondered if it would be possible to do this using WordPress and Anthologize to automate the process and provide database storage of the candidates and digital output of the book. I told her I thought it could.</p>
<p>As I see it we need to create custom post types reflecting the information the recruiter collects and wishes to associate with each candidate. Once those custom post types are created the recruiter would prepare the candidate book using Anthologize. The bonus would be that the recruiter could run a multisite setup and create a new blog for each placement they were working on and give access just to the client who contracted with them to make the placement. Now the client can view the candidates online via a customized candidate site or via PDF, ePub, RTF, etc. With a rating plugin they could even allow other members of the hiring process to rate the candidates by rating their associated posts on the site. I think I&#8217;ll be working on this in my spare time, referencing <a href="http://cogdogblog.com/2010/05/28/wordpress-3-pt1/">Alan&#8217;s series</a> about custom post types, and keeping notes on how it might relate back to eportfolios and other things I&#8217;m thinking about in relation to my day job.</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.breitenbucher.net/digging-in-to-custom-post-types/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Back on the Pipe(s)</title>
		<link>http://jon.breitenbucher.net/back-on-the-pipes/</link>
		<comments>http://jon.breitenbucher.net/back-on-the-pipes/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 00:02:33 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Instructional Technology]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Pipes]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Yahoo! Inc.]]></category>

		<guid isPermaLink="false">http://jon.breitenbucher.net/?p=899</guid>
		<description><![CDATA[I really wish Yahoo! talked more about Pipes. I don&#8217;t know when I first started messing around with it, but it was probably shortly after Pipes was announced and showed up in one of my numerous RSS feeds. I couldn&#8217;t really figure out how I would use it. Then a year or so ago I [...]]]></description>
				<content:encoded><![CDATA[<p>I really wish Yahoo! talked more about Pipes. I don&#8217;t know when I first started messing around with it, but it was probably shortly after Pipes was announced and showed up in one of my numerous RSS feeds. I couldn&#8217;t really figure out how I would use it. Then a year or so ago I came back again and created a custom feed for a faculty member and wondered why I wasn&#8217;t showing it to more people. It is really one of the coolest tools around for creating your own customized RSS feed. (I&#8217;m trying to put together a customized feed for Instructional Technology, if you have feed suggestions).</p>
<p>The <a title="Yahoo! Pipes" href="http://pipes.yahoo.com/pipes/pipes.popular">number of pipes available and the range of functionality</a> is astounding. You can create pipes that allow for user input or pipes that operate on CSV and other data files available on the Web. The funny thing is I don&#8217;t hear about Pipes by the year and it worries me that such an awesome tool may just disappear one day. Maybe I just am not moving in the circles where Pipes are common place, or maybe people just take them for granted. But I think I&#8217;d like to get more faculty playing with Pipes and thinking about creative ways they could be used in education. What about digital storytelling with Pipes? <a title="Bryan Alexander | NITLE" href="http://blogs.nitle.org/archive/2010/01/31/digital-storytelling-for-teachers-microsofts-guide/">Bryan</a>? <a title="Alan Levine | CogDogBlog" href="http://cogdogblog.com/2010/05/21/50-ways-over-wooster/">Alan</a>?</p>
<p><strong>Edit: </strong>Based on the related posts it looks like I rediscover Pipes about once a year. I find that amusing and sad.</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.breitenbucher.net/back-on-the-pipes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The great Voices upgrade of 2010</title>
		<link>http://jon.breitenbucher.net/the-great-voices-upgrade-of-2010/</link>
		<comments>http://jon.breitenbucher.net/the-great-voices-upgrade-of-2010/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 16:18:22 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Instructional Technology]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[BuddyPress]]></category>
		<category><![CDATA[software upgrades]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://jon.breitenbucher.net/?p=893</guid>
		<description><![CDATA[Ah, July, the month of software upgrades on college campuses across the nation. It is no different at Wooster. This July we will be upgrading the two main application for which I am the administrator, WordPress and Moodle. Of the two I am most interested in WordPress since there are a host of new features [...]]]></description>
				<content:encoded><![CDATA[<p>Ah, July, the month of software upgrades on college campuses across the nation. It is no different at Wooster. This July we will be upgrading the two main application for which I am the administrator, WordPress and Moodle. Of the two I am most interested in WordPress since there are a host of new features and because the Multi User aspect has been rolled into the core software and rebranded as Multi Site.</p>
<p>This change should open up a world of plugins for MS installations that MU installs could not really count on. It also is a huge undertaking since we have been running 2.8.6 for the past year. I just want to document the steps I&#8217;m taking on the test server for upgrading from 2.8.6 to 3.0.</p>
<ul>
<li>Disable BP Events plugin (breaks when upgrading to 2.9.2 with white screen)</li>
<li>Disable Incsub Support, Wibstats, RA BP Author Link, RA Featured Posts in mu-plugins (move to retired-mu-plugins)</li>
<li>Switch themes to a generic theme</li>
<li>Rename our modified BP Corporate theme to Wooster BP Corporate</li>
<li>Enable Wooster BP Corporate theme for main site</li>
<li>Activate Wooster BP Corporate theme</li>
<li>Upgrade BP Corporate Theme (download from <a href="http://premium.wpmudev.org/project/buddypress-corporate-theme">WPMU Dev Premium</a>)</li>
<li>Rename BP Corporate Child theme to BP Corporate Wooster Child</li>
<li>Copy header.php from BP Corporate theme to the Wooster Child and add the modifications to allow rotating header images</li>
<li>Upgrade from <a href="http://mu.wordpress.org/download/">2.8.6 to 2.9.2</a></li>
<li>Disable Ahjira Recent Site-wide Posts (broken with newer BuddyPress versions)</li>
<li>Upgrade any plugins that indicate they need it (BuddyPress and BP Groupblogs excluded)</li>
<li>Disable BuddyPress and BP Groupblogs</li>
<li>Upgrade BuddyPress</li>
<li>Upgrade BP Groupblogs</li>
<li>Switch the theme to BP Corporate Wooster Child (our old modified version of BP Corporate doesn&#8217;t work with new BuddyPress)</li>
<li>Run the Upgrade script to update all the blogs (takes a long time, maybe 2 hours)</li>
<li>Click the <strong>Update to 3.0</strong> button in the Dashboard</li>
<li>Click <strong>Upgrade Automatically</strong></li>
<li>Follow the instructions in the Dashboard header</li>
<li>Click on <strong>Update Network</strong> (and wait 2 hours for it to finish)</li>
</ul>
<p>After this lengthy process Voices should be upgraded to WordPress 3.0 with the latest BuddyPress. One item of note is that any changes that were supposed to be made to .htaccess need to be made to the wpmu-rewrite.conf file of the Apache2 install. Our SysAdmin does not use .htaccess and has those directives in this special Apache2 config file. This means an Apache restart will be required for images to work after the upgrade from 2.9.2 to 3.0.</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.breitenbucher.net/the-great-voices-upgrade-of-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>But I want to use that on my iPad Apple&#8230;</title>
		<link>http://jon.breitenbucher.net/but-i-want-to-use-that-on-my-ipad-apple/</link>
		<comments>http://jon.breitenbucher.net/but-i-want-to-use-that-on-my-ipad-apple/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 17:41:01 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Instructional Technology]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[App Store]]></category>
		<category><![CDATA[Apple Inc.]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[Technology/Internet]]></category>

		<guid isPermaLink="false">http://jon.breitenbucher.net/?p=874</guid>
		<description><![CDATA[As I looked at an iPad in the Apple store last week and watched my daughter&#8217;s eyes go all round and glossy, I tried to think of what exactly I would do with one. I couldn&#8217;t really think of a situation where an iPad would be more convenient or necessary. If I want to watch [...]]]></description>
				<content:encoded><![CDATA[<p>As I looked at an iPad in the Apple store last week and watched my daughter&#8217;s eyes go all round and glossy, I tried to think of what exactly I would do with one. I couldn&#8217;t really think of a situation where an iPad would be more convenient or necessary. If I want to watch a movie on a plane my iPhone is perfect it is easy to carry and doesn&#8217;t distract my fellow passengers. If I want to read, I&#8217;ll pull out an actual book. I don&#8217;t have to worry about breaking the book and if I do then I&#8217;m out a few dollars.</p>
<p>I came back to thinking about this again yesterday when I saw a post in my RSS feeds saying Apple had approved some app and that Jobs had said people who wanted to watch porn could get an Android phone. Do you find this alarming? As I thought about it I sure did. Basically I&#8217;m letting a third party tell me what I can and can&#8217;t do on my device. Then I wondered how that is any different than network television.Â I don&#8217;t think I&#8217;m completely off base with my concerns and I&#8217;m sure others have voiced similar concerns and so the question becomes what can I do about it? I&#8217;m sure the Android app store has some sort of approval process and policies governing what can be in the Market. Until you can add apps to the device without going through a store you are stuck.</p>
<p>This is why I&#8217;m not sure I&#8217;ll ever own an iPad. To me it is a giant media consumption device and I can consume media on my HDTV, laptop, and iPhone just fine. In fact the laptop even lets me create things for others to consume and that is the rub. Without a way to create meaningful content the iPad will always be useless to me. I think the only way this changes is if everything is in the cloud and the iPad just becomes a means to interface with it. But for now I can&#8217;t develop a WordPress template in the cloud (maybe someone will enlighten me). Maybe Chrome OS will be where we are in 5-7 years, but for today I am left pondering whether I agree with the closed universe Apple seems to be developing.</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.breitenbucher.net/but-i-want-to-use-that-on-my-ipad-apple/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quicklaunchers or How I learned to stop mousing and love the keyboard</title>
		<link>http://jon.breitenbucher.net/quicklaunchers-or-how-i-learned-to-stop-mousing-and-love-the-keyboard/</link>
		<comments>http://jon.breitenbucher.net/quicklaunchers-or-how-i-learned-to-stop-mousing-and-love-the-keyboard/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 22:04:40 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Instructional Technology]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Alfred]]></category>
		<category><![CDATA[Launchbar]]></category>
		<category><![CDATA[quicklauncher]]></category>
		<category><![CDATA[Quicksilver]]></category>

		<guid isPermaLink="false">http://jon.breitenbucher.net/?p=857</guid>
		<description><![CDATA[I&#8217;ve been a big fan of quicklaunchers since I got my current MacBook Pro almost four years ago (wow, does anyone want to help me get a newer one?). I may have even fooled around with them on my old 12&#8243; MacBook Pro. I found it very frustrating to have to use the trackpad to [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been a big fan of quicklaunchers since I got my current MacBook Pro almost four years ago (wow, does anyone want to help me get a newer one?). I may have even fooled around with them on my old 12&#8243; MacBook Pro. I found it very frustrating to have to use the trackpad to mouse around and open files and programs and so I started using <a href="http://www.obdev.at/products/launchbar/index.html">Launchbar</a> (which now sits inactive in my Applications folder). It was great. I just hit CTRL+Space and typed a few letters and bam, I could visit a URL, open a file, open a program, send an e-mail. I was in heaven.</p>
<p>It was only a few months later I think that I heard about <a href="http://www.blacktree.com/">QuickSilver</a> the perpetual beta quicklauncher. I don&#8217;t remember why I switched but I switched from Launchbar to Quicksilver. It was probably the nice bezel look I could get on Quicksilver that made me switch. I was still in heaven and able to fly around my computer without taking my hands off the keyboard. Maybe I wasn&#8217;t flying since I type so slowly, but it was faster then mousing around. Then a few months ago Boone Gorges <a href="http://teleogistic.net/2009/12/how-i-use-quicksilver/">wrote a post about how he was using Quicksilver</a> and I realized I had been missing so much. I tried to follow some of Boone&#8217;s tips but encountered little success. To top it off Quicksilver started crashing and just generally acting sluggish since upgrading to 10.6.</p>
<p>So today I happened to read a tweet that mentioned a new quicklauncher, Alfred. The name is not as sexy as Quicksilver, but I downloaded it anyway. Initially it didn&#8217;t work. I wrote the nice folks at <a href="http://www.alfredapp.com/">Alfred</a> and they hooked me up with a version that would run on my old non 64 bit laptop (someone should really get me a new one). Let me say I love the design of their site and so far Alfred feels a lot faster than Quicksilver. I&#8217;m not sure Alfred can do all the crazy things Boone has Quicksilver doing, that is why I&#8217;m hoping he downloaded it and can try to push it. For now I&#8217;ll try Alfred and keep my hands on the keyboard. Yahooooo!</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.breitenbucher.net/quicklaunchers-or-how-i-learned-to-stop-mousing-and-love-the-keyboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do you have time to meet with me?</title>
		<link>http://jon.breitenbucher.net/do-you-have-time-to-meet-with-me/</link>
		<comments>http://jon.breitenbucher.net/do-you-have-time-to-meet-with-me/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 17:56:54 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Instructional Technology]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Calendaring software]]></category>
		<category><![CDATA[Tungle.me]]></category>
		<category><![CDATA[Web calendar]]></category>

		<guid isPermaLink="false">http://jon.breitenbucher.net/?p=833</guid>
		<description><![CDATA[I have been asked this question a lot over the past five years. In my split role as an Instructional Technologist and Professor, people often need to meet with me to pose some questions. I wasn&#8217;t always great about putting the chance encounter meetings onto my calendar and would often double book. To try and [...]]]></description>
				<content:encoded><![CDATA[<p>I have been asked this question a lot over the past five years. In my split role as an Instructional Technologist and Professor, people often need to meet with me to pose some questions. I wasn&#8217;t always great about putting the chance encounter meetings onto my calendar and would often double book. To try and address this I set up my own Web calendar and started sending people there when they wanted to meet with me. It worked but still had issues (people had to e-mail me a meeting time so I could add it to the calendar) and I had to keep the software updated. So last semester I just put everything in my Google calendar and didn&#8217;t have to update software anymore, but I still had students e-mailing me to setup appointments. So I was delighted when I clicked a link in one of my feeds that took me to <a href="http://tungle.me/">Tungle.me</a>.</p>
<p>Tungle makes it super simple to allow people to schedule meetings with me. In the first four weeks of class, I&#8217;ve already had half of my class use the link I give them in our course site to setup a meeting. So far it has been a joy to use and I can&#8217;t think of anything I&#8217;d need to change. I&#8217;ve enjoyed it so much that I recommended it to the other members of the Instructional Technology department. And they must be doing something right because my boss has started using it. I&#8217;m not sure how you&#8217;d find it via Google as a search for &#8220;web based scheduling&#8221; and &#8220;web based appointments&#8221; didn&#8217;t turn up Tungle in the first page of results. Hopefully people reading this spread the word.</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.breitenbucher.net/do-you-have-time-to-meet-with-me/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

 Served from: jon.breitenbucher.net @ 2013-05-25 14:33:59 by W3 Total Cache -->