Happenings

Graphic Vs Web design

Most web designers are terrible at web design. There, I said it. I’m not talking about the people who put up personal sites full of animated gifs that they stole from the thousand other personal sites that came before, or the small businessmen who get their wife to design a logo in their copy of Paint. I mean “professional” web designers.

Now, let me clarify slightly. The web designers who are terrible at web design are the ones who trained as graphics designers and jumped on the net bandwagon, thinking that it’s a graphical medium so the same approach always works. It’s not. Let’s say it loud and clear: graphic design and web design are very different disciplines, despite some similarities in function and possible conveyance.

Graphic and web design both share one key thing in common: they both aim to convey information in the best way possible. By this, I mean that not only is it important that the subject is understood by everyone, but is also accessible to everyone. And there lies a key difference; graphic design passed on as web design is not accessible and does not convey information well.

Imagine we have “Munky Cola”, the newest soft drink to enter the market. So new, in fact, that the manufacturers have yet to establish any real brand identity for themselves. They hire a design team to come up with a brand and marketing scheme. Being a traditional team primarily, they first create a logo for the company. This is a fine first step. A logo is a very simple way of getting immediate recognition for any brand. It can and should be permuated across all media.

Next, they create a series of graphic designs to be used as adverts. These centre on the brand and making it stick in peoples head; something funny or, perhaps, abstract. This is a fine second step. People now recognise the brand and associate it with a product or idea.

Then, they take their existing graphic design ideas and blindly transform them as closely as they can to the web environment, with some information or widgets related to the product/brand in some way. (By widgets, I mean tiny games or toys that the user can play with). This is a bad step. Using widgets is fine, they help strengthen a brand, but using the existing graphic design is bad web design.

Why? Websites are different, they serve a different purpose and must be treated as a different medium. What works for graphic design (abstract advertising) will not work on the web. Web users want information, they want to go beyond the elements of graphic design they’ve already seen, they want interaction. This is a key difference. Graphic design is a one-way medium: people can see it but they can’t do anything to it, they can’t be part of it. Web design is two-way: we can use it to convey more information about a project and, more powerfully, create a sense of community around it.

Think carefully about that last bit: a community means a constantly growing and returning audience. You can’t buy that kind of interest (whether you’re selling something or not). You also start to get a project which generates its own content. No need for a new graphic design every other week.

That takes care of the usability side of things. In terms of actual design (raw and dirty mark-up), it’s just plain wrong to treat a website as an example of graphic design. Sure, it should convey brand identity, but it shouldn’t be a graphically based. Using tables and all manors of redundant mark-up to get an image to sit just right on a site is missing the point. A web page is essentially a document (largely, just a piece of text) with special tags around parts of it to logically separate chunks of it and give certain parts meaning. This can’t be achieved through graphical means.

There’s a lot more to this, but I’ll leave that for another day. Just remember, next time you design a web site, make sure it’s a web site and not a graphic design.

Textile

Today, I got an email from Dean Allen saying that I can use Textile in Finetto (the CMS I’ve been working on for quite some time).

This is great news since it lets me focus on other areas of Finetto, without having to worry about processing text. Besides, the Textile system is fantastic at what it does. I couldn’t come up with better (you should see the cludges that hold the site together at the moment). Thanks, Dean!

When I Argue…

This site is, perhaps, the internets finest moment; bursting with comedy, insight and bizarreness. Those are the cornerstones of the web. Well, maybe porn is the cornerstone, but in the absence of that then it’s those 3 things.

Back to the site: Imagine the world’s most argumentative couple. And then imagine the male of the pair documenting everything. You get such classic quotes as:

I eat two-fingered Kit-Kats like I’d eat any other chocolate bars of that size, i.e., without feeling the need to snap them into two individual fingers first. Margret accused me of doing this, ‘deliberately to annoy her’.

Read the whole page. It’s full of the most contrived logic. You know, the sort of stuff we all like to use in arguments with people we love.

The link? Things My Girlfriend And I Have Argued About

PHP Challenge #2

It’s time for the second PHP challenge. This time I want an Integer to Roman Numeral converter. So the script should accept a single parameter (an integer), and return the roman numeral which corresponds to the integer. If anyone has any difficulty trying to work out how to do this, search google for information on roman numerals.

Here are the rules:

  • The winner is the person who writes the shortest script that works on sample integers that I will run on it
  • All functions must return a value,
  • All functions must be called RNC,
  • All functions submitted are considered public domain and hence can be reproduced and used with or without credit to anyone by anyone (so no bitching if someone rips off your script after the challenge finishes),
  • The winning script will be archived here for prosperity and to help others,
  • New rules may be added here at any time,
  • New Rule: The script should be able to handle integers in the range 1 to 4999. If no-one manages this, the upper-limit will be lowered to 3999. Handling integers outside this range is unnecessary,
  • My decision is final, but the shortest (file size) script will be the winner,
  • All functions should be submitted to Solitude@vkps.co.uk,
  • The deadline for entries is 12pm GMT on March 5th 2003

That should be fairly simple to follow. Any questions should be sent to the same email address. Good luck!

PHP Challenge #1 Results

Thanks to everyone who submitted scripts for this little challenge. The scripts have been tested and there is a clear winner. But let’s start at 3rd place, which goes to Bane with a 94 byte entry:
function GCD($A,$B){<br />for($i=1,$MAX=1;$i<=$A;$i++){<br />if(!($A%$i)&&!($B%$i)){<br />$MAX=$i;<br />}<br />}<br />return$MAX;<br />}<br />This entry used a similar method to most other entries to work out the GCD, but was quite a bit smaller than most entries.

Unfortunately, it was 1 byte larger than Jante’s 93 byte entry:
function GCD($num1,$num2){<br />while($num2!=0){<br />$t=$num1%$num2;$num1=$num2;$num2=$t;<br />}<br />return $num1;}<br />Now this entry could have been made much smaller by replacing $num1 with $n and $num2 with $m (or any other 1 letter variable name), but not much can be done about that now.

The clear leader, however, was ZeroByte’s 58 byte entry:
function gcd($n,$m){<br />if(!$m)return$n;return gcd($m,$n%$m);<br />}<br />That is some fantastic use of recursion to get the size right down. Congratulations, ZeroByte!

It should be noted that the winning entry will be archived soo. Also, the code sizes shown were for all formatting and comments removed.