Is Your Site User Friendly? by Allen - August 19, 2008

Molly at DemoGirl has created a video that takes a look at several sites and their usability. On her Twitter piece, I could add a million items but one I would absolutely add is a way to do a multiple delete on the direct messages. Deleting one at a time is time consuming and my bet is that by adding a mass/select delete option, they could reduce by millions of messages.

Check out our 30+ usability tutorials.

Continue Reading »

MeeMix Unveils New Application – MeeVideo by Curtiss - August 17, 2008

MeeMix has added a new application to its Internet Radio service, allowing users to watch their favorite music videos, rather than just listening to the music.

Unfortunately, the entire MeeMix application still seems to have trouble running in Firefox, greeting users with a perpetual “Loading…” screen once they try to actually do something.

In IE, though, the application seems to work pretty well, and adds a great new facet to the service.

In addition, MeeMix has turned “MeeVideo” into a Facebook application, allowing you to tag and share your favorites with your Facebook friends.

Continue Reading »

RSS Feed Creation – Development Perspective Questions by Curtiss - August 15, 2008

This is a question for anyone that’s worked on developing their own RSS feeds, as I am preparing to do for a few items on our new Web site.

When developing or starting an RSS feed, how did you decide how much information to include in the feed?

By that, I’m actually asking two questions:

  1. How did you decide how many updates to include in the feed? Did you decide to include all updates in the feed, from the beginning all the way up to the present, or are you only including the most recent XX number of updates; or maybe even the last XX months, days or hours worth of updates?
  2. How did you decide how to summarize the updates? Are you prompting content contributors to write a separate summary of the information; only including the first paragraph; including only the first XX characters of the article, etc.

I’m curious what other people are doing with their RSS feeds. The one RSS feed I’ve developed for private testing currently only includes the last six months of updates, and truncates the article to 500 characters or less (cutting it off at the last complete word before it reaches 500 characters – stripping out any incomplete HTML tags in the process).

Does this seem like a logical way to make an RSS feed, or should I be feeding complete content? What are your thoughts?

Continue Reading »

Why Accessibility is Important to You by Guest Writer - August 14, 2008

What is Accessibility?

Accessibility is a term that is more associated with architectural thought, rather than web site design. There is legislation which determines the minimum standards for new buildings. As a result, new buildings today have wheelchair ramps, accessible lifts and disability parking spaces, allowing anyone with disabilities to gain access to a building, use the provided services, buy the products, and chat with the people inside.

With web sites, the term traditionally refers to the development of sites that are accessible to “all” users who may want to access them — in other words, “Universal Web Sites.”

Continue Reading »

An Interesting Predicament by Curtiss - August 13, 2008

For the last month or two, I have been doing some side work updating a Web site and adding a few new features to it. The problem is, however, that I can’t visit the site from my home computer. Somewhere along the way, my connection to the site seems to be blocked.

Continue Reading »

CenterNetworks Updates (and upgrades) Design by Curtiss - August 11, 2008

Our sister site, CenterNetworks, unveiled a new Web site design late last week. I must admit that, though I never really had any problems with the previous design, I think the new one is a real upgrade. The new design features cooler colors, working within the blue and green spectrum, and a slightly more intuitive layout. The ads seem a little less obtrusive and more of the items people are apt to use on a regular basis are easier to find. Let me know what you think of the new design, especially if you had experience with previous incarnations of the CN design.

Continue Reading »

Web Accessibility Basics by Guest Writer - August 11, 2008

What is web accessibility & why is it important?

Web accessibility is about making your website accessible to all Internet users (both disabled and non-disabled), regardless of what browsing technology they’re using. In addition to complying with the law, an accessible website can reap huge benefits on to your website and your business.

Please read the articles, Benefits of an accessible website – part 1 and Benefits of an accessible website – part 2 for more about the importance of web accessibility.

Your website must be able to function with all different browsing technologies

The first and perhaps the most important rule of web accessibility. Not everyone is using the latest version of Internet Explorer, with all the plug-ins and programs that you may require them to have for your website. Different browsing technologies can include:

  • Lynx browser – Text-only browser with no support for tables, CSS, images, JavaScript, Flash or audio and video content
  • WebTV – 560px in width with horizontal scrolling not available
  • Screen reader – Page content read aloud in the order it appears in the HTML document
  • Handheld device – Very small screen with limited support for JavaScript and large images
  • Screen magnifier – As few as three to four words may be able to appear on the screen at any one time
  • Slow connection (below 56kb) – Users may turn off images to enable a faster download time
  • 1600px screen width – Very wide screen
Continue Reading »

DirecTV versus Dish Network versus cable by Curtiss - August 9, 2008

When I first signed up for DirecTV, I did so rather begrudgingly. I hate signing long-term contracts for services, but I was truly tired of only having five networks from which to choose (we were only able to pick up NBC, CBS, Fox, ABC and three PBS channels – we didn’t even get UPN or the WB – which, in our area, consequently became MyNetwork and the CW, respectively).

However, I’ve actually become rather attached to the service over the last year or so. I like the all-digital network (which cost me more than twice what DirecTV is costing me when I had the digital cable service when I lived in a cable-ready house), with the built-in programming guide. I actually am at a loss for what to do when I turn on the television at someone else’s house, and I can’t just hit the “guide” button to see what’s on.

Continue Reading »

An Amusing and Disturbingly Accurate Post by Curtiss - August 7, 2008

I came across a very amusing and disturbingly accurate post the other day on a blog I frequent. The content of the post deals with how to diplomatically deal with the barrage of requests you get for “front page exposure” at an institution of higher learning.

I’m not sure how much of this translates to the corporate world, but this is a common occurrence at many colleges and universities.

Thankfully, I don’t deal with this at my job nearly as much as Drew seems to.

Continue Reading »

Running PHP Scripts with Cron by Till - August 7, 2008

Lots of programmers like PHP for its ability to code and develop web applications fast. Code-debugging is a lot easier than with PERL or C. However, there is one thing a lot of developers are puzzled about, “How to run PHP Scripts with crontab?”

Cron is normally available on all Unix and Linux distributions; if you cannot access it, contact your root or server administrator. It is a daemon which allows you to schedule a program or script for a specific time of execution. If you want to learn more about cron, click here or type “man crontab” at your command prompt.

I have found myself in the need to run PHP scripts at specific times. For example, to update the content of a website, to remove expired articles, to send out e-mails on a given date and a lot more. While some may think that this is were PHP is doomed, I will show you how it’s done.

A Manual crontab?

The first solution that came to my mind was to run the script directly from my browser (e.g. http://www.mydomain.com/script.php). Since I need to run my script on a regular basis, I squashed that idea. My goodness, all the extra hassle is ridiculous.

Continue Reading »