Skip to main content

Annoyances with Blackboard

Every instructor using a course management system / learning management system (CMS/LMS) ends up discovering the various annoyances unique to the system. Some have more annoyances than others, which is one reason I prefer Moodle but still have plenty of "kind suggestions" for the developers. I also like that if you do spot a problem with Moodle, you can participate in fixing the weakness or error.

Then, there is Blackboard. It isn't one or two annoyances. It seems there's one annoyance after another when I try to deal with Blackboard. The hosted Blackboard Learn system we use at my university seems to be one challenge after another. I don't know why, but it is more annoying than the previous versions of Blackboard and its other products I have used as an instructor.

Tonight's list of complaints is incomplete, a mere hint of my frustrations.

1) Editing announcements, discussion threads, and other content is inconsistent. I've tried editing the HTML directly, but after you save the content the "helpful" BB system alters your code. Paragraphs and breaks are changed, magically, into "div" tags with improper spacing. The paragraphs you carefully crafted? Gone. Other HTML tags are also changed. Why? BB supposedly supports HTML, so why "fix" my code?

2) The "Journal" mode doesn't include the same editor as other editing windows. Yet, clearly it stores some code because when students cut-n-paste text from other sources, I can tell. I'd like to have access to HTML in the journals.

3) I want to upload dozens of files for students to download. This files are sample essays. This would be "easy" (at least easier) if our server supported WebDAV and allowed students to access the folders remotely, but even that would be a challenge for students. So, I'm stuck uploading files to a folder, creating a "folder item" for students, and then creating links one at a time to the files I uploaded. I could upload one compressed (".zip") file for every dozen or so samples, but students only need to choose a few files.

The last of these annoyances is the biggest. If any reader of this blog knows how I can upload an entire directory of files and allows students access to these with minimal effort, I'd appreciate it. My method is working, but why should I have to create links to every file? The link method presents screen of fields, none of which I need.

Online education is always more work than traditional classroom instruction. Sadly, even when we aren't fighting the technology, the cumbersome designs of CMS/LMS platforms requires that we spend extra time to do basic tasks.

I actually miss the old Blackboard WebCT/WebVista platforms because I knew their quirks and how to work around them.

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.