Skip to main content

Kindle so-so for students, UW study concludes

Brier Dudley's Blog | Kindle so-so for students, UW study concludes | Seattle Times Newspaper
Seven months into the study, more than 60 percent of the students had stopped using their Kindle regularly for academic reading -- and these were computer science students, who are presumably more sympathetic to an electronic book.
I'm not surprised that an eReader doesn't replace books. Taking notes and highlighting are part of the reading process that a Kindle or other eReader doesn't easily replicate.

I recall what a page looks like, from the graphics to the pattern of paragraphs. On an eReader, I can't always locate where a bit of information is. You can't say it is on "Page X" because the pagination changes with font size and other choices a user can change.

Many of us would like to imagine eReaders catching on with universities because textbooks are so expensive. The prices of textbooks are outrageous: my last course text was $100 for students and could not be resold because it was customized by the university. If a student pays $100 or more per course, that's at least $800 to $1000 a year for books. An eReader is $300 or less, such as the Color Nook or Kindle DX.

The problem is, students don't find the eReader a convenient experience. If six of ten stop using it, there is definitely a problem. I'd also wonder how well students recall what they read on screen. I know I tend to skim when I read an eBook. I don't pause and go back to reread as I do with a printed page.

Taking notes? Forget it. I use paper because I remember what I write more than what I type. Plus, typing on a Kindle (small keyboard) or Nook (touchscreen) is awkward. I have seen students taking notes on an iPad, but I would probably purchase a small keyboard for something like the iPad.

Maybe the worst reason an eReader won't replace textbooks? The publishers didn't offer a substantial discount! You end up paying as much for many books as you might in print. Students save money buying used texts when compared to a Kindle and new eBooks.

Some publishers promise students will "rent" books in the future. The problem with that? I already see the local college bookstore offers a form of rental. What's the benefit to renting the eBook? It still costs more than "renting" the print edition.

I do love eBooks. Why?

  1. I have learned I can highlight, copy, and paste right into my academic papers. That beats retyping passages and making mistakes. 
  2. The books are convenient, when compared to having stacks of books on my desk. 
  3. I can read in bed without a nightlight. My wife appreciates that.

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.