Google Docs Syllabi

1

This post is part of a series that are components of my “Expert Plan” at my school, looking to create a shared resource for my colleagues as the school moves towards greater adoption of laptops and technology in our pedagogy.

The Model

This started out as simply a way of addressing my own personal predilections: I’m tired of trying to build a syllabus on a calendar (the calendar doesn’t present the syllabus in a useful view), or in a spreadsheet (changing dates becomes a chore), so I decided to separate the various issues out and automate as much as I could. The result is a Google Docs spreadsheet that I embed on my course web site, which allows me to think in terms of units and lessons, and which automatically sequences lessons on to class meetings and updates me with notes about those specific days (Moadim L’Simcha, vacation days, etc.).

This is an example of one of my syllabi as the students see it:

In Practice

This turned out to be some pro-level spreadsheet work. I like working in spreadsheets. Not everyone likes working in spreadsheets. This link takes you to a “scratch” version of one of my syllabi (you’re welcome to edit it to see changes — this isn’t live. The organization is thus:

  • There is a worksheet for each unit of the syllabus, named sequentially Unit 1, Unit 2, Unit 3, etc. (The best way to create a new unit is to duplicate an old one and replace the information).
  • On a unit worksheet, a few of the columns are automatically filled in. You just have to worry about editing the title of the lesson, the lesson description, and the assignment summary. Everything else is filled in automatically.
  • The integrated view of all the units, sequenced together and lined up to days with notes is the Syllabus worksheet.
  • The Meetings worksheet is just a list of days when the class meets (which I entered manually) and any notes about that day specifically that might be helpful for lesson planning.
  • There are a bunch of “working” sheets that you can look at, but don’t edit — they’re collating and organizing all of the units automatically.

Reflection

This was way more work than it was worth for a single syllabus. But as a tool that I intend to reuse again and again, I’m pretty happy with it and feel good about the investment. It is mildly idiosyncratic, in the sense that it meets my specific needs. But it could be used as a model for other people’s style of syllabus design, separating the schedule from the concepts in a way that makes visualizing the lesson flow much, much easier.

Convert Word Processing Files to PDF

0


This post is part of a series that are components of my “Expert Plan” at my school, looking to create a shared resource for my colleagues as the school moves towards greater adoption of laptops and technology in our pedagogy.

This AppleScript application converts any word processing files that Pages can open into PDFs. This application will only work on Macs.

Use

To use this application, drag a icon(s) of a file or group of files on to the icon for the application. When asked, pick which folder you would like to save the PDFs into. As the application runs, if Pages cannnot open a particular file, you will see a message warning you of this. When the application completes, it will display a list of all the files that could not be converted (or simply quit if all of the files were converted).

Install

To install this application, click the link below to download it as a ZIP archive. Double-click the “Convert Word Processing Files to PDFs.zip” icon to expand the ZIP archive and drag the application icon to where you want to use it.

Download

Developing an "Expert Plan"

2

As part of my education technology role at my school, I am a member of our high school “Laptop Leaders” group. A few weeks ago, at the end of our first quarter, the Laptop Leaders were asked to document the work they were doing, to create a shared resource, both for themselves and for other teachers. Ultimately, this is preparation for more large-scale adoption of laptops and technology in general as teaching tools in the high school.

The teachers in this Laptop Leaders group were selected last spring, so I joined the group late, at the beginning of the school year and had, really, only a sketchy plan for what I would be working on. The outline (lightly revised) is below. My intention is to share my various write-ups related to this process in this space.

Collaborative Writing and Editing

I’m working with students to develop a class wiki as a collaborative information source, with students contributing class notes, screencasts and other updates and expansions on course content.

Blogs

I’m working with students to use the class blog as a publication platform for ideas/questions relevant to the greater community in their discipline (e.g. develop [my class] blog into a discussion of [media and design] and related ideas in the outside world).

Social Bookmarking

I’m working with faculty (and students) to use social bookmarking tools (specifically Diigo) to create dynamic and annotated resources for each other (and for and by students).

Social Media

I’m working with faculty and students to develop personal learning networks that tie together all of these Web 2.0 tools to create an online identity and a group of “fellow travelers” studying and exploring the same area. In students’ case, we’re working on this as a class (blogging), but for faculty tools like Twitter (and personal blogs) may also be useful. Also looking at other sharing sites (e.g. Flickr) for use as collaborative tools.

Useful Tools

In the interests of sharing, when I was at my last school, I sat down and created an iusethis.com profile of the handy applications that I use day-to-day. I’ve added this to my profile [on the school wiki], along with a (slowly growing) list of tools that I’ve built for special purposes around school.

Updated November 22, 2009: I should mention that I have Bowdler-ized some of these posts to protect (at least a little), the identities of my students. When posted to our school wiki, there are a number of links to examples. If you pop me an email or a comment and identify yourself, I’m happy to share these examples. Just trying to do some due diligence with regard to my students’ privacy.

Fixing PowerPoint 2008 Web Exports

5

So, I’ve spent the last few days wrestling with a curriculum unit that an outside consultant built. In PowerPoint. On Windows. And which we have been trying to set up in such a way that we can share the interactive document with students. Who are using Macs. And, perhaps, without asking each student to download a ~200MB file to use it.

I have learned and grown much in the process. And have discovered that Microsoft PowerPoint 2008 does an execrable job of exporting PowerPoints as web pages (it does an execrable job of doing a lot of other things too, but we can talk about that at another time). Here are the key fixes that I made to the exported web page and supporting files so that the presentation would fundamentally work (all of this was done using regular expressions in TextMate):

  1. I stripped out all of the fancy Javascript calls that PowerPoint inserted as links to navigate from one slide to another. It turns out that a simple HREF to the actual page’s HTML file works (and the JavaScript Does Not.)
    Find:

    (href=")[^"]*(slide\d{4,4}.htm)[^"]*(")

    Replace with:

    $1$2$3
  2. The export to web page takes all of the already URL-encoded links in the PowerPoint and reencodes them, rendering them useless. I stripped off the second encoding.
    Find:

    (%)25([a-fA-F0-9]{2,2})

    Replace with:

    $1$2
  3. Finally, because the links were built in Windows and then URL-encoded, all of the Windows-style paths needed to be turned into POSIX paths for use on the web.
    Find:

    %5[cC]

    Replace with:

    /

At this point, in an average PowerPoint, most of the damage has been fixed and things more or less work. However, the curriculum unit that we were working with also linked to external Word documents (hence some of the Windows-style path issues above). This meant I had a few more fixes along the way that are worthy of note:

  1. I replaced the links to Word documents with links to the corresponding PDF files (and script I used generated PDF files with .doc.pdf extensions and I didn’t bother to fix that).
    Find:

    (href="[^"]*docx?)(")

    Replace with:

    $1.pdf$2
  2. These links to external documents open in the same frame as the slideshow. Which defeats the purpose of the slideshow being a navigational tool. So I redirected all of the new PDF links to a new window in the browser. As the hyperlinks are broken across two lines in the HTML source code, this took two steps.
    1. Find (changing {{name of Links & Sources folder}} to the, well, actual name of the Links & Sources folder):
      (href="((http://)|({{name of Links & Sources folder}}))[^"]*")\n

      Replace with:

      $1
    2. Find (modifying as noted above):
      (href="((http://)|({{name of Links & Sources folder}}))[^"]*"\starget=")_top(")

      Replace with:

      $1_blank$5

Striving To Be Less Authoritative

2

I’ve been working and reworking this idea, and would rather get it out there short and sweet than turn it into an epic:

The hardest thing that I am doing right now as a teacher is to try to be less authoritative and expert in my own classroom. This springs from the realization last year that, as it is my inclination to answer questions as they are posed to me, projects that I have structured for my students to do their own learning are sabotaged by my answers. If it’s easy to ask me a question and get a (decently accurate) answer, my students have no incentive to work out their own answers.

With my change in schools, I suspect that I am also experiencing a shift in student culture, so this may be a moot goal in another month…

Gut Check

0

It’s always nice to know that I’ve been talking about what I thought I was talking about:

Wordle: battis.net

Teaching Through Fear (And Coming Out the Other Side)

0

I meant to finish preparing for my first day of classes tomorrow, but something that Shelly Blake-Pock posted about earlier was preying on my mind. (Well, that and all the fun-fun-fun of being at a new school, learning new culture and mores.) He posted about the fear of social media that he was observing in the class he’s teaching (on social media) at Johns Hopkins.

Go read his post. Go on. I can wait. Come back here when you’re done.

There are some kind of sarcastic and, well, crappy comments immediately following the post. And it irks me. It irks me enough that I wrote this:

Whether or not social media is the wave of the future (I use Twitter, but have not lost my sense of its absurdity)… I think it’s important not to lose sight of the big message here: we’ve spent a long time, as a society, fretting about how big and scary (and new) the internet and its encumbrances are. And now we have people joining the teaching ranks who have been educated with this mindset. And they’re scared of the internet. It ain’t a big surprise. Cue South Pacific: you’ve got to be carefully taught…

I, myself, take heart in (and stand behind) something that Gary Stager said a couple of weeks ago during our faculty technology workshops: “Sure, I’ve probably not gotten some jobs because of things I’ve said on the internet. But I’m sure I’ve also gotten jobs because of those things.” I think of the job interview I had a few years ago where I walked into the room to be greeted by a laughing group of administrators who had just finished showing each other this — and then roundly agreed that I was just the sort of person they needed working with them in technology with students.

But there’s another level to all of this that is worth thinking about: educating teachers to educate their students in public exposes the foibles of the students (directly) and of the teacher (at least indirectly, and sometimes directly) to public scrutiny. It’s scary business. It requires some very real confidence in yourself as a person and as a teacher to be able to not know something in public — or to correct a mistake in public.

For many teachers faced with social media, I think this is part of the very real threat that they feel: they are turning their classrooms open to (potentially judgmental) strangers — and ceding centerstage, and ceasing to be the expert, but instead being a learner with their students.

It’s big stuff, and technology is a symptom, and not the disease. In almost every case where we talk about technological issues, what we’re getting at are fundamental questions of pedagogy and philosophy. The technology just exposes some of these more-buried issues.

And, with that, I’m off to finish preparing for my first day of classes tomorrow, where I will point my students to social media (both internal to the school and external), admit that I’m not an expert, and talk about how excited I am to learn with them this year.

And so I am: off to finish preparing for tomorrow.

The Internet Tubes (and Yahoo Pipes)

1

So, a couple days ago, Nate posted about my Yahoo Pipes solution for a blog comment aggregating conundrum he was running into in his history class. My solution ended up being a little technical, but I think it’s an interesting enough example of the power of Yahoo Pipes that it’s worth talking through what’s going on. (I love Yahoo Pipes — although one of my colleagues is a major fan of WebRSS, which meets similar needs.)

A mildly cleaned-up version of the solution is below, in the Pipes’ visual programming diagram:

Yahoo Pipes Solution (click to embiggen)

  1. The pipe itself starts on the left, with Fetch Feed module, in which Nate had helpfully plugged in the comments feeds for all of his students. This takes all of the comment feeds from their blogs and aggregates them into one, enormous comment feed.
  2. Following the blue “pipe” from the Fetch Feed module, we reach the Rename module, which is actually be used to rename a copy of the “link” field of each item to “orig_author”. Clearly, this sentence needs some explanation. In an RSS feed, each item represents a single entry (in this case, a single comment on a particular blog). The RSS feed is made up of a bunch of items (usually the ten or so most recent items in the feed, so the ten most recent comments on each blog). We have aggregated these ten most recent comments from each blog into a feed that includes the hundred or so most recent comments from all the blogs (ten blogs x ten comments each = one hundred comments). Each item is made up of a series of fields that describe the item (title, description, link, etc.). Normally, in a feed reader, we only see the title and description, although we may also “see” the link field when the title is turned into a link back to the original comment on the originating blog. In this case, I have made a copy of the link field, for future reference, so that every item now has a second copy of the link field, named “orig_author” (short for original author, because programmers are lazy). It turns out that, in the WordPress.com comment feeds, the link is the only part of the item that refers to the name of the blog on which the comment was made, and that cryptically (e.g. “http://nkogan.wordpress.com/2009/08/…” — i.e., as the first word in the address of the blog itself). More on this in a second.
  3. Again, following the blue pipe from the Rename module to the Regex module, we see two lines, which read, more or less:
    1. In item.orig_author replace
      http://(.*)\.wordpress.*

      with

      $1
    2. In item.title replace
      (Comment on )(.*)( by .*)

      with

      $1${orig_author}’s post “$2”$3

    What this means, in layman’s terms, is basically that I want to take whatever text appears in the orig_author field (which is a copy of the link field, which was a link to the original comment on the originating blog), and extract only the name of the blog from the URL. I won’t dive into the details of regular expressions right now, but what the first one above essentially says is “look for a pattern that starts with ‘http://’ followed by any number of characters — (.*) — followed by ‘.wordpress’ followed by any number of characters — .* — and replace the text that matches that pattern with whatever was in the first set of parentheses — $1.” In other words, replace the entire link with just the name of the blog that’s between ‘http://’ and ‘.wordpress’.
    The second regular expression is a bit more involved. At this point, it helps to realize that each set of parentheses is referred to by its order in the sequence of the original pattern, prefaced by a dollar sign — $1, $2, $3, etc. In this case, we’re looking at the original title of the comment item, which started off something like “Comment on My First Blog Post by Seth B.” I want to take my newly discovered blog name (from the first regular expression) and insert it into this in a meaningful way. To do that, I create a pattern that breaks the original title into its component phrases “Comment on “, “My First Blog Post” and “by Seth B.” With this in hand, I just plug in the current value of the orig_author field — which I just clipped in the previous regular expression, add some nice curly quotes, and put it all back together again to read something like “Comment on nkogan’s post “My First Blog Post” by Seth B.”

  4. Again, following the pipe down to the Sort module, I’ve added the handy little fillip of sorting all of the comments in our aggregated feed by the time at which they were posted (rather than grouping them by the blog on which they were posted, as they would be coming out of the original Fetch Feeds module — the first blog linked to, followed by the second blog linked to, etc.

I hope this is useful, or at least intriguing, in thinking about using the both Yahoo Pipes and regular expressions. A really wonderful reference on regular expressions can be found at Regular-Expressions.info, and I really like JRX as a tool for fine-tuning my regular expressions as I write them.

Two Arguments for Using (Some) Rubrics

2

On an anti-rubric argument

Shelly Blake-Pock has written a very thoughtful, honest and, in many respects, bang-on attack on rubrics. He clearly defines the extreme ends of the spectrum for disastrous rubric usage:

First of all on the issue of transparency. Most rubrics come in one of two varieties. Either they are extremely didactic in a step-by-step hold-your-hand IKEA instruction manual sort of way or they are touchy-feely rubbish where you get a ’1′ for ‘not demonstrating significant understanding’ but a ’5′ for ‘demonstrating unique depth and content mastery’. Rubrics of the latter variety are meant to satisfy the political needs of institutionalized learning, while rubrics of the former are theoretical expressions of teaching to the lowest common denominator.

I’m pretty solidly on board with everything he says here. I don’t want my students to think that the one true way to do anything is to haul out my rubric for the assignment and fill in all the squares completely. I want them to think critically, to creatively synthesize ideas that we have learned together and to develop analyses, ideas and outcomes that are novel and unexpected — and well-supported, thoughtful and demonstrate clear connections to the ongoing work of the class. I don’t want my students to think that life is simply about checking off boxes on someone else’s list.

Point #1: Rubrics are a covenant between a teacher and a student

But here’s the rub, he goes on to attack the idea that rubrics can act  as a tool that promotes objectivity by the teacher:

I don’t want students to do ‘what I want’. I don’t want students to follow ‘objective’ rules. In fact, that’s entirely the type of behavior I’m trying to break my students out of.

I hear his argument that it’s counter-productive to educate our students for their lives to come by aiming them at expectations based on our own experience. Clearly, new contexts require new ideas and new expectations, and our goal should be to help our students learn to develop those new ideas free from the constraints of our own, out-dated thought patterns.

But, we also need to help our students develop skills and techniques for critiquing their own work, for judging whether or not it is objectively good for what it was meant to do (or even serendipitously good for something unexpected — therein lies a window into the power of portfolios, but I digress). A number of commenters suggested working with students to develop collaborative rubrics.

And, I say, this is exactly what we are doing whenever we challenge a student to identify their audience, to present their ideas, to argue for and support their own efforts and creativity and analysis and learning. In fact, there is an implicit rubric at play every time we work with our students to develop qualitative understanding of how they can improve their work.

In this case, the rubric is not a checklist, and it is not an attempt to trample the students’ learning with “my” objectivity: it’s a contract that I am making between myself and my student. “Here, this is what I am looking for in your work — and what you should be looking for in your work.” I believe that there is real value in making this contract explicit where possible, by developing rubrics for and with my students to anticipate what areas of their work I should be focusing on when evaluating drafts and final submissions.

And I think that this idea of the rubric as contract is particularly important because what it really represents in a covenant between the party with power (myself) and the party with less power (my student). I didn’t choose to set the stage this way, but at the end of the day, I’m the one who is entering grades for this student, and it is my evaluation of this student that will be definitive for this course. By making this covenant, an agreement between a party with power and a party lacking in power that effectively binds both parties, I am helping my student not only to focus their efforts, but hopefully alleviating distracting pressures by agreeing not to evaluate on certain aspects of his or her work.

Point #2: Not all learning is divorced from specific facts and skills

The flip side of this rubric conundrum is that not everything that I teach (or that is worth learning) exists without an objective, clearly-defined, body of specific facts and skills that must be mastered by the student. For example, if I were teaching Latin, I would need to work through at least some specific grammar, vocabulary and idiom as a foundation for more open-ended and creative learning. And I would have an objective standard for determining whether or not a student gets it — why would I not communicate that standard to my students? Why would I not give them a target to aim for?

I recall my high school graphic design teacher putting forth what I believe to be a sensible argument during a discussion of the rules of composition. Someone had pointed out that there were great works of art that violated all of these rules, and yet were still great: why should we have to follow them? And Denny Heck responded: “You don’t get to break the rules until you understand the rules.” Yes, she wanted us to learn the rules of composition, but she also expected us to be creative and find ways to violate them and still achieve successful compositions. But those violations would be educated, conscious decisions, aware of the challenges that we were facing — decisions made thoughtfully, well-supported and judiciously.

For assignments at lower levels and earlier in my courses, I do favor rubrics as a way of framing the goalposts for my students. I think that giving them a target to aim for when working to master concrete concepts and facts is a solid support of the education. In providing the rubric, I am also acknowledging that I am not looking for a total understanding of everything, that there could be some confusion in some areas, without the student being entirely at sea when it comes to building on that knowledge. The rubric lets me show my students that there is a “good enough” knowledge of the subject matter that will let us converse about more complicated concepts fluently and without distraction by their confusion.

Student Resistance to Groupwork

1

Nate Kogan, writing about his plans for “classroom 2.0″ collaborative writing assignments in his history classes in the coming year, notes student resistance to working collaboratively:

While many students seem to dislike group work, I think the resistance stems more from the fear of being saddled with all the work by one’s potentially indolent group-mates rather than from inherent resistance to collaborative work.

[Full disclosure: Nate is my brother-in-law, and I have been following his thoughts about teaching with technology with some interest all summer.]

While studying for my M.Ed., I found myself revisiting the role of student full-time after a decade-long hiatus: it brought me back to the classroom with fresh eyes. The process raised two big pedagogical questions for me:

  1. How do I teach my students to ask questions? Not even good questions, just questions. I realized that, as a long-time A student, I’d never spent much time confused, and therefore hadn’t had to spend much time figuring out how to get unconfused. Over the course of my studies, I realized that this might be the most important thing that I, as a high school teacher, might be teaching any of my students. And, never having been taught (or, at least, never having noticed being taught — merely encouraged to just do it) how to learn reflectively and ask questions that clarify and resolve my areas of confusion… I was (am) a little at sea about how one teaches this intentionally.
  2. How do I teach my students how to work collaboratively? This is, after all, what the real world is about. It’s vanishingly unlikely that my students will find a role for themselves in which they don’t have to work with other people toward a shared goal (okay, one or two of them may turn out to be costumed superheroes or reclusive, genius novelists… but the vast bulk are going to have to play well with others).

I think that these two questions are related: working collaboratively with peers creates a more free-flowing and less performance-anxiety-inducing environment than working independently and presenting to the teacher (and one’s classmates). Or, at least, it can. That environment could, if the stars align and sufficient support and guidance is provided, even result in an setting in which students are free to debate, critique and improve each other’s work. That is, they could learn how to reflect on what they’ve learned and ask questions of each other about that work and the progress that they have made.

In graduate school, I had a wealth of group project experiences. The least successful was my year-long “school developer” project that was, effectively, my master’s thesis with a group of four other students working with a local elementary school to develop a strategic plan for expansion from K-5 to K-8. Lord, this experience was miserable, partly because my Meyers Briggs profile was the complete inverse of my teammates, and partly because we had no idea what we were doing as a team and were thrown into trying to do things before we actually were a team. (It calls to my mind my panicky, parental feelings of inadequacy when my classes have to interact with outsiders early in their time together — I don’t trust them enough to believe that they’ll be presentable, and they don’t trust me enough to believe that I haven’t set them up for a fall or for boredom.) Long story short, the team suffered from terrible group dynamics, mission creep, lousy communication with our “client” school, confusing feedback from our peer teams and professor, and unclear end goals for both the class project and the school’s mission.

The most successful team of which I was a member was actually formed to write a single collaborative paper over the course of the semester. The professor, Janice Jackson — a former elementary school teacher and district administrator and all-around mensch — spent the first half of the semester devoting significant portions of class to not only teaching about group dynamics in the abstract, but giving us time as teams to work through those very dynamics as we learned about them. By the time we had any kind of work for which we were accountable, we were, quite honestly, a little tired of meeting and exasperated at Prof. Jackson. It all felt excessive. However, when we sat down to do our research and write it up, it turned out that all of our (very diverse) Meyers Briggs personalities meshed, that we each had clear roles within the group that we had explicitly negotiated, that we had clear expectations both of each other that we had explicitly stated and of what our end result should be (that we had proposed and had approved by Prof. Jackson, explicitly), and that we felt safe working through early drafts of our paper sections together and receiving what was sometimes drastic criticism and demands for reworking.

The process matters. It really, really matters. And that class with Prof. Jackson was the first time that I had ever worked in a group in an academic setting that had consciously set aside (or had set aside for it) time to figure out how to be a group. That that experience was bolstered by conceptual background in group dynamics surely didn’t hurt. Prof. Jackson gave us both the time and background to develop clear understandings of both the norms of our group and our own roles within the group. And this idea of understanding one’s role in the group, and trusting one’s collaborators to fulfill their own roles and responsibilities, is key to successful collaboration. Without that trust, one ends up either abdicating all responsibility (“yeesh, what a bunch of clowns — there’s no way we’re going to do well, why should I try?”) or striving to fill in all the perceived gaps (“yeesh, what a bunch of clowns — if I want it done right, I’ve got to do it myself.”).

So, how to develop this experience of a trusting, collaborative project with high school students? They’re certainly at a different developmental place than I was at 30 (well, I hope they are — mostly for my sake). I don’t think that loading them down with all the conceptual background and vocabulary that we received from Prof. Jackson will make a sale to them. But I do think that striving to develop that environment of trust and delegation among teammates, with clear understanding of roles is worthwhile.

I’ve tried to do this in a number of settings. When I was working at as an outdoor, experiential educator, I found that large group projects could be done well by delegating specific roles within the project to specific students, thus providing clear accountability for specific portions of the project. My preferred iteration is to work with the students to develop a top-down design (what Wiggins’ confusingly refers to as a “backwards design”) that parcels out the work into self-designed and allocated responsibilities. One iteration of this was to present a large question to the group (“How does human management impact the ecosystem?”) and then help each student develop an area of expertise within the larger question (water, birds, tourism, sound, etc.). The wrinkle is that no student can accurately predict a topic in which they will maintain an abiding interest throughout the project, and therefore slippage and shifting will occur and needs to be negotiated gracefully.

Another approach, which I used last year with my Application Design class as we were working to build a CNC lathe, was to break the project apart into modules with the class, and then solicit volunteers for small teams to tackle each module. We prioritized the modules, and each student was responsible for shifting from module to module as they were interested or the module needed development to support dependent modules of other teams. Students were encouraged to engage with other teams, and sometimes shifted from team to team based on changing interests, but there was always a core student or pair of students who was, at the end of the day, managing each module and responsible at least for rallying other students to that module’s cause.

In both cases, I found that developing clear (and concise — unlike this entry) roles for the students in collaboration with the students gave them significantly more buy-in. Students who engaged with the project were able to throw themselves into it without fear of having to “carry” their peers (each student’s contributions were documented along the way — automatically by Google Code, in the case of the CNC lathe project), and, in fact, over-achieving students tended to provide a catalyst for under-achievers: they asked thoughtful and critical questions, provided assistance and generally raised the intellectual atmosphere a notch or two. Simultaneously, the multiplicity of roles and modules provides enough overlap that if one or two students totally peace out, the rest of the team can gnash their teeth briefly and move on without being hindered or damaged. Where successful, I found that I had students who were pushing me to do more research to support their work and that I was relying on their work and questions to lead the class.

In both cases, I also took some significant time out both early on and throughout the project to step back, examine and work through group dynamics. Not necessarily conceptually, but pragmatically working to resolve issues and grudges (and, not insignificantly, to celebrate and highlight successes). While I strongly encouraged my students to hold each other accountable and to work issues with their teammates out with their teammates, I was also a consultant to individual exasperated students on how to do this, and a general-purpose umpire for the whole team, calling time-out when it looked like a brawl (or tears) was brewing. In my umpire role, I was also able to highlight particularly good or interesting work by individual students or teams for the entire class, providing a clear model of the desired outcomes and behaviors.

Go to Top