<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Blog do John</title>
	<atom:link href="http://johnathancruz.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://johnathancruz.wordpress.com</link>
	<description>Criador de soluções web</description>
	<lastBuildDate>Wed, 27 Jan 2010 13:11:01 +0000</lastBuildDate>
	<language>pt-br</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='johnathancruz.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Blog do John</title>
		<link>http://johnathancruz.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://johnathancruz.wordpress.com/osd.xml" title="Blog do John" />
	<atom:link rel='hub' href='http://johnathancruz.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Editor HTML para sites</title>
		<link>http://johnathancruz.wordpress.com/2010/01/27/editor-html-para-sites/</link>
		<comments>http://johnathancruz.wordpress.com/2010/01/27/editor-html-para-sites/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 12:58:51 +0000</pubDate>
		<dc:creator>johnjasc</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Programação Web]]></category>

		<guid isPermaLink="false">http://johnathancruz.wordpress.com/?p=55</guid>
		<description><![CDATA[Um ótimo editor de HTML para você colocar em seu site ou CMS, é o TinyMCE. Ele é fácil de implementar, basta fazer o download do pacote, descompactar e copiar a pasta para a sua aplicação web. Depois é só fazer as chamadas na index de sua aplicação. É só copiar o script abaixo sem [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnathancruz.wordpress.com&amp;blog=10601262&amp;post=55&amp;subd=johnathancruz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Um ótimo editor de HTML para você colocar em seu site ou CMS, é o <a href="http://tinymce.moxiecode.com/" target="_blank">TinyMCE</a>.</p>
<p>Ele é fácil de implementar, basta fazer o <a href="http://tinymce.moxiecode.com/download.php" target="_blank">download do pacote</a>, descompactar e copiar a pasta para a sua aplicação web.</p>
<p>Depois é só fazer as chamadas na index de sua aplicação. É só copiar o script abaixo sem fazer nenhuma alteração e colocar dentro das tags &lt;head&gt; &lt;/head&gt;</p>
<p>Pronto!</p>
<p>Todos os seus forms &#8220;text&#8221; já estão configurados com um editor de texto completo. Agora é só utilizar.</p>
<div id="_mcePaste">&lt;!&#8211; TinyMCE &#8211;&gt;</div>
<div id="_mcePaste">&lt;script type=&#8221;text/javascript&#8221; src=&#8221;tinymce/jscripts/tiny_mce/tiny_mce.js&#8221;&gt;&lt;/script&gt;</div>
<div id="_mcePaste">&lt;script type=&#8221;text/javascript&#8221;&gt;</div>
<div id="_mcePaste">tinyMCE.init({</div>
<div id="_mcePaste">// General options</div>
<div id="_mcePaste">mode : &#8220;textareas&#8221;,</div>
<div id="_mcePaste">theme : &#8220;advanced&#8221;,</div>
<div id="_mcePaste">plugins : &#8220;safari,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,</div>
<div>iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,</div>
<div>paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,wordcount&#8221;,</div>
<div id="_mcePaste">// Theme options</div>
<div id="_mcePaste">theme_advanced_buttons1 : &#8220;save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,</div>
<div>justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect&#8221;,</div>
<div id="_mcePaste">theme_advanced_buttons2 : &#8220;cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,</div>
<div>outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,</div>
<div>help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor&#8221;,</div>
<div id="_mcePaste">theme_advanced_buttons3 : &#8220;tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,</div>
<div>iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen&#8221;,</div>
<div id="_mcePaste">theme_advanced_buttons4 : &#8220;insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,</div>
<div>abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak&#8221;,</div>
<div id="_mcePaste">theme_advanced_toolbar_location : &#8220;top&#8221;,</div>
<div id="_mcePaste">theme_advanced_toolbar_align : &#8220;left&#8221;,</div>
<div id="_mcePaste">theme_advanced_statusbar_location : &#8220;bottom&#8221;,</div>
<div id="_mcePaste">theme_advanced_resizing : true,</div>
<div id="_mcePaste">// Example content CSS (should be your site CSS)</div>
<div id="_mcePaste">content_css : &#8220;css/content.css&#8221;,</div>
<div id="_mcePaste">// Drop lists for link/image/media/template dialogs</div>
<div id="_mcePaste">template_external_list_url : &#8220;lists/template_list.js&#8221;,</div>
<div id="_mcePaste">external_link_list_url : &#8220;lists/link_list.js&#8221;,</div>
<div id="_mcePaste">external_image_list_url : &#8220;lists/image_list.js&#8221;,</div>
<div id="_mcePaste">media_external_list_url : &#8220;lists/media_list.js&#8221;,</div>
<div id="_mcePaste">// Replace values for the template plugin</div>
<div id="_mcePaste">template_replace_values : {</div>
<div id="_mcePaste">username : &#8220;Some User&#8221;,</div>
<div id="_mcePaste">staffid : &#8220;991234&#8243;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">});</div>
<div id="_mcePaste">&lt;/script&gt;</div>
<div id="_mcePaste">&lt;!&#8211; /TinyMCE &#8211;&gt;</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnathancruz.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnathancruz.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnathancruz.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnathancruz.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnathancruz.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnathancruz.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnathancruz.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnathancruz.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnathancruz.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnathancruz.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnathancruz.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnathancruz.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnathancruz.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnathancruz.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnathancruz.wordpress.com&amp;blog=10601262&amp;post=55&amp;subd=johnathancruz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnathancruz.wordpress.com/2010/01/27/editor-html-para-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fea8ac5a4b453498303b0460f010a226?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">johnjasc</media:title>
		</media:content>
	</item>
		<item>
		<title>O martírio: Como prospectar novos clientes ?</title>
		<link>http://johnathancruz.wordpress.com/2010/01/22/o-martirio-como-prospectar-novos-clientes/</link>
		<comments>http://johnathancruz.wordpress.com/2010/01/22/o-martirio-como-prospectar-novos-clientes/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 04:27:37 +0000</pubDate>
		<dc:creator>johnjasc</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Negócios]]></category>
		<category><![CDATA[Trabalhos]]></category>

		<guid isPermaLink="false">http://johnathancruz.wordpress.com/?p=53</guid>
		<description><![CDATA[As vezes me pergunto como devemos prospectar novos clientes pela internet? Atualmente, as pessoas andam tão atarefadas e tão sensíveis aos famosos SPAMs. Como vou me apresentar e abordar um cliente sem explicar de onde sou e o que eu faço. Como enviar um e-mail sem que ele seja visto como spam? Como entrar em [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnathancruz.wordpress.com&amp;blog=10601262&amp;post=53&amp;subd=johnathancruz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As vezes me pergunto como devemos prospectar novos clientes pela internet?</p>
<p>Atualmente, as pessoas andam tão atarefadas e tão sensíveis aos famosos SPAMs. Como vou me apresentar e abordar um cliente sem explicar de onde sou e o que eu faço.</p>
<p>Como enviar um e-mail sem que ele seja visto como spam?</p>
<p>Como entrar em contato com aquela empresa onde a secretária rasga seu panfleto, diz que o diretor está em reunião ou mesmo nem atende a gente. A alternativa seria enviar um e-mail direto para o diretor.</p>
<p>E se ele nem solicitou o seu envio?  Se ele achar muito impertinente de sua parte?</p>
<p>Devemos tomar muito cuidado, as relações estão muito mais difíceis de se conseguir e até mesmo manter. Principalmente quando se fala se relações comerciais.</p>
<p>O fato é prospectar clientes se tornou um malabarismo, onde a cada dia devem ser criadas novas apresentações, e que empolguem o público, e que o mesmo compre e salve a sua cabeça da famosa guilhotina dos desempregados.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnathancruz.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnathancruz.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnathancruz.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnathancruz.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnathancruz.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnathancruz.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnathancruz.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnathancruz.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnathancruz.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnathancruz.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnathancruz.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnathancruz.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnathancruz.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnathancruz.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnathancruz.wordpress.com&amp;blog=10601262&amp;post=53&amp;subd=johnathancruz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnathancruz.wordpress.com/2010/01/22/o-martirio-como-prospectar-novos-clientes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fea8ac5a4b453498303b0460f010a226?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">johnjasc</media:title>
		</media:content>
	</item>
		<item>
		<title>Ong ProBrasil</title>
		<link>http://johnathancruz.wordpress.com/2009/12/15/ong-probrasil/</link>
		<comments>http://johnathancruz.wordpress.com/2009/12/15/ong-probrasil/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 19:55:28 +0000</pubDate>
		<dc:creator>johnjasc</dc:creator>
		
		<guid isPermaLink="false">http://johnathancruz.wordpress.com/?p=48</guid>
		<description><![CDATA[Mas um cliente publicado. É a Ong ProBrasil. O layout é do Regazzoni. Aproveitem e façam uma doação. Acesse: www.probrasil.org.br<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnathancruz.wordpress.com&amp;blog=10601262&amp;post=48&amp;subd=johnathancruz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Mas um cliente publicado.</p>
<p>É a Ong ProBrasil. O layout é do <a href="http://www.rega.com.br/" target="_blank">Regazzoni</a>.</p>
<p>Aproveitem e façam uma doação.</p>
<p>Acesse: www.probrasil.org.br</p>
<p><a href="http://johnathancruz.files.wordpress.com/2009/12/site_v031.jpg"><img class="aligncenter size-full wp-image-50" title="Layout ProBrasil" src="http://johnathancruz.files.wordpress.com/2009/12/site_v031.jpg?w=480&#038;h=690" alt="" width="480" height="690" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnathancruz.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnathancruz.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnathancruz.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnathancruz.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnathancruz.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnathancruz.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnathancruz.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnathancruz.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnathancruz.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnathancruz.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnathancruz.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnathancruz.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnathancruz.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnathancruz.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnathancruz.wordpress.com&amp;blog=10601262&amp;post=48&amp;subd=johnathancruz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnathancruz.wordpress.com/2009/12/15/ong-probrasil/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fea8ac5a4b453498303b0460f010a226?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">johnjasc</media:title>
		</media:content>

		<media:content url="http://johnathancruz.files.wordpress.com/2009/12/site_v031.jpg" medium="image">
			<media:title type="html">Layout ProBrasil</media:title>
		</media:content>
	</item>
		<item>
		<title>E-mail marketing Mural de Ideias</title>
		<link>http://johnathancruz.wordpress.com/2009/12/12/e-mail-marketing-mural-de-ideias/</link>
		<comments>http://johnathancruz.wordpress.com/2009/12/12/e-mail-marketing-mural-de-ideias/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 03:23:14 +0000</pubDate>
		<dc:creator>johnjasc</dc:creator>
		
		<guid isPermaLink="false">http://johnathancruz.wordpress.com/?p=42</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnathancruz.wordpress.com&amp;blog=10601262&amp;post=42&amp;subd=johnathancruz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://johnathancruz.files.wordpress.com/2009/12/email-mkt-mural2.jpg"><img class="aligncenter size-full wp-image-46" title="Mural de Ideias" src="http://johnathancruz.files.wordpress.com/2009/12/email-mkt-mural2.jpg?w=480&#038;h=751" alt="" width="480" height="751" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnathancruz.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnathancruz.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnathancruz.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnathancruz.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnathancruz.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnathancruz.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnathancruz.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnathancruz.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnathancruz.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnathancruz.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnathancruz.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnathancruz.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnathancruz.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnathancruz.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnathancruz.wordpress.com&amp;blog=10601262&amp;post=42&amp;subd=johnathancruz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnathancruz.wordpress.com/2009/12/12/e-mail-marketing-mural-de-ideias/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fea8ac5a4b453498303b0460f010a226?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">johnjasc</media:title>
		</media:content>

		<media:content url="http://johnathancruz.files.wordpress.com/2009/12/email-mkt-mural2.jpg" medium="image">
			<media:title type="html">Mural de Ideias</media:title>
		</media:content>
	</item>
		<item>
		<title>Cobrar ou Free?</title>
		<link>http://johnathancruz.wordpress.com/2009/12/09/cobrar-ou-free/</link>
		<comments>http://johnathancruz.wordpress.com/2009/12/09/cobrar-ou-free/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 12:10:22 +0000</pubDate>
		<dc:creator>johnjasc</dc:creator>
		
		<guid isPermaLink="false">http://johnathancruz.wordpress.com/?p=40</guid>
		<description><![CDATA[Atualmente, estamos vivendo a era do &#8220;Grátis&#8221; com mais ênfase, principalmente no mundo virtual. O oferecimento de produtos grátis para tentar entrar no mercado não é uma prática atual. Existem diversas formas de se oferecer um produtos grátis, e nós a vemos quase todos os dias em nossas vidas. Pague um leve dois, criança não paga [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnathancruz.wordpress.com&amp;blog=10601262&amp;post=40&amp;subd=johnathancruz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Atualmente, estamos vivendo a era do &#8220;Grátis&#8221; com mais ênfase, principalmente no mundo virtual. O oferecimento de produtos grátis para tentar entrar no mercado não é uma prática atual. Existem diversas formas de se oferecer um produtos grátis, e nós a vemos quase todos os dias em nossas vidas. Pague um leve dois, criança não paga para entrar, plano básico grátis e por ai vai. Mas essas forma de grátis, não são na verdade Grátis. Quem paga um e leva dois, já tá pagando os dois, criança não vai sozinha a lugar nenhum, e os pais sempre pagam, plano básico grátis, os usuários de planos avançados cobrem os custos.</p>
<p>Na Web o grande revolucionário em termos de oferecimento de serviços grátis foi o Google.  A maior parte dos serviços que o Google oferece são realmente Grátis. Não há preço mascarado. Você utiliza dezenas de vezes o Google por dia, e quantas vezes eles já lhe cobraram?</p>
<p>Mas agora quem está interessado em oferecer uma ferramenta web sempre esbarra no dilema:  <strong>Cobrar ou Free ???</strong></p>
<p>Uma das vantagens do Grátis é a viralização: rápido um serviço (se ele for bom e resolver um problema) Grátis se dissemina pela web. As pessoas comentam em seus blogs, convidam os amigos e produzem conteúdo sobre o serviço.</p>
<p>As pessoas gostam de tudo que é  Grátis, mesmo que não precise ou que o produto não tenha uma ótima qualidade.</p>
<p>Uma desvantagem é a falta de comprometimento, os Grátis torna-se desvalorizado. Pelo fato de ser Grátis as pessoas não pensam muito sobre como consomem. O serviço ou produto, acaba sendo consumido de forma excessiva e com desperdício, onerando assim o fornecedor, aumentando os custos e prejudicando realmente quem precisa do serviço.</p>
<p>Uma cobrança de um serviço pode valoriza-lo um pouco mais, fazendo com que os usuários tenha consciência do uso correto do mesmo. Mas uma cobrança, mesmo que irrisória, pode afastar os consumidores rapidamente.</p>
<p>Por isso, antes de lançar uma ferramenta web, é preciso pensar muito e analisar qual público você quer abordar, que tipo de retorno financeiro deseja adquirir com o serviço, para escolher entre as duas opções: <strong>Cobrar ou FREE</strong>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnathancruz.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnathancruz.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnathancruz.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnathancruz.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnathancruz.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnathancruz.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnathancruz.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnathancruz.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnathancruz.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnathancruz.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnathancruz.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnathancruz.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnathancruz.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnathancruz.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnathancruz.wordpress.com&amp;blog=10601262&amp;post=40&amp;subd=johnathancruz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnathancruz.wordpress.com/2009/12/09/cobrar-ou-free/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fea8ac5a4b453498303b0460f010a226?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">johnjasc</media:title>
		</media:content>
	</item>
		<item>
		<title>8 segredos para o sucesso</title>
		<link>http://johnathancruz.wordpress.com/2009/11/29/8-segredos-para-o-sucesso/</link>
		<comments>http://johnathancruz.wordpress.com/2009/11/29/8-segredos-para-o-sucesso/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 13:14:36 +0000</pubDate>
		<dc:creator>johnjasc</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Negócios]]></category>

		<guid isPermaLink="false">http://johnathancruz.wordpress.com/?p=31</guid>
		<description><![CDATA[Vídeo de apenas 3 minutos que mostra 8 segredos para obter sucesso.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnathancruz.wordpress.com&amp;blog=10601262&amp;post=31&amp;subd=johnathancruz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Vídeo que mostra como obter sucesso. Para ver legenda em Português clique em View subtitles.</p>
<object width="334" height="326"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"></param><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent"></param><param name="bgColor" value="#ffffff"></param> <param name="flashvars" value="vu=http://video.ted.com/talks/embed/RichardSt.John_2005-embed_high.flv&su=http://images.ted.com/images/ted/tedindex/embed-posters/RichardSt.John-2005.embed_thumbnail.jpg&vw=320&vh=240&ap=0&ti=70" /><embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="334" height="326" allowFullScreen="true" flashvars="vu=http://video.ted.com/talks/embed/RichardSt.John_2005-embed_high.flv&su=http://images.ted.com/images/ted/tedindex/embed-posters/RichardSt.John-2005.embed_thumbnail.jpg&vw=320&vh=240&ap=0&ti=70"></embed></object>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnathancruz.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnathancruz.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnathancruz.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnathancruz.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnathancruz.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnathancruz.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnathancruz.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnathancruz.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnathancruz.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnathancruz.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnathancruz.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnathancruz.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnathancruz.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnathancruz.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnathancruz.wordpress.com&amp;blog=10601262&amp;post=31&amp;subd=johnathancruz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnathancruz.wordpress.com/2009/11/29/8-segredos-para-o-sucesso/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fea8ac5a4b453498303b0460f010a226?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">johnjasc</media:title>
		</media:content>
	</item>
		<item>
		<title>O que você tem de diferente de seu concorrente?</title>
		<link>http://johnathancruz.wordpress.com/2009/11/26/o-que-voce-tem-de-diferente-de-seu-concorrente/</link>
		<comments>http://johnathancruz.wordpress.com/2009/11/26/o-que-voce-tem-de-diferente-de-seu-concorrente/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 22:55:55 +0000</pubDate>
		<dc:creator>johnjasc</dc:creator>
				<category><![CDATA[Negócios]]></category>
		<category><![CDATA[clientes]]></category>
		<category><![CDATA[concorrentes]]></category>
		<category><![CDATA[fidelização]]></category>
		<category><![CDATA[mercado]]></category>
		<category><![CDATA[vendas]]></category>

		<guid isPermaLink="false">http://johnathancruz.wordpress.com/?p=24</guid>
		<description><![CDATA[Geralmente nos preocupamos muito com a concorrência, como dribla-los, como vencê-los e até mesmo como derruba-los. Mas o que nos torna melhor que eles? Será que aquilo que você imagina fazer melhor que o seu concorrente satisfaz os seus clientes? Será que não seria melhor se inspirar em seus concorrente? Analisar e buscar aprender com os concorrentes [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnathancruz.wordpress.com&amp;blog=10601262&amp;post=24&amp;subd=johnathancruz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Geralmente nos preocupamos muito com a concorrência, como dribla-los, como vencê-los e até mesmo como derruba-los.</p>
<p>Mas o que nos torna melhor que eles?</p>
<p>Será que aquilo que você imagina fazer melhor que o seu concorrente satisfaz os seus clientes?</p>
<p>Será que não seria melhor se inspirar em seus concorrente?</p>
<p>Analisar e buscar aprender com os concorrentes pode ajudar a crescer dentro do mercado.  Não se diz que quanto mais erra mais se aprende. Então aprender com os erros que os outros cometem seria até melhor, pois você não vai fazer a mesma &#8220;cagada&#8221;.</p>
<p>Ter um diferencial que agrade e fidelize o cliente é muito difícil, é preciso ter um <em>Feeling </em>para a venda. A palavra é chave é vender. Agradar o cliente de maneira única, fazer com que  ele compre uma Sensação e não somente um produto ou serviço.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnathancruz.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnathancruz.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnathancruz.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnathancruz.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnathancruz.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnathancruz.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnathancruz.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnathancruz.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnathancruz.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnathancruz.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnathancruz.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnathancruz.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnathancruz.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnathancruz.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnathancruz.wordpress.com&amp;blog=10601262&amp;post=24&amp;subd=johnathancruz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnathancruz.wordpress.com/2009/11/26/o-que-voce-tem-de-diferente-de-seu-concorrente/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fea8ac5a4b453498303b0460f010a226?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">johnjasc</media:title>
		</media:content>
	</item>
		<item>
		<title>Go! Simplesmente vá</title>
		<link>http://johnathancruz.wordpress.com/2009/11/26/go-simplesmente-va/</link>
		<comments>http://johnathancruz.wordpress.com/2009/11/26/go-simplesmente-va/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 02:29:43 +0000</pubDate>
		<dc:creator>johnjasc</dc:creator>
		
		<guid isPermaLink="false">http://johnathancruz.wordpress.com/?p=20</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnathancruz.wordpress.com&amp;blog=10601262&amp;post=20&amp;subd=johnathancruz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span style="text-align:center; display: block;"><a href="http://johnathancruz.wordpress.com/2009/11/26/go-simplesmente-va/"><img src="http://img.youtube.com/vi/IscNBM0mcK8/2.jpg" alt="" /></a></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnathancruz.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnathancruz.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnathancruz.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnathancruz.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnathancruz.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnathancruz.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnathancruz.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnathancruz.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnathancruz.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnathancruz.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnathancruz.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnathancruz.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnathancruz.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnathancruz.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnathancruz.wordpress.com&amp;blog=10601262&amp;post=20&amp;subd=johnathancruz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnathancruz.wordpress.com/2009/11/26/go-simplesmente-va/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fea8ac5a4b453498303b0460f010a226?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">johnjasc</media:title>
		</media:content>
	</item>
		<item>
		<title>Lançamento do Mural de Idéias</title>
		<link>http://johnathancruz.wordpress.com/2009/11/25/lancamento-do-mural-de-ideias/</link>
		<comments>http://johnathancruz.wordpress.com/2009/11/25/lancamento-do-mural-de-ideias/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 03:30:51 +0000</pubDate>
		<dc:creator>johnjasc</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mídias Sociais]]></category>
		<category><![CDATA[Tendências]]></category>
		<category><![CDATA[Trabalhos]]></category>

		<guid isPermaLink="false">http://johnathancruz.wordpress.com/?p=13</guid>
		<description><![CDATA[Ontem foi lançado o Mural de Idéias, uma aplicação web onde os funcionários podem expor e comentar ideias para melhorar a empresa onde trabalham! As pessoas tem idéias a todo tempo, os funcionários de uma empresa tem idéias a todo tempo, por que não expor essas idéias a todos, e vê se ela possui relevância [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnathancruz.wordpress.com&amp;blog=10601262&amp;post=13&amp;subd=johnathancruz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ontem foi lançado o <a href="http://www.muraldeideias.com.br">Mural de Idéias</a>, uma aplicação web onde os funcionários podem expor e comentar ideias para melhorar a empresa onde trabalham!</p>
<p>As pessoas tem idéias a todo tempo, os funcionários de uma empresa tem idéias a todo tempo, por que não expor essas idéias a todos, e vê se ela possui relevância para o negócio.</p>
<p>As pessoas querem colaborar, querem participar. Nós vemos isso no sucesso das comunidades sociais na internet.</p>
<p>Agora nós podemos discutir assuntos importantes para o andamento da empresa e dos negócios que fazem parte dela. Todos poderão colaborar, dando sugestões, apresentando novas idéias, discutindo sobre o que é melhor e criticando o que é ruim, mas sempre tentando resolver os problemas.</p>
<p>A ferramenta é simples, rápida e intuitiva.</p>
<p>Acessem: www.muraldeideias.com.br</p>
<div id="__ss_2542173" style="width:425px;text-align:left;"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;text-decoration:underline;margin:12px 0 3px;" title="Apresentacao do Mural de Ideias" href="http://www.slideshare.net/muraldeideias/apresentacao-do-mural-de-ideias">Apresentacao do Mural de Ideias</a></p>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/muraldeideias">Mural de Ideias</a>.</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnathancruz.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnathancruz.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnathancruz.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnathancruz.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnathancruz.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnathancruz.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnathancruz.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnathancruz.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnathancruz.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnathancruz.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnathancruz.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnathancruz.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnathancruz.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnathancruz.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnathancruz.wordpress.com&amp;blog=10601262&amp;post=13&amp;subd=johnathancruz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnathancruz.wordpress.com/2009/11/25/lancamento-do-mural-de-ideias/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fea8ac5a4b453498303b0460f010a226?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">johnjasc</media:title>
		</media:content>
	</item>
		<item>
		<title>Fechando projetos</title>
		<link>http://johnathancruz.wordpress.com/2009/11/21/fechando-projetos/</link>
		<comments>http://johnathancruz.wordpress.com/2009/11/21/fechando-projetos/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 13:43:45 +0000</pubDate>
		<dc:creator>johnjasc</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Programação Web]]></category>
		<category><![CDATA[Trabalhos]]></category>

		<guid isPermaLink="false">http://johnathancruz.wordpress.com/?p=5</guid>
		<description><![CDATA[No trabalho como desenvolvedor web, você deve ter o máximo de dedicação possível ao se prospectar clientes e apresentar uma proposta de desenvolvimento de um site ou sistema web. Devemos lembrar que aquilo que nós vendemos não é algo palpável, o que torna os nossos produtos muito mais difíceis de vender. Por isso é importante [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnathancruz.wordpress.com&amp;blog=10601262&amp;post=5&amp;subd=johnathancruz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>No trabalho como desenvolvedor web, você deve ter o máximo de dedicação possível ao se prospectar clientes e apresentar uma proposta de desenvolvimento de um site ou sistema web. Devemos lembrar que aquilo que nós vendemos não é algo palpável, o que torna os nossos produtos muito mais difíceis de vender. Por isso é importante desde o primeito contato estabelecer um vínculo de confiança com o cliente. Esse contato é estabelecido pela forma de apresentação, tanto pessoal como do seu portifólio, pela forma de se expressar e na apresentação da proposta.</p>
<p>Um proposta não deve ser apenas um papel rascunhado com o valor a ser cobrado ou apenas falar para o seu cliente o valor que irá cobrar. Uma proposta deve ser elaborada com todos os detalhes necessários, para deixar bem claro ao cliente aquilo que você está oferecendo e aquilo que você poderá cumprir nos prazos estabelecidos.</p>
<p>Prazo. É uma palavra muito importante para se conquistar os clientes. Procure sempre colocar um prazo maior do que você possa entregar, pois sempre surgem contra-tempos. Mas claro que o prazo deve ser compatível com aquilo que o cliente deseja.</p>
<p>Outro ponto importante é o momento da apresentação de sua proposta. Procure sempre entregar nas mãos do cliente a sua proposta. Não envie as propostas por e-mail ou mande alguém deixar, a não ser que seja impossível fisicamente se deslocar até o cliente ou que o mesmo peça para que a proposta seja enviada por e-mail. Essa forma de abordagem mostra ao seu cliente a importância que você está dando ao seu projeto, e que você dará o máximo para que o trabalho seja cumprido em tempo hábil e com qualidade. E ainda permite negociar os preços cobrados diretamente com o cliente, pois geralmente se ele recebe por e-mail uma proposta que não cabe em seu orçamento, ele apenas rejeita essa proposta, pensando que ela não pode ser negociada. E você pode acabar perdendo o trabalho.</p>
<p>Em uma reunião de prospecção procure ouvir o máximo o cliente. Anote todos os pontos que  ele relatar. E procure ser o mais verdadeiro possível, sempre falando de suas possibilidades como desenvolvedor web. Não aceite trabalhos que você não possa cumprir, tanto por não possuir domínio sobre ferramentas e tecnologias necessárias ou por falta de tempo para desenvolver o trabalho.</p>
<p>É isso gente. Essas são apenas alguma dicas adquiridas por experiência própria.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnathancruz.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnathancruz.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnathancruz.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnathancruz.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnathancruz.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnathancruz.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnathancruz.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnathancruz.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnathancruz.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnathancruz.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnathancruz.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnathancruz.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnathancruz.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnathancruz.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnathancruz.wordpress.com&amp;blog=10601262&amp;post=5&amp;subd=johnathancruz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnathancruz.wordpress.com/2009/11/21/fechando-projetos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fea8ac5a4b453498303b0460f010a226?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">johnjasc</media:title>
		</media:content>
	</item>
	</channel>
</rss>
