Blockbuster Quietly Reinstates Late Fees, Continued

So, Blockbuster.com’s customer service give a less the spectacular response regarding the late fee’s I had been charged.

My Message To Them:

I do plan on returning to the store and discussing this with a manager, but I’m a little upset about the fact that it was not mentioned to me that late fee’s had been re-instated for store rentals. When I came to the local store to get a couple movies with ones from Blockbuster.com, I was informed that I had a ~$8 balance on my account for a movie and a game that I had returned four days late. Despite my better judgment I proceeded to pay the fine, however I wanted to express how frustrated I am over the fact that I had not been informed of the late fee policy change when returning the movie and the game.

Blockbuster.com’s Response:

Dear Jason,

Thank you for contacting Blockbuster Customer Care.

We’ve received your email about the late fees in stores.

I am sorry if you feel that you were not informed sufficiently about the change on the account. We recently enhanced our policies. This was decided upon the objective of providing our subscribers with better title availability.
Thank you so much for understanding and for making Blockbuster part of your home entertainment.

Sincerely,

Philamie
Blockbuster Customer Care

So obviously they have no problem not informing their customers, and feel that a simple “sorry” is perfectly ok.  As I mentioned before, all Blockbuster customers be warned, that late fee’s have returned, and they really don’t seem to care if the store tells you or not…

Update 1/23/2009:

Davis Freeberg found this article regarding Blockbuster going through some market testing.

I’ve replied to Blockbuster with the following:

I don’t really seem to gather that you connected the main reason for
my complaint.  It isn’t the fact that you’ve reinstate late fee’s that
bothers me.  That’s Blockbuster’s decision to make and I will have to
accept that if I wish to continue as a customer.  What bothers me is
that the employee’s at the store indicated nothing to this fact.  I’m
still looking for the receipt to see if it had anything, but
regardless, most people aren’t going to thoroughly read the receipt.

As a matter of common courtesy and good customer relations, I would
think that you would understand explaining these things to customers
is a good thing.  Blockbuster has had a number of lawsuits brought
against them in the past for not explaining rental policy changes
completely, both through marketing and the in-store employee’s.  One
could only hope you wouldn’t want to repeat the same actions again…

Posted in Entertainment | Tagged , , , , | 3 Comments

Blockbuster Quietly Reinstates Late Fees

For almost two years now I’ve had a Blockbuster.com account for renting movies.  The main reason I’ve had a Blockbuster.com account as opposed to Netflix is my ability to use the movies from Blockbuster.com for free in-store rentals.  Additionally, for some time, Blockbuster has had a no-late-fee policy on movies rented in the store. While you may eventually be charged the cost of the movie if you don’t return it within a certain amount of time, you were not dinged for bringing something back a couple days late.

Monday night however, with great surprise, I found that this is no longer the case.   I was informed that I had an ~ $8 balance on my account.   I asked for what, and they said it was for a movie and a game that I had returned four days late.   I again asked what she was talking about, and she explained that there was a new .99 cent per day late for for any movies or games. Despite my better judgment I proceeded to pay the fine, stating that I was never told of the policy change when I had rented the movies.  In hindsight I’ve decided that this was a bad move and I’m going to return to the store and talk to a manager regarding the charges.  It wouldn’t bother me so much if I had been informed of these new fees when I had rented the movies.

That being said, I would highly recommend that all Blockbuster customers verify their stores late fee policy before grabbing that next movie.  Especially if you’ve gotten a little used to not racing to the store a 11:50p.m. for that forgotten movie.

I’ve done a little bit of searching online to see if anyone has written an article about this, since I very well could be the last Blockbuster customer to know about this, however I have yet fo find anything.  If your a regular customer of Blockbuster, I’m interested in hearing from you about this since I live in a small town that only has one store.

Posted in Entertainment | Tagged , , , , | 33 Comments

WordPress 2.7

On Thursday, the WordPress team released version 2.7 of the blogging app used by yours truly.  I couldn’t help but rush towards upgrading this weekend to see the management interface.

Wordpress 2.7

It’s a fairly big jump in layout even compared to the changes brought to us by version 2.6.  I love how they choose the changes by way of user survey, however I’m interested in how much people actually like the interface once it’s in use.  In my field I have noticed that people have a tendency to like a concept in design or in presentation, however once they actually use that concept their feelings can change drastically.  Only time will tell…

Time to go get used to this new interface…

Posted in Computing, Operating Systems | Tagged , , , | 2 Comments

Happy Halloween

I know it’s a little delayed, but I’ve finally had a chance to go through my pictures from Halloween, and one of the slow exposures of a jack-o’ lantern came out really well.

 

Canon Xsi, 2.0s, f/8.0, ISO100, EF-S18-55mm f/3.5-5.6IS @ 55mm

Canon Xsi, 2.0s, f/8.0, ISO100, EF-S18-55mm f/3.5-5.6IS @ 55mm

I’m finally getting back to post production quite a large set of pictures because I’ve been spending so much time on my new photography website (more info on this later).

Posted in Photography | Tagged , , | Leave a comment

QOTD: Real Software Quality

I came across this quote from Linus Torvalds today that really struck a cord with me:

“Real quality means making sure that people are proud of the code they write, that they’re involved and taking it personally,” – Linus Torvalds, 2008

I know in that interview Linus was specifically discussing quality in the Linux Kernel, however I feel that this really holds true for any project.  I agree with Robert Glass’s book the Facts and Fallacies of Software Engineering” in that it is a fallacy to believe that “You can manage quality into a software product”.  This quote, hits at the heart of where I believe true software quality comes from:  The Developer.

Posted in Software Development | Tagged , , , , | Leave a comment

OpenOffice.org 3.0

