Earlier in the week I picked on a DBA at UGA for wanting to use truncate learning_context. Overheard at the office a developer used truncate and caused those DBAs to recover the data. Ugh.
You are currently browsing articles tagged developer.
Summize provides a great way to troll for what people are saying. Beyond just searching for a term, it provides RSS feeds for terms. I follow several, such Blackboard and WebCT. The WebCT one netted me the following tweet:
annoyed with how clunky webct can be at times – it had to have been designed circa 2000 – amandakern
WebCT products, whether CE or Vista, have always been clunky. Ease of use has always been a problem with the products. Any improvements Vista made were offset by so many more tools and options to make it the net effect more clunky. I’ve seen some sales people and Dr. Cs whip through the navigation like it is easy to use Vista. Practice makes perfect. Too bad the developers can’t be perfect.
Whenever I see schools pick a product, I think the ones who have Ease of use on their list probably have been using WebCT legacy products for years as opposed to Blackboard products. They and their faculty are scarred enough they cannot afford to get it wrong on ease of use again.
Related posts
Be more secure! Upgrade today.
Want better functionality? Upgrade today.
Save a developer! Upgrade today.
The save a developer thing is the impetus for this post.
The upgrade today mantra annoys me.
- Software rarely spends enough time in alpha and beta cycles to to identify all the issues.
- People have been so burned by using software in alpha and beta cycles, they are hesitant to try upgrades and help determine the issues.
- This lack of attention to the problems ensure, versions 1.0, 2.0, n.0 typically have a ton of unknown problems or are even less secure at times.
Unfortunately, the vendor who makes the application platform we run, Blackboard, has a philosophy to look at new web browsers while they are in beta but not actually work towards fixes for the new browsers until after the products are released. With most releases of Java or supported web browsers (Internet Explorer or Mozilla Firefox), Blackboard heard the complaints by the early adopters and released within a couple months an update which resolved the reported issues.
The students and faculty members fail to understand the issue. I think I do. Blackboard (like WebCT prior) understands there are differences between beta and final. Some of us argue these differences are usually minor. However, this is all asking someone to predict the future which we know is haphazard at best.
Long alpha and beta cycles allow more users to get involved, give those back to the developers, have them fixed before the version release. Burning users with buggy software ensures their lack of faith.
Related posts
True?
To update or not to update, that is the question;
Whether ’tis nobler in the mind to suffer
The freezes and crashes of sloppy code,
Or to take arms against a sea of developers,
And by opposing, end them.
I know… It’s bad…
Related posts
Last year, we three DBAs submitted three proposals thinking one might be accepted. All three were. Its daunting to think of something because we are behind the times. We run Vista 3.0.7 while almost everyone else is at least on 4.1.x or higher. Also, we ended up changing our presentations last year because we were not doing things we thought we would be doing. Ugh.
Presenting at BbWorld or Blackboard Developers Conference is a great professional development opportunity and fabulous way to share your knowledge with your peers. BbWorld® ’08Deadline for Proposal Submission: February 22, 2008
Maybe we could do one on:
- Staying Beneath the Threshold of Doom: 6-8 vs. 40 clusters?
- Planning the Largest Vista 3 to 4 Migration
- API Logging: Users Connection to Vista Not in Your Logs
- Creating an Audit of User Activity

WordPress Error: This file cannot be used on its own.
April 13, 2008 in Wordpress by Ezra S F | No comments
In posting a comment to a friend’s WordPress blog, it came up with the error:
I was responding to a comment, so I doubted that he broke his blog between making a comment and my response. So I went looking though my own install. Essentially, at a shell I used
to locate the file involved is wp-comments-popup.php. This file contains code which checks for the HTTP_REFERER variable has specific values equal to the path and file name for the comments page. If this is not the case, then it should throw this error. The file mentioned in the error is wp-comments.php.
Its seems that I had configured my web browser not to pass the HTTP referrer to web servers, so the check failed and threw this error.
Maybe the WordPress developer who designed this has no idea about the ability of web browsers not to send a referrer. Searching for the error on the WP site yielded nothing. From the tons of comments about people hitting this error, lots of people turn off sending referrers.
Solution for those leaving comments: If you attempt to leave a comment and see this error, then enable referrers. WordPress actually has a decent article on enabling HTTP referrers for a number of different pieces of software.
More friendly error for WP blog owners: Edit wp-comments-popup.php. Change
to
Related posts