Skip to main content

Computers and Writing 2009

I attended Computers and Writing 2009, earlier this month and returned with mixed emotions.

First, the negatives -- so I can end on the positives of the actual presentations and keynotes.

As you can guess, the job market for writing teachers at all levels is weak. The reality is that a handful of instructors are losing their jobs; new jobs are definitely not on the horizon. Community colleges, four-year colleges, and full universities are all suffering from a lack of funds. Writing seems to be an easy target for cuts. In some cases, courses will migrate to online settings and in other instances graduate students will assume more teaching responsibilities.

Technology, especially online courses and hybrids, are letting universities outsource general education. This is definitely a rough trend to confront. While it is good for the online companies, which offer packaged online courses overseen by part-time, freelancing instructors with graduate degrees, the end result is that general education becomes homogenized and commoditized.

Some attendees told me that writing instructors at their institutions are never tenure-track faculty. Writing is seen as "blue-collar" and handled by instructors with annual contracts, adjuncts without tenure, and various part-time employees. At some institutions, writing instructors are employed by a myriad of departments, so the writing tasks can be focused on the disciplinary needs. Again, such instructors are viewed as laborers, not professors.

Now, the positives.

Most writing programs are embracing technology and alternatives to printed texts. Video and audio are accepted forms of composition, which gives me hope.

More of the presentations addressed fiction and creative non-fiction. This means we are allowing for more than the "academic" forms in our classrooms. That's a good thing.

The instructors recognize that students are living online, familiar with numerous media. In some cases, getting the students "off-line" is important, so instructors are experimenting with assignments that take students away from computers. Collage compositions was an interesting concept: create a collage representing you, then write about. Sure, this could be done digitally, but the idea is to move away from technology a bit.

There is an understanding that we need to balance many thing: virtual / physical, new media / traditional media, creative / academic writing. In the end, these aren't binaries, but our students need bridges to recognize that binaries exist to be challenged.

It was a good event, even if it reinforced how tough the job market is.

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.