A little sneak peak at the new Magnetic-Expressions site:

Logo for a Magnetic-Expressions; Website coming soon.



Polynesian Roots is Kava Root importer, making regular trips to Tonga. This was an exciting project to learn about a product I previously knew nothing about. We spruced up the logo, created a new website, added a blog, and added a full-features eCommerce store as well.

Latest website is up and running at RideTrials.org. Ride Trials is a one-stop source for all Trials and Enduro motorcycle information focusing on the U.S. Mountain West region. This one definitely struck and inner cord with me. I love anything that has to do with riding/driving something offroad.
This project included a blog (titled Clipboard) and a custom Classified Ad section. Some subtle jQuery plugins used site-wide for the slideshow, image gallery, and menus, add a great touch to the site as well.
Let me know what you think!
I have to give credit to cjsilence for this – it’s incredible.
With this simple jQuery function, you can notify a user if they’ve made any un-saved changes to a form field – and give them a chance to save or discard those changes. I was recently able to try this out on a work project and it is working beautifully.
I have a feeling THIS will come in very handy for a variety of projects.
var isDirty = false;
var msg = 'You haven\'t saved your changes.';
$(document).ready(function(){
$(':input').change(function(){
if(!isDirty){
isDirty = true;
}
});
window.onbeforeunload = function(){
if(isDirty) {
return msg;
}
};
});
Simply Beautiful and Beautifully Simple.
I recently posted about the Cameron Moll Colosseo iPad Martian Giveaway over on my personal website and it makes sense to also post here as Cameron is one of my online design heros. To win the giveaway would be icing on the cake, but at least I have the opportunity to give appreciation to an amazing designer.
Probably two of my favorites on the internet today – Cameron Moll and the iPad.
Cameron has decided to give away an iPad and the opportunity to win as well as talk about one of my favorite designers was too good to pass up. When I came across Cameron’s Letterpress Poster of the Salt Lake City LDS Temple, he had only a few left. I regret not purchasing one right then and there… I hope he makes that one available again as I have just the place in my office for a large signed copy. Just to name a couple of other famous creations by Cameron, there is AuthenticJobs which caters to designers / developers seeking jobs. It is an amazing resource, and an amazing website in it’s own right. I’ve also purchased and read Cameron’s book Mobile Web Design which taught me a lot about mobile websites and helped me really get into the mobile-movement.
Be sure to check out Cameron’s latest Letterpress Poster, the Colosseo – seen here colosseotype.com .
Here is a preview of his work… the man is simply amazing.
Thanks for the opportunity Cameron, and best of success to you!
There are a few different ways to get a Custom 404 page using CodeIgniter, but one I like best is also the easiest to implement.
Simply place this code in a file called MY_Exceptions.php in your application/library folder (assuming your sub-class prefix is “MY_” set in config).
<?php
class MY_Exceptions extends CI_Exceptions{
function MY_Exceptions(){
parent::CI_Exceptions();
}
function show_404($page=''){
$this->config =& get_config();
$base_url = $this->config['base_url'];
// could redirect to known controller - or redirect to home page
header("location: ".$base_url);
exit;
}
}
?>
That’s it! This example above is set to redirect 404 errors back to your home page. You can easily change it to redirect visitors to a custom “Error” controller that you would build the same way as any other controller/view.
In my experience, here are 5 items to AVOID at any cost before purchasing a Domain Name (well, just about any cost, that is… )
More tips coming soon for other topics such as Hosting, Content Management Systems (CMS), Custom Websites, Email Services, etc. Feel free to leave other suggestions below.
There are a number of things I’d like to learn more about, or become proficient at, this year.
Here are a few that I already have *some* experience with, but want to master this year -
I’m planning on giving a review of each item and post in-depth tips, tricks, and general cool features with each as I learn more about them. This should be fun year!
What are you looking forward to learning this year?

New Project – Ride Trials Logo
I’m becoming fascinated with this sport as I learn more about it. Very excited for this project. Let me know what you think of the logo.