<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Website Inspiration Blog &#124; SpicyWebDesigners.com by Luc Arnold &#187; Web Design Companies</title>
	<atom:link href="http://www.spicywebdesigners.com/category/web-design-companies/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.spicywebdesigners.com</link>
	<description>Tips, advice and inspiration to help you with your website</description>
	<lastBuildDate>Thu, 29 Jul 2010 03:00:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using Asynchronous Tracking in Google Analytics</title>
		<link>http://www.spicywebdesigners.com/1726/using-asynchronous-tracking-in-google-analytics/</link>
		<comments>http://www.spicywebdesigners.com/1726/using-asynchronous-tracking-in-google-analytics/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 18:44:09 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Do-It-Yourself (DIY)]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Web Design Companies]]></category>
		<category><![CDATA[web analytics]]></category>
		<category><![CDATA[asynchronous]]></category>
		<category><![CDATA[asynchronous google analytics tracking code]]></category>
		<category><![CDATA[asynchronous tracking]]></category>
		<category><![CDATA[asynchronous web analytics tracking]]></category>
		<category><![CDATA[google analytics]]></category>
		<category><![CDATA[web metrics]]></category>
		<category><![CDATA[website tracking]]></category>

		<guid isPermaLink="false">http://spicywebdesigners.com/?p=1726</guid>
		<description><![CDATA[In the last little bit I’ve managed to write a few articles about web analytics and more importantly Google Analytics. Like most web analytics tracking software, Google Analytics uses what is known as a “tracking pixel” also known as a “tracking code”. Recently they’ve added some functionality to help you with web page load times. [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">In the last little bit I’ve managed to write a few articles about web analytics and more importantly Google Analytics.<span> </span>Like most web analytics tracking software, Google Analytics uses what is known as a “tracking pixel” also known as a “tracking code”.<span> </span>Recently they’ve added some functionality to help you with web page load times.<span> </span>Now you might ask “Why is this important to me?” and the truth is that it’s very important if you value gaining more and more visitors to your website.<span> </span>By and large, most people that are out there browsing the web don’t like to spend a lot of time finding your web page.<span> </span>On average most people will not wait that long for a website to load before they decide to leave.Back in 2006, <a href="http://www.akamai.com/html/about/press/releases/2006/press_110606.html" target="_blank">Akamai and JupiterResearch</a> said that the acceptable wait time for a web page to respond and load shouldn’t exceed 4 seconds.</p>
<p class="MsoNormal">Now keep in mind that this was three years ago and today, with advances with web technologies I am sure that 4 second wait time is way too long today.<span> </span>With the advent of AJAX (Asynchronous JavaScript and XML) it’s possible to optimize website to improve these wait times.</p>
<p class="MsoNormal"><strong>How AJAX works and why is it important to asynchronous web analytics tracking</strong></p>
<p class="MsoNormal">The big point to understand about AJAX is that it uses JavaScript and XML to load the web page all at once, one time only.<span> </span>In classic HTML and CSS every time a web page is loaded because a call must be made to a web server to retrieve the web page.<span> </span>Think about any time you’ve refreshed a web page each one of those is a new instance of a web page created once the web page is reloaded.<span> </span>Using AJAX, only the information that has changed on the web page is reloaded not the web page itself.<span> </span>That is the important lesson here.</p>
<p class="MsoNormal"><img class="aligncenter size-full wp-image-1732" title="ajax_comm_model_gif" src="http://spicywebdesigners.com/wp-content/uploads/2009/12/ajax_comm_model_gif.gif" alt="" width="500" height="409" /></p>
<p class="MsoNormal"><strong>Source:</strong> <a href="http://www.interaktonline.com/Support/Articles/Details/AJAX:+Asynchronously+Moving+Forward-How+does+AJAX+work%3F.html?id_art=36&amp;id_asc=308" target="_blank">Interakt</a></p>
<p class="MsoNormal">Now think, if you have the traditional GA.js tracking code from Google Analytics on your web page then that means that every time you load a new instance of a web page in your website the GA.js tracking code needs to be reloaded as well and this increases that web page load time.<span> </span>This is one reason why more and more people are using AJAX technology in their website today including the Google Analytics Development Team.<span> </span>Some of the big benefits of the asynchronous javascript tracking code as stated by the Google Analytics team are…</p>
<ul type="disc">
<li class="MsoNormal" style="line-height: normal;"><span>Faster tracking code load times for your      web pages due to improved browser execution</span></li>
<li class="MsoNormal" style="line-height: normal;"><span>Enhanced data collection and accuracy</span></li>
<li class="MsoNormal" style="line-height: normal;"><span>Elimination of tracking errors from      dependencies when the JavaScript hasn&#8217;t fully loaded</span></li>
</ul>
<p class="MsoNormal"><strong>Source: </strong><a href="(http://analytics.blogspot.com/2009/12/google-analytics-launches-asynchronous.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+blogspot%2FtRaA+(Google+Analytics+Blog)&amp;utm_content=Google+Feedfetcher)" target="_blank">Google Analytics Blog</a><a href="http://analytics.blogspot.com/2009/12/google-analytics-launches-asynchronous.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+blogspot%2FtRaA+(Google+Analytics+Blog)&amp;utm_content=Google+Feedfetcher)"></a></p>
<p class="MsoNormal">How easy is it to add the Asynchronous Tracking Code to your website?</p>
<p class="MsoNormal">Now the part that you’ve all been waiting for… how easy is it to add this to your website? <span> </span>The answer, it’s really very easy!<span> </span>Let me show you just how easy it is:</p>
<p class="MsoNormal">1. Get this piece of code&#8230;</p>
<blockquote>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span>&lt;script type=&#8221;text/javascript&#8221;&gt;</span></p>
<p>var _gaq = _gaq || [];<br />
_gaq.push(['_setAccount', 'UA-XXXXX-X']);<br />
_gaq.push(['_trackPageview']);</p>
<p>(function() {<br />
var ga = document.createElement(&#8217;script&#8217;);<br />
ga.src = (&#8216;https:&#8217; == document.location.protocol ? &#8216;https://ssl&#8217; : &#8216;http://www&#8217;) + &#8216;.google-analytics.com/ga.js&#8217;;<br />
ga.setAttribute(&#8216;async&#8217;, &#8216;true&#8217;);<br />
document.documentElement.firstChild.appendChild(ga);<br />
})();</p>
<p>&lt;/script&gt;</p></blockquote>
<p class="MsoNormal"><a href="http://code.google.com/apis/analytics/docs/tracking/asyncTracking.html" target="_blank">Click here to get it!</a><a href="http://code.google.com/apis/analytics/docs/tracking/asyncTracking.html"></a></p>
<p class="MsoNormal">2. Replace the ‘<em>UA-XXXXX-X</em>’ with the web property ID from your Google Analytics account</p>
<p class="MsoNormal">3. Add it the same way you added the original GATC (Google Analytics Tracking Code)</p>
<p class="MsoNormal">4. You are all done!</p>
<p class="MsoNormal"><strong>Before you install:</strong><span> </span>Now if you already have Google Analytics Tracking Code in place on your website you are going to need to remove it first and then add the Asynchronous Tracking Code to your website.</p>
<p class="MsoNormal">Even if you are a beginner with web analytics or you are trying to understand how to use it for your business incorporating AJAX technology into your website to improve the overall user experience will only help improve the performance of your website and understand how people use your website.</p>
<p class="MsoNormal">“Asynchronously” yours,</p>
<p class="MsoNormal">Luc Arnold</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spicywebdesigners.com/1726/using-asynchronous-tracking-in-google-analytics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Eric and Patty Rosol from RenderingEffects are rendering some superb sites together</title>
		<link>http://www.spicywebdesigners.com/1506/eric-and-patty-rosol-from-renderingeffects-are-rendering-some-superb-sites-together/</link>
		<comments>http://www.spicywebdesigners.com/1506/eric-and-patty-rosol-from-renderingeffects-are-rendering-some-superb-sites-together/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 23:41:08 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[American Web Designers]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Spicy Web Designers]]></category>
		<category><![CDATA[Web Design Companies]]></category>
		<category><![CDATA[American Web Design Company]]></category>
		<category><![CDATA[web design company]]></category>
		<category><![CDATA[Wisconsin Web Design Company]]></category>

		<guid isPermaLink="false">http://spicywebdesigners.com/?p=1506</guid>
		<description><![CDATA[
Eric and Patty Rosol are the husband and wife team behind, RenderingEffects, their website design and development studio based out of Wisconsin in the United States. Together, Eric and Patty have built RenderingEffects from their collective knowledge in developing and designing websites over the past  6 years professionally. They use the power of Magento [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin-bottom: 12pt; line-height: normal; text-align: center;"><a href="http://www.renderingeffects.com/index.html"><img class="aligncenter size-full wp-image-1507" title="renderingeffects_homepage" src="http://spicywebdesigners.com/wp-content/uploads/2009/09/renderingeffects_homepage.jpg" alt="" width="500" height="250" /></a></p>
<p class="MsoNormal" style="margin-bottom: 12pt; line-height: normal;"><strong><span>Eric and Patty Rosol </span></strong><span>are the husband and wife team behind, RenderingEffects, their website design and development studio based out of<strong> </strong></span>Wisconsin in the United States.<span> </span>Together, Eric and Patty have built RenderingEffects from their collective knowledge in developing and designing websites over the past <strong><span><span> </span></span></strong><span>6 years professionally.<span> </span>They use the power of Magento and WordPress to meet and exceed the needs of their clients with respect to developing ecommerce as well as standard websites.<strong></strong></span></p>
<p class="MsoNormal" style="margin-bottom: 12pt; line-height: normal;"><strong><span>Patty Rosol </span></strong><span>is a web designer and developer who is self taught who uses her knowledge of coding and design to build very cohesive websites.<span> </span><strong>Eric Rosol </strong>is more focused on development but is focused on system administration tasks in the day to day operations of RenderingEffects.</span></p>
<p class="MsoNormal" style="margin-bottom: 12pt; line-height: normal;"><span>Eric and Patty have created a great web design company focused standard platforms including Magento and WordPress as well as Quality, Communication, Flexibility and Creativity.<strong></strong></span></p>
<p class="MsoNormal" style="margin-bottom: 12pt; line-height: normal;"><strong><span>1. Patty, I understand that you are the designer and your husband, Eric, is the developer of your husband and wife web design and development team.  How do you balance your personal and professional lives as a couple in your business?</span></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span><em>Well, actually Patty is the lead designer </em><em>and developer. For her, knowing the possibilities of the code makes designing easier.</em></span></p>
<p><em>Eric does do some of the developing as well, but the majority of his time is spent doing all of the other services that we offer such as: hosting, email, pc repair/maintenance, and product photography.  He also handles billing, and helps to keep me focused as I have a tendency to constantly second guess my work.</em></p>
<p><em>We have a lot in common and share many of the same interests so working together seemed like a natural extension of our relationship.</em></p>
<p class="MsoNormal" style="margin-bottom: 12pt; line-height: normal;"><span><br />
<strong>2. Patty, as a web designer how do you keep yourself learning new technologies?</strong></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span><em>In my spare time I am constantly reading design blogs, books, and looking through the various CSS galleries.  I also spend a lot of time just experimenting.  I have folders full of design and code ideas. </em></span></p>
<p class="MsoNormal" style="margin-bottom: 12pt; line-height: normal;"><span><br />
<strong>3. When did you design your first website? How long have you been designing professionally?</strong></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span><em>We built our first personal website about 7 years ago, and we started professionally about 1 year after that. It was a rather quick transition, but we realized pretty quickly that it was something that we really enjoyed doing.</em> </span></p>
<p class="MsoNormal" style="margin-bottom: 12pt; line-height: normal;"><span><br />
<strong>4. Where did the idea come from to start your website studio, Rendering Effects?</strong></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><span>At the time that we were creating our personal website Patty was working for a photography lab, and they had a horrible website.  She told her boss that she could do better and he said &#8220;go for it&#8221;.  She managed to impress her boss, and some of their customers who started asking her if she </span><span>could</span></em><span><em> build them a website.  The demand was there so we decided to make it official, and we created Rendering Effects. </em></span></p>
<p class="MsoNormal" style="margin-bottom: 12pt; line-height: normal;"><span><br />
<strong>5. Eric, as a web developer what is the benefit of building websites and ecommerce sites using standard website development platforms like WordPress and Magento?</strong></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span><em>The obvious benefit of WordPress and Magento is that they allow our customers some control over their websites, while allowing us to be able to customize the look to our customers liking.</em></span></p>
<p><em>We were very excited when we heard about Magento because we weren&#8217;t happy with the other options that were out there.  Most of the other ecommerce platforms we had tried were just too limited with their features.  It was discouraging to have customers ask if their cart could do this or that, and we would have to say no&#8230; Or give them a hefty price tag for the adjustment which usually scared them away. </em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.spicywebdesigners.com/1506/eric-and-patty-rosol-from-renderingeffects-are-rendering-some-superb-sites-together/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sarah and Gennah from Wildwood Creative discuss their passion for graphics</title>
		<link>http://www.spicywebdesigners.com/1491/sarah-and-gennah-from-wildwood-creative-discuss-their-passion-for-graphics/</link>
		<comments>http://www.spicywebdesigners.com/1491/sarah-and-gennah-from-wildwood-creative-discuss-their-passion-for-graphics/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 02:38:59 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Australian Web Designers]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Spicy Web Designers]]></category>
		<category><![CDATA[Web Design Companies]]></category>
		<category><![CDATA[Australian Web Design Company]]></category>
		<category><![CDATA[Perth Web Design Company]]></category>
		<category><![CDATA[web design company]]></category>

		<guid isPermaLink="false">http://spicywebdesigners.com/?p=1491</guid>
		<description><![CDATA[
 
Sarah Enid Moule and Gennah NeSmith are both from Perth, Australia running Wildwood Creative, a small web and graphic design studio. Sarah has been designing websites for the past 7 years and Gennah started to design websites back in high school. They both admit to not being “coders” but they know the basics of [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal; text-align: center;"><a href="http://wildwoodcreative.com.au/"><img class="aligncenter size-full wp-image-1492" title="sarah_gennah_homepage" src="http://spicywebdesigners.com/wp-content/uploads/2009/09/sarah_gennah_homepage.jpg" alt="" width="450" height="225" /></a></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span> </span></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span>Sarah Enid Moule </span></strong><span>and<strong> Gennah NeSmith </strong>are both from Perth, Australia running Wildwood Creative, a small web and graphic design studio.<span> </span>Sarah has been designing websites for the past 7 years and Gennah started to design websites back in high school.<span> </span>They both admit to not being “coders” but they know the basics of JavaScripting, HTML, CSS and jQuery plug-ins in general.<span> </span>Sarah learned more about designing from the internet and is a self taught designer and artist and a few low level certificates and Gennah studied at </span><span>TAFE (a Technical College) and Murdoch University and earned a certificate in Multimedia and a bachelor’s degree in Multimedia.<span> </span>Together they run Wildwood Creative with over 6 collective years of experience and have some killer design skills which they formed earlier in 2009.<span> </span>Keep an eye out for this tag team of designers as they continue to blaze new trials in the web and graphic design industry from their head quarters in Perth.</span><strong></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span> </span></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span>1. How did both you and Gennah get into web design? How long have each of you been designing websites for?</span></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><strong><span>Sarah</span></strong><span>: I started getting into web design about 7 years ago, so I could build myself an online portfolio for my artwork. Once I started learning, I fell in-love and re-designed my website about once every 2 weeks! Consequently&#8230; I got bored of my own website, and now I make them for other people!</span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><span> </span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><strong><span>Gennah</span></strong><span>:  It all started in high school.  I was introduced to HTML and loved it. Something about using notepad to create something with structure and meaning, displaying things in such a way that made people more motivated to read, learn, </span><span>and click</span><span>!  I&#8217;ve studied off and on, played around with stuff in my own time.  The last few years I have been making websites for companies at a bigger web corporation, which defiantly lets you decide you are doing the right job!   I have been designing websites for 6 years.</span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span>2. Do either you and/or Gennah do any scripting on website design projects? If so, what languages do you script in?</span></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><strong><span>Sarah</span></strong><span>: Not me! I do some very basic </span><span>JavaScript</span><span> but apart from that I mostly make the sites look pretty!</span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><span> </span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><strong><span>Gennah</span></strong><span>: We are not really the scripting type.  We know HTML, CSS and enough to jQuery to use plug-ins. </span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span>3. Being a two-woman web design company what do you find as an advantage of operating this way? Are there any disadvantages?</span></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><strong><span>Sarah</span></strong><span>: So far I haven&#8217;t really noticed many pros or cons. I&#8217;m not big on celebrating the whole “two women taking on the world” thing. We are just two people; passionate about what we do who are always hard at work!</span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><span> </span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><strong><span>Gennah</span></strong><span>: We haven&#8217;t come across any yet.  At this point I would like to note, we are not feminists or do not want to be seen as two women taking on the world, rather two people who love making graphics, artwork and websites. </span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><span> </span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><strong><span>Sarah</span></strong><span>: Haha, yeah what she said! To be honest&#8230; I&#8217;m a pretty poor excuse for a female anyway, so really we are doing all women kind a favor this way hehe.</span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span>4. Where and what did each of you study while you were at college or university and is either of you a &#8220;Self-Taught&#8221; web designer?</span></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><strong><span>Sarah:</span></strong><span> I am a self taught artist and designer. I did a couple of low level qualification certificates but everything I know I have learned from the internet.<span> </span>It’s the best university ever! I think when you are really interested in something; nothing can get in your way!</span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><span> </span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><strong><span>Gennah</span></strong><span>: I studied at eCentral TAFE(Technical College) and Murdoch University. I have both a Certificate in Multimedia and a Bachelor in Multimedia. </span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span>5. Would you said that both yourself and Gennah have different styles of design and if so how do you balance this in the web design projects that you complete?</span></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><strong><span>Sarah</span></strong><span>: Definitely! Gennah is more of a corporate designer, she likes things neat and clean and shiny, where as I love designing crazy fun sites with lots of color and exciting photos. We are both able to do either style though which is great, but we play to our strengths. If one of us feels like a break, we high-five and change over, then give each other feedback and support. </span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><span> </span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><strong><span>Gennah</span></strong><span>: Sarah’s design is very friendly, free and artistic.  She is very good at using color to make things stand out and work well.  My style is more corporate, a little more boring but still neat and user friendly.  This is a good dynamic to have!</span></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.spicywebdesigners.com/1491/sarah-and-gennah-from-wildwood-creative-discuss-their-passion-for-graphics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jim Wiberley and Graeme White from Staak a digital creative studio with a flair for entertaining design</title>
		<link>http://www.spicywebdesigners.com/1456/jim-wiberley-and-graeme-white-from-staak-a-digital-creative-studio-with-a-flair-for-entertaining-design/</link>
		<comments>http://www.spicywebdesigners.com/1456/jim-wiberley-and-graeme-white-from-staak-a-digital-creative-studio-with-a-flair-for-entertaining-design/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 20:05:35 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Spicy Web Designers]]></category>
		<category><![CDATA[UK Web Designers]]></category>
		<category><![CDATA[Web Design Companies]]></category>
		<category><![CDATA[British Web Design Company]]></category>
		<category><![CDATA[Royal Leamington Spa Web Design Company]]></category>
		<category><![CDATA[Staak Digital Creative Studio]]></category>
		<category><![CDATA[Staak Ltd.]]></category>
		<category><![CDATA[UK Web Design Company]]></category>
		<category><![CDATA[Warwick Web Design Company]]></category>
		<category><![CDATA[web design company]]></category>

		<guid isPermaLink="false">http://spicywebdesigners.com/?p=1456</guid>
		<description><![CDATA[
 
Jim Wiberley and Graeme White are both directors of Staak Ltd., a digital creative studio located in Royal Leamington Spa in Warwick in England in the United Kingdom. Together, this duo started Staak in late 2008 targeting the entertainment industry’s need for web design that suits their clients’ needs. Both had previously worked for [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal; text-align: center;"><a href="http://www.staak.co.uk/"><img class="aligncenter size-full wp-image-1457" title="staak_digitial_creative_hom" src="http://spicywebdesigners.com/wp-content/uploads/2009/09/staak_digitial_creative_hom.jpg" alt="" width="450" height="225" /></a><strong></strong><strong></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span style="font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: #333333;"> </span></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span style="font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: #333333;">Jim Wiberley </span></strong><strong><span style="font-weight: normal; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: #333333;">and</span></strong><strong><span style="font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: #333333;"> </span></strong><strong><span>Graeme White</span></strong><span> are both directors of Staak Ltd., a digital creative studio located in </span><span>Royal Leamington Spa in Warwick</span><span> in England in the United Kingdom.<span> </span>Together, this duo started Staak in late 2008 </span><span>targeting</span><span> the entertainment industry’s need for web design that suits their </span><span>clients’</span><span> needs.</span><span><span> </span>Both had previously worked for other agencies and well known games companies so having their own studio for web design seemed like the next logical step to take. <span> </span>Staak is not only a proactive web design studio but it is also dynamic giving Staak an advantage over larger creative agencies.<span> </span>Together with Jim and Graeme and a few select freelance designers, Staak is making a name for itself. </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span>1. When was Staak founded? How many people currently work at Staak?</span></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><span>Staak was officially founded in November 2008 by </span><span>myself</span></em><span><em> and Jim Wiberley. We&#8217;d previously worked for other agencies and well known games companies and having our own studio seemed like a natural progression for us. We&#8217;re a small studio with just ourselves and a few choice freelancers which we use on a project by project basis. We&#8217;ve always felt it&#8217;s our size as a studio that really allows us to be dynamic and proactive for our clients giving us an edge over some of the larger creative agencies.</em></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span>2. Jim, Staak seems to have a lot of project work that involves clients from the entertainment industry including Sony, Xbox and Electronic Arts and I wanted to ask was it intentional to attract clients like this to your business?</span></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><span>The majority of our work has always been in the games and music industry and it was natural for us to continue in this area when we started Staak. We&#8217;ve always found that our creative style has been well suited to these </span><span>types</span></em><span><em> of clients and we&#8217;ve always really enjoyed pushing ourselves to produce the best work we can. Although having said that our work in the games and music industry does lead to further work with clients we wouldn&#8217;t have previously worked with.</em></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span>3. What kind of quality practices do you have in place when dealing with a larger client to make sure the whole project is running smoothly?</span></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span><em>Communicate at every step of the way! We can&#8217;t stress that enough. Without clear communication everything else falls apart. With larger scale projects we spec everything with the client and agree on schedules and budgets before moving forward. The one thing we&#8217;ve learned over the years is that every client has their own way of working. You can&#8217;t force someone into a process as it just won&#8217;t work, so there&#8217;s always a little give and take–but as long as you&#8217;re clear on the objectives and more importantly so is the client, you can&#8217;t go far wrong.</em></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span>4. What is a day in the life like when of working at the Staak digital creative studio?</span></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span><em>Coffee. Lots of coffee! We then kick start the day going over the studio schedule–what projects need looking at, any clients we need to get back to, fairly straightforward stuff. The important thing for us is keeping things fun and stress free. You spend so much of your day at work the last thing it needs to be is a pain in the ass. Luckily for us our jobs are pretty diverse. We can be knee deep in some motion graphics work or CSS one day, followed by a trip to a games convention the next–fun times!</em></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span>5. What types of work does Staak take on currently? Motion Design? Web Design? Etc.</span></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><span>Although we&#8217;re primarily a web design studio we don&#8217;t particularly confine ourselves to any one particular discipline or area. </span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><span> </span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span><em>We do everything from full content managed sites (built with our own in-house CMS &#8216;Fuel&#8217;) to dynamic Flash sites and games with a sprinkling of motion graphics to pep things up! We&#8217;re always on the look out to learn new things. You can&#8217;t stop still in this industry–if you do, you get left behind!</em></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.spicywebdesigners.com/1456/jim-wiberley-and-graeme-white-from-staak-a-digital-creative-studio-with-a-flair-for-entertaining-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spicy Web Designer Interview with Liam Faulkner and Katherine Boardman from Twenty3Design</title>
		<link>http://www.spicywebdesigners.com/1208/spicy-web-designer-interview-with-liam-faulkner-and-katherine-boardman-from-twenty3design/</link>
		<comments>http://www.spicywebdesigners.com/1208/spicy-web-designer-interview-with-liam-faulkner-and-katherine-boardman-from-twenty3design/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 02:04:58 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Spicy Web Designers]]></category>
		<category><![CDATA[UK Web Designers]]></category>
		<category><![CDATA[Web Design Companies]]></category>
		<category><![CDATA[Twenty3Design]]></category>
		<category><![CDATA[UK Web Design Company]]></category>
		<category><![CDATA[web design company]]></category>

		<guid isPermaLink="false">http://spicywebdesigners.com/?p=1208</guid>
		<description><![CDATA[

Liam Faulkner and Katherine Boardman are web designers who run Twenty3Design, a small web design company in the United Kingdom. Liam Faulkner studied Multimedia Technology at the University of South Wales while Katherine Boardman has her BSc of Sound from university. They complement each other and have created some amazing web design work because of [...]]]></description>
			<content:encoded><![CDATA[<p style="margin: 0in 0in 0.0001pt; text-align: center;"><a href="http://www.twenty3design.co.uk/index.php"><img class="aligncenter size-full wp-image-1209" title="liam_and_kath_twenty3design" src="http://spicywebdesigners.com/wp-content/uploads/2009/06/liam_and_kath_twenty3design.jpg" alt="" width="450" height="214" /></a></p>
<p style="margin: 0in 0in 0.0001pt;">
<p style="margin: 0in 0in 0.0001pt;"><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">Liam Faulkner and Katherine Boardman </span></strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">are web designers who run <strong>Twenty3Design</strong>, a small web design company in the United Kingdom.<span> </span>Liam Faulkner studied Multimedia Technology at the University of South Wales while Katherine Boardman has her BSc of Sound from university.<span> </span>They complement each other and have created some amazing web design work because of their vast experience in multimedia design, flash and graphic design. <strong></strong></span></p>
<p style="margin: 0in 0in 0.0001pt;"><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> </span></strong></p>
<p style="margin: 0in 0in 0.0001pt;"><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">1. How did you and Katherine get started in web design? When did you start designing websites?</span></strong></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal; min-height: 14px;"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> </span></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><em><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">Liam:</span></strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> I was always interested in web design.  Actually I have a bit of a coding background, I did a qualification in Visual Basic (of all languages), and when I went to University, I studied other programming languages, but actually found I like the visual design side of things best.  While at Uni I took on a few simple paid projects for clients, and learnt my freelance lessons designing and coding for them.  I then took a couple of full time positions as a graphic designer, but always had in mind that I will be working for myself, and it turns out that going freelance was surprisingly easy.</span></em></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> </span></em></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><em><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">Kath: </span></strong></em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"><em>I fell into it by accident really.  My background was in Sound Technology, but I helped out on a few projects with Liam and found that I picked up HTML pretty quickly. I found coding incredibly satisfying and now can&#8217;t imagine doing anything else.</em></span></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> </span></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">2. How long has Twenty3Design been in business?</span></strong></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal; min-height: 14px;"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> </span></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><em><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">Liam:</span></strong></em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"><em> Well, we&#8217;ve been Twenty3design full time for nearly 1 year &#8230;it&#8217;s our birthday soon!   We have both worked professionally for over 6 years, be that freelance or full-time and about a year ago we thought it was time to put all our efforts under one happy roof.</em></span></p>
<p style="margin: 0in 0in 0.0001pt;"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> </span></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">3. How many designers, developers and other creative people currently work for Twenty3Design?</span></strong></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal; min-height: 14px;"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> </span></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><em><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">Liam:</span></strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> There&#8217;s just the two of us.  We&#8217;re the designers, developers and project managers for our projects.  For anything we can&#8217;t do we rely on the extensive UK and US freelance community to lend a hand. </span></em></p>
<p style="margin: 0in 0in 0.0001pt;"><em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> </span></em></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"><em>We&#8217;ve got some pretty good contacts built up now who we know we can rely on.  I think that&#8217;s the key for freelancing.</em></span></p>
<p style="margin: 0in 0in 0.0001pt;"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> </span></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">4. What are the biggest challenges that you face in web design currently?</span></strong></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal; min-height: 14px;"><em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> </span></em></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><em><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">Liam:</span></strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> I think from a design perspective the hardest and most crucial part is getting a really decent brief form the client.  It&#8217;s so important to understand what the client wants and needs, but sometimes they don&#8217;t know themselves or they&#8217;ll &#8220;know it when they see it&#8221;.  I guess what I&#8217;m getting at is that people are more web savvy than ever and managing clients’ expectations among the vast array of information available for them is an ever changing task.</span></em></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> </span></em></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><em><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">Kath:</span></strong></em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"><em> Is it too obvious to say dealing with IE6? That said it does at least keep me on my toes <img src='http://www.spicywebdesigners.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .  Other than that I&#8217;d say for me it&#8217;s utilizing the correct technologies for the right project.  Sometimes clients want something fancy just for the sake of it and, although it might be nice to be able to bill for the extra dev work, you can over do it and ruin a good project.</em></span></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> </span></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">5. Do you ever refer to yourself as a Front-end developer or a web designer? Do you code any of the web sites that you design currently? If so, what language(s) do you code in?</span></strong></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal; min-height: 14px;"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> </span></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><em><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">Liam:</span></strong></em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"><em> We code and design everything ourselves.  We have the luxury of being multi-disciplined; we can take on the coding and design aspect for our clients, providing them with the whole package.  We code in the standard languages: HTML, CSS and PHP as well as doing bits and pieces of other languages such as JavaScript when it&#8217;s required.</em></span></p>
<p style="margin: 0in 0in 0.0001pt;"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> </span></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">6. Where did you go to school and has it helped you become a better web design professional?</span></strong></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal; min-height: 14px;"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> </span></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><em><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">Liam:</span></strong></em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"><em> We both went to University in South Wales, but I&#8217;d say that real life experience has made us better professionals, nothing can beat that.  Our degrees certainly gave us the start we needed to find out what type of work we&#8217;re in to and the time we had while at Uni allowed us to experiment with taking on clients and managing projects for ourselves.</em></span></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> </span></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">7. Since you first started how has the web design industry changed? Has it changed for the better? If so, how? If not, please explain?</span></strong></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal; min-height: 14px;"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> </span></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><em><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">Liam:</span></strong></em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"><em> The industry seems to have grown and developed in to much more of a community, everyone is chatting online using Twitter, comparing notes and sharing ideas.  It&#8217;s a nice industry to be involved with.  From a client perspective, more people seem to be tech savvy, giving people like us a little more freedom to be creative.  The openness of the design world has always been there, but now there are so many tutorials, blogs and communities that you can really immerse yourself it what ever you like.</em></span></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> </span></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">8. What are your favorite tools to use when designing a web project? Why are they your favorite tools?</span></strong></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal; min-height: 14px;"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> </span></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><em><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">Liam: </span></strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">I love my Macbook Pro, can&#8217;t do without it.  I also use an A5 Wacom tablet when I&#8217;m doing illustration; it&#8217;s incredibly helpful to be able to sketch freehand.  Software wise I use Photoshop for web design and Illustrator for print work and logo design, they can’t be beaten in my opinion.  Oh and can&#8217;t forget pen and paper, cheapest design hardware available.</span></em></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"> </span></em></p>
<p style="margin: 0in 0in 0.0001pt; font-size-adjust: none; font-stretch: normal;"><em><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">Kath:</span></strong></em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"><em> As a developer I live inside Coda.  I can do almost everything in there and it makes developing so much easier.  The other thing I really rely on is my notebook.  It might sound odd for a developer, but it&#8217;s always when I&#8217;m out and not by my Mac that I figure out how to solve some problem I&#8217;ve been stuck on for a while.  I&#8217;ve got to be able to note it down quickly or I&#8217;ll forget.</em></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.spicywebdesigners.com/1208/spicy-web-designer-interview-with-liam-faulkner-and-katherine-boardman-from-twenty3design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spicy Web Designer Interview with Mathew Carpenter and friends at Tisme</title>
		<link>http://www.spicywebdesigners.com/1157/spicy-web-designer-interview-with-mathew-carpenter-and-friends-at-tisme/</link>
		<comments>http://www.spicywebdesigners.com/1157/spicy-web-designer-interview-with-mathew-carpenter-and-friends-at-tisme/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 04:06:19 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Australian Web Designers]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Spicy Web Designers]]></category>
		<category><![CDATA[Web Design Companies]]></category>
		<category><![CDATA[Australian Web Design Company]]></category>
		<category><![CDATA[Newcastle Web Design Company]]></category>
		<category><![CDATA[Tisme.com.au]]></category>
		<category><![CDATA[web design company]]></category>

		<guid isPermaLink="false">http://spicywebdesigners.com/?p=1157</guid>
		<description><![CDATA[
Mathew Carpenter is the project manager at Tisme.com.au, a recently formed web design and development based in Newcastle, Australia. Both he and the designers and developers that work at Tisme.com.au turn out some amazing work for their clients on a daily basis. Currently, Tisme is a 5 man and woman operation that has been in [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="text-align: center;"><a href="http://tisme.com.au/"><img class="aligncenter size-full wp-image-1158" title="Australian Website Design" src="http://spicywebdesigners.com/wp-content/uploads/2009/06/tisme_homepage.jpg" alt="" width="450" height="225" /></a></p>
<p class="MsoNormal"><strong><span lang="EN-AU">Mathew Carpenter </span></strong><span lang="EN-AU">is the project manager at Tisme.com.au, a recently formed web design and development based in Newcastle, Australia.<span> </span>Both he and the designers and developers that work at Tisme.com.au turn out some amazing work for their clients on a daily basis.<span> </span>Currently, Tisme is a 5 man and woman operation that has been in business for the past 3 months and as they say “Don’t let our age fool you though; our team have years of experience under their belt and are able to compete with the best in the business”.<span> </span></span></p>
<p class="MsoNormal"><strong><span lang="EN-AU">1. How long has Tisme been in business?</span></strong></p>
<p class="MsoNormal"><em><span lang="EN-AU">Tisme is still only a baby after being formed a little over 3 months ago with the intention of bringing creativity and innovation back into Australian websites and graphic design in general. Don’t let our age fool you though; our team have years of experience under their belt and are able to compete with the best in the business.</span></em></p>
<p class="MsoNormal"><strong><span lang="EN-AU">2. How many people currently work at Tisme?</span></strong></p>
<p class="MsoNormal"><em><span lang="EN-AU">There are currently 5 people employed at Tisme including myself. We have Dule as our lead developer who handles all of the programming and tricky stuff, Branka is our designer and one of the most creative people you will ever meet. Across the table we have Ferdinand (call him FM) who slaves away at his graphics tablet designing awesome mascots and Andi who designs some of the best promotional material<span> </span>including logos, business cards and more. Then I handle the project management side of the business. </span></em></p>
<p class="MsoNormal"><strong><span lang="EN-AU">3. What does Tisme pride itself upon in the field of web design?</span></strong></p>
<p class="MsoNormal"><em><span lang="EN-AU">Tisme is all about developing websites and graphics which complement our clients business, service or product. We are here to help their businesses grow by utilising current design trends and incorporating creative solutions. We pride ourselves on these characteristics and our ability to understand and meet the needs of our clients whether it is for a simple logo design or a full website design.</span></em></p>
<p class="MsoNormal">
<p class="MsoNormal"><strong><span lang="EN-AU">4. How do you and your coding abilities make life easier for people at Tisme and its clients?</span></strong></p>
<p class="MsoNormal"><span lang="EN-AU"><strong>Answered by DULE, a programmer at Tisme.com.au:</strong> <em>One of the main goals of Tisme is to provide an effective and efficient experience when dealing with projects. In order to complete this, we must use clean, standard-compliant code so that we can refer back and make appropriate changes to the code when necessary. Website developers must realise that during the life of a website, you are not going to be the only person looking at the code. This is why I document and comment in the coding so that the project owner can easily modify and change the source once we have completed the project. This also comes in handy when we are commissioned to make changes to a website we have worked on before. </em></span></p>
<p class="MsoNormal">
<p class="MsoNormal"><strong><span lang="EN-AU">5. How long have you been designing websites and how do you stay up to date with the latest techniques in web design?</span></strong></p>
<p class="MsoNormal"><span lang="EN-AU"><strong>Answered by BRANKA, a web designer at Tisme.com.au:</strong> <em>I have been designing websites professionally for the last 2 years but I have been involved with creating websites and graphics for a long time. It first started out as a hobby until I realised I could make a career out of doing what I love; that is, designing attractive and user friendly websites. Although staying up to date with the latest techniques in website design is essential, the ever-changing state of the industry makes it hard to stay current, though I think I do a good job. I am actively involved in several design forums, and I also love reading about current design trends in magazines and on the Internet.</em></span></p>
<p class="MsoNormal">
<p class="MsoNormal"><strong><span lang="EN-AU">6. What does the role of a &#8220;promotional designer&#8221; involve at Tisme? </span></strong></p>
<p class="MsoNormal"><span lang="EN-AU"><strong>Answered by ANDI, a promotional designer at Tisme.com.au: </strong><em>The role of promotional designer is quite a broad role. Some days it may involve creating logos and stationery for small to medium enterprises while other days could involve working on packaging for a brand new product. By doing this, I am able to work with a large selection of clients and I am constantly improving my skills which will ultimately benefit the client. </em></span></p>
<p class="MsoNormal"><strong><span lang="EN-AU">7. What kind of projects do you work on for clients and how did you earn the title of &#8220;mascot illustrator&#8221;?</span></strong></p>
<p><strong>Answered by FERDINAND, a mascot illustrator at Tisme.com.au:</strong> <em><span lang="EN-AU">Basically I get called in when the client wants to project a specific personality, image or message through a character design. Mascots work in a similar fashion to any logo in that they represent the company and its ideals, but mascot designs can also give the consumer some things logos can’t; a face, a look, a human touch. We respond instinctively to eye contact and body language, and that’s the area of expertise for a mascot designer – to try to get the audience to relate to a brand on that intimate, personal level.</span></em></p>
<p class="MsoNormal"><strong><span lang="EN-AU">8. When it comes to managing a project for a client at Tisme what can clients expect from you as the project manager?</span></strong></p>
<p class="MsoNormal"><span lang="EN-AU"><strong>Answered by MAT, a project manager at Tisme.com.au:</strong> <em>When a client first reaches out to us to create their project, our first main goal is to make them feel secure. We do this by having a free, no obligation consultation regarding their project. Once we receive all of the project details, I go ahead and assemble the first management document to hand over to the client which basically contains information about our business, services we offer and also a brief overview of what we discussed earlier in order to see if we correctly understood the clients requirements. Upon receiving the client’s feedback, a time allocation and pricing structure is sent and reviewed which outlines how our time will be spent on their project and what our initial price estimates are. As you can tell, we focus on providing the client want they want, opposed to creating a project which the client had little to no say in. By following these simple steps, we are able to satisfy the client and become more efficient and effective in delivering a positive result.</em></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.spicywebdesigners.com/1157/spicy-web-designer-interview-with-mathew-carpenter-and-friends-at-tisme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spicy Web Designer Interview with Pete Stubbs of 2am</title>
		<link>http://www.spicywebdesigners.com/986/spicy-web-designer-interview-with-pete-stubbs-of-2am/</link>
		<comments>http://www.spicywebdesigners.com/986/spicy-web-designer-interview-with-pete-stubbs-of-2am/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 11:19:38 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Spicy Web Designers]]></category>
		<category><![CDATA[UK Web Designers]]></category>
		<category><![CDATA[Web Design Companies]]></category>
		<category><![CDATA[British Web Design Company]]></category>
		<category><![CDATA[Preston Web Design Company]]></category>
		<category><![CDATA[UK Web Design Company]]></category>
		<category><![CDATA[United Kingdom Web Design Company]]></category>
		<category><![CDATA[web design company]]></category>
		<category><![CDATA[Wesham Web Design Company]]></category>

		<guid isPermaLink="false">http://spicywebdesigners.com/?p=986</guid>
		<description><![CDATA[
Pete Stubbs is the managing director at 2am a company in Wesham, Preston in England in the UK. 2am has been in business for the past 20 years. The business currently provides services for PPC marketing, Search Engine Optimization, Web Design and Graphic Design and has an extensive portfolio available online.  2am is an [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="text-align: center;"><a href="http://www.2amdesign.co.uk/"><img class="aligncenter size-full wp-image-987" title="pete_stubbs_2am" src="http://spicywebdesigners.com/wp-content/uploads/2009/04/pete_stubbs_2am.jpg" alt="" width="450" height="225" /></a></p>
<p class="MsoNormal"><strong>Pete Stubbs</strong> is the managing director at 2am a company in Wesham, Preston in England in the UK.<span> </span>2am has been in business for the past 20 years.<span> </span>The business currently provides services for PPC marketing, Search Engine Optimization, Web Design and Graphic Design and has an extensive portfolio available online.<span> </span><span> </span>2am is an “AdWords Qualified Company” meaning that they have been qualified by Google to provide Adwords consulting on how you can use Adwords to run your advertising.</p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span style="color: black;">1. How many people currently work at 2am? </span></strong><strong></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span><em>There are currently nine people here at 2am</em><br />
<span style="color: black;"><br />
<strong>2. On your site it says &#8220;we are an award winning agency&#8230;&#8221;  What awards have you won?</strong></span></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><span>There is a local Cheese maker </span><strong><span>Dewlay Cheese</span></strong><span> for whom we won the award for their cheese labels.</span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"><br />
<strong>3. What is your company known for and what business problem are you trying to answer?</strong></span><strong></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span><em>We are well known for our creativity and brand management skills. We want businesses to succeed and therefore we answer the age of problem of how our clients communicate within their sector.</em></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"><br />
<strong>4. How long has 2am been in business?</strong></span><strong></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span><em>2am has been in business for over 20 years.</em></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"><br />
<strong>5. Where did the company name come from?  2am &#8211; is that when the best web design work is done?</strong></span><strong></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span> </span></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span><em>The name 2am was created by the original founders who both had the initial AM thus the two AM&#8217;s! Nowadays of course, this is when the best ideas pop into our heads!</em><strong></strong></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"><br />
<strong>6. Have you developed any in-house technologies that you use to market to your customer that give you a unique advantage in the web design marketplace?</strong></span><strong></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span> </span></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span><em>Our in-house SEO skills together with our experience in design give us the edge over most competitors!</em><strong></strong></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"><br />
<strong>7. Why should someone hire 2am for their next web or graphic design project?</strong></span><strong></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span> </span></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><span>Basically 2am create work which exceeds our clients’ expectations and our designs always aim to push the boundaries of creativity, as-well as communicate effectively &#8211; this may be an obvious answer but it’s surprising how many designs applications there are out there that are frankly utterly shit. The client should always receive design solutions that work effectively!<strong></strong></span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><span> </span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><span>Some web design companies are good at development but terrible at design. Others are good at design but not too hot on development. Most </span><span>don’t</span></em><span><em> have the in-house capabilities of SEO &#8211; 2am have it all!</em></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"><br />
<strong>8. What do you feel is the biggest barrier to overcome for a web design company like yours currently?</strong></span><strong></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><span>I think the biggest problem (which also links to the question above) is that many clients have had web sites created without the end user in mind and </span><span>therefore</span><span> just don&#8217;t work.</span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><span> </span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><span>Too many websites not only look rubbish but don&#8217;t function to the browser, search engines or user so its our job to educate the customers and give them the confidence back!</span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span><em>So the biggest barrier therefore is trust!</em></span></p>
<p class="MsoNormal" style="margin-bottom: 5pt; line-height: normal;"><span style="color: black;"><br />
<strong>9. Being an &#8220;Adwords Qualified Company&#8221; what advantages does this give your company in developing, managing and working on PPC projects and do you find that a lot of people are interested in your company because you are &#8220;Adwords Qualified&#8221;?</strong></span><strong></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span><em>We feel that with the experience we have in developing &#8221;Adwords&#8221; campaigns speaks for its self and we would only offer products and services which will benefit our customer. We feel that customers are interested in 2am because of our experience and the fact that we offer all these services in house gives the customer the complete package.</em></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"><br />
<strong>10. What is the &#8220;Dream Analytics &amp; Reports&#8221; feature all about on your company&#8217;s website?  I see that it’s coming soon but what can you tell us about it now?</strong></span><strong></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span><em>Dream will be a service that analyses data from search engines and allows us to identify strengths and weaknesses in our customers campaigns enabling us to ensure that either fixes are made or areas are developed and capitalized upon. We will be giving complicated statistics and analytics the human touch!</em></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.spicywebdesigners.com/986/spicy-web-designer-interview-with-pete-stubbs-of-2am/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spicy Web Designer Interview with Rhiannon Cunag of 21 Ruby Lane</title>
		<link>http://www.spicywebdesigners.com/968/spicy-web-designer-interview-with-rhiannon-cunag-of-21-ruby-lane/</link>
		<comments>http://www.spicywebdesigners.com/968/spicy-web-designer-interview-with-rhiannon-cunag-of-21-ruby-lane/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 19:44:16 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[American Web Designers]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Spicy Web Designers]]></category>
		<category><![CDATA[Web Design Companies]]></category>
		<category><![CDATA[American Web Designer]]></category>
		<category><![CDATA[Arizona Web Designer]]></category>
		<category><![CDATA[Fountain Hills Web Designer]]></category>
		<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[web designer]]></category>

		<guid isPermaLink="false">http://spicywebdesigners.com/?p=968</guid>
		<description><![CDATA[

Rhiannon Cunag is an illustrator and web designer and is one half of the team at 21 Ruby Lane who lives in Fountain Hills, Arizona in the United States. She graduated from the Ringling College of Art in 2005 and Design in Sarasota, Florida where she gained a strong foothold in the sound principles of [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><a href="http://spicywebdesigners.com/wp-content/uploads/2009/03/rhiannon_cunag_21ruby.jpg"><img class="aligncenter size-full wp-image-969" title="rhiannon_cunag_21ruby" src="http://spicywebdesigners.com/wp-content/uploads/2009/03/rhiannon_cunag_21ruby.jpg" alt="" width="450" height="225" /></a></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong>Rhiannon Cunag</strong> is an illustrator and web designer and is one half of the team at 21 Ruby Lane who lives in Fountain Hills, Arizona in the United States.<span> </span>She graduated from the Ringling College of Art in 2005 and Design in Sarasota, Florida where she gained a strong foothold in the sound principles of design and illustration that has served her well in her career to date.<span> </span>She started designing for the web back on college and has incorporated the web into her designs ever since.<strong></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span style="color: black;"> </span></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span style="color: black;">1. How did you get started in web design? </span></strong><strong></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"><em>I&#8217;m an illustrator and designer by trade, but I&#8217;ve always enjoyed the internet and made my own websites for my portfolio. I had a good many friends who needed help making websites for their portfolio, so they always came to me. I devised a personal project that required a website that was a bit out of my technical realm and sought out the help of a professional and found Valerie. We worked so well together that I proposed we team up and start a web design business. This gave me the opportunity to work in the areas I was more comfortable in, such as design, marketing, and even face time with clients. And for Valerie, it allows her to expand her skills as a coder.</em></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span style="color: black;">2. When did you start designing websites? </span></strong><strong></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"><em>In college, so in my twenties.</em></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span style="color: black;">3. What are the biggest challenges that you face in web design currently? </span></strong><strong></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"><em>Competition! Lol, actually I&#8217;d say that the biggest challenge is how the internet is constantly changing, it&#8217;s important to be able to keep up with all the different browsers, their different versions, etc. As well as all the different uses that the internet has &#8211; once upon a time, the internet was just about simply relaying information, usually in one form, now it&#8217;s developed into several different forms, forums, blogging, social networking, etc. The internet is seen as a business tool. </em></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span style="color: black;">4. Why do you refer to yourself as a Front-end developer over calling yourself a web designer? </span></strong><strong></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"><em>Is it a way to brand yourself to your clients? I don&#8217;t think we actually go by a particular label &#8211; names, though they may have meaning, are just fancy talk in my opinion. Though I will say that for me, with my background in visual arts, I&#8217;ve always felt that the way a website looks is the first impression anyone is going to receive. Functionality is absolutely important, and does not take a back seat. But I think looks are what set you apart &#8211; when your audience visits your website, you want them to be able to say this &#8220;looks&#8221; like a professional, and reliable website, whether you&#8217;re selling books, clothing, or just information. Next comes the user experience, how everything flows, how easy it is to maneuver through the site.</em></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span style="color: black;">5. Where did you go to school and has it helped you become a better web designer/front-end developer? </span></strong><strong></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"><em>I attended Ringling College of Art and Design, and in terms of graphic design and illustration, yes, I would say that the education I received there was extremely important for getting me to where I am today. Valerie attended Ivy Tech, a CC in Indiana, and she would say it did not really contribute to getting her to this point. She is mostly self-taught, which shows her passion for web design. She has completely immersed herself in it.</em></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"><br />
<strong>6. Since you first started how has the web design industry changed? Has it changed for the better? If so, how? If not, please explain? </strong></span><strong></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"><em>Probably the switch from table-based layouts to CSS, which has been ongoing for the past 5 or 6 years. So we&#8217;ve seen some of that transition.  I don&#8217;t think anyone would disagree that we are much better off with CSS!</em></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"><br />
<strong>7. What are your favorite tools to use when designing a website? Why are they your favorite tools? </strong></span><strong></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"> </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"><em>For the design aspect, I love to use Illustrator, I&#8217;m not a big Photoshop fan, I love clean and simple vector graphics. For developing websites, Firebug (FF add-on) &#8211; for easy troubleshooting for any CSS issues, and also test changes in real time before changing the code.</em></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"><br />
<strong>8. Where did the idea for 21 Ruby Lane and how do you guys currently divide the work?  I see that you are more graphic design oriented while Valerie has more of a development background? </strong></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span style="color: black;"> </span></strong></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><em><span style="color: black;">The name? Lol, I liked numbers and Valerie liked colors, so we both picked two we liked and put it together. We liked how it sounded like an address. I then built our first website to match that idea, as if the viewer was looking into a storefront (you can see 21RL VER1 <a href="http://original.21rubylane.com/" target="_blank"><span style="color: black;">http://original.21rubylane.com/</span></a>).  I concentrate on all the visual design aspects, the look and layout of a site. I also work with clients one on one, discussing their project needs. Valerie concentrates on all the technical aspects; I can just hand a site design to her and she gives it functionality.</span></em></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"><em> </em></span><span style="color: black;"><strong>9. What do you think are the benefits of working with a smaller organization such as yours?</strong></span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="color: black;"><em>As a small business, and as a freelancer, I find that it&#8217;s easy to come across many people who want to take advantage of you. For me, creating 21RL was about bringing my personal sense of aesthetics, as well as my desire to help bring to small businesses the opportunity to work with people who understand what it&#8217;s like to be a startup and to be a small fish in a big pond (web and graphic design is an extremely competitive field) who will bring their vision to life and be there every step as their business grows. And being a duo, we are able to concentrate and work along side the clients better than a large company divying up the work. We can give them a unique website, not something templated, that really speaks their voice, and has their personality. And on a personal level, I like to think that I really do care about the success of their business, giving them unique and great design will hopefully help them achieve that success.</em></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.spicywebdesigners.com/968/spicy-web-designer-interview-with-rhiannon-cunag-of-21-ruby-lane/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Spicy Web Designer Interview with Nathanael Ellacott of E Media Architects</title>
		<link>http://www.spicywebdesigners.com/899/spicy-web-designer-interview-with-nathanael-ellacott-of-e-media-architects/</link>
		<comments>http://www.spicywebdesigners.com/899/spicy-web-designer-interview-with-nathanael-ellacott-of-e-media-architects/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 19:33:37 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Canadian Web Designers]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Spicy Web Designers]]></category>
		<category><![CDATA[Web Design Companies]]></category>
		<category><![CDATA[Canadian Web Design Company]]></category>
		<category><![CDATA[Kitchener Web Design Company]]></category>
		<category><![CDATA[Kitchener-Waterloo Web Design Company]]></category>
		<category><![CDATA[Ontario Web Design Company]]></category>
		<category><![CDATA[Waterloo Web Design Company]]></category>
		<category><![CDATA[web design company]]></category>

		<guid isPermaLink="false">http://spicywebdesigners.com/?p=899</guid>
		<description><![CDATA[
Nathanael Ellacott is one half of the husband and wife team behind E Media Architects, a web development company based out of Kitchener-Waterloo in Ontario, Canada. Together with his wife, Allison, they have been building a web development company since the spring of 2004. They currently keep all of their web design work “in-house” and [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="text-align: center;"><a href="http://www.emediaarchitects.com"><img class="aligncenter size-full wp-image-900" title="e_media_architects_homepage" src="http://spicywebdesigners.com/wp-content/uploads/2009/03/e_media_architects_homepage.jpg" alt="" width="450" height="225" /></a></p>
<p class="MsoNormal"><strong><span lang="EN-CA">Nathanael Ellacott</span></strong><span lang="EN-CA"> is one half of the husband and wife team behind E Media Architects, a web development company based out of Kitchener-Waterloo in Ontario, Canada.<span> </span>Together with his wife, Allison, they have been building a web development company since the spring of 2004.<span> </span>They currently keep all of their web design work “in-house” and have personally seen to all the web design projects that they take on at E Media Architects.<span> </span>Nathanael handles more of the development and coding while Allison handles more of the design and marketing aspects of running E Media Architects.<span> </span>One area of business is helping Automotive Dealerships getting setup with a web presence that works for their sector of business.</span></p>
<p class="MsoNormal"><strong><span lang="EN-CA">1. How long has E Media Architects been in business?</span></strong></p>
<p class="MsoNormal"><em><span lang="EN-CA">My wife and I started <a href="http://www.emediaarchitects.com">E Media Architects</a> in the spring of 2004.<span> </span>Thanks to the ongoing support of our clients, so far we have enjoyed five years in business here in Kitchener-Waterloo, Ontario.<span> </span></span></em></p>
<p class="MsoNormal"><strong><span lang="EN-CA">2. I know that you are currently a Husband and Wife team but I am curious if you hire any freelance web designers or developers or if you have anyone else working in-house?<span> </span>If so, how many other employees do you have?</span></strong></p>
<p class="MsoNormal"><em><span lang="EN-CA">We do not currently employ anyone or hire external freelancers. We had one past project where we hired an extra hand for coding.  But other than that, we have done all the design and development work ourselves.</span></em></p>
<p class="MsoNormal"><strong><span lang="EN-CA">3. How does your company feel about outsourcing? </span></strong></p>
<p class="MsoNormal"><em><span lang="EN-CA">Well, Web design work tends to come in spurts, and turn-around time is important. So it’s fair to argue that a higher volume of work could be accomplished faster if we were to outsource or hire additional help. <span> </span>Of course, you never know how things might develop in the future.<span> </span>But our intention has always been to keep to just the two of us.<span> </span>Our goal is simply to provide for our family.<span> </span>Our clients also value being able to deal directly with the people who will be doing the actual work, from planning to completion to providing support for hosting and E-mail.<span> </span>On a practical level, this has meant that rather than taking every job we can get our hands on, we strive to cultivate our reputation for outstanding person-to-person service with a view to building a limited but loyal repeat clientele.</span></em></p>
<p class="MsoNormal"><strong><span lang="EN-CA">4. What role do you take in projects currently?<span> </span>Do you handle more of the coding or design related aspects or both?</span></strong></p>
<p class="MsoNormal"><em><span lang="EN-CA">I take the lead in coding.<span> </span>I do most of the development, and also answer clients’ technical questions and manage hosting.<span> </span>My wife, Allison, does some of the coding and handles all the graphic design for printed applications, marketing strategies, and domain name registrations, the final quality-control testing for Web projects, writes content and deals with the everyday management of our company, E Media Architects. </span></em></p>
<p class="MsoNormal"><em><span lang="EN-CA">But with Web design, we share the work 50/50.<span> </span>While we tend to work on our initial design concepts independently, it always ends up a team effort, because all designs need small tweaks (at minimum).<span> </span>When a person is working totally alone it can be easy for inspiration to run dry or to lose objectivity after you’ve stared at the same layout for hours.<span> </span>This is a classic design hurdle for many freelancers.<span> </span>So in our case, we avail ourselves of the advantage of always having another person to bounce ideas off of and to offer realistic criticism of the work.<span> </span>This really improves the end quality of the entire project.<span> </span></span></em></p>
<p class="MsoNormal"><strong><span lang="EN-CA">5. Does your company work off of a proprietary platform that was built-in house or do you use pre-built platforms (WordPress, ExpressionEngine, osCommerce, etc.) to run your clients online web presences?</span></strong></p>
<p class="MsoNormal"><em><span lang="EN-CA">We use WordPress when blog-style functionality is the focus of a site.<span> </span></span></em></p>
<p class="MsoNormal"><em><span lang="EN-CA">Generally speaking, we custom build every aspect of a site for the optimal fit to the clients’ needs.<span> </span></span></em></p>
<p class="MsoNormal"><em><span lang="EN-CA">At the moment, most of our clients do not have in-house staff assigned to handle site maintenance, so they just get us to update their site for them as the need arises.<span> </span>If they want to regularly manage certain portions of their content themselves, our approach has been to identify the repetitive tasks they need to perform and then build simple management tools to specifically handle these isolated functions.<span> </span>That way, clients are only presented with the features they really need to complete the task, which makes their job very efficient.</span></em></p>
<p class="MsoNormal"><strong><span lang="EN-CA">6. What are some of the most frequent questions people ask about your business and how do you answer them?</span></strong></p>
<p class="MsoNormal"><strong><em><span lang="EN-CA">“Are you hiring?”</span></em></strong><em><span lang="EN-CA"><span><strong> </strong> </span>The answer is, while we’re very flattered that you would like to work with us, for now we’re sticking to just the two of us.</span></em></p>
<p class="MsoNormal"><strong><em><span lang="EN-CA">“Where did you go to school?”</span></em></strong><em><span lang="EN-CA"><span> </span>We are open about the fact that we are both self-taught, and that we value keeping up-to-date by learning new techniques every day.<span> </span>We have also benefitted from the practical skills we each learned in our years of previous work experience – Allison in graphic design and me in Internet service and computer hardware.<span> </span></span></em></p>
<p class="MsoNormal"><em><span lang="EN-CA"><strong>“I have a Web site that needs help. Can you fix it up/finish it?”</strong> </span></em><em><span lang="EN-CA"><span> </span>We explain that we primarily do all-in-one custom Web work.<span> </span>If an existing site’s code is dysfunctional or unfinished, there is no telling the extent of the issues it may have.<span> </span>So it’s going to be more cost-effective for the client to have us start fresh than to track down a problem and try to find a remedy for it.<span> </span>Furthermore, if it is the design that needs help, a new overall concept is usually more effective than trying to patch up a reinterpretation of someone else’s vision.<span> </span>On the other hand, if they do not need help with their site code and are just looking for us to provide a new design concept, we are willing to supply an artwork file to them which they can implement as they wish. </span></em></p>
<p><strong></strong></p>
<p class="MsoNormal"><strong><span lang="EN-CA">7. What are the biggest challenges you currently face with web design in your company?</span></strong></p>
<p><em><span lang="EN-CA">Specific to Web design, the biggest challenge is helping the public to really understand</span></em></p>
<ol>
<li><em><span lang="EN-CA">the objectives and process in Web site creation;</span></em><em></em></li>
<li><em><span lang="EN-CA">the value of the Internet as a medium for business; and</span></em></li>
<li><em></em><em><span lang="EN-CA">what to look for and expect in a Web company.<span> </span></span></em></li>
</ol>
<p class="MsoNormal"><em><span lang="EN-CA">Many people fail to grasp the purpose and value of creating a Web presence that can really compete in business.<span> </span>They know they need a site – they may even want a decent one – but they cannot confidently move forward.<span> </span>This is often because they haven’t been sufficiently exposed to the technology or the industry to even know what questions to ask.<span> </span>Therefore, they may not be prepared for the investment of time and money it will take to turn out what they have envisioned.<span> </span>And many do not equate getting a Web site with first seeking out a professional who both suits their business objectives and whom they can trust.</span></em></p>
<p class="MsoNormal"><em><span lang="EN-CA">To assist potential and current customers, we strive to give them the tools they need to make decisions.<span> </span>Our <a href="http://www.emediaarchitects.com/news/ ">Web site’s blog</a> and our monthly clients-only E-newsletter, emaNews, are used to help educate and inform business people about what to consider when developing and expanding their Web site, how to understand Web concepts and online tools, and what to fundamentally look for in a Web company.<span> </span>While we don’t expect readers to learn everything there is to know, we hope they can feel a little more prepared to face the choices they need to make.</span></em></p>
<p class="MsoNormal"><em><span lang="EN-CA">We also want to help people select the designer that’s right for them.<span> </span>To do so, differentiation is vital.<span> </span></span></em></p>
<p class="MsoNormal"><em><span lang="EN-CA">The reality is that there are many competent designers out there – each with their own strengths – and so blanket statements like “we’re the best” don’t really accomplish anything in terms of helping the client make an informed choice. In fact, it just reinforces the industry concept that all designers and companies offer basically the same product and service on a varying scale of better to worse.<span> </span>We feel this isn’t true.<span> </span>A good doctor wants the patient to get the best care possible from whichever physician is best suited for that particular case.<span> </span>Likewise, in Web we feel the customer should be encouraged to find the designer that is the best fit with their business, tastes and needs.<span> </span>So we try to be open about what we have to offer, what makes us different and what they can expect from us.<span> </span></span></em></p>
<p class="MsoNormal"><strong><span lang="EN-CA">8. What is your company best known for in the web design industry?</span></strong></p>
<p class="MsoNormal"><em><span lang="EN-CA">Within the industry, I can definitely say that we are primarily known for modern, clean, and stylish design.<span> </span>Our work has a signature look.</span></em></p>
<p class="MsoNormal"><em><span lang="EN-CA">People also think of us as “that husband and wife who do Web design.”<span> </span>It isn’t very common to find a young married couple who work together every day, so that makes us stand out.</span></em></p>
<p class="MsoNormal"><em><span lang="EN-CA">We also are known for <a href="http://www.emediaarchitects.com/auto_dealers.php">helping automotive dealers</a> create unique custom Web sites that represent their individuality on-line.</span></em></p>
<p class="MsoNormal"><em><span lang="EN-CA">Perhaps the most notable aspect, though, is how seriously we take both our work and how we operate our business.<span> </span>Our clients are real-world businesses, and they count on us to respond to them promptly, to be organized, punctual and reliable.<span> </span>It has been commented that this is what’s missing in some designers.<span> </span>So, while the customer may truly value a designer who is a genius at their art, they really also need someone who will answer their messages and keep an appointment.<span> </span>So both through our Web site and in person, we try to reflect that we value these qualities too.</span></em></p>
<p class="MsoNormal"><span lang="EN-CA"><em>Our business model is also viewed as a little different because, rather than high turnover, we’ve focused on developing ongoing relationships with our clients.<span> </span>For example, if you find a good lawyer or mechanic, you don’t just go to him once – you return whenever you need some advice or assistance.<span> </span>It’s the same for us.<span> </span>We don’t just build a site and then it’s over.<span> </span>We stay on hand for ongoing maintenance, expansion and auxiliary print marketing. In this way, we develop a rapport with our clients.<span> </span>This attracts a more discerning client who takes a long-term view of their marketing, and it fosters a respectful relationship. We come to understand the nature of their business, and they come to trust our recommendations.<span> </span>Many of our clients request our input on their general marketing or ask us to develop concepts for specific campaigns.</em><span> </span></span></p>
<p class="MsoNormal"><strong><span lang="EN-CA">9. Do you have a physical office where clients can come in for a consultation or does the office run virtually?</span></strong></p>
<p class="MsoNormal"><em><span lang="EN-CA">Because there are just the two of us, we work from an office in our home. Doing so helps keep operating costs low and affords us the scheduling flexibility we need for our personal circumstances.</span></em></p>
<p class="MsoNormal"><em><span lang="EN-CA">When it comes to Web and E-mail hosting, that is all located in an off-site datacentre.</span></em></p>
<p class="MsoNormal"><em><span lang="EN-CA">For client meetings, we go to their place of business whenever possible, but when necessary we will have clients to our home.<span> </span><span> </span>We prefer to communicate via E-mail, opting for telephone or in-person meetings only when doing so would be more efficient. </span></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.spicywebdesigners.com/899/spicy-web-designer-interview-with-nathanael-ellacott-of-e-media-architects/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Spicy Web Designer Interview with Tony Xia</title>
		<link>http://www.spicywebdesigners.com/805/spicy-web-designer-interview-with-tony-xia/</link>
		<comments>http://www.spicywebdesigners.com/805/spicy-web-designer-interview-with-tony-xia/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 05:29:37 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[New Zealand Web Designers]]></category>
		<category><![CDATA[Spicy Web Designers]]></category>
		<category><![CDATA[Web Design Companies]]></category>
		<category><![CDATA[New Zealand Web Design Company]]></category>
		<category><![CDATA[New Zealand Web Designer]]></category>
		<category><![CDATA[web designer]]></category>

		<guid isPermaLink="false">http://spicywebdesigners.com/?p=805</guid>
		<description><![CDATA[



Tony Xia is a web designer from New Zealand. He started designing websites 2 years ago. He showcases some of his design skills at ShadowGem which is his portfolio and it also works with a web developer by the name of Alan Peng at MadeByCool, a web design studio based in New Zealand. Originally Tony [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="text-align: center;" align="left"><a href="http://www.shadowgem.com/"><img class="aligncenter size-full wp-image-806" title="tony_xia_shadowgem" src="http://spicywebdesigners.com/wp-content/uploads/2009/02/tony_xia_shadowgem.jpg" alt="" width="450" height="225" /></a></p>
<p class="MsoNormal" style="text-align: left;" align="left">
<p class="MsoNormal" style="text-align: left;" align="left"><a href="http://www.shadowgem.com/MyBlog/"><img class="aligncenter size-full wp-image-807" title="tony_xia_blog" src="http://spicywebdesigners.com/wp-content/uploads/2009/02/tony_xia_blog.jpg" alt="" width="450" height="225" /></a></p>
<p class="MsoNormal" style="text-align: left;" align="left">
<p class="MsoNormal" style="text-align: left;" align="left"><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;">Tony Xia</span></strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"> is a web designer from New Zealand.<span> </span>He started designing websites 2 years ago.<span> </span>He showcases some of his design skills at ShadowGem which is his portfolio and it also works with a web developer by the name of Alan Peng at MadeByCool, a web design studio based in New Zealand.<span> </span>Originally Tony went to university at the University of Auckland for Computer Science and later went on to study Digital Media with Merit from Media Design School.<span> </span>One of his latest projects is called “FeedWeaver”, an RSS service that allows you to create your own personalized RSS Feeds.</span></p>
<p class="MsoNormal" style="text-align: left;" align="left"><span style="font-size: 12pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;"> </span></p>
<p class="MsoNormal" style="text-align: left;" align="left"><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;">1. How did you get started in web design?</span></strong></p>
<p class="MsoNormal" style="text-align: left;" align="left"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"> </span></p>
<p class="MsoNormal" style="text-align: left;" align="left"><em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;">When I was a child I love drawing stuff and paint them with different colors which is why I took the media design course because I know that is the right thing for me to do. Before I become a web designer I was also a banking advisor, and a programmer. </span></em></p>
<p class="MsoNormal" style="text-align: left;" align="left"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"> </span></p>
<p class="MsoNormal" style="text-align: left;" align="left"><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;">2. When did you start designing websites?</span></strong></p>
<p class="MsoNormal" style="text-align: left;" align="left"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"> </span></p>
<p class="MsoNormal" style="text-align: left;" align="left"><em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;">2 years ago, was trying to do a website for my friend. That site I did was terrible by the way, but every time I look at it, it always makes me laugh. </span></em></p>
<p class="MsoNormal" style="text-align: left;" align="left"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"> </span></p>
<p class="MsoNormal" style="text-align: left;" align="left"><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;">3. What are the biggest challenges that you face in web design currently?</span></strong></p>
<p class="MsoNormal" style="text-align: left;" align="left"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"> </span></p>
<p class="MsoNormal" style="text-align: left;" align="left"><em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;">Industry wise, I think getting new clients is the hardest job right now. I guess the recession really drags us down a bit; however the good thing is because we are small, and we need very little amount of money to run the company (made by cool).</span></em></p>
<p class="MsoNormal" style="text-align: left;" align="left"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"> </span></p>
<p class="MsoNormal" style="text-align: left;" align="left"><em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;">Design wise, I think is how to get inspiration for your projects. Of course someone will tell you “go check these web galleries”, however I still think that is not good enough. I always believe you can get inspiration from anything anywhere, e.g. check your local art galley, go to the park you like, go out grab your camera and shoot at anything you like…</span></em></p>
<p class="MsoNormal" style="text-align: left;" align="left"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"> </span></p>
<p class="MsoNormal" style="text-align: left;" align="left"><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;">4. Do you code on any of your web design projects? And if so, do you consider yourself a &#8220;Front-End Coder&#8221;? Why or Why Not?</span></strong></p>
<p class="MsoNormal" style="text-align: left;" align="left"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"> </span></p>
<p class="MsoNormal" style="text-align: left;" align="left"><em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;">Yup, I do all the front-end coding and design; Alan is our developer who is responsible for all the back-end stuff.</span></em></p>
<p class="MsoNormal" style="text-align: left;" align="left"><em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"> </span></em></p>
<p class="MsoNormal" style="text-align: left;" align="left"><em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;">“Front-end Coder” hmm, I guess you can say so. Here are my couple thoughts, a web designer these days should be able to do the design and coding, and personally I won’t do any PSD/FW to HTML sort stuff for someone else, I think this should be done by the same person (lots of people might disagree with me on this lol). </span></em></p>
<p class="MsoNormal" style="text-align: left;" align="left"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"> </span></p>
<p class="MsoNormal" style="text-align: left;" align="left"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"> </span></p>
<p class="MsoNormal" style="text-align: left;" align="left"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"> </span></p>
<p class="MsoNormal" style="text-align: left;" align="left"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"> </span></p>
<p class="MsoNormal" style="text-align: left;" align="left"><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;">5. Where did you go to school and has it helped you become a better web designer?</span></strong></p>
<p class="MsoNormal" style="text-align: left;" align="left"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"> </span></p>
<p class="MsoNormal" style="text-align: left;" align="left"><em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;">I went to Media Design School, it is one of the best design schools in New Zealand, the most expensive one for sure ^_^. I think the time I spent there was totally worth it, awesome tutor, great peers which really helped me grow and develop.</span></em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"><strong></strong></span></p>
<p class="MsoNormal" style="text-align: left;" align="left"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"><strong>6. Since you first started how has the web design industry changed? Has it changed for the better? If so, how? If not, please explain?</strong></span></p>
<p class="MsoNormal" style="text-align: left;" align="left"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"> </span></p>
<p class="MsoNormal" style="text-align: left;" align="left"><em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;">Web design industry has changed a lot. We have experienced several different design approaches, from glossy button to grungy texture style, furthermore web 2.0 really shined, lots of awesome web based applications, social community based websites came out. We are certainly heading towards to a brighter future, and I still believe we only explored the 30% of the internet, there are still plenty room for us to explore. If you have an idea, do not be afraid to try, you site could be the next Digg or YouTube….<span> </span></span></em></p>
<p class="MsoNormal" style="text-align: left;" align="left"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"> </span></p>
<p class="MsoNormal" style="text-align: left;" align="left"><strong><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;">7. What are your favorite tools to use when designing a website? Why are they your favorite tools?</span></strong></p>
<p class="MsoNormal" style="text-align: left;" align="left"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"> </span></p>
<p class="MsoNormal" style="text-align: left;" align="left"><em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;">I use Fireworks for all my websites. I was a loyal Photoshop user before; however after I tried Fireworks I simply can not live without it anymore. It is great for web design.</span></em></p>
<p class="MsoNormal" style="text-align: left;" align="left"><em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"> </span></em></p>
<p class="MsoNormal" style="text-align: left;" align="left"><em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;">First, fireworks is designed for web design, not like Photoshop; Second, much easier to control the size of different elements, and great for grid based layout; Third, smaller file size.</span></em></p>
<p class="MsoNormal" style="text-align: left;" align="left"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"><br />
<strong>8. How have you found building a web studio called MadebyCool with the help of Alan Peng?  Do you hire outside talent or is it a two-man team?</strong></span></p>
<p class="MsoNormal" style="text-align: left;" align="left">
<p class="MsoNormal" style="text-align: left;" align="left"><a href="http://www.madebycool.co.nz/"><img class="aligncenter size-full wp-image-808" title="tony_xia_madebycool" src="http://spicywebdesigners.com/wp-content/uploads/2009/02/tony_xia_madebycool.jpg" alt="" width="450" height="225" /></a></p>
<p class="MsoNormal"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"> </span></p>
<p class="MsoNormal"><em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;">It’s been great so far, we are very good friends in real life, and we work well together, I would say we are the perfect fit. Alan is very talented; I know he is the one when I first met him at university.</span></em></p>
<p class="MsoNormal"><em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;"> </span></em></p>
<p class="MsoNormal"><em><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: black;">Yes, we do have couple others work as contractor with us.</span></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.spicywebdesigners.com/805/spicy-web-designer-interview-with-tony-xia/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
