Tuesday, September 29, 2009

Need a quick quote?

I found a great article by Brian Fling, although it is kind of old, about pricing design based projects. Please adjust the dollar amounts for inflation ;)
Here are some interesting excepts from the article...

1 mockup x time(1×10 hours) x $100 = $1,000
Three mockups would look like this:
3 mockups x time(1×10 hours) x $100 = $3,000
A slightly more complex mockup might look like this:
3 mockup x time(1.5×10 hours) x $100 = $4,500
And a complex or challenging mockup might look like this:
3 mockups x time(2×10 hours) x $100 = $6,000
And so on. Start with a three-point complexity scale using the quarter points if necessary (e.g. 1.25, 1.5, 1.75 etc). If you feel you need to use a five-point scale or even a ten-point scale I would imagine you haven’t figured out your hourly rate.
He even answers an often asked question...What is my hourly rate?

(expenses + salary) ÷ hrs worked per yr. + margin = hourly rate
Liked what you saw? Check out the full article here:
http://www.blueflavor.com/blog/2006/apr/25/pricing-project/

Friday, September 25, 2009

Google Maps on Gameday



I am been playing with Google maps alot lately. Mainly the API but I have also been playing with google maps proper. My maps is a pretty sweet feature. I used it to map out ~40 locations around the midlands for a client map and I decided that the average user could do some neat things.

I live in Canalside and I decided to bike to the South Carolina vs Mississippi football game last night. I mapped the 6.7 mile round trip and placed a picture I uploaded from the game in less than 2 minutes...

Wednesday, September 23, 2009

Google Chrome Frame

Google just released pretty interesting plugin for Internet Explorer called Google Chrome Frame. It is aimed at IE 6, 7, and 8 users on Windows XP and Vista. These users are typically the corporate desktop users that have not upgraded because of legacy IE6 applications or lazy IT staffs or both. When users install this plugin they will have full HTML5 support in their browser while maintaining IE6 compatibility with their legacy applications.

So legacy IE users download it here:
http://www.google.com/chromeframe/eula.html

Now, designers and developers. Place this little meta tag on your page and this will enable google chrome frame for your websites and web applications.

<meta http-equiv="X-UA-Compatible" content="chrome=1">

If google chrome frame is there, then it will switch to the chrome webkit rendering engine. If not... it will work just like it did before. Google has also give us some handy tools to check to see if google chrome frame is installed and if not, prompt the user to download it...

<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js">
</script>

<div id="placeholder"</div>

<script>
CFInstall.check({
node
: "placeholder",
destination
: "http://www.waikiki.com"
});
</script>

Check out the full developer guide:
http://code.google.com/chrome/chromeframe/developers_guide.html

So what does this really mean. Well, it really depends on google really. If google starts requiring HTML5 support for HQ youtube videos and some advanced features in picasa web, blogger, gmail and google docs. Then this Google Chrome Frame will be huge. But perhaps this will force microsoft to push out an update to IE6 or that offers a "legacy" mode and a modern mode. I am in favor for either one... As long as we can move these neglected users out of the dark ages of web browsing.