<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Kaptain Krayola</title>
	
	<link>http://www.kaptainkrayola.com</link>
	<description>You daily dose of internet destruction</description>
	<lastBuildDate>Fri, 05 Feb 2010 22:42:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/KaptainKrayolaPieQuest-Pie20" /><feedburner:info uri="kaptainkrayolapiequest-pie20" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>KaptainKrayolaPieQuest-Pie20</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Friday Free Code – Auto Google Translate (php)</title>
		<link>http://feedproxy.google.com/~r/KaptainKrayolaPieQuest-Pie20/~3/Cjx25CqT-9o/</link>
		<comments>http://www.kaptainkrayola.com/auto-google-translate-php/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 22:40:18 +0000</pubDate>
		<dc:creator>The Kaptain</dc:creator>
				<category><![CDATA[Content Generation]]></category>
		<category><![CDATA[Free Code]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.kaptainkrayola.com/?p=114</guid>
		<description><![CDATA[Below you will find a handy dandy piece of code that The Kaptain uses to take some content and make it just a little bit more unique.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function googletranslate&#40; $text, $destLang = 'es', $srcLang = 'en' &#41; &#123;
&#160;
$text = substr&#40;$text,0,1500&#41;;
$text = urlencode&#40; $text &#41;;
$destLang = urlencode&#40; $destLang &#41;;
$srcLang = urlencode&#40; $srcLang &#41;;
&#160;
$url = &#34;http://ajax.googleapis.com/ajax/services/language/translate?v=1.0&#38;q=$text&#38;langpair=$srcLang&#124;$destLang&#34;;
&#160;
$trans = wpbf_http_get&#40; [...]]]></description>
			<content:encoded><![CDATA[<p>Below you will find a handy dandy piece of code that The Kaptain uses to take some content and make it just a little bit more unique.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> googletranslate<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$text</span><span style="color: #339933;">,</span> <span style="color: #000088;">$destLang</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'es'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$srcLang</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'en'</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
<span style="color: #000088;">$text</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$text</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">1500</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$text</span> <span style="color: #339933;">=</span> <span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$text</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$destLang</span> <span style="color: #339933;">=</span> <span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$destLang</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$srcLang</span> <span style="color: #339933;">=</span> <span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$srcLang</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$url</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;http://ajax.googleapis.com/ajax/services/language/translate?v=1.0&amp;q=<span style="color: #006699; font-weight: bold;">$text</span>&amp;langpair=<span style="color: #006699; font-weight: bold;">$srcLang</span>|<span style="color: #006699; font-weight: bold;">$destLang</span>&quot;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$trans</span> <span style="color: #339933;">=</span> wpbf_http_get<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$url</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$json</span> <span style="color: #339933;">=</span> <span style="color: #990000;">json_decode</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$trans</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$json</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'responseStatus'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">'200'</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">return</span> <span style="color: #000088;">$json</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'responseData'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'translatedText'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Now, the way I generally use this is to have the script randomly select a couple languages from the list then loop the content through each one.  See below:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$mytext</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Some big block of text up to 1500 characters long&quot;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$langs</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;es&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;fr&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;de&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;it&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;nl&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;ru&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>  <span style="color: #666666; font-style: italic;">//add any other language supported by Google Translate or remove ones you don't want to use</span>
<span style="color: #000088;">$i</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$useLangs</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
       <span style="color: #666666; font-style: italic;">//you can change the 3 to whichever number you want to have your text translated more or less times</span>
       <span style="color: #b1b100;">while</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$i</span> <span style="color: #339933;">&lt;</span> <span style="color: #cc66cc;">3</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
            <span style="color: #000088;">$z</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$langs</span><span style="color: #009900;">&#91;</span><span style="color: #990000;">array_rand</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$langs</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
            <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">in_array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$z</span><span style="color: #339933;">,</span><span style="color: #000088;">$useLangs</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
                   <span style="color: #000088;">$useLangs</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$z</span><span style="color: #339933;">;</span>
                   <span style="color: #000088;">$i</span><span style="color: #339933;">++;</span>
            <span style="color: #009900;">&#125;</span>
&nbsp;
        <span style="color: #009900;">&#125;</span>
    <span style="color: #000088;">$useLangs</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;en&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//whatever language you want the content to end up in</span>
    <span style="color: #000088;">$lastLang</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;en&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//whatever language your content is in originally</span>
&nbsp;
    <span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$useLangs</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$lang</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$mytext</span><span style="color: #339933;">=</span> googletranslate<span style="color: #009900;">&#40;</span><span style="color: #000088;">$mytext</span><span style="color: #339933;">,</span><span style="color: #000088;">$lang</span><span style="color: #339933;">,</span><span style="color: #000088;">$lastLang</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$lastLang</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$lang</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">//echo out your newly translated text!</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$mytext</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<img src="http://feeds.feedburner.com/~r/KaptainKrayolaPieQuest-Pie20/~4/Cjx25CqT-9o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kaptainkrayola.com/auto-google-translate-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kaptainkrayola.com/auto-google-translate-php/</feedburner:origLink></item>
		<item>
		<title>Personal Review of Dragon Naturally Speaking 10 Software</title>
		<link>http://feedproxy.google.com/~r/KaptainKrayolaPieQuest-Pie20/~3/CVemkE3CVIc/</link>
		<comments>http://www.kaptainkrayola.com/personal-review-of-dragon-naturally-speaking-10-software/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 02:39:12 +0000</pubDate>
		<dc:creator>The Kaptain</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.kaptainkrayola.com/personal-review-of-dragon-naturally-speaking-10-software/</guid>
		<description><![CDATA[I purchased the Dragon Naturally Speaking 10 speech recognition software on a whim a few months ago.  One of the main reasons for the purchase is that I do a lot of typing in Microsoft Word now to create new blog posts for several web sites and thought this may speed up the process vs. [...]]]></description>
			<content:encoded><![CDATA[<p>I purchased the Dragon Naturally Speaking 10 speech recognition software on a whim a few months ago.  One of the main reasons for the purchase is that I do a lot of typing in Microsoft Word now to create new blog posts for several web sites and thought this may speed up the process vs. typing.</p>
<p>Well I must tell you it has definitely helped me speed up my work.  It took me about 30 minutes to train the software to my voice from the time I took the software out of the box,and, about 30 more minutes to “fine tune” the quality of the words it interprets. Now I am very surprised when I just dictate and it spells almost everything correctly.  It is somewhat entertaining to use as a result.  I can speed up my posting to blogs as this dictation is faster than my typing ever was.  I do have to review my dictation to verify accuracy as occasionally it may misspell a word or two or use a word that might sound the same as what I said but spelled differently.  It is not perfect yet, but, I can verify that it is very helpful to me.</p>
<p>It is noticeable that this type of voice recognition software has come a long ways as Dragon Naturally Speaking has upgraded its versions over the years.  I am glad I ventured to purchase the voice recognition software and would recommend it to anyone who wants to speed up their writing.</p>
<img src="http://feeds.feedburner.com/~r/KaptainKrayolaPieQuest-Pie20/~4/CVemkE3CVIc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kaptainkrayola.com/personal-review-of-dragon-naturally-speaking-10-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kaptainkrayola.com/personal-review-of-dragon-naturally-speaking-10-software/</feedburner:origLink></item>
		<item>
		<title>Why to outsurce software Product development?</title>
		<link>http://feedproxy.google.com/~r/KaptainKrayolaPieQuest-Pie20/~3/4Z-GUgfBxas/</link>
		<comments>http://www.kaptainkrayola.com/why-to-outsurce-software-product-development/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 01:51:39 +0000</pubDate>
		<dc:creator>The Kaptain</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.kaptainkrayola.com/why-to-outsurce-software-product-development/</guid>
		<description><![CDATA[Cut down your software product development cost and time by outsourcing software product development at an affordable price. Rightway Solution is an offshore software product development companies manages your requirement by hi-tech hardware, software with effective communication and better support
Rightway solution is an expert in product development with its broad focus on Software Product Engineering. [...]]]></description>
			<content:encoded><![CDATA[<p>Cut down your software product development cost and time by outsourcing software product development at an affordable price. Rightway Solution is an offshore software product development companies manages your requirement by hi-tech hardware, software with effective communication and better support</p>
<p>Rightway solution is an expert in product development with its broad focus on Software Product Engineering. Outsource software product development  is the best resource to take advantages of an expert organization. Rightway solution can work comprehensively with client’s Product engineering team. There are lots of small and medium level companies provide software development services. Software product development needs special skills that all software development company can not delivers. Reduce software development cost by outsourcing to software product Development Company. They will also provide a framework so a company can manage the product and various versions of it as well.</p>
<p>Why Outsource Software Product Development?</p>
<p>The purpose is to consistently perform a well-defined engineering process that integrates all the software engineering activities to produce correct, consistent software products effectively and efficiently.</p>
<p>Offshore software development companies can help in reducing cost of software development and provides dedicated skilled software developers for necessary support. All  Software development companies require a long-term strategy to make sure deliver higher ROI and success ratio. While the main concern across is the effectiveness of product management team. We at Rightway Solution PVT Ltd ensure transparency on the project status and skills of software developers. These are some benefits of outsourcing product development.</p>
<li>Flexible and cost effective development.</li>
<li>Customized and bespoke software development service.</li>
<li>Skilled Professional developer for best quality work. </li>
<li>Effective and efficient documentation for all project needs</li>
<img src="http://feeds.feedburner.com/~r/KaptainKrayolaPieQuest-Pie20/~4/4Z-GUgfBxas" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kaptainkrayola.com/why-to-outsurce-software-product-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kaptainkrayola.com/why-to-outsurce-software-product-development/</feedburner:origLink></item>
		<item>
		<title>Advantages of social Unlock Private Myspace Profiles: creating and managing your online reputation</title>
		<link>http://feedproxy.google.com/~r/KaptainKrayolaPieQuest-Pie20/~3/Fge7e7D4pGI/</link>
		<comments>http://www.kaptainkrayola.com/advantages-of-social-unlock-private-myspace-profiles-creating-and-managing-your-online-reputation/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 00:32:23 +0000</pubDate>
		<dc:creator>The Kaptain</dc:creator>
				<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.kaptainkrayola.com/advantages-of-social-unlock-private-myspace-profiles-creating-and-managing-your-online-reputation/</guid>
		<description><![CDATA[Social Unlock Private Myspace Profiles are social utilities that connect you to other people and companies online often using social media and social media marketing strategies. There are hundreds of host sites online for social Unlock Private Myspace Profiles, as well as various blog sites for posting comments, responses, as well as general information. The [...]]]></description>
			<content:encoded><![CDATA[<p>Social Unlock Private Myspace Profiles are social utilities that connect you to other people and companies online often using social media and social media marketing strategies. There are hundreds of host sites online for social Unlock Private Myspace Profiles, as well as various blog sites for posting comments, responses, as well as general information. The importance of social Unlock Private Myspace Profiles and social media marketing is only recently being realized.</p>
<p>Currently, YouTube is available in over fifteen different languages, while Facebook touts over 65 million users worldwide. By becoming a part of this far-reaching social network, you can take advantage of the benefits of relatively low-cost or even free marketing strategies with a positive online reputation.</p>
<p>Firstly, creating a social profile is a great way to get your company noticed. Connecting to other businesses and individuals associated with your services helps legitimize your site. You can always start a blog as well to boost your visibility. Millions of people surf the web on a daily business, so by simply creating a highly visible profile can increase your business flow.</p>
<p>Social Unlock Private Myspace Profiles are great for learning and sharing information. By accessing other people’s Unlock Private Myspace Profiles you can see what is being said about them and often about your company as well. The information aspect is twofold: you can read reviews about products or strategies that you might like to try, as well as learn what your clients think of the services your provide.</p>
<p>Finally, one of the lesser known, but incredibly valuable benefits of social Unlock Private Myspace Profiles for businesses is damage control. If you have a positive online reputation but one person has a bad experience, a) you are very likely to become aware of their bad experience and therefore make sure it doesn’t happen again to them or other and b) their negative comment, wherever it may be posted, will be partially diffused by all the good comments you have already received.</p>
<p>It may even be helpful to consult social media marketing services. With the exponential affect of technology on our public and personal lives, staying involved is one of the best ways to ensure that you or your company does not find itself left at the station while the bullet train of change zooms away.</p>
<img src="http://feeds.feedburner.com/~r/KaptainKrayolaPieQuest-Pie20/~4/Fge7e7D4pGI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kaptainkrayola.com/advantages-of-social-unlock-private-myspace-profiles-creating-and-managing-your-online-reputation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kaptainkrayola.com/advantages-of-social-unlock-private-myspace-profiles-creating-and-managing-your-online-reputation/</feedburner:origLink></item>
		<item>
		<title>Auto Responder Software Or an Online Auto Responder Service?</title>
		<link>http://feedproxy.google.com/~r/KaptainKrayolaPieQuest-Pie20/~3/YmAH3cU8Z30/</link>
		<comments>http://www.kaptainkrayola.com/auto-responder-software-or-an-online-auto-responder-service/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 23:25:27 +0000</pubDate>
		<dc:creator>The Kaptain</dc:creator>
				<category><![CDATA[Spam]]></category>

		<guid isPermaLink="false">http://www.kaptainkrayola.com/auto-responder-software-or-an-online-auto-responder-service/</guid>
		<description><![CDATA[n
Is auto responder software that you install on your PC or website worth the cost, time and effort or is there an easier way to capture your customer details and make money from them? ?
There is a huge amount of auto responder software out there but much of I can be complicated to install, difficult [...]]]></description>
			<content:encoded><![CDATA[<p>n
<p>Is auto responder software that you install on your PC or website worth the cost, time and effort or is there an easier way to capture your customer details and make money from them? ?</p>
<p>There is a huge amount of auto responder software out there but much of I can be complicated to install, difficult to manage, time consuming to send emails and offer you no protection against spam complaints.? With increasing spam legislation this is something you really need to be aware of. ?</p>
<p>In my opinion it is much easier to use on of the top autoresponder services.?They are very cheap even for a brand? new website.? They are incredibly easy to use and best of all mean you can have a form up on your website to capture your customer or prospects details within quite literally a few minutes. ?</p>
<p>Now I had previously used a few different types of auto responder software and didn&#8217;t really know what I was doing.?I wasted countless hours for very little before I decided to take a punt on the autoresponder services. ?</p>
<p>The advantages that they offer over auto responder software are that you can manage multiple mailing lists from a single page; you can add your form within seconds to many different websites. In fact you don&#8217;t even need to do that; people can join your list by simply sending an email. ?</p>
<p>Auto responder software often doesn&#8217;t have the ability to track ip addresses making it very difficult for you to prove that the person did sign up to receive your emails in the event of a spam complaint against you. ?</p>
<p>The various services are so cheap and easy to use that I would never bother with auto responder software. ?I prefer to use my time on other more productive activities such as getting new visitors to my website.</p>
<img src="http://feeds.feedburner.com/~r/KaptainKrayolaPieQuest-Pie20/~4/YmAH3cU8Z30" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kaptainkrayola.com/auto-responder-software-or-an-online-auto-responder-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kaptainkrayola.com/auto-responder-software-or-an-online-auto-responder-service/</feedburner:origLink></item>
		<item>
		<title>The Significance of Social Media Marketing</title>
		<link>http://feedproxy.google.com/~r/KaptainKrayolaPieQuest-Pie20/~3/sivakOSDGZw/</link>
		<comments>http://www.kaptainkrayola.com/the-significance-of-social-media-marketing/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 23:24:39 +0000</pubDate>
		<dc:creator>The Kaptain</dc:creator>
				<category><![CDATA[Social Marketing]]></category>

		<guid isPermaLink="false">http://www.kaptainkrayola.com/the-significance-of-social-media-marketing/</guid>
		<description><![CDATA[Social media marketing is the way of promoting your business or sites through different social media channels and it is an effective plan that will surge traffic to your sites, get more links and grasp the attention of people. It is one of the low cost website or product publicity method. It grasps more number [...]]]></description>
			<content:encoded><![CDATA[<p>Social media marketing is the way of promoting your business or sites through different social media channels and it is an effective plan that will surge traffic to your sites, get more links and grasp the attention of people. It is one of the low cost website or product publicity method. It grasps more number of visitors, some of whom may repeatedly visit the website. If you are in a business which deals with selling products or services, then social media marketing is one of the effective ways that will make your site profitable over a period of time. Those who do not know the worth of social media sites fall into three different categories (1) the one who do not anything about social media marketing (2) one who are interested and do not know to use the social media (3)the one who do not have confidence in the worth that a social media marketing can bring in.</p>
<p>Why Social Media?</p>
<p>The more links you have the better your site will be ranked by search engines. When a website that you own receives more natural permanent links, it builds more authority and aids search engine to trust you easily. This helps to get ranked even with competitive keywords. There are so many reasons for promoting your site through social media and it’s really a worthy method to get into fame.</p>
<p>(1)Social media marketing is completely natural that helps you to get more natural links, the websites get exposed to large groups which helps to drive more traffic.</p>
<p>(2)It’s a defendable method, if it is once done properly and successfully, social communities helps to drive traffic more than the previous amount traffic you received from the search engine.</p>
<p>(3) Social media marketing is a community based marketing method, and this doesn’t affect several other methods that drive traffic to the websites regularly.</p>
<p>Social media marketing helps to increase the popularity and web presence to the world. Social media includes online communities, social networks, wikis, blogs and another type of media for sales, marketing, customer service and public relations. The different types of social media marketing tools include facebook, twitter, Linkedin, blogs, YouTube and Flickr. The social media marketing acts as a cheaper method of getting advertised. It is seen that social media marketing acts as one of the leading business venue to use. These days’ business technology buyers participate more socially to promote their business.</p>
<p>Building a colorful and catchy website may take more amount of time and effort. Getting ranked in search engine can take years, in order to build a competitive position. On the other hand social media marketing helps to drive huge visitors within a day. Once if you become aware of social media audience then it is easy to satisfy the customers based upon their needs. The future of internet is social media marketing. The major players in the social media market may change in course off time and online business peoples also have to change their trends according to it. With social media marketing you can easily compete with the counterparts and attain the goal in business.</p>
<img src="http://feeds.feedburner.com/~r/KaptainKrayolaPieQuest-Pie20/~4/sivakOSDGZw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kaptainkrayola.com/the-significance-of-social-media-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kaptainkrayola.com/the-significance-of-social-media-marketing/</feedburner:origLink></item>
		<item>
		<title>Essential Support for Small Business</title>
		<link>http://feedproxy.google.com/~r/KaptainKrayolaPieQuest-Pie20/~3/y-cmrtc1js0/</link>
		<comments>http://www.kaptainkrayola.com/essential-support-for-small-business/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 22:08:24 +0000</pubDate>
		<dc:creator>The Kaptain</dc:creator>
				<category><![CDATA[Social Marketing]]></category>

		<guid isPermaLink="false">http://www.kaptainkrayola.com/essential-support-for-small-business/</guid>
		<description><![CDATA[Business support implementation is two-fold: the first part of the process is creating the outline and plan for your vision. For your business to work successfully, you have to implement each area of the business, or invest in a support team to help when needed. If you are a business coach, your business is helping [...]]]></description>
			<content:encoded><![CDATA[<p>Business support implementation is two-fold: the first part of the process is creating the outline and plan for your vision. For your business to work successfully, you have to implement each area of the business, or invest in a support team to help when needed. If you are a business coach, your business is helping your clients reach a specific goal. Coaching is your expertise – it’s what you do. Now, for your business, how will you protect your intellectual property, such as your online programs? Who is your legal resource, if you don’t know the law? Do you know how to use Quickbooks, FreshBooks or other bookkeeping/invoicing software? If not, who will help you keep your bookkeeping and invoicing current? Will you attend networking events or ask for referrals to attract clients? If you decide to do your own Facebook page and/or other social media marketing, do you know what applications to use to promote your business with a professional presence effectively and efficiently? Are you keeping up with some of the Internet marketing experts like Chris Brogan, Mari Smith or the Social Media Examiner to remain current on Internet and social media marketing strategies? If not, who is your Internet marketing assistant? </p>
<p>The right attorney can help you protect your intellectual property, help with unsatisfied clients and review contracts. The right accountant or your local Small Business Administration office will offer a Quickbooks tutorial to show you how to maintain your bookkeeping daily so you can send this information to your tax preparer at the end of the year. The right Internet marketing specialist will ask questions to help you implement the appropriate online marketing plan to reach your goals, and monitor this plan to ensure it’s working properly for you.</p>
<p>Even if you’re a sole proprietor your business will requires a support team to help you operate successfully and grow. Your support team can also become your consultants to educate and enable you to be knowledgeable in the other aspects of your small business. Your attorney will share tips to help you be aware of the appropriate way to engage in business ventures or exchanges. Your accountant can setup your Quickbooks and teach you how to maintain it throughout the year. If you’re content with your marketing results your marketing specialist can become your consultant to teach you how to maintain a basic online marketing package. Your support /consultant team is a beneficial investment for the health and success of your business.</p>
<p>The second part of the implementation process is preparing space for your vision. Are you adjusting your spending habits to create a reserve to support your business endeavor? Are you continuing your education in your expert field to offer your clients the current and proven knowledge to help them as you promise in your marketing materials? How are you creating room in your life for your business to come through you into this reality? Consider ways you can prepare a space in your life for what you want this year.</p>
<p> </p>
<img src="http://feeds.feedburner.com/~r/KaptainKrayolaPieQuest-Pie20/~4/y-cmrtc1js0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kaptainkrayola.com/essential-support-for-small-business/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kaptainkrayola.com/essential-support-for-small-business/</feedburner:origLink></item>
		<item>
		<title>How to Solve the Javascript Void(0) Problem</title>
		<link>http://feedproxy.google.com/~r/KaptainKrayolaPieQuest-Pie20/~3/zy95m_2wlGY/</link>
		<comments>http://www.kaptainkrayola.com/how-to-solve-the-javascript-void0-problem/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 19:34:47 +0000</pubDate>
		<dc:creator>The Kaptain</dc:creator>
				<category><![CDATA[Spam Blocker]]></category>

		<guid isPermaLink="false">http://www.kaptainkrayola.com/how-to-solve-the-javascript-void0-problem/</guid>
		<description><![CDATA[Many internet users face this problem when they try clicking a link and see this error code on the status bar of the browser which doesn&#8217;t allow the link to work. It is actually an error message that occasionally appears in a web browser when you face a problem loading a JavaScript from a webpage. [...]]]></description>
			<content:encoded><![CDATA[<p>Many internet users face this problem when they try clicking a link and see this error code on the status bar of the browser which doesn&#8217;t allow the link to work. It is actually an error message that occasionally appears in a web browser when you face a problem loading a JavaScript from a webpage. Though this error message pops up on various occasions but the actual reasons could be different for different users, and resolving these problems is necessary by knowing the most possible reasons for this error message.</p>
<p>1- The major cause of this error message is the Popup blocker blocking the JavaScript while stopping the windows which open up as the advertisements on various sites. Resolving this problem involves making changes in the preferences of the popup blocker based on your requirements and thus disabling the popup blocker. One can even download another anti popup software instead or can read the product reviews of popup blockers to assess if they really cause these error messages.</p>
<p>2- The malfunctioning of the web proxy servers (which are used for accessing the various banned websites) can also block the various scripts in the process. This problem can be avoided by not using the proxy server itself or using a proxy server that functions better and do not interfere in the downloading of various scripts. Also check for the compatibility of the proxy server with various web pages and scripts.<br />An improperly written JavaScript could also lead to this error message. The solution lies in notifying this error to the webmaster who in turn must rewrite the JavaScript.</p>
<p>3- The JavaScript might be disabled in your browsers, and this needs to be enabled. To enable this in IE, go to scripting tab of the security option in the Tools menu under the internet options; and to enable this in Firefox, go to Tools menu and enable the JavaScript option in Web features.</p>
<p>4- Web browser implementation of JavaScript might also be broken in some cases, and this requires the switching or simply the up gradation of your web browser.</p>
<p>There is this simple way where you can really avoid &#8220;[removed]void(0)&#8221; error message at the first instance because we know that this &#8220;[removed]void(0)&#8221; can cause certain browsers to really present your web pages in unusual ways, and since the &#8220;[removed]void(0)&#8221; statement is often occurred when a link has no URL attached to it, and the browser doesn&#8217;t understand how to react and returns the error message. So for this, instead use the &#8220;return false;&#8221; statement to let the browser not to look for the URL. Try opening the document in any text editor; Locate the &#8220;[removed]void(0)&#8221; references within the document, Replace the links with the (#) symbol with the syntax &#8220;.&#8221;, Add the &#8220;return false&#8221; declaration to the statement that would make the whole link reference to appear as a Link. Replace the &#8220;callFunction()&#8221; with your function name; Save and close the file finally.</p>
<img src="http://feeds.feedburner.com/~r/KaptainKrayolaPieQuest-Pie20/~4/zy95m_2wlGY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kaptainkrayola.com/how-to-solve-the-javascript-void0-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kaptainkrayola.com/how-to-solve-the-javascript-void0-problem/</feedburner:origLink></item>
		<item>
		<title>The Importance Of Captcha To Preventing Email Spam</title>
		<link>http://feedproxy.google.com/~r/KaptainKrayolaPieQuest-Pie20/~3/9_mwrdFg3M4/</link>
		<comments>http://www.kaptainkrayola.com/the-importance-of-captcha-to-preventing-email-spam/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 19:17:04 +0000</pubDate>
		<dc:creator>The Kaptain</dc:creator>
				<category><![CDATA[Spam]]></category>

		<guid isPermaLink="false">http://www.kaptainkrayola.com/the-importance-of-captcha-to-preventing-email-spam/</guid>
		<description><![CDATA[For those of you that may not know, a captcha is a set of letters and or numbers presented under the form of a small picture. The trick is that the captcha containing letters and or numbers is distorted badly. The captcha has been designed to be an important weapon in the battle against email [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you that may not know, a captcha is a set of letters and or numbers presented under the form of a small picture. The trick is that the captcha containing letters and or numbers is distorted badly. The captcha has been designed to be an important weapon in the battle against email spam. Basically, the captcha is designed to be able to make a distinction between human started queries and automated software queries, and help separate them accordingly. This system, which requires all users to solve a captcha before being able to create an email account and sending emails has revolutionized the fight against email spam and has proven to be quite a reliable ally in the sense that, up until know, there were no software applications created able of being to solve captchas.</p>
<p>The first step for a company that wishes to start an email spam campaign is to create a large number of free email accounts, usually on the largest sites, such as Yahoo, GMail, and so on. Creating email accounts ranging from 5,000 to 100,000 completely through human operators was something unconceivable just until years ago. Before the apparition of the all powerful captcha, anyone wanting to start an email spam campaign, could do so in just a day or two by setting up an automated email creation software application. All you needed to do, basically, was to input some variables, like various ranges for the name, and other details. Email spam was something that absolutely anyone could start and carry out before the advent of the captcha system. The captcha system has worked perfectly since the first day of deployment, and automated email account creation has not been possible since as all large email service providers have decided to implement captcha technology in the account set up processes on their websites.</p>
<p>The role of captcha is no longer limited to the prevention of automated email account creation. Instead, today the captcha system is used in all sorts of online situations where the input of a human is absolutely needed in order to perform a specific task. A good example of a website section where captcha has proven to be equally as important as with the prevention of email spam, is online forms. These forms, while they can also be used for spamming purposes, are usually used by search engine optimization companies, and even private website owners to submit links directed to their respective websites, or even product promotion. The captcha system has evolved quite notably in the past period as freelancing software developers have joined efforts to find ways to defeat captchas. This is why captcha became much more distorted, and some other options were introduced, such as backward writing and so on. I guess that it will be an ongoing war between the largest software developers trying to protect the general public from email spam and dodgy companies trying to promote their clients whilst keeping their costs at an absolute minimum.</p>
<img src="http://feeds.feedburner.com/~r/KaptainKrayolaPieQuest-Pie20/~4/9_mwrdFg3M4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kaptainkrayola.com/the-importance-of-captcha-to-preventing-email-spam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kaptainkrayola.com/the-importance-of-captcha-to-preventing-email-spam/</feedburner:origLink></item>
		<item>
		<title>Making Money with Social Media Marketing – A Multi-Pronged Approach</title>
		<link>http://feedproxy.google.com/~r/KaptainKrayolaPieQuest-Pie20/~3/ocxPpXs3I0I/</link>
		<comments>http://www.kaptainkrayola.com/making-money-with-social-media-marketing-%e2%80%93-a-multi-pronged-approach/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 18:19:44 +0000</pubDate>
		<dc:creator>The Kaptain</dc:creator>
				<category><![CDATA[Social Marketing]]></category>

		<guid isPermaLink="false">http://www.kaptainkrayola.com/making-money-with-social-media-marketing-%e2%80%93-a-multi-pronged-approach</guid>
		<description><![CDATA[To succeed in making money with social media marketing, there are three important facets involved. A well crafted, marketing strategy that includes these various aspects will increase revenue and market position. One of the first goals of this type of marketing is to create a buzz. Use interesting, newsworthy information to attract attention to your [...]]]></description>
			<content:encoded><![CDATA[<p>To succeed in making money with social media marketing, there are three important facets involved. A well crafted, marketing strategy that includes these various aspects will increase revenue and market position. One of the first goals of this type of marketing is to create a buzz. Use interesting, newsworthy information to attract attention to your organization. This could come in many forms. It could be the announcement of an event, such as a new product release or videos featuring tutorials. Tweets are a quick easy way to keep your network informed about specials or articles that are being published.</p>
<p>Blog entries provide information, create discussion and encourage group participation. Having a fan page devoted to promoting a message or brand can increase an organization’s ability to continue making money with social media marketing.  Photos, video clips or links to the web site will promote interactions across the various platforms, creating their own buzz. These methods are all based around online communication. Once the marketing plan is put in place, the organization no longer is in control of the dialogue. It still promotes its message, but to maintain their reputation, these campaigns must fully engage the users and show respect for their audience.</p>
<p>Making money with social media marketing uses a plethora of online services to increase an organization’s web presence. Though they started as a consumer outlet, they have become popular with many types of businesses. News organizations were among the first to capitalize on their popularity and others soon followed. Attracting a fan base by networking with consumers is not the only way to utilize these marketing platforms. Creating a partner network can also be used to vastly increase your “fans”. This involves finding other organizations that sell products that will complement yours and creating a Joint Venture.</p>
<p>For example, if your site promotes travel, you may want to partner with a company that sells luggage, another that provides group tours and perhaps one that sells wrinkle free apparel. Each site will promote the others, which increases the value of everyone in the venture. Not only does this create interest it also enables each organization to generate leads that can be used to build their own customer base as well as furthering yours. These leads are qualified, which means they are already interested in what you have to sell. Making money with social media marketing involves creating targeted marketing campaigns to maximize your marketing dollars.</p>
<img src="http://feeds.feedburner.com/~r/KaptainKrayolaPieQuest-Pie20/~4/ocxPpXs3I0I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kaptainkrayola.com/making-money-with-social-media-marketing-%e2%80%93-a-multi-pronged-approach/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kaptainkrayola.com/making-money-with-social-media-marketing-%e2%80%93-a-multi-pronged-approach/</feedburner:origLink></item>
	</channel>
</rss>
