Media Ignite is a full service design, development, and marketing company based in Ottawa, Ontario, Canada.
Posted: November 4th, 2011 | Author: Jason Fournier | Filed under: Development | No Comments »
Found this absolutely fantastic guide to measuring website performance:
https://www.newfangled.com/how_to_gather_and_evaluate_website_user_data
It’s clear, concise, and written in a way such that techies and non-techies alike can understand. Bravo Newfangled!
Posted: August 3rd, 2011 | Author: Jason Fournier | Filed under: Uncategorized | Tags: css, design, layouts, UI | No Comments »
I stumbled upon a nice post regarding the (near) future of CSS as it pertains to layouts. Take a peek!
http://www.netmagazine.com/features/future-css-layouts
Posted: June 20th, 2011 | Author: Jason Fournier | Filed under: Development, Marketing, Usability, UX | No Comments »
The pre-flight jitters of an impending website launch are there for a reason – you want to make sure that first impression makes a positively great lasting impression. It’s also tied to your brand, the value you propose to your viewing audience, the sponsors and vendors you represent, and more. There are some concrete steps you can take prior to a launch that will help ensure a smooth transition to the new site. I came across this checklist a while ago and have found it a good starting point for review:
BOX UK – The Ultimate Website Launch Checklist
If you’re interested in delving further into the topic then I suggest you head on over to Smashing Magazine and check out their post on the subject. They include questionnaires, checklists, and more.
Happy launching!
Posted: June 13th, 2011 | Author: Jason Fournier | Filed under: Marketing | No Comments »
It’s said that there are the 4 P’s in the Marketing Mix. These 4 elements mix together to comprise your value proposition to the world. The P’s are [1]:
- Product
- Price
- Place
- Promotion
Traditionally, the 4 P’s refer more to tangible product but they’re still very much relevant in today’s economy. In the mid 1990′s a gentleman by the name of Robert F. Lauterborn proposed the 4 C’s of Marketing. The C’s, which build upon the P’s, are argued to better reflect niche marketing activities as opposed to large scale activities. Think small design firm in Canada vs. Ford Automobiles. The 4 C’s are:
- Consumer
- Cost
- Convenience
- Communication
This model speaks volume to me as the owner of design firm who caters to small to medium-sized businesses looking to help build brand differentiation on the web. In the coming weeks I will review and discuss each C in the context of a digital presence and see how the model can help bring your value to the world.
Stay tuned!
[1] http://en.wikipedia.org/wiki/Marketing_mix
Posted: June 7th, 2011 | Author: Jason Fournier | Filed under: Development | Tags: Development, howto, jQuery | No Comments »
I was recently working on a side project, www.hellophoto.ca, and found myself needing segments of the URL in an effort to build a RESTful service. Through a combination of .htaccess and this jQuery URL plugin I was able to easily grab portions of the URL. The plugin covers URL attributes, Query String Parameters, URL Segments, and Fragment Parameters. All great stuff.
Example:
http://www.hellophoto.ca/find/username
Create a URL object:
var url = $.url();
Use one of the methods for accessing the information you need. Say, for instance, I want to know the username of the URL. I would do the following:
var mySeg = url.segment(-1);
console.log(mySeg);
This will output ‘username’. Sweet.
To include the plugin in your page you could use the following:
<script type=”text/javascript” src=”js/jquery.url.min.js”></script>
A comprehensive plugin that handles the URL very well. Check it out.