Skip to main content

Into the Academy

I am set to join the faculty of a small private university this summer, as an assistant professor within the institution's School of Communications and Information Systems. I will share more information about this position and its duties in coming weeks. This blog post focuses on why I am accepting an academic appointment and how it might help me as a writer.

The decision to accept and embrace a university position is not financial, political, ideological, or idealistic. The pay is, well, academic. I've never been a "classroom radical" with a political agenda. As for idealism, I'm generally considered a curmudgeonly cynic.

No, this is a selfish choice made for a desire to improve myself.

For the last six months, I have peen pondering if I should alter my career path. After considering a return to the corporate life, I have decided to remain focused on my first passion: writing. Currently, I am a freelance writer, often exploring the relationship between technology and society in essays and creative works. I enjoy sitting and writing for hours; I thought I could do nothing else and be satisfied with life. But something was missing that I couldn't explain. When I talk to groups about writing, I get excited and energized. After most public appearances, which necessarily means time away from my desk, I find I write more than I did before the appearance (but following a little bit of physical rest).

There was only one logical path for me: return to teaching and embrace it as a foundation for writing.

My motivation for pursuing the doctoral degree was curiosity. I am interested in how technology affects the writing and production / publishing processes. Writing has evolved with publishing technologies, which means we are in the midst of yet another major shift in writing methods thanks to social media. The doctorate was also meant to be a safety net, allowing me to teach part-time while writing. Now, it appears teaching and writing should be closer to equal in my life because they are interconnected.

I love writing. I am fascinated by technology. I enjoy teaching. Accepting a university post that will allow me to mix and match my passions was too great an opportunity to decline.

Comments

  1. Congrats! I understand exactly; both writing and teaching equal positions in my life and each feeds the other (truly, as my pieces are often incorporated into the classroom as examples of writing or principles I'm trying to teach).

    ReplyDelete

Post a Comment

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.