<?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>Intel Designer &#187; Getting Started</title>
	<atom:link href="http://inteldesigner.com/category/getting-started/feed" rel="self" type="application/rss+xml" />
	<link>http://inteldesigner.com</link>
	<description>Web blog of Kevin Dees</description>
	<lastBuildDate>Thu, 02 Dec 2010 20:50:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>I&#8217;m Moved</title>
		<link>http://inteldesigner.com/2010/code/im-moved</link>
		<comments>http://inteldesigner.com/2010/code/im-moved#comments</comments>
		<pubDate>Thu, 02 Dec 2010 20:49:29 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Connect]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Feature]]></category>
		<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[People]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://inteldesigner.com/?p=867</guid>
		<description><![CDATA[Hey guys look an update!]]></description>
			<content:encoded><![CDATA[<p>This blog will no longer be updated or maintained. We are moving to <a href="http://kevindees.cc">www.kevindees.cc</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://inteldesigner.com/2010/code/im-moved/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Divergence?</title>
		<link>http://inteldesigner.com/2010/code/what-is-divergence</link>
		<comments>http://inteldesigner.com/2010/code/what-is-divergence#comments</comments>
		<pubDate>Wed, 18 Aug 2010 18:28:55 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Getting Started]]></category>

		<guid isPermaLink="false">http://inteldesigner.com/?p=849</guid>
		<description><![CDATA[I’m sorry for the very rough writing here but I need to get this out of my system (will refine soon). In the early day of the web, development was a mess. Everything was intertwined and jumbled. HTML, Styles, and JavaScript lived together.]]></description>
			<content:encoded><![CDATA[<p><strong>Part One</strong>: <a href="http://inteldesigner.com/2010/code/the-principle-of-divergence">Why we need divergence</a>.</p>
<p>Because of this mess a few creative practitioners taught us to separate our content, presentation and behaviors. But, this ideal paradigm is incapable of fulfilling the needs of the web today.</p>
<p>So along came what I will call divergence; or convergence if you look at it from another perspective. Divergence in web development is the braking apart semantics, presentation, and behavior. However, it is not complete separation of the layers.</p>
<p>In divergence you can use presentation with semantics, as long as it’s semantic (not likely to happen because presentation is rarely semantic).  And, you can use behavior within semantics as long as it’s semantic. And, you can use behavior within presentation as long as it’s presentational.</p>
<p>This is basically a conditional AND, not OR, statement versus the boolean ideals behind separation.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-852" title="divergance" src="http://inteldesigner.com/wp-content/uploads/2010/08/divergance1.jpg" alt="" /></p>
<p>For example, in HTML5 we have type=”email”. Attached to this semantic value is form validation, or a behavior; it’s ok to use under divergence.</p>
<p>This is true because the value email is semantic when in use and the behavior supports its semantics. However, if we were to use the font tag we would not be diverging because the font tag is not semantic and presentational, it is only presentational. And, so, we diverge font styling into our CSS only.</p>
<p>If we want to apply JavaScript to our HTML we can’t add it into the HTML body because it is not semantic and behavioral. The JavaScript would need to diverge. And, if we wanted to use behavior within CSS, our presentation, it needs to be both presentational and behavioral.</p>
<p>Under this methodology we keep our semantics, presentation, and behaviors intact while working with new technologies.</p>
<p>More to come later…</p>
]]></content:encoded>
			<wfw:commentRss>http://inteldesigner.com/2010/code/what-is-divergence/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The Principle of Divergence</title>
		<link>http://inteldesigner.com/2010/code/the-principle-of-divergence</link>
		<comments>http://inteldesigner.com/2010/code/the-principle-of-divergence#comments</comments>
		<pubDate>Wed, 18 Aug 2010 03:40:55 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Feature]]></category>
		<category><![CDATA[Getting Started]]></category>

		<guid isPermaLink="false">http://inteldesigner.com/?p=844</guid>
		<description><![CDATA[CSS3 and HTML5 are innovations to be practiced and mastered. And, while best practices like graceful degradation and progressive enhancement will continue guide implementation, I don’t think that the principles of separation will.]]></description>
			<content:encoded><![CDATA[<p>I have always been one to support the separation of content, presentation, and behavior. But, HTML5 and CSS3 are blurring the lines. For example, there has been a convergence on the behavioral layer; now that we have inline form validation alongside CSS transforms and transitions.</p>
<p>A few purists, I’m sure, will be outraged by what I’m saying. But, if the truth be told, the pseudo class hover has been triggered by user action for quite a while. That is, behavior within presentation.</p>
<p>From the CSS specification, “Interactive user agents sometimes change the rendering in response to user actions. CSS provides three pseudo-classes for common cases.”</p>
<p>This has made me question the principle behind separation of content, presentation and design. And, as I have investigated the idea behind separation, inspiring as it is, I have not found it to be practical.</p>
<p>Separation is a novel idea. It has guided the design style of many amazing programmers and artists. It has led to numerous beautiful and functional websites. But, this segregation of content, presentation and behavior is, as I have found it, much like XHTML 2: little more than an idealistic view worth stemming from.</p>
<p>It is time to leave this ideology behind us. It has served its purpose practically and well. Times are changing and new technologies are piping a different tune: divergence.</p>
<p>It is time to start diverging, not separating.</p>
<p><strong>Part Two</strong>: <a href="http://inteldesigner.com/2010/code/what-is-divergence">Divergence explained</a></p>
]]></content:encoded>
			<wfw:commentRss>http://inteldesigner.com/2010/code/the-principle-of-divergence/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Stop reversing the design process</title>
		<link>http://inteldesigner.com/2010/design/stop-reversing-the-design-process</link>
		<comments>http://inteldesigner.com/2010/design/stop-reversing-the-design-process#comments</comments>
		<pubDate>Mon, 28 Jun 2010 21:25:19 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Feature]]></category>
		<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[process]]></category>

		<guid isPermaLink="false">http://inteldesigner.com/?p=729</guid>
		<description><![CDATA[If you are designing in reverse, please stop. Design is not making things look nice. That is meaningless. Design is a form of emotional communication. It must be informed by the content it represents. You don’t smile when you’re angry… it’s freaky. And you don’t design without content… it’s scary.]]></description>
			<content:encoded><![CDATA[<p>When I started designing websites I did it like every newbie, without content. I was a moron. How could I ever create something meaningful without context?</p>
<p>Now, I know when you&#8217;re new it’s hard to get clients to give you anything, content or cash. But, they don’t know what design is, and they don’t know that they need it. It’s not their job, it yours, and you need to inform them.</p>
<h2>Doing design right</h2>
<p>As I learned, design was not about picking up a brush and hoping something nice came out (This is what most new website owners assume). It was about understanding, communication and art.</p>
<p>I had the process all wrong:</p>
<ol>
<li>design a site</li>
<li>plug in content</li>
<li>and market the content</li>
</ol>
<p>Instead the process is quite the opposite:</p>
<ol>
<li>understand the market</li>
<li>develop content based on that information</li>
<li>and let the content inform the design.</li>
</ol>
<h2>Market awareness</h2>
<p>Marketing is the first step to design. For a writer, marketing is a story. For us, it’s the story of those we are working with. But we can only begin to write once we understand their story.</p>
<h2>Content</h2>
<p>Every story has characters. Who are the characters of the brand you are working with? What is their history? What is their personality? What do they do for fun? Are they goofy or proper?</p>
<p>Writing is hard if you don’t know these things. In the end writing is about bringing an idea to life. It’s about painting a picture in the mind’s eye; and it’s our job to communicate what that painting is emotionally.</p>
<h2>Design</h2>
<p>Communication is emotional. It is where most relationships break down too. If a design is not communicating correctly, how can the design stand? Well, it doesn’t. It never will. It’s like a person who smiles on the outside and wages war within. Bad design is like a volcano waiting to erupt without warning, and volcanoes erupt.</p>
<p>Design is informed by content. If it’s not, it’s not communicating.</p>
<h2>What is your story?</h2>
<p>So, what is the story you need to communicate? Have the characters already been given to you? Or, will you pretend that you can design the cover of a book without pages?</p>
]]></content:encoded>
			<wfw:commentRss>http://inteldesigner.com/2010/design/stop-reversing-the-design-process/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding your Domain to Google</title>
		<link>http://inteldesigner.com/2010/feature/adding-your-domain-to-google</link>
		<comments>http://inteldesigner.com/2010/feature/adding-your-domain-to-google#comments</comments>
		<pubDate>Tue, 15 Jun 2010 02:01:17 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Feature]]></category>
		<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Domain]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://inteldesigner.com/?p=712</guid>
		<description><![CDATA[A while back I had quite a bit of trouble getting Google to index one our my clients websites. The domain was new, not friendly and they lacked content, three things that Google takes very seriously. So I spoke with a few friends and got some really good suggestions I thought I would share here.]]></description>
			<content:encoded><![CDATA[<h2>Twitter</h2>
<p>First, if you are having trouble getting your site indexed try submitting the URL to a site that gets indexed frequently. When you submit your domain name to these site be sure their reputation is good. Search engines will rank your site based on how reputable the sites that link to you are. Twitter is an excellent example because they are both reputable and indexed often.</p>
<h2>Google URL Adder</h2>
<p>If you didn&#8217;t know, Google has <a href="http://www.google.com/addurl/?continue=/addurl">its own tool for adding URLs to its index</a>. If you&#8217;re not sure Google can find your domain, try applying for Google spider to crawl your site on this site by using the tool. Google uses spiders to index websites so they appear in their search results. If you&#8217;re confused about how Google works check out this video, or <a href="http://www.google.com/howgoogleworks/">visit their page all about it</a>.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/BNHR6IQJGZs&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/BNHR6IQJGZs&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h2>Web Design Agency</h2>
<p>Normally, if your relationship is good, the design company that is making your site will add your domain to their portfolio. If their site gets indexed often yours is bound to get picked up. Be warned that not all websites are added to design company&#8217;s portfolios. Many only show their best work so they don&#8217;t overwhelm new clients coming to their domain.</p>
<p>Be sure to recognize the decisions made by those you are working with. You never know what their situation is like or how many clients they are working with. However, chances are, if you&#8217;re a really good client they will do you a favor and get you indexed anyways.</p>
]]></content:encoded>
			<wfw:commentRss>http://inteldesigner.com/2010/feature/adding-your-domain-to-google/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How much does a website cost?</title>
		<link>http://inteldesigner.com/2010/getting-started/how-much-does-a-website-cost</link>
		<comments>http://inteldesigner.com/2010/getting-started/how-much-does-a-website-cost#comments</comments>
		<pubDate>Sun, 13 Jun 2010 03:02:30 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[process]]></category>

		<guid isPermaLink="false">http://inteldesigner.com/?p=704</guid>
		<description><![CDATA[This is one of the first questions most small business owners have. It ranks right next to, "Should I get Facebook or Twitter accounts." So, I ask them back, "How much is it costing you not to have a Website, Facebook, and Twitter?" Here is the real question that needs answering, "How important are those things to your customers?"]]></description>
			<content:encoded><![CDATA[<h2><strong>A better question</strong></h2>
<p>Just think for a second here. If you know that Facebook has 4,000,000 active accounts, that <a id="ark2" title="there are millions of Tweets per day" href="http://mashable.com/2010/02/22/twitter-50-million-tweets/">there are millions of Tweets per day</a>, and Google searches are the most popular place to find out about local business online; would you think they were important? Would you think a website was important?</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/lFZ0z5Fm-Ng&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/lFZ0z5Fm-Ng&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>In fact, most small business don&#8217;t yet. According to Vanessa Fox, Author of Marketing in the Age of Google (<a id="fz-o" title="HIGHLY recommended" href="http://www.ducttapemarketing.com/blog/2010/05/20/marketing-in-the-age-of-google/">HIGHLY recommended</a>), &#8220;Only 44% of small business even have a Website.&#8221;</p>
<h2>Most small business don&#8217;t want to spend the money</h2>
<p>This is huge! Most small business don&#8217;t think they can afford to connect with customers outside of traditional marketing. That 56% if you missed it.</p>
<p>56% of small businesses are not thinking about the web yet. On Google, that means most small business can get ahead of their competitors 56%.</p>
<p>So, how much will that website cost you? Well, it depends on what you want, who you get your website from, and what their rate is.</p>
<p>Now, You can probably find someone who can build you a site for under $300. Just remember, what you put in is what you get out, and I&#8217;m not talking time. Its more like, garbage in garbage out.</p>
<p>Before I close here, I don&#8217;t want to leave a bad taste in your mouth. I want you to get pumped! This is an amazing opportunity. There is simply no reason to be overwhelmed.</p>
<h2>Here are a few suggestions</h2>
<ol>
<li>Start small! Do not go in all at once. Facebook Pages and Twitter are free. Try them out right now! Go ahead, Google them&#8230; Google how to make a Facebook Page.</li>
<li>Find a consultant. You don&#8217;t need to be the expert. Its important to find a good consultant for digital marketing.</li>
<li>Don&#8217;t be cheap if you can help it. Have a defined budget. Know what your online brand is worth. It might be more than you think.</li>
<li>Read blogs on the topic. Find a good marketing blog and follow it. Some of the most relevant people in the industry, <a href="http://www.chrisbrogan.com/">Chirs Brogan</a>, <a href="http://www.twistimage.com/blog/">Mitch Joel</a>, and <a href="http://sethgodin.typepad.com/">Seth Godin</a>, give their knowledge away for free.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://inteldesigner.com/2010/getting-started/how-much-does-a-website-cost/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Background image positioning explained</title>
		<link>http://inteldesigner.com/2010/code/background-image-positioning-explained</link>
		<comments>http://inteldesigner.com/2010/code/background-image-positioning-explained#comments</comments>
		<pubDate>Fri, 11 Jun 2010 00:54:35 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://inteldesigner.com/?p=673</guid>
		<description><![CDATA[Background images become a pain to work with in advanced and highly optimized designs. It’s always a ton of trouble to get things lined up, unless you have a full understanding of background positioning.  Today, I will be taking a look at what it takes to get your images too corporate.]]></description>
			<content:encoded><![CDATA[<p><strong>The Property</strong></p>
<p><a class="download-example" href="/examples/background-position/background-positioning.zip">Download all examples</a> to get started!</p>
<p>Let’s get to know the <a href="http://www.w3.org/TR/css3-background/#the-background-position">CSS background-position property</a>. When you decide to use a background attachment, such as an image, background-position specifies its initial position.</p>
<p>Basically, the property tells your image where it should appear within the element we are working with. The default position for the image will always be the left top corner of the element.</p>
<p>If you want to change that position you need to declare the property in our CSS and add two values. The first value plots your image on the horizontal x coordinate and the second on the vertical y coordinate.</p>
<pre><code><span>.object</span> {
<span class="property">height</span>: 150px;
<span class="property">width</span>: 150px;
<span class="property">background-attachment</span>: url(bg.gif);
<span class="property">background-repeat</span>: no-repeat;
<span class="property">background-position</span>: 0 0; }</code></pre>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-688" title="default" src="http://inteldesigner.com/wp-content/uploads/2010/06/default.gif" alt="" /></p>
<p>(<a href="/examples/background-position/">View Example</a>)</p>
<p>Even though we declared the position in the example, to (x)0px and (y)0px, you do not need to declare this position. Remember, if no position is declared the browser will assume (x)0px and (y)0px by default.</p>
<h2>The Values</h2>
<p>So, background-position can use up to two values. The values can be keywords, percentages, and lengths (e.g. px, em, etc.). If you declare only one value the second, the y coordinate, will always be 50%, or center.</p>
<pre><code><span>.object</span> {
<span class="property">background-position</span>: 100%; }</code></pre>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-689" title="00" src="http://inteldesigner.com/wp-content/uploads/2010/06/00.gif" alt="" /></p>
<p>(<a href="/examples/background-position/">View Example</a>)</p>
<p>To keep things simple I personally avoid keywords because they have percentage equivalents. I also, reject the notion of ems, because they are not necessary and add unneeded confusion. Remember, if you have a nail use a hammer.</p>
<h3>Pixels</h3>
<p>Pixels are a bit odd and not because of rendering, your browser is the real issue here.</p>
<p>Browsers use a vertically flipped x/y graph to plot pixels. They do this for a few reasons, but that is for another time and place. All you need remember is that the positive side of the chart starts at the left top corner and works its way to the right bottom.</p>
<p>When declaring your position with pixels the image anchor point will be the left top corner, not be be confused with the default image position.</p>
<pre><code><span>.object</span> {
<span class="property">background-position</span>: 0 -25px; }</code></pre>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-690" title="25" src="http://inteldesigner.com/wp-content/uploads/2010/06/25.gif" alt="" /></p>
<p>(<a href="/examples/background-position/">View Example</a>)</p>
<h3>Percentages</h3>
<p>If pixels are not working for you percentages might do the trick, if you don’t get tangled in their web.</p>
<p>When you declare a percentage as the value of the background-position property, it’s lined up based on two points.</p>
<ol>
<li>The percentage of the image, as declared</li>
<li>The percentage of the element, as declared</li>
</ol>
<p>This is hard to explain, but basically, when you declare a percentage it takes that percent, say 75%, and lines the axis of the image, at 75%, to that of the element, at 75%.</p>
<p>Let’s imagine together that we have a long and short stick. There they are, on a table, horizontal to your shoulders and parallel to one another, separated by about an inch.</p>
<p>I hand you a brand new vibrant red sharpie.</p>
<p>Now mark the long stick with the red sharpie, about 75% down from the left side. Next, pick up the small stick and measure down from left side, about 75% of its width, and mark the spot with the same sharpie.</p>
<p>Perfect! Now take both sticks and line them up so the marks are next to each other. That is how the browser lines up background images to their elements.</p>
<p>It does not matter if the image or the element is bigger, it doesn’t matter if they are the same size. That’s how it works, nice and simple… just hard to explain.</p>
<pre><code><span>.object</span> {
<span class="property">background-position</span>: 75% 0; }</code></pre>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-692" title="75" src="http://inteldesigner.com/wp-content/uploads/2010/06/75.gif" alt="" /></p>
<p>(<a href="/examples/background-position/">View Example</a>)</p>
<p>The only time percentages get really confusing is when you declare say… 200% or -10%.</p>
<h2>Defaults</h2>
<ul>
<li>If you only specify one value the second is set to 50%, or center</li>
<li>Images always assume their position at the left top</li>
</ul>
<h2>Reminders</h2>
<ul>
<li>x/y graph is flipped on its head</li>
<li>Percentages apply to both the image and element and line up at their respective percentages</li>
<li>When declaring values the horizontal plot is first, the second is vertical</li>
<li>If you want your image to be in the left top corner you do not need to set the property</li>
<li>Avoid, keywords and ems</li>
</ul>
<h2>Learn More</h2>
<ul>
<li><a href="http://reference.sitepoint.com/css/background-position">Sitepoint Reference: background-position</a></li>
<li><a href="http://snook.ca/archives/html_and_css/background-position-x-y">Snook: Background Position X and Y</a></li>
<li><a href="http://carsonified.com/blog/design/how-to-recreate-silverbacks-parallax-effect/">Background Image Parallax Effect</a></li>
<li><a href="http://www.alistapart.com/articles/sprites">CSS Background Sprites</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://inteldesigner.com/2010/code/background-image-positioning-explained/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Writing a website proposal</title>
		<link>http://inteldesigner.com/2010/feature/writing-a-website-proposal</link>
		<comments>http://inteldesigner.com/2010/feature/writing-a-website-proposal#comments</comments>
		<pubDate>Mon, 17 May 2010 22:02:48 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Feature]]></category>
		<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[process]]></category>

		<guid isPermaLink="false">http://inteldesigner.com/?p=664</guid>
		<description><![CDATA[Writing a website proposal can be a great pain. If you don't know your stuff you will not make the sale. Here are a few basics I have learned about proposals and writing them. plus a few resources.]]></description>
			<content:encoded><![CDATA[<h2><strong>Thank you, thank you</strong></h2>
<p>First, when writing a proposal, include a friendly word of thanks to the prospective client. Let them know that you greatly appreciate their interest. This set the tone for the rest of the proposal.</p>
<h2>I&#8217;m awesome, brilliant</h2>
<p>Next, you may or may not want to include the classic &#8220;why we are so great&#8221; speech. Including this part can be important when trying to earn the clients trust, but don&#8217;t let it become a sells pitch, and don&#8217;t go over board. The keyword here is genuine. Remember, you can always demonstrate your ability to deliver throughout the proposal.</p>
<h2>Break it down</h2>
<p>In the next section of the document you need tell the perspective client what you plan to offer them, the deliverable. You should break everything down so the client can understand what you are talking about. Don&#8217;t use to much jargon.</p>
<p>If you are proposing a new website include all the items you plan to create: pages, designs, and everything else.</p>
<p>You will want to describe what each item is, why they need it, what you plan to do, and how you will deliver your promise to them. The client doesn&#8217;t want to trained on how HTML works, they want to know how it will make them profitable.</p>
<p>For example, if you are proposing a new contact page:</p>
<ul>
<li>Describe the contact page. What is it for?</li>
<li>Describe why you think it&#8217;s important. What is its value?</li>
<li>Describe what you plan to do. Do you plan to redesign the form, or implement Ajax for usability?</li>
<li>Describe how you plan to do what you have described. Will you use a retro style, or use jQuary?</li>
</ul>
<p>You can do a number of things when breaking down and itemizing your proposal, just be sure the client know what they are getting.</p>
<h2>Money</h2>
<p>Near the end of the proposal be sure to include a complete list of the items you have proposed. This will give your client a better look at what they are getting. More items is not always better. If you want include estimated prices in your proposal.</p>
<h2>Summary</h2>
<p>Finally, at the bottom of your document include a complete and brief summery of what you are proposing. Keep it short, keep it simple and keep it genuine.</p>
<h2>Resources</h2>
<p>If you have any resources or advice feel free to share. Here are some of mine:</p>
<ul>
<li><a href="http://24ways.org/2008/charm-clients-win-pitches">Charm Client, Win Pitches</a></li>
<li><a href="http://boagworld.com/podcast/web-design-podcast-12-briefs-and-proposals">Boagworld &#8211; Briefs and Proposals</a></li>
<li><a href="http://articles.sitepoint.com/article/sale-sleaze">Make That Sale &#8230; Without the Sleaze!</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://inteldesigner.com/2010/feature/writing-a-website-proposal/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dealing with trolls</title>
		<link>http://inteldesigner.com/2010/getting-started/dealing-with-trolls</link>
		<comments>http://inteldesigner.com/2010/getting-started/dealing-with-trolls#comments</comments>
		<pubDate>Sat, 13 Feb 2010 23:45:57 +0000</pubDate>
		<dc:creator>Kevin Dees</dc:creator>
				<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[process]]></category>

		<guid isPermaLink="false">http://inteldesigner.com/?p=454</guid>
		<description><![CDATA[In recent days I have found myself pondering the complexities of social  media. Social media plays a huge roll in our day to day lives, whether we like it or not. For this reason it's a good time to regurgitate some <a href="http://www.sitepoint.com/blogs/2009/11/06/how-to-deal-with-trolls/">amazing content created by Sitepoint</a>.]]></description>
			<content:encoded><![CDATA[<h2>Social Interface</h2>
<p>Their posts covers the dreaded &#8220;trolls&#8221; that loom around your site waiting to get  a rise out of someone, including you. Alyssa Gregory does an excellent job of covering the basics, and she isn&#8217;t the only one <a href="http://www.sitepoint.com/blogs/2009/11/14/podcast-36-dont-feed-the-trolls/">talking about it</a> on Sitepoint. However, too many times the trolls succeed no matter how hard we try.</p>
<p>I believe this is due to poor <a href="http://en.wikipedia.org/wiki/Social_interface">social interface</a>.</p>
<p>I scratched the first draft of this post. I found it stated the obvious things, who, where, when, and why. But that&#8217;s not what I want to talk about. I want to talk about social interface and how we can use it to create better communities.</p>
<p>Facebook has an excellent social interfaces, I have yet to encounter a troll. Unlike MySpace, Facebook has done something amazing that I think every site should tap into.</p>
<h2>Making better communities</h2>
<p>First, Facebook did something radical when compared to MySpace. They took a lot of user control away!</p>
<p>Second, they redefined the social culture in a way that&#8217;s hard to explain. They created a site were self expression was key and connecting with friends means everything.</p>
<p>Twitter has a different approach. Share what you are doing to the world.</p>
<p>The difference is huge and so are the implications. On Facebook people always know who is specking, they made you their friend. On Twitter anyone can speak to you, or attack you.</p>
<p>Twitter&#8217;s approach may smell like bad social interface but its not; its a different type of tool. With Twitter its about who you are in the world not just among friends.  Your reputation is still on the line and if you troll you get blocked or reported.</p>
<h2>Whats the key to it all?</h2>
<p>Reputation! In both Facebook and Twitter your reputation is on the line, it is critical.</p>
<p>Why? Because people are listening to your &#8220;brand&#8221; or &#8220;name&#8221;. They are communicating with you on a personal level; not an anonymous commenter on a blog or forum.</p>
<h2>What does this have to do with trolls?</h2>
<p>Trolls don&#8217;t want or care about reputation. Building a site that requires it will always prove cumbersome to trolls. Like Facebook and Twitter, if we build reputation into our social interfaces we will have a lot less moderation to do.</p>
<p>This is so true that Stackoverflow has built their site around it; and its the biggest programming Q and A website around because of it.</p>
<p>Making a site that puts users on the line sounds scary but it works; and  if you have a site with killer content they will be willing to take a chance.</p>
]]></content:encoded>
			<wfw:commentRss>http://inteldesigner.com/2010/getting-started/dealing-with-trolls/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Having problems getting PHP5+ to work with MySQL 5+?</title>
		<link>http://inteldesigner.com/2010/code/having-problems-getting-php5-3-to-work-with-mysql5-1</link>
		<comments>http://inteldesigner.com/2010/code/having-problems-getting-php5-3-to-work-with-mysql5-1#comments</comments>
		<pubDate>Thu, 11 Feb 2010 02:35:57 +0000</pubDate>
		<dc:creator>Kevin Dees</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://inteldesigner.com/?p=360</guid>
		<description><![CDATA[If you are having trouble getting MySQL to work with PHP5 on the Windows Platform you're not  alone. Today I finished reformatting my PC, setting up PHP5.3 with MySQL... needless to say it wasn't pleasant! But, in the end I won and boy does it feel good to win.]]></description>
			<content:encoded><![CDATA[<h2>Lets not babble anymore, onward!</h2>
<p>First off, I&#8217;m going to assume you know how to get PHP on your machine. If you don&#8217;t, check out <a href="http://inteldesigner.com/2009/getting-started/setting-up-a-testing-server">my tutorial</a> on setting up a testing server and come back here if you want PHP5.3.</p>
<p>Now, on the  <a href="http://www.php.net/manual/en/mysql.installation.php">PHP Installation website</a> they explain how to get MySQL  working with PHP5.2-. There is a file named <em>libmysql.dll</em>; its included in the Windows PHP  distribution and in order for PHP to talk to MySQL this file needs  to  be available to the <a href="http://www.php.net/manual/en/faq.installation.php#faq.installation.addtopath">Windows  systems PATH</a>. If you are running PHP5.3 you <em>will not</em> find a file  named <em>libmysql.dll</em>.</p>
<p>PHP5.3 doesn&#8217;t need the file. The new <a href="http://us3.php.net/manual/en/mysqlnd.install.php">MySQL Native  Driver</a> called <a title="MySQL native driver for PHP - mysqlnd" href="http://dev.mysql.com/downloads/connector/php-mysqlnd/">mysqlnd</a> is enabled by default. The is a nice because it removes one more step in the configuration process, its not a bed of roses.</p>
<p>You need to use <strong>127.0.0.1</strong> instead  of <strong>localhost</strong> in PHP5.3 to connect to  MySQL.</p>
<blockquote><p>&#8216;So I guess this is a windows bug rather than PHP?&#8217; No,  it&#8217;s a bug in the PHP stream transport. (mysqlnd is using PHP<br />
streams for the connection)</p>
<p>If PHP is asking the OS for the IP for the host &#8220;localhost&#8221;, it gets a<br />
list with 2 addrinfo structures (one for ::1 and the other for<br />
127.0.0.1), but PHP is only trying a connection to the first one. Well,<br />
the MySQL server doesn&#8217;t know IPV6, and thus the connection fails.</p>
<p>Regards,<br />
Carsten</p></blockquote>
<p>Because PHP5.3 uses IPv6 for its first argument <a href="http://inteldesigner.ehclients.com/wp-content/uploads/2010/02/error.gif">it crashes</a>! Just run the command <strong>php -f</strong> on a file that connects to MySQL from the command  line.</p>
<p><img class="aligncenter size-large wp-image-387" title="error" src="http://inteldesigner.com/wp-content/uploads/2010/02/error-455x282.gif" alt="" width="455" height="282" /></p>
<p>If you don&#8217;t know this you might find yourself wanting to kill, and it  will make you want to kill.  <span style="text-decoration: line-through;">I should tell you I&#8217;m only joking  about wanting to kill?</span></p>
<p>So, if your trying to install WordPress like me today don&#8217;t use <strong>localhost</strong>! Override it with <strong>127.0.0.1</strong> and you will get what you are looking for.</p>
<p><img class="aligncenter size-large wp-image-364" title="Capture" src="http://inteldesigner.com/wp-content/uploads/2010/02/Capture-455x171.gif" alt="" width="455" height="171" /></p>
<p>If your not happy with having to use 127.0.0.1, like me, or don&#8217;t plan on <a href="http://forge.mysql.com/worklog/task.php?id=798">waiting for MySQL to support IPv6</a> there is a solution.</p>
<h2>Editing Windows hosts file</h2>
<p>To keep this bug from popping it ugly head up you will need to edit your hosts file. On Windows7 64bit go to the file path <a href="http://inteldesigner.ehclients.com/wp-content/uploads/2010/02/Capture1.gif">C:\Windows\System32\drivers\ext\</a>. Here you will find a file named hosts; but before you can edit it you might need to change your permissions.</p>
<p><img class="aligncenter size-large wp-image-378" title="Capture" src="http://inteldesigner.com/wp-content/uploads/2010/02/Capture1-455x310.gif" alt="" width="455" height="310" /></p>
<p>Once you open the file you will either need to remove the comment on IPv4 or add one to the IPv6 line.</p>
<h2>Recourse</h2>
<p>Ok so, <a href="http://bugs.php.net/bug.php?id=50172">You can see the whole  story here</a>; also, you can <a href="http://stackoverflow.com/questions/2241261/php5-3-is-not-working-with-mysql5-1-iis7-times-out/2241731">see the my full documentation on Stackoverflow</a>, thanks to the folks on  <a href="http://forums.iis.net/p/1164911/1933894.aspx">forums.iis.net</a> and <a href="http://www.sitepoint.com/forums/showthread.php?t=660136">Sitepoint</a> I was able to clear this up.</p>
<p>﻿</p>
]]></content:encoded>
			<wfw:commentRss>http://inteldesigner.com/2010/code/having-problems-getting-php5-3-to-work-with-mysql5-1/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