The latest in the OpenOffice.org offerings has been released today in all it’s server busting glory.  I’ve actually been using the beta for about a month now, and have been quite happy with the new version.  For those of you who don’t follow this too much, but are interested in making another jump towards open source, then this is you next step (since I *know* your already using Firefox, right?).  For the past 4 years I have been sober from the usage of Microsoft Office and I’m a better person for it.  Think about your loved ones and concider dropping the addiction today.  Click here for more…

Posted in Computing | Tagged , , | Leave a comment

Advanced Bash Redirection + Logging

Just the other day I came across a great post by Travis B. Hartwell regarding how to redirect stdout to stderr to a file while still displaying that output.  Not only does he show how it could be done, he goes through great detail in how his approach works.  Definately a good read for anyone who is trying improve their bashiness.  To read more, especially if you wish to know how it works, go here.

Otherwise here’s the code:

#!/bin/bash
 
OUTPUT_LOG=output.log
OUTPUT_PIPE=output.pipe
 
if [ ! -e $OUTPUT_PIPE ]; then
    mkfifo $OUTPUT_PIPE
fi
 
if [ -e $OUTPUT_LOG ]; then
    rm $OUTPUT_LOG
fi
 
exec 3>&1 4>&2
tee $OUTPUT_LOG < $OUTPUT_PIPE >&3 &
tpid=$!
exec > $OUTPUT_PIPE 2>&1
 
echo "This is on standard out"
echo "This is on standard err" >&2
 
exec 1>&3 3>&- 2>&4 4>&-
wait $tpid
 
rm $OUTPUT_PIPE
Posted in Software Development | Tagged , , , , , | Leave a comment

Stackoverflow.com – Knowledge Sharing on Steroids

Question About Imake

Question About Imake

While I do feel that I have learned a great deal in the past three years as a software engineer, there’s still much more for me to learn.  One blog to that I read on a very regular basis is Coding Horror, which is comprised of the various software related articles written by Jeff Atwood.

Jeff has mentioned several times that he’s bothered by the lack of knowledge sharing between software engineers.  So, in a recent venture with other developers that share is view, a new website has been born:  Stackoverflow.com.  This site is intended to be the “anti-Experts Exchange” as Jeff puts it.  If you were to take a Blog, a Wiki, a Digg.com/Reddit.com, and a Forum and put them all together you have the basic idea of how Stackoverflow.com works.

The thought is that you ask a question pertaining to software development or computing, regardless of the technology involved.  People then have the ability to answer that question.  However, here’s the twist:  Not only can they answer, they can vote on how good the question is, and also vote on the quality of the answers.  So, if you were going to the site to find out how to do something, and someone has already asked the question, you can porous the answers given.  Those answers can be sorted by votes, newest to oldest or vice versa.  If you feel like you can provide an answer to a question, then your free to give your two cents on the matter.  Additionally, each answer can have comments added, and both questions and answers can be set to a wiki-mode where others can improve upon the original.

StackOverflow.com

StackOverflow.com

So, over all the whole concept is to provide a fast and easy way to share knowledge about all aspects of software development and computing.  So far, personally, I would say that the creators of StackOverflow.com have come up with something incredibly unique and useful in it’s own right.  I hope that it catches on, as I know I have already several things that I never knew.  Anything that can help me find an answers to my questions is definately a good thing!

Posted in Internet, Software Development | Tagged , , , , , , , , , | Leave a comment

University Study: Most Users Don’t Pay Attention To Dialogs

OK, I’m definitely being nicer with my title than Arstechnica’s Fake popup study sadly confirms most users are idiots.  Regardless of the title, the study about user responses to error or warning dialog boxes is quite interesting.  In the study, conducted by the Psychology Department of North Carolina State University, had the users perform a task which included the displaying a series of real and “fake dialog boxes“.  Those users had a tendency to simply do whatever it took to get rid of the message, whether it meant clicking OK, yes or minimizing the window, regardless of the message being displayed.

From Arstechnica.com:

Of the 42 students, 26 clicked the OK button for the “real” dialog. But 25 clicked the same button for two of the fakes, and 23 hit OK on the third (the one with the status bar showing). Only nine of them closed the window—two fewer than had closed the real dialog. In all cases, a few of the users simply minimized the window or dragged it out of the way, presumably leaving the machine’s next user at risk.

I would definitely read the entire article if your interested, unfortunately the actual report is not going to be available until the next issue of Proceedings of the Human Factors and Ergonomics Society is published.

One of the first thoughts that crossed my mind while reading this article, was how this effects me as a software engineer.  Every day software engineers are faced with how to better their interfaces so that they work as well as possible for their users.  However there are situations where you need to notify the user of something important, that the software may need a response from the user.  Unfortunately, it seems, that most users see these as annoyances that get in the way of completing whatever task they are attempting to complete.  I’ve even seen the most seasoned software developers do exactly what is described in the article.

So what is a software engineer supposed to do?  Especially since most users won’t even pay attention to the dialog?  Unfortunately, some programs have had to resort to purposefully making users go out of their way in providing their response, however I would argue that those same users continue to ignore the message and do whatever it takes to complete their task.

Either way, this study shows a continued conundrum for software engineers…

Posted in Software Development | Tagged , , , | Leave a comment

Heroes: Villains

Tonight, NBC is continuing one of my favorite television shows ever: Heroes. I know I don’t generally talk about television shows too much, however I just wanted to throw in my two cents that I hope they continue this show for a while. I was quite disappointed when the second season was effected by the writers strike, and I’ve have been waiting for new episodes ever since. Either way, I’m at least quite grateful that NBC can see a good series in front of them, unlike Fox’s treatment of Firefly.

Posted in Entertainment | Tagged , , , , | Leave a comment
Page 4 of 45« First...23456...102030...Last »