<?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>Casa Nova Designs&#039; Blog &#187; Casa Nova Designs Blog</title>
	<atom:link href="http://blog.casanovawebdesign.com/tag/design-process/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.casanovawebdesign.com</link>
	<description>a blog maintained by Casa Nova Designs, discussing web issues, standards, and computer science.</description>
	<lastBuildDate>Mon, 15 Aug 2011 11:00:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Local web development vs remote web development</title>
		<link>http://blog.casanovawebdesign.com/2011/01/local-web-development-vs-remote-web-development/</link>
		<comments>http://blog.casanovawebdesign.com/2011/01/local-web-development-vs-remote-web-development/#comments</comments>
		<pubDate>Wed, 12 Jan 2011 15:35:55 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[For Developers]]></category>
		<category><![CDATA[Design Process]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://blog.casanovawebdesign.com/?p=142</guid>
		<description><![CDATA[Local Workflow There are two primary development workflows web developers use. One option is to install all necessary servers, libraries, databases etc on their working machine, do their editing their and then push the changes (hopefully through some sort of code revision system, but often through ftp) to the production server. Pros Ability to work without network [...]]]></description>
			<content:encoded><![CDATA[<h1><strong>Local Workflow</strong></h1>
<p>There are two primary development workflows web developers use. One option is to install all necessary servers, libraries, databases etc on their working machine, do their editing their and then push the changes (hopefully through some sort of code revision system, but often through ftp) to the production server.</p>
<h3>Pros</h3>
<ul>
<li>Ability to work without network connection</li>
</ul>
<h3>Cons</h3>
<ul>
<li>You must install entire server environment on your personal machine, this may be a bad thing for a laptop with limited resources</li>
<li>You have to keep your working machine&#8217;s environment up to date with the versions the server is using</li>
<li>You usually won&#8217;t want to keep a test dataset in a database on your working machine so you&#8217;ll need to make a remote connection to your db server ANYWAY eliminated the ability to work without a network connection</li>
<li>To show clients the current version you have to push changes to a server.</li>
</ul>
<h1>Remote Workflow</h1>
<p>Some developers choose to set up a development server (which can either be a separate machine or simple a separate subdomain on the production server). Their code lives there, when they make changes on their working copy there (again, hopefully using some sort of code revision system like subversion or git). This model allows you to run code in an environment more similar to what it will actually be run on in production. It also allows you to allow collaborators, backers or clients to view the current working copy of the code. You obviously don&#8217;t want to be working on the code for a production site (you aren&#8217;t that good, you will break things, and for a site with any reasonable amount of users this is unacceptable), but this model works well for working on development code.</p>
<p>Editing code that lives on a remote server. The simplest solution for editing code on a remote server is to ssh in the machine and use a command line editor such as vi, emacs or nano to edit the code. This is somewhat distasteful to some developers especially those who are used to GUI text editors. SSHFS allows a developer to mount a directory on a remote machine as a directory on their local machine in a way that is transparent to the operating system. This is an ideal solution because it allows you to edit code with the tools you&#8217;re used to using. We plan on making a blog post about how sshfs and autofs make web development easier, but until then check out google for info about them.</p>
<h3>Pros</h3>
<ul>
<li>Code is run on an environment more like what it will be in production</li>
<li>Database connections are easier</li>
<li>It is easy to show clients the code you&#8217;re currently working on</li>
<li>It is often times easier to push changes to the production version of the site</li>
</ul>
<h3>Cons</h3>
<ul>
<li>Network connection is required to do work</li>
<li>Requires setup to edit code on your local machine while it is on the remote machine
<ul>
<li>This problem is relatively easily solved, we&#8217;ll discuss this issue in a later post</li>
</ul>
</li>
</ul>
<h2>Conclusion</h2>
<p>Here at Casa Nova Designs we have found the remote workflow meets our needs and allows for more rapid development. This article is the first in a series about what our development environment is like, and how we&#8217;ve solved common web design head aches to streamline our workflow. In the next article we&#8217;ll show you how to use sshfs and autofs to mount remote file systems.</p>
<p>Regards,</p>
<p>Adam</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/home/?status=Local+web+development+vs+remote+web+development+http%3A%2F%2Ftinyurl.com%2F5sj2gsu" title="Post to Twitter"><img class="nothumb" src="http://blog.casanovawebdesign.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://blog.casanovawebdesign.com/2011/01/local-web-development-vs-remote-web-development/&amp;title=Local+web+development+vs+remote+web+development" title="Post to Delicious"><img class="nothumb" src="http://blog.casanovawebdesign.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://blog.casanovawebdesign.com/2011/01/local-web-development-vs-remote-web-development/&amp;title=Local+web+development+vs+remote+web+development" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://blog.casanovawebdesign.com/2011/01/local-web-development-vs-remote-web-development/&amp;title=Local+web+development+vs+remote+web+development" title="Post to Digg"><img class="nothumb" src="http://blog.casanovawebdesign.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://blog.casanovawebdesign.com/2011/01/local-web-development-vs-remote-web-development/&amp;title=Local+web+development+vs+remote+web+development" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://blog.casanovawebdesign.com/2011/01/local-web-development-vs-remote-web-development/&amp;title=Local+web+development+vs+remote+web+development" title="Post to StumbleUpon"><img class="nothumb" src="http://blog.casanovawebdesign.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://blog.casanovawebdesign.com/2011/01/local-web-development-vs-remote-web-development/&amp;title=Local+web+development+vs+remote+web+development" title="Post to StumbleUpon">Stumble This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://blog.casanovawebdesign.com/2011/01/local-web-development-vs-remote-web-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer Science for Web Designers, 3 great resources</title>
		<link>http://blog.casanovawebdesign.com/2009/12/computer-science-for-web-designers-3-great-resources/</link>
		<comments>http://blog.casanovawebdesign.com/2009/12/computer-science-for-web-designers-3-great-resources/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 05:15:12 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[For Developers]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Design Process]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Web Issues]]></category>

		<guid isPermaLink="false">http://blog.casanovawebdesign.com/?p=120</guid>
		<description><![CDATA[Who Wants to Be a Computer Science Major? For those of you who don&#8217;t know. I&#8217;m a Computer Science student at the University of Tennessee Knoxville. I got into web design before I was in college and I&#8217;ve found throughout my academic journey that being a good C/C+/Python programmer has led me to be a [...]]]></description>
			<content:encoded><![CDATA[<h1>Who Wants to Be a Computer Science Major?</h1>
<p>For those of you who don&#8217;t know. I&#8217;m a Computer Science student at the University of Tennessee Knoxville. I got into web design before I was in college and I&#8217;ve found throughout my academic journey that being a good C/C+/Python programmer has led me to be a good PHP/javascript programmer. I love web design because it&#8217; s not entirely scientific, it&#8217;s much more people based, but often times when we as web design professionals must design highly scalable websites, or websites that need to be easily maintained it is neccassary that we be familiar with Computer Science principles and be accustomed to the general thought process of a Computer Scientist. I whole heartedly believe that as you grow to be a better academic programmer you will grow to be a better web professional. For those of you who have already left your college days behind you I&#8217;ve compiled a few wonderful resources for begining your journey into the realm of academic computing.</p>
<p><img class="size-full wp-image-121 alignnone" title="code_logo" src="http://blog.casanovawebdesign.com/wp-content/uploads/2009/12/code_logo.png" alt="code_logo" width="161" height="40" /></p>
<p><strong>Located at: http://code.google.com/edu</strong></p>
<p>Google code is a wonderful resource for web designers because Google&#8217;s business is web, but it&#8217;s methodology is very academic. Google&#8217;s code university is a great way to keep up to date with the new and innovative things happening at google.</p>
<p><a href="http://ocw.mit.edu"><img class="size-full wp-image-122 alignnone" title="Free Online Course Materials | MIT OpenCourseWare_1259643210833" src="http://blog.casanovawebdesign.com/wp-content/uploads/2009/12/Free-Online-Course-Materials-MIT-OpenCourseWare_1259643210833.png" alt="Free Online Course Materials | MIT OpenCourseWare_1259643210833" width="321" height="64" /></a></p>
<p><strong>Located at: http://ocw.mit.edu</strong></p>
<p>MIT, one of the world&#8217;s premere universities for Computer Science has graciously opened up their lecture halls to the masses. They&#8217;ve included everything from introduction to computer science to some of their much more advanced courses.</p>
<p><img class="size-full wp-image-123 alignnone" title="academic-earth-logo" src="http://blog.casanovawebdesign.com/wp-content/uploads/2009/12/academic-earth-logo.jpg" alt="academic-earth-logo" width="243" height="51" /></p>
<p><strong>http://academicearth.com</strong></p>
<p>Academic Earth is a wonderful resource for all subjects. It&#8217;s computer science courses include lectures from top schools such as Berkley, Stanford, and MIT.</p>
<h1>What to Take Away</h1>
<p>Some of the lectures included material that is at a graduate level, unless you&#8217;re particularly interested or talented don&#8217;t expect to understand everything that&#8217;s talked about in these courses. Remember YOU aren&#8217;t being graded over this information and even if you only understand 40% of the material that&#8217;s it&#8217;s still going to help you as you approach your day to day problems and stretch your thinking into new directions. I hope you find these resources helpful, happy coding.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/home/?status=Computer+Science+for+Web+Designers%2C+3+great+resources+http%3A%2F%2Ftinyurl.com%2F6dfnhh5" title="Post to Twitter"><img class="nothumb" src="http://blog.casanovawebdesign.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://blog.casanovawebdesign.com/2009/12/computer-science-for-web-designers-3-great-resources/&amp;title=Computer+Science+for+Web+Designers%2C+3+great+resources" title="Post to Delicious"><img class="nothumb" src="http://blog.casanovawebdesign.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://blog.casanovawebdesign.com/2009/12/computer-science-for-web-designers-3-great-resources/&amp;title=Computer+Science+for+Web+Designers%2C+3+great+resources" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://blog.casanovawebdesign.com/2009/12/computer-science-for-web-designers-3-great-resources/&amp;title=Computer+Science+for+Web+Designers%2C+3+great+resources" title="Post to Digg"><img class="nothumb" src="http://blog.casanovawebdesign.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://blog.casanovawebdesign.com/2009/12/computer-science-for-web-designers-3-great-resources/&amp;title=Computer+Science+for+Web+Designers%2C+3+great+resources" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://blog.casanovawebdesign.com/2009/12/computer-science-for-web-designers-3-great-resources/&amp;title=Computer+Science+for+Web+Designers%2C+3+great+resources" title="Post to StumbleUpon"><img class="nothumb" src="http://blog.casanovawebdesign.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://blog.casanovawebdesign.com/2009/12/computer-science-for-web-designers-3-great-resources/&amp;title=Computer+Science+for+Web+Designers%2C+3+great+resources" title="Post to StumbleUpon">Stumble This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://blog.casanovawebdesign.com/2009/12/computer-science-for-web-designers-3-great-resources/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>What do you read?</title>
		<link>http://blog.casanovawebdesign.com/2009/09/what-do-you-read/</link>
		<comments>http://blog.casanovawebdesign.com/2009/09/what-do-you-read/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 02:18:42 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[About Us]]></category>
		<category><![CDATA[Design Process]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[Web Issues]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://blog.casanovawebdesign.com/?p=92</guid>
		<description><![CDATA[Here at Casa Nova Designs, we try to stay on top of the latest in web design, web standards, and web issues. This is a difficult task considering that there are over 1 billion people who are connected to the internet. So, in order to stay up to date we rely on RSS feeds (our [...]]]></description>
			<content:encoded><![CDATA[<p>Here at Casa Nova Designs, we try to stay on top of the latest in web design, web standards, and web issues. This is a difficult task considering that there are over 1 billion people who are connected to the internet. So, in order to stay up to date we rely on RSS feeds (our favorite aggregator is Google Reader). Over the years we&#8217;ve compiled a list of design blogs (some taken from other lists of design blogs, some stumbled upon, some suggested by peers). In our quest to on top of the latest news, we&#8217;d like to ask you one question: What do you read?</p>
<p>Here&#8217;s our list of (web design related) news feeds:</p>
<table>
<tbody>
<tr>
<td><strong>456 Berea Street<br />
</strong> http://www.456bereastreet.com/feed.xml</p>
<p><strong>A List Apart<br />
</strong> http://www.alistapart.com/rss.xml</p>
<p><strong>Blog for web development<br />
</strong> http://nik.chankov.net/feed/</p>
<p><strong>Casa Nova Designs&#8217; Blog<br />
</strong> http://blog.casanovawebdesign.com/?feed=rss2</p>
<p><strong>CSS Beauty News Feed<br />
</strong> http://www.cssbeauty.com/rss/news/</p>
<p><strong>Design Research<br />
</strong> http://designresearch.wordpress.com/feed/</p>
<p><strong>digg.com: Stories / Design / Popular<br />
</strong> http://feeds.digg.com/digg/topic/design/popular.rss</p>
<p><strong>Digital Web News Feed<br />
</strong> http://www.digital-web.com/news/rss/</p>
<p><strong>FreelanceSwitch<br />
</strong> http://feeds.feedburner.com/FreelanceSwitch</td>
<td><strong>Graphic and Web Design Blog &#8211; Inspiration, Resources and Tools<br />
</strong> http://www.1stwebdesigner.com/feed/</p>
<p><strong>Line25<br />
</strong> http://feeds2.feedburner.com/Line25</p>
<p><strong>Noupe<br />
</strong> http://feeds2.feedburner.com/noupe</p>
<p><strong>SEO Book.com &#8211; Learn. Rank. Dominate<br />
</strong> http://www.seobook.com/rss.xml</p>
<p><strong>SimpleBits<br />
</strong> http://www.simplebits.com/xml/rss.xml&#8221; htmlUrl=&#8221;http://simplebits.com/</p>
<p><strong>Site Sketch 101 | Resources for becoming professional Bloggers and &#8230;&#8221;<br />
</strong> http://feeds2.feedburner.com/SiteSketch101</p>
<p><strong>Smashing Magazine<br />
</strong> http://feeds.feedburner.com/SmashingMagazine</p>
<p><strong>The Web Blend &#8211; Submitted news<br />
</strong> http://feeds.feedburner.com/TheWebBlend</p>
<p><strong>Web Design News<br />
</strong> http://www.webdesign-ne.ws/feed/</p>
<p><strong>Webdesigner Depot<br />
</strong> http://feeds2.feedburner.com/webdesignerdepot</td>
</tr>
</tbody>
</table>
<p>Did we miss anything? Do you read a blog that&#8217;s not included in this list, do you think we should start reading your blog? Leave your thoughts and suggestions in the comments.</p>
<p>Thanks everybody,</p>
<p>Adam</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/home/?status=What+do+you+read%3F+http%3A%2F%2Ftinyurl.com%2F68w5jo2" title="Post to Twitter"><img class="nothumb" src="http://blog.casanovawebdesign.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://blog.casanovawebdesign.com/2009/09/what-do-you-read/&amp;title=What+do+you+read%3F" title="Post to Delicious"><img class="nothumb" src="http://blog.casanovawebdesign.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://blog.casanovawebdesign.com/2009/09/what-do-you-read/&amp;title=What+do+you+read%3F" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://blog.casanovawebdesign.com/2009/09/what-do-you-read/&amp;title=What+do+you+read%3F" title="Post to Digg"><img class="nothumb" src="http://blog.casanovawebdesign.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://blog.casanovawebdesign.com/2009/09/what-do-you-read/&amp;title=What+do+you+read%3F" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://blog.casanovawebdesign.com/2009/09/what-do-you-read/&amp;title=What+do+you+read%3F" title="Post to StumbleUpon"><img class="nothumb" src="http://blog.casanovawebdesign.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://blog.casanovawebdesign.com/2009/09/what-do-you-read/&amp;title=What+do+you+read%3F" title="Post to StumbleUpon">Stumble This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://blog.casanovawebdesign.com/2009/09/what-do-you-read/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Commnunicating Your Vision</title>
		<link>http://blog.casanovawebdesign.com/2009/08/commnunicating-your-vision/</link>
		<comments>http://blog.casanovawebdesign.com/2009/08/commnunicating-your-vision/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 05:55:35 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[For Clients]]></category>
		<category><![CDATA[Clients]]></category>
		<category><![CDATA[Design Process]]></category>

		<guid isPermaLink="false">http://blog.casanovawebdesign.com/?p=43</guid>
		<description><![CDATA[strong{ margin-top:100px; } We here at Casa Nova Designs have been very busy designing a web based health care system (soon to be launched UsHospitalCareers.com) In our time developing this website we have learned much about ourselves and had the opportunity to improve our communication with clients greatly. As developers we do the best that [...]]]></description>
			<content:encoded><![CDATA[<style type="text/css">
strong{
margin-top:100px;
}
</style>
<p>We here at Casa Nova Designs have been very busy designing a web based health care system (soon to be launched UsHospitalCareers.com) In our time developing this website we have learned much about ourselves and had the opportunity to improve our communication with clients greatly.</p>
<p>As developers we do the best that we can to communicate our technical ideas to our clients in easy to understand language. It is important that the client is also able to communicate to a developer what they need for their project so that the project can be completed in the fastest most cost effective manner possible. Here are 5 points that we feel with make your project go smoothly.</p>
<p><strong>1.Know what you&#8217;re trying to accomplish.</strong><br />
<img style="width: 100%;" src="wp-content/uploads/2009/08/target-1024x332.jpg" alt="target" /><br />
What do you want your customers/users to accomplish by visiting your website? Do you want to provide information about the company? sell products? provide a place for employees to collaborate? We can provide all of this functionality and suggest features when necessary, but thinking about things like this in advance will make sure that your website provides a platform that can truly transform your business.</p>
<p><strong>2. Know what you like.</strong><br />
<img style="width: 100%;" src="wp-content/uploads/2009/08/selection.jpg" alt="make your selections" /><br />
If you are interested in being involved in the graphical design of your website (some clients prefer that all creative control be given to us, we find that very flattering) it is important that you know what you like. It saves several hours of development and collaboration if you are able to provide examples of websites that you like, and when possible, explanations of why you like them. &#8220;I like this web site&#8217;s colors&#8221;, or &#8220;I like the navigation of this website&#8221; are simple ways that you can let us know what you like, so we can produce a website that you love.</p>
<p><strong>3. Get your camera ready.</strong><br />
<img style='width:100%' src="wp-content/uploads/2009/08/photographer.jpg" alt="camera" /><br />
If you have any logo files, pictures of your products, employess, workspace etc. That you&#8217;d like to include on your website having those items ready will greatly reduce the time it takes for us to create your website. If you need us to take any pictures for you or to scan any images that you have a hard copy of we can also provide that service.<br />
<strong>4. Know what you want to say.</strong><br />
<img style="width: 100%;" src="wp-content/uploads/2009/08/notepad.jpg" alt="write it down" /><br />
If you already know what information you would like to have on your website including that information will help us greatly. We as developers can write content for your pages (This content is known as web copy), but often times a client is able to describe their company&#8217;s history, mission, etc. best in their own words. This may seem like a daunting task but, adding web copy is often one of the last steps in the design process and a client can write their content in tandem as the developer creates the website.</p>
<p><strong>5. Stick with it.</strong><br />
<img style='width:100%' src="wp-content/uploads/2009/08/pathway.jpg" alt="follow the straight path" /><br />
Once we&#8217;ve begun a project it is difficult to change the direction. We can when necessary make changes but, these changes will result in additional time and expense. So make sure you think about your project carefully before giving us the green light. Once you&#8217;ve laid the groundwork for your web site try to step back, design time various based upon the size of the project from a couple of days to several weeks. If you do have an idea for a developer try to contact them as quickly as possible so that they can implement your new idea with as little duplication of effort as possible.</p>
<p>For more information about communicating with developer check your <a href="http://www.smashingmagazine.com/2009/08/14/how-to-effectively-communicate-with-developers/">Smashing Magazine&#8217;s article on the subject </a>(this article is intended for audience with moderate technical knowledge)</p>
<p>Hopefully this information will help you as you work towards completion of your next web project.</p>
<p>Regards,<br />
Adam Haney<br />
Chief Developer<br />
Casa Nova Designs</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/home/?status=Commnunicating+Your+Vision+http%3A%2F%2Ftinyurl.com%2F4ms5qxb" title="Post to Twitter"><img class="nothumb" src="http://blog.casanovawebdesign.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://blog.casanovawebdesign.com/2009/08/commnunicating-your-vision/&amp;title=Commnunicating+Your+Vision" title="Post to Delicious"><img class="nothumb" src="http://blog.casanovawebdesign.com/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://blog.casanovawebdesign.com/2009/08/commnunicating-your-vision/&amp;title=Commnunicating+Your+Vision" title="Post to Delicious">Post to Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://blog.casanovawebdesign.com/2009/08/commnunicating-your-vision/&amp;title=Commnunicating+Your+Vision" title="Post to Digg"><img class="nothumb" src="http://blog.casanovawebdesign.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://blog.casanovawebdesign.com/2009/08/commnunicating-your-vision/&amp;title=Commnunicating+Your+Vision" title="Post to Digg">Digg This Post</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://blog.casanovawebdesign.com/2009/08/commnunicating-your-vision/&amp;title=Commnunicating+Your+Vision" title="Post to StumbleUpon"><img class="nothumb" src="http://blog.casanovawebdesign.com/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://blog.casanovawebdesign.com/2009/08/commnunicating-your-vision/&amp;title=Commnunicating+Your+Vision" title="Post to StumbleUpon">Stumble This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://blog.casanovawebdesign.com/2009/08/commnunicating-your-vision/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  blog.casanovawebdesign.com/tag/design-process/feed/ ) in 2.26331 seconds, on Feb 4th, 2012 at 5:45 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 4th, 2012 at 5:50 am UTC -->
