Posts Tagged ‘web design’

No More Break/Fix

Is that a plunger?
As of today, I am officially no longer available for computer repair or consulting. I’ve been making a strong move into the web and graphic design field and I just don’t have the time to juggle the old with the new. I’ve got to move forward.

If you need any technical help in the future, let me make a few recommendations:

  1. Do NOT go to the Geek Squad. They are overpriced and mostly hire kids straight out of high school with an A+ Certification at best. That’s not to say that the employees don’t know what they’re doing or won’t do a good job. They do and they will but they only see a fraction of the price you’re going to pay for repair and you’ll pay way more than they’re worth.
  2. Ask around. More often than not, there is a someone you know who does this kind of work for a living and could use the extra cash. They will also typically charge about half as much as retail repair shops like Geek Squad or CompUSA. Check out Craigslist or mention that you need some work done within your circle of friends. Trust me, someone knows a nerd that needs some work.
  3. Do NOT expect free service or advice just because it’s a family member or friend.  One of the things I’m really looking forward to putting behind me is the near constant onslaught of people wanting me to fix their computers for free! Really? You’d gladly pay a stranger but expect me to do it for free because we’ve spent Thanksgiving together? I really don’t mind helping people out unless it’s expected. Just keep in mind that this kind of work takes talent and time and both of those are worth something. I’m a big fan of the bartered lunch, a bag of my favorite candy, or homemade cookies, but that’s me.  The point is to show appreciation beyond a thank you.
  4. Stop being a cheap skate. It just may be time to buy a new computer. Don’t hand off your 10 year Compaq Presario to a technician and expect a miracle. The average computer life span is between 3-5 years. Most manufacturers won’t even offer a warranty past 3 years because they know it’s bad business. Computers aren’t built to last forever. So if you’re having problems, maybe it’s because it’s time to invest in a new rig.

So that’s it. I’m pulling the plug. If you’d like some work done on your website or need a new logo or graphic work then shoot me an email.

Thanks everyone!





3 Rules of Web Design, Pt 1 – #bcn2009


One of my favorite speakers / sessions from this year’s BarCamp Nashville event was Justin Davis and his presentation, The Design of Everyday Web. I wasn’t sure what to expect about the subject when I sat down, but Justin delivered. He is an incredibly engaging and highly entertaining speaker. He could have been talking about photosynthesis and I still would have been rapt.

“You got Chlorophyll Man up there talking about God knows what and all she can talk about is making out with me. I’m here to learn, everybody, not to make out with you. Go on with the chlorophyll!”

Sorry, Billy Madison quotes sometimes just spew out of me. I digress…

Justin defined three rules that are crucial to killer web design. We’ll start off with the first one today and work through the others in upcoming posts :

An example of a bad affordance. This is an embarrassing moment waiting to happen.

Rule #1: Leverage Affordance
In the design world, an affordance is something that communicates an objects use by its design. Basically, if you have to label an affordance, then you’re doing it wrong.

Take the case in point to the right – an image Justin used in his presentation. This door has a handle, which conveys to a person that this door should be pulled to open it. However, it’s labeled Push because someone totally missed the mark. The proper affordance should have been a metal plate, which would communicate by simple means that the door should be pushed to open it – without the use of labeling.

How this translates to web design is by making sure you include intuitive usability into your site. For instance, a hyperlink typically looks like this. Did you just click on that? Nothing happened did it? It wasn’t supposed to, but you were inclined to click on it because I suggested to you that it should be clicked. It was blue, underlined, and the cursor changed to a hand when you hovered over.

That’s how an affordance works in web design. If you want a user to interact with something than you need to create the proper affordance to communicate that interaction to them. A great way to do this is to mimic IRL (In Real Life) properties. Using an inner shadow on a text field, for instance, will give that property the illusion of depth, like a box, which will tell the user that something goes in there.

Remember, great web design means including the proper usability. If it’s not user friendly then you’ll have a pretty website without any traffic.


Coming up next time, Rule #2: Make Relevant Parts Visible

Justin has made his presentation available on SlideShare here.
Justin’s BarCamp Nashville Session Page

Connect With Justin –
On the web: http://usabilitymatters.net
Twitter: @jwd2a


Image source: wonderdawg777





Have Kanye Interrupt Your Site

Add Me!
I thought I’d be a good netizen and provide the code I wrote for adding Kanye West on my homepage. So now you can have Kanye interrupt your own webpage.

First, you need to download this image and upload it to your own web server or a photo hosting service such as Photobucket.

Right click and selectSave As...

Right click and select Save As...

Now add the following code to your style.css file or in between the <style> tags on your webpage :

/* Greet Function */

#greet {
position:absolute;
z-index:1;
background: url("www.yoursite.com/image.jpg") no-repeat center center;
width:635px;
height:380px;
margin-top:15px;
margin-left:0px;
}

Be sure to change the image source URL to the location of the image on your server or photo host. You can also modify the margin properties to suit your needs.

Next, just add the following DIV layer anywhere within the <body> tags of the page you want Kanye to appear on:

<div id="greet" align="center" onclick="this.style.visibility='hidden'">

And that’s it! Piece of friggin cake, right? Enjoy it.