Skip to main content

Online Communities Temporary at Best

The word "community" is overused in academic fields, but it is the best word for what it on my mind today.

I closed a Web server this week on which I had created a Drupal and MediaWiki site on special education. The site was functional for about two years, which is an eternity online. The reality is that online communities come and go so rapidly that what was popular a year or two ago is often "inactive" now.

There are dozens of Yahoo groups that are dedicated to special education. Most of these were active five years ago, but have since fallen out of favor with users. Just as the Usenet groups and most "listservs" have faded away in the last five years, so have many online forums.

The Internet has accelerated the speed with which a community grows, propers, and then declines. The timeline of the Internet is punctuated by technologies and business ideas that were "hot" for a moment. When is the last time you used IRC or read a newsgroup? Remember CompuServe? Prodigy? And Netscape was nearly synonymous with the World Wide Web.

Many of us live in physical regions or communities for decades, even lifetimes. I've read that most people end up living and dying within 500 miles of their birthplaces. Humans demonstrate a bond to physical communities we simply haven't developed, and might never develop, with online settings. I read a study in "Population and Environment" finding only 92,000 U.S. citizens migrated in or out of California in the 1980s (international numbers were much higher). Thirty million Californians remained in the state.

We enter and exit online communities impulsively. We form few lasting online bonds. For the most part, we use online spaces for a purpose. Once the purpose is met, we exit. How many truly close, lasting friendships are formed online? They come and go, like most school year friendships.

I wonder if Web pages will matter in a decade. I now read more news and information via non-browser technologies. My iPod Touch is my primary Internet device. Specialized applications present the information. The Web? I navigate it indirectly.

Many of my colleagues in education talk about Second Life and other "virtual worlds" as the future. I don't think that's the case -- Second Life has already "come and gone" for most Internet users. My students scoffed at the mere thought of using Second Life -- they'd rather use video chat and see real people. I don't know if online game worlds last longer or not, since I don't play any multiplayer games.

I miss FidoNet and BBS systems. I miss the sense of community I felt on CompuServe. Increasingly, the Web seems more like television and pop culture magazines -- video, audio, and very short articles. Even blogs with comments sections seem less about dialogue and discussion than they are about ranting and some level of narcissism.

Yeah, I'm a curmudgeon. I miss the Golden Years of online communities.

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.