Skip to main content

The Fads We Follow

Those of us specializing in new media, digital composition, writing technology or whatever we might call our courses and research projects sometimes fall into the same idealistic fad-think as tech prognosticators.

Remember interactive fiction? Our students don't. SecondLife? Not a single one of my university students has seen it or cares to see it. The list of gone and forgotten technologies seems endless. This week I made a reference to MySpace, something wildly popular only seven years ago among my composition students. Turns out, the MySpace of today is unpopular and doesn't even resemble the old version I knew.

LiveJournal? Yahoo Groups? Don't even try to explain Usenet newsgroups or Internet Relay Chat.
Remember AltaVista? GeoCities? Tripod? My students don't.

In 1992, I operated a Fidonet BBS, first with WildCat and then RoboBoard. Boardwatch was a thick magazine. Internet meant dial-up at 2400 or 9600 baud. Does anyone say "baud rate" today?

I read recently that podcasting peaked in 2007. I have no idea if that's true, but I personally switched to Internet radio apps two years ago. Again, none of my students listen to podcasts. They do love streaming video -- of network television! So much for the revolution.

My students don't live in virtual reality, few blog, and none had heard of Wikibooks until this week. They access Facebook and Twitter on cell phones. Theirs is a text-based world, connected in 140 characters or less.

The world I imagined never arrived and likely never will.

When I've attended conferences over the last decade, the talks and panels have focused on MOOS (Multiuser, Object-Oriented Systems) and other "virtual" settings. We had a futuristic vision shaped by fiction — cyberpunk was coming, we'd simply plug-in to a new reality. It would look and "feel" like the real world. But, that SecondLife meets real life never materialized.

My students tell me they don't want large screens and images. They want quick messages and sometimes a grainy photo sent from a smartphone. They use technology to supplement, not replace, their real life social connections.

This week, I even had students tell me they overwhelmingly reject eBooks for courses. Why? They want the physical books to mark, highlight, and even photocopy. I asked why photocopies mattered and the students explained a trick I never used: copy the end of chapter quizzes and discussion topics, because many teachers use those for tests. They use the photocopied pages to make flashcards or other study aids.
But, I'm still excited by the idea of an eBook with multimedia content. Just as I was excited by podcasts and streaming videos. My students? Not nearly as enthusiastic about rich media content.

As one student reminded me: "Google isn't cluttered. Yahoo is. We all use Google."

I need to keep that in mind, too.

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.