Skip to main content

Communities Online

For October 16, 2007...
Blog post: Add a YackPack plugin to your PBwiki (click on plug-ins) and try it out. Sign-up for tappedin.org (http://ti2.sri.com/tappedin/index.jsp) and explore its features for online chat (see how it was used at Hillcrest High School:
http://www.slideshare.net/sbgaddy/hillcrest-high-school-21st-century-project-student-products). Reflect on how you might use tappenin.org or other discussion sites (WebCT/Vista, Moodle, Drupal) or tools (IM’ing, etc.) or virtual/game sites (Second City, etc.) for online discussion.
I gave up trying plug-ins with OS X and Safari, which I think might happen in many educational settings. I just don't have the energy to manually link and setup so many items, even though I have done so with images and other elements in PBwki. As with Google Docs and other "Web 2.0" items not supporting Apple's browser at this time, I generally won't sacrifice my system to another browser. (FireFox is the only major alternative, though Camino is also a Mozilla application.)

As the discussion thread on the Society for Technical Communication's mailing list recently concluded:

"I'd rather have a sharp object inserted into my eye than deal with Second Life or a similar virtual world."

There are several reasons for this:
  • The animation is poor without a very powerful computer, and even then it seems to demand a lot of resources.
  • The movement can cause problems for some users, especially those with seizure disorders or migraines.
  • Most virtual worlds, for whatever reason, end up with the same social issues as "real life," with a bit more flirting and a lot more anger.
  • I hate most live chats, with or without animation, because I read slowly. Unless it is one-on-one, I get lost quickly.
I'm sure many students can and do accomplish a lot while multitasking online, but studies have also revealed that work suffers despite what students (and working adults) imagine they can do. When your attention is divided, even talking while driving, your overall effectiveness declines dramatically. We simply don't like to believe this is the case.

I like threaded discussions and have used them for several years as a teacher. However, interactive chats have ended up dominated by the same students who speak up during a traditional class session. I find asynchronous threads give more students a chance to participate.

Comments

Popular posts from this blog

MarsEdit and Blogging

MarsEdit (Photo credit: Wikipedia ) Mailing posts to blogs, a practice I adopted in 2005, allows a blogger like me to store copies of draft posts within email. If Blogger , WordPress, or the blogging platform of the moment crashes or for some other reason eats my posts, at least I have the original drafts of most entries. I find having such a nicely organized archive convenient — much easier than remembering to archive posts from Blogger or WordPress to my computer. With this post, I am testing MarsEdit from Red Sweater Software based on recent reviews, including an overview on 9to5Mac . Composing posts an email offers a fast way to prepare draft blogs, but the email does not always work well if you want to include basic formatting, images, and links to online resources. Submitting to Blogger via Apple Mail often produced complex HTML with unnecessary font and paragraph formatting styles. Problems with rich text led me to convert blog entries to plaintext in Apple Mail

Learning to Program

Late last night I installed the update to Apple's OS X programming tool suite, Xcode 4. This summer, in my "free" time I intend to work my way through my old copy of Teach Yourself C and the several Objective-C books I own. While I do play with various languages and tools, from AppleScript to PHP, I've never managed to master Objective-C — which is something I want to do. As I've written several times, knowing simple coding techniques is a practical skill and one that helps learn problem solving strategies. Even my use of AppleScript and Visual Basic for Applications (VBA) on a regular basis helps remind me to tackle problems in distinct steps, with clear objectives from step to step. There are many free programming tools that students should be encouraged to try. On OS X, the first two tools I suggest to non-technical students are Automator and AppleScript. These tools allow you to automate tasks on OS X, similar to the batch files of DOS or the macros of Wor

Learning to Code: Comments Count

I like comments in computer programming source code. I've never been the programmer to claim, "My code doesn't need comments." Maybe it is because I've always worked on so many projects that I need comments  to remind me what I was thinking when I entered the source code into the text editor. Most programmers end up in a similar situation. They look at a function and wonder, "Why did I do it this way?" Tangent : I also like comments in my "human" writing projects. One of the sad consequences of moving to digital media is that we might lose all the little marginalia authors and editors leave on manuscript drafts. That thought, the desire to preserve my notes, is worthy of its own blog post — so watch for a post on writing software and notes. Here are my rules for comments: Source code files should begin with identifying comments and an update log. Functions, subroutines, and blocks of code should have at least one descriptive comment.