Rss Feed
Tweeter button
Facebook button
Myspace button
Linkedin button
Delicious button
Digg button
Flickr button
Youtube button

Archive for » May 7th, 2006«

GotVoice: Response

A few times in the past month I’ve received responses from people at the companies/services that I’ve blogged about. It’s good to see that this new wave of Web companies are paying attention to the blogosphere. In this case the response if from GotVoice regarding my complaint about the site’s usability. I did e-mail them back asking permission to repost the e-mail but have received no response. I’ve decided to post it anyway (sans names) and if they ask me to remove this I will.

Hey,
[...] at GotVoice here. The reason why we list “Home answering Machine” is that we’ve found that many users might otherwise not distinguish the difference between this option and “Home Phone voicemail”. If users select the latter but in reality have an answering machine, well then our service won’t work for them. Even though you might get disappointed that we don’t work with answering machines, if you select that option, we think it’s better than going through the entire sign-up process via the “home voicemail” option only to discover afterwards that it won’t work. We’d rather try to control expectations upfront, that’s all. It’s not perfect, but we figured it was better this way.
Best regards,
[...]

I do understand the logic they applied to the decision making process but I’m not sure I agree with it. Granted, it does address the potential users who don’t understand the difference between voicemail and an answering machine, but I’m also generally of the opinion that you can only dumb something down (for lack of a better term) before you start insulting the users who do know what they’re doing. At this point, I stick by my original opinion.

Category: windows  Leave a Comment

Ever need to print (or copy) a Windows directory listing?

I found myself with a downloaded directory of video files this past week that I wanted to burn on to DVD. The total collection was going to take five discs by the time it was all done. So, with so many files to burn on to so many discs, there was no way I was going to be able to write all the filenames to the DVDs themselves. In these situtations, I just print a paper insert with all the filenames. Trouble was, that was 50+ filenames I was going to have to re-type into Word onto my insert templates. There had to be a way to cpoy & paste all those filenames. Off to Google I went.

I was able to fine a Microsoft Knowledge Base document that exmplained how to add the Print Directory feature for folders in Windows XP. The simple directions has you create a five-line batch file (remember those) and then add a right-click option to folders. When finished, all I had to do was right click on a file, select “Print Directory”, wait for my printer to spit out the results. As useful as this was, it’s not exactly what I wanted. What I wanted was a file containing the information that I could copy from and paste into another program.

What the batch file does is to perform a detailed directory listing, dump the results to a temporary file, open the temp file into notepad, issue a print command, close notepad, adn delete the temporary file. What I determined I needed to do was to interrupt this process before it issued the print command. I took the original batch file, removed the print and delete commands resulting in:


@echo off
dir %1 /-p /o:gn > "%temp%\Listing"
start /w notepad "%temp%\Listing"
exit

I saved this file as %windir%\notepaddir.bat and continued with the directions naming my new command “Directory to Notepad” and using the new filename as the command. The results allowed me to receive a full director listing in notepad which I could then save and/or copy from as I needed.

command
notepad

Then, the unthinkable happened: every time I clicked on a directory to open it my notpad commenad was issued, instead of showing me the contents of the folder as expected. I quickly went back into the folder options to change the default command but foudn the “Set as default” button greyed out. This was a problem!

Well, scream a big RTFM to me. Looking further down the Microsoft page, it seems they’re aware of this little problem and give instructions for a simple registry edit to solve the problem. Phew.

(As with anything that involves the registry be sue your stsyem restore is turned on and don’t blame me if it screws up your system.)

Category: DVD, video, windows  One Comment

USA National Gas Temperature Map

See how the price of gas in your location compares to the rest of the country with the USA National Gas Temperature Map. According to the map the Denver area is actually near the bottom of the price range but I’m still driving only as much as I have to.
thanks dad

Category: map  Leave a Comment

ASCII Maps


I case you haven't I'm trying to write longer, more informative, posts but some times that's just not necessary. Take this one for example. Here is a complete, functional implemation of Google Maps, yet, instead of images for the maps, only ASCII characters are used.

via information aesthetics

Category: 1  Leave a Comment