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

<channel>
	<title>JD Studios</title>
	<atom:link href="http://www.jdstudios.us/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jdstudios.us</link>
	<description>Website Solutions</description>
	<lastBuildDate>Fri, 30 Sep 2011 17:36:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Insecure (mixed) Content Error using https</title>
		<link>http://www.jdstudios.us/tech-tips/insecure-mixed-content-error-using-https/</link>
		<comments>http://www.jdstudios.us/tech-tips/insecure-mixed-content-error-using-https/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 14:35:24 +0000</pubDate>
		<dc:creator>James Dudley</dc:creator>
				<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[Website Development]]></category>

		<guid isPermaLink="false">http://www.jdstudios.us/?p=208</guid>
		<description><![CDATA[If you&#8217;re developing a website, and you&#8217;ve just installed an SSL certificate, there is a good change you may get a message like the above (in Chrome) when you&#8217;re trying to view some of your website&#8217;s pages using the secure https protocol: &#8220;This page has insecure content.&#8221; As you can imagine, this can be very disconcerting to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jdstudios.us/tech-tips/insecure-mixed-content-error-using-https/attachment/insecurecontent-2/" rel="attachment wp-att-212"><img class="alignnone size-full wp-image-212" title="insecurecontent" src="http://www.jdstudios.us/wp-content/uploads/insecurecontent1.jpg" alt="" width="587" height="109" /></a></p>
<p>If you&#8217;re developing a website, and you&#8217;ve just installed an SSL certificate, there is a good change you may get a message like the above (in Chrome) when you&#8217;re trying to view some of your website&#8217;s pages using the secure https protocol:</p>
<blockquote><p>&#8220;This page has insecure content.&#8221;</p></blockquote>
<p>As you can imagine, this can be very disconcerting to your visitors, especially if you&#8217;re running an e-commerce site or collecting any kind of private information.  <em><strong>What this message means is that you have code somewhere on your page that is requesting an asset (image, script, etc) using the non-secure &#8220;http&#8221; protocol. So to fix it, all you really need to do, is change those urls to use https instead of http.</strong></em></p>
<p>Here are some places to check that people oftentimes miss:</p>
<ul>
<li>header (doctypes, html xmlns, etc)</li>
<li>javascripts</li>
<li>images</li>
<li>stylesheets</li>
<li>favicons    &lt;&#8211; this one people always miss!</li>
<li>plugins (such as ShareThis, Facebook widget, Twitter widget, etc)</li>
</ul>
<h3>A Note on Internal Assets</h3>
<div>If you&#8217;re referencing internal assets (ones found on your own server, not external), like images, scripts, and stylesheets, make sure you are not hard-coding the protocol in front of any urls.  But instead, make sure you are referencing these assets relatively.  So for example, DON&#8217;T use:</div>
<pre>&lt;img src="http://www.mysite.com/images/myimage.jpg" /&gt;</pre>
<div>But instead DO use:</div>
<pre>&lt;img src="/images/myimage.jpg" /&gt;</pre>
<div>And that way, the full url will resolve to whatever your page is currently using (http or https.)</div>
<h3>WordPress Paths</h3>
<div>Using WordPress, and referencing images in your template? Make SURE you are doing it this way:</div>
<div>&lt;img src=&#8221;&lt;?= bloginfo(&#8216;stylesheet_directory&#8217;); ?&gt;/images/myimage.jpg&#8221; /&gt;</div>
<div>(assuming of course, your template image files are in an /images folder under your theme&#8217;s folder (where they should be)</div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jdstudios.us/tech-tips/insecure-mixed-content-error-using-https/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to run a 32bit java ODBC webapp on Win7 64bit system</title>
		<link>http://www.jdstudios.us/tech-tips/how-to-run-a-32bit-java-odbc-webapp-on-win7-64bit-system/</link>
		<comments>http://www.jdstudios.us/tech-tips/how-to-run-a-32bit-java-odbc-webapp-on-win7-64bit-system/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 19:02:43 +0000</pubDate>
		<dc:creator>James Dudley</dc:creator>
				<category><![CDATA[Tech Tips]]></category>

		<guid isPermaLink="false">http://www.jamesdudleystudios.com/?p=135</guid>
		<description><![CDATA[Not sure how many die-hard java developers follow my blog, but here&#8217;s a post that I&#8217;m hoping may help that one person out there that is trying to do what took me a few days to figure out! If you try to install an existing java web-based application connecting to an ODBC on Windows7 64 [...]]]></description>
			<content:encoded><![CDATA[<p>Not sure how many die-hard java developers follow my blog, but here&#8217;s a post that I&#8217;m hoping may help that one person out there that is trying to do what took me a few days to figure out!</p>
<p>If you try to install an existing java web-based application connecting to an ODBC on Windows7 64 bit environment, you&#8217;re going to run into problems.  Most likely you&#8217;ll get an error like this one in your tomcat logs when you try to connect to your local datasource:</p>
<pre><strong>..."<span style="color: #ff0000;">[Microsoft][ODBC Driver Manager] Invalid string or buffer length</span>"...</strong></pre>
<p>In my case, this error was when I tried to connect to a MS Access database with Tomcat running as a Win7 service.  So here&#8217;s what you need to do:</p>
<ol>
<li>Setup a 32bit ODBC driver in Win7 using this:  c:\Windows\SysWOW64\odbcad32.exe   (it looks just like the 64bit ODBC manager located in window/system, but it will setup the DSN as a 32 bit, not a 64 bit.)</li>
<li>Install the JRE required by your application.  In my case it was 1.6, so I stuck it under c:\Program Files (x86)\Java\jre1.6.0</li>
<li>When you compile your code, make sure you&#8217;re using the right JRE.  In my case, I&#8217;m using Eclipse / Ant to build/compile my app, so in Eclipse I went to Window -&gt; Preferences -&gt; Java -&gt; Installed JRE&#8217;s, and pointed to my new jre1.6.  Then I right-clicked the root folder of my project, and went to Properties -&gt; Java Build Path -&gt; Libraries -&gt; remove the current jre, then &#8220;Add Library&#8221; to add the new one</li>
<li>And here&#8217;s the big trick:  instead of running Tomcat as a windows service, start is manually by creating a batch file somewhere (ie: in your tomcat directory, I called mine tomcat.bat), and put in the following contents, changing paths where necessary, obviously:</li>
</ol>
<p> </p>
<div id="_mcePaste" style="padding-left: 60px;">SET JAVA_HOME=c:\Program Files (x86)\Java\jre1.6.0</div>
<div id="_mcePaste" style="padding-left: 60px;">SET CATALINA_HOME=c:\Tomcat</div>
<div id="_mcePaste" style="padding-left: 60px;">start &#8220;Tomcat 5.5.31&#8243; &#8220;%JAVA_HOME%\bin\java&#8221; -classpath &#8220;%JAVA_HOME%\lib\tools.jar;%CATALINA_HOME%\bin\bootstrap.jar&#8221; -Dcatalina.home=&#8221;%CATALINA_HOME%&#8221; -Dcatalina.base=&#8221;%CATALINA_HOME%&#8221; -Djava.endorsed.dirs=&#8221;%CATALINA_HOME%\common\endorsed&#8221; -Djava.io.tmpdir=&#8221;%CATALINA_HOME%\temp&#8221; org.apache.catalina.startup.Bootstrap start</div>
<p style="padding-left: 60px;">SET JAVA_HOME=c:\Program Files (x86)\Java\jre1.6.0		SET CATALINA_HOME=c:\Tomcat		start &#8220;Tomcat 5.5.31&#8243; &#8220;%JAVA_HOME%\bin\java&#8221; -classpath &#8220;%JAVA_HOME%\lib\tools.jar;%CATALINA_HOME%\bin\bootstrap.jar&#8221; -Dcatalina.home=&#8221;%CATALINA_HOME%&#8221; -Dcatalina.base=&#8221;%CATALINA_HOME%&#8221; -Djava.endorsed.dirs=&#8221;%CATALINA_HOME%\common\endorsed&#8221; -Djava.io.tmpdir=&#8221;%CATALINA_HOME%\temp&#8221; org.apache.catalina.startup.Bootstrap start</p>
<p style="padding-left: 30px;">Now run the batch file to startup Tomcat, and leave the window open to view error logs.  It&#8217;s not as nice as running it as a service, but it works.  If someone knows how to run Tomcat as a 32bit service on Win7 64bit, let me know!</p>
<p>Now you&#8217;ll have Tomcat, Java, and your app all pointing to the same 32bit JRE using the Win7 32 bit ODBC drivers, and it should all work perfectly, like it was on your old Vista or XP machine.</p>
<p>Did this help you?  Let me know!  Still have questions?  Ask in the comments below and I&#8217;ll do my best to help you out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jdstudios.us/tech-tips/how-to-run-a-32bit-java-odbc-webapp-on-win7-64bit-system/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Chrome &#8220;error 102 connection refused&#8221; FIX</title>
		<link>http://www.jdstudios.us/tech-tips/chrome-error-102-connection-refused-fix/</link>
		<comments>http://www.jdstudios.us/tech-tips/chrome-error-102-connection-refused-fix/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 17:46:08 +0000</pubDate>
		<dc:creator>James Dudley</dc:creator>
				<category><![CDATA[Tech Tips]]></category>

		<guid isPermaLink="false">http://www.jamesdudleystudios.com/blog/?p=90</guid>
		<description><![CDATA[Are you unable to browse anywhere on the internet?  But you know your internet connection is fine?  Read on&#8230; As a result of my computer recently being infected with the &#8220;AV Security Suite&#8221; virus, after I cleaned the virus, I could not browse anywhere on the internet.  Chrome will give you an &#8220;error 102 connection [...]]]></description>
			<content:encoded><![CDATA[<p><em>Are you unable to browse anywhere on the internet?  But you know your internet connection is fine?  Read on&#8230;</em></p>
<p>As a result of my computer recently being infected with the &#8220;AV Security Suite&#8221; virus, after I cleaned the virus, I could not browse anywhere on the internet.  Chrome will give you an &#8220;error 102 connection refused&#8221; message, Internet Explorer &amp; Firefox will probably give you something similar like &#8220;The webpage cannot be displayed.&#8221;  This was because the virus had changed my Internet settings in Windows to use a proxy server.</p>
<p>You can easily fix this by going to Windows control panel -&gt; Internet Options -&gt; Connections -&gt; LAN settings -&gt; then UNCHECK &#8220;Use Proxy Server&#8221;.</p>
<p> </p>
<p> </p>
<p><div id="attachment_91" class="wp-caption alignnone" style="width: 310px"><a href="http://www.jamesdudleystudios.com/wp-content/uploads/2010/07/turn-off-proxy.jpg"><img class="size-medium wp-image-91 " title="turn-off-proxy" src="http://www.jamesdudleystudios.com/wp-content/uploads/2010/07/turn-off-proxy-300x195.jpg" alt="Screenshot: turn off proxy server in windows" width="300" height="195" /></a><p class="wp-caption-text">Click to enlarge!</p></div>
<p> </p>
<p> </p>
<p><em>Hope that helped!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jdstudios.us/tech-tips/chrome-error-102-connection-refused-fix/feed/</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>Removing &#8220;AV Security Suite&#8221; Virus</title>
		<link>http://www.jdstudios.us/tech-tips/removing-av-security-suite-virus/</link>
		<comments>http://www.jdstudios.us/tech-tips/removing-av-security-suite-virus/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 17:33:40 +0000</pubDate>
		<dc:creator>James Dudley</dc:creator>
				<category><![CDATA[Tech Tips]]></category>

		<guid isPermaLink="false">http://www.jamesdudleystudios.com/blog/?p=87</guid>
		<description><![CDATA[Did you get hit with the &#8220;AV Security Suite&#8221; virus? Read on, I&#8217;ll tell you how to get rid of it&#8230; I&#8217;m a software developer, very computer savvy, and never do anything foolish online to expose my computer to possible risks.  I don&#8217;t run any anti-virus software, because I don&#8217;t want anything slowing down my [...]]]></description>
			<content:encoded><![CDATA[<p>Did you get hit with the <strong>&#8220;AV Security Suite&#8221; virus?</strong> Read on, I&#8217;ll tell you how to get rid of it&#8230;</p>
<p>I&#8217;m a software developer, very computer savvy, and never do anything foolish online to expose my computer to possible risks.  I don&#8217;t run any anti-virus software, because I don&#8217;t want anything slowing down my computer while I work, and I&#8217;m pretty confident that I can get rid of anything that comes along.  And my track record shows that I&#8217;ve never got any viruses before today.  But this morning I got hit with a pretty awful one that I think most people would have quite a time removing &#8211; so I thought I would write about it here, if you need help.</p>
<p>The &#8220;AV Security Suite&#8221; trojan-horse virus will basically lock up your computer, not allow you to open any applications, and keep popping up windows saying that your computer is infected with a virus, and that you need to run a security scan to clean it.  Then they offer you to run the scan, or purchase their &#8220;anti-virus&#8221; software.  The screen that pops up will look like this:</p>
<p><a href="http://www.jamesdudleystudios.com/blog/wp-content/uploads/2010/07/AV_Security_Suite.jpg"><img class="alignnone size-full wp-image-88" title="AV_Security_Suite" src="http://www.jamesdudleystudios.com/blog/wp-content/uploads/2010/07/AV_Security_Suite.jpg" alt="" width="449" height="341" /></a></p>
<p>You will not be able to open task manager to stop the process from running, as it blocks any application from running (including task manager).  The only programs it allows to run is Internet Explorer (iexplore.exe) and Firefox (firefox.exe).  So in order to remove the virus, here&#8217;s what needs to be done:</p>
<ol>
<li>The process associated with AV Security Suite must be stopped.</li>
<li>Files &amp; registry entries associated with the virus must be removed.</li>
</ol>
<p>Here&#8217;s how I did it:</p>
<ul>
<li>reboot the computer in safe mode (press F8 a few times before Windows loads)</li>
<li>as soon as you&#8217;re in Windows, press Ctrl+Alt+Del to open Task Manager.  Click the &#8220;Processes&#8221; tab, find &#8220;eaeujrwtssd.exe&#8221;, click it, then click &#8220;End Process&#8221;.</li>
<li>download &amp; install MalwareBytes Anti-Malware program.  Here&#8217;s the link:  <a href="http://www.malwarebytes.org/">http://www.malwarebytes.org/</a> (click the free version download).  Once it&#8217;s installed, run the Quick scan.  It should find the infected registry values &amp; files.  Tell the program to delete (quarantine) the files after the scan, then reboot your computer.</li>
</ul>
<p>That should take care of it!</p>
<p>If the above process doesn&#8217;t work, I found a much more detailed description on how to get rid of it at this link:  <a href="http://www.virusremovalguru.com/?p=6257">http://www.virusremovalguru.com/?p=6257</a></p>
<p><em>Did you get this virus?  Did you get rid of it successfully?  Let me know by commenting below!</em></p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.jdstudios.us/tech-tips/removing-av-security-suite-virus/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Updating Copyright Year in Website Footers Automatically</title>
		<link>http://www.jdstudios.us/website-design/updating-copyright-year-in-website-footers-automatically/</link>
		<comments>http://www.jdstudios.us/website-design/updating-copyright-year-in-website-footers-automatically/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 19:29:17 +0000</pubDate>
		<dc:creator>James Dudley</dc:creator>
				<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.jamesdudleystudios.com/blog/?p=52</guid>
		<description><![CDATA[Happy New Year everyone, and welcome to 2010.  Do you have a copyright footer on your website?  Does it still say 2009?  Every year this is something most people forget to update.  Well, just use this little snippet of javascript code below and you&#8217;ll never have to worry about it again. &#38;copy;&#60;script&#62;document.write(new Date().getFullYear())&#60;/script&#62;Your Company Name [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-medium wp-image-53 alignleft" title="mgz-83_illustration-copyright-bomb_350x531" src="http://www.jamesdudleystudios.com/blog/wp-content/uploads/2010/01/mgz-83_illustration-copyright-bomb_350x531-197x300.jpg" alt="mgz-83_illustration-copyright-bomb_350x531" width="69" height="106" />Happy New Year everyone, and welcome to 2010.  Do you have a copyright footer on your website?  Does it still say 2009?  Every year this is something most people forget to update.  Well, just use this little snippet of javascript code below and you&#8217;ll never have to worry about it again.</p>
<pre id="line1">&amp;copy;&lt;<span class="start-tag">script</span>&gt;document.write(new Date().getFullYear())&lt;/<span class="end-tag">script</span>&gt;Your Company Name</pre>
<p>It&#8217;s a quick fix that will take you less than 5 minutes to implement and you&#8217;ll never have to worry about it again!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jdstudios.us/website-design/updating-copyright-year-in-website-footers-automatically/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Blogging, Part II: RSS Feeds</title>
		<link>http://www.jdstudios.us/website-design/blogging-part-ii-rss-feeds/</link>
		<comments>http://www.jdstudios.us/website-design/blogging-part-ii-rss-feeds/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 14:39:56 +0000</pubDate>
		<dc:creator>James Dudley</dc:creator>
				<category><![CDATA[Business Branding]]></category>
		<category><![CDATA[Marketing & Advertising]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.jamesdudleystudios.com/blog/?p=46</guid>
		<description><![CDATA[All About RSS Feeds &#38; Content Syndication Now that you know what blogging is all about, and a little bit about how to make your blog work for you, it&#8217;s time to learn about what RSS is all about. When you have a blog, and write your posts &#8211; people are only going to read [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-47" title="BLOG" src="http://www.jamesdudleystudios.com/blog/wp-content/uploads/2009/06/blogging-727509_17541346-300x190.jpg" alt="BLOG" width="300" height="190" /></p>
<p><strong>All About RSS Feeds &amp; Content Syndication<br />
</strong></p>
<p>Now that you know <a href="http://www.jamesdudleystudios.com/blog/2009/06/blogging-part-i-is-blogging-for-you/">what blogging is all about</a>, and a little bit about how to make your blog work for you, it&#8217;s time to learn about what RSS is all about.</p>
<p>When you have a blog, and write your posts &#8211; people are only going to read them if they take the effort to remember to regularly come to your blog and read your most recent content.  And if people like to read a lot of blogs, it is easy to remember which ones you have read, and which ones you have yet to catch up on.  This is where using RSS and blog readers comes into play.  RSS stands for &#8220;Really Simple Syndication&#8221; and basically makes it very easy for you to syndicate (simultaneously publicize your blog to many places).  People can use a blog &#8220;reader&#8221; to subscribe to your blog (using RSS) and then here is where the magic happens:  every time you write a blog post, it will automatically be delivered into the inbox of your readers&#8217; blog reader!  If you have a blog that you created using any of the major blog services (Blogger, WordPress, TypePad), then your blog already has RSS available to your readers.</p>
<p>So let&#8217;s talk about how to use a blog reader to keep up to date with all the blogs you like to read.  My favorite is <a href="http://reader.google.com">Google Reader</a>, although there are many others out there such as <a href="http://www.bloglines.com/">Bloglines</a> and <a href="http://www.newsgator.com/Individuals/">newsgator</a>, or you can even signup to have blog posts delivered directly to your email inbox using a service such as <a href="http://www.feedmyinbox.com/">Feed My Inbox</a>.</p>
<p>Here&#8217;s another neat tip:  If you have an email newsletter that you send out to a list of customers, you can automatically have your blog posts delivered to the inbox of your email list members using <a href="http://www.mailchimp.com/">MailChimp</a>&#8216;s &#8220;<a href="http://www.mailchimp.com/features/power_features/rss">RSS to Email</a>&#8221; feature.</p>
<p>So now you&#8217;ll know every time you see the RSS logo what it means.<strong></strong></p>
<p><img class="alignleft size-medium wp-image-48" title="rss_logo" src="http://www.jamesdudleystudios.com/blog/wp-content/uploads/2009/06/rss_logo-300x298.jpg" alt="rss_logo" width="123" height="123" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jdstudios.us/website-design/blogging-part-ii-rss-feeds/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Blogging, Part I: Is Blogging For You?</title>
		<link>http://www.jdstudios.us/website-design/blogging-part-i-is-blogging-for-you/</link>
		<comments>http://www.jdstudios.us/website-design/blogging-part-i-is-blogging-for-you/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 17:58:59 +0000</pubDate>
		<dc:creator>James Dudley</dc:creator>
				<category><![CDATA[Business Branding]]></category>
		<category><![CDATA[Marketing & Advertising]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.jamesdudleystudios.com/blog/?p=40</guid>
		<description><![CDATA[What is Blogging? Blog, short for &#8220;web log&#8221; is simply a type of website where information is posted in a chronological style, sort of like a journal.  People have personal blogs to share information about their lives &#38; families, and businesses have blogs to share information about their company, products, services.  Or to share knowledge [...]]]></description>
			<content:encoded><![CDATA[<p><strong><img class="size-medium wp-image-41 alignright" title="Blogging101" src="http://www.jamesdudleystudios.com/blog/wp-content/uploads/2009/06/blogging1011-300x257.gif" alt="Blogging 101" width="247" height="212" /></strong></p>
<p><strong>What is Blogging?</strong></p>
<p>Blog, short for &#8220;web log&#8221; is simply a type of website where information is posted in a chronological style, sort of like a journal.  People have personal blogs to share information about their lives &amp; families, and businesses have blogs to share information about their company, products, services.  Or to share knowledge and information that their readers find helpful.  Some businesses use their blog as a company &#8220;newsletter&#8221;, where they will regularly post information about their business (maybe a current sale going on, or schedule of events or activities).  A blog makes it very easy for the owner of the blog to write posts without knowing much of anything about creating websites, or HTML, or anything technical like that.</p>
<p><strong>Why Should I Blog?</strong></p>
<p>Blogging is a great way to communicate with your clients and prospective customers.  The goal is to write articles or &#8220;posts&#8221; to your blog that are helpful and informative to your readers.  If you can supply information and knowledge that others want to know about, it will keep them coming back to read more.  And better yet, it will eventually get internet searchers to find your blog, and ultimately your business.  Hence, you can use your blog as a sales lead tool.  Or as a customer retention tool.  Either way, posting good information to your blog about your industry or service will help shape people&#8217;s view of you &#8211; they will start to see you as a professional in your field.  And someone who is open and willing to share their wisdom with others.</p>
<p><strong>How Do I Setup a Blog?</strong></p>
<p>To setup a simple stand-alone blog, it is very easy.  There are lots of online services that do it all for you, and they are free.  Yes, I said FREE.  Here are a few that I would recommend looking at:</p>
<ul>
<li><a title="Blogger" href="http://www.blogger.com" target="_blank">Google&#8217;s Blogger</a> (probably the simplest &amp; easiest to use, and you can use your existing Google account)</li>
<li><a title="WordPress" href="http://wordpress.com/" target="_blank">WordPress</a> (very powerful with lots of options, still very easy to use, it&#8217;s what this blog uses!)<a title="WordPress" href="http://wordpress.com/" target="_blank"><br />
</a></li>
<li><a title="TypePad" href="http://www.typepad.com/" target="_blank">TypePad</a></li>
</ul>
<p>If you want to take it a step further, you should setup your blog at its own domain.  So instead of having a blog at a web address such as http://yourawesomeblog.blogspot.com, you would have it at www.yourawesomeblog.com.  It looks more professional, and will be easier for people to remember.  If you already have a website, then the best thing to do is to integrate your new blog directly in with your existing website.  This means it would look &amp; feel the same as your website, and would be part of the navigation on your site.  You can have a separate page on your website be your blog, or you can even integrate your blog postings into an existing page on your website (such as a sidebar on your homepage).  To do this, you&#8217;ll need to have your web designer/developer do this for you, as it&#8217;s quite technical to setup the blog &amp; database at your domain and intregrate it into your existing site.</p>
<p><strong>Getting Your Blog to Work For You</strong></p>
<p>Now your blog is setup.  You&#8217;re posting some great information to it regularly.  Now what?  It&#8217;s time to get your blog to start working for you.  First, get your blog listed on the major search engines.  The best way to do this is pay a small fee and use an online service to do all the work for you, such as GoDaddy&#8217;s <a title="TrafficBlazer" href="http://www.godaddy.com/gdshop/traffic_blazer/landing.asp?ci=9046" target="_blank">TrafficBlazer</a> ($30/year).   Then tell all your friends about your new blog; spread the word. Do this by sending our email newsletters, and posting links to your blog on your facebook, linkedin, and other social networking sites.  Another great way to market your blog is to work with other bloggers.  You can at least comment on other blog posts and include links to your blog, where visitors with the same interests may follow the link.  Or you could even be a guest writer on someone else&#8217;s blog, or have someone write a post for yours.</p>
<p>The key is to post fresh information to your blog regularly.  Keep people coming back for more.  Or better yet, they can <span style="text-decoration: underline;"><em>subscribe to your blog using an RSS feed</em></span>.  More on that in the next post!  Stay tuned!&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jdstudios.us/website-design/blogging-part-i-is-blogging-for-you/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Simple Design Is Usually The Best</title>
		<link>http://www.jdstudios.us/website-design/simple-design-is-usually-the-best/</link>
		<comments>http://www.jdstudios.us/website-design/simple-design-is-usually-the-best/#comments</comments>
		<pubDate>Tue, 19 May 2009 17:41:01 +0000</pubDate>
		<dc:creator>James Dudley</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.jamesdudleystudios.com/blog/?p=38</guid>
		<description><![CDATA[If you want to make an impression with your design &#8211; whether it be your website design, or graphic design on all your print collateral &#8211; then KEEP IT SIMPLE.  And by simple I mean don&#8217;t fill the entire area of your design with words, photos, and other graphics. When there is too much stuff [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to make an impression with your design &#8211; whether it be your website design, or graphic design on all your print collateral &#8211; then KEEP IT SIMPLE.  And by simple I mean don&#8217;t fill the entire area of your design with words, photos, and other graphics.</p>
<p>When there is too much <em>stuff</em> in the design, there is nothing to draw your eye to, and your message is going to be lost in the mess.  Make sure there is plenty of <em>whitespace</em> in your design.  Whitespace is just areas in your design that are empty, or blank.  So here&#8217;s my motto:</p>
<p><em><strong>The more whitespace in your layout, and the simpler the design &#8211;&gt; the better it will look, and the more attention it will grab from your readers.</strong></em></p>
<p>As you browse around the internet, or look at advertisements in a magazine &#8211; what catches your eye sooner:</p>
<ul>
<li>the &#8220;busy&#8221; ads where they fill up as much space as possible?</li>
<li>or the simple ads that communicate their message quickly and easily?</li>
</ul>
<p>This doesn&#8217;t mean you&#8217;re not allowed to have lots of information on your website.  Just make sure it&#8217;s organized in a simple way, and broken into sensible areas that are easy to navigate.  But if your website is too &#8220;busy&#8221; &#8211; people are going to leave.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jdstudios.us/website-design/simple-design-is-usually-the-best/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Involved In Your Community</title>
		<link>http://www.jdstudios.us/marketing-advertising/get-involved-in-your-communit/</link>
		<comments>http://www.jdstudios.us/marketing-advertising/get-involved-in-your-communit/#comments</comments>
		<pubDate>Mon, 04 May 2009 14:10:13 +0000</pubDate>
		<dc:creator>James Dudley</dc:creator>
				<category><![CDATA[Business Branding]]></category>
		<category><![CDATA[Marketing & Advertising]]></category>

		<guid isPermaLink="false">http://www.jamesdudleystudios.com/blog/?p=35</guid>
		<description><![CDATA[How involved are you or your business in your local community?  Donate a little bit of your time each week, or month, or year to a local organization, charity, or your town &#8211; and it will go a long way for your business. It will show that you care about your community It will provide [...]]]></description>
			<content:encoded><![CDATA[<p>How involved are you or your business in your local community?  Donate a little bit of your time each week, or month, or year to a local organization, charity, or your town &#8211; and it will go a long way for your business.</p>
<ul>
<li>It will show that you care about your community</li>
<li>It will provide ample opportunity for you to network with new people and groups</li>
<li>It&#8217;s free marketing</li>
<li>You can include this in your advertising (ie: &#8220;we are a local sponsor/volunteer for xxx organization&#8221;)</li>
<li>The organization/charity your volunteer for may be willing to advertise your business for free in some of their flyers/posters/etc.</li>
<li>You&#8217;ll feel better about yourself for donating your time and energy to a good cause</li>
</ul>
<p><img class="alignleft size-medium wp-image-36" title="community" src="http://www.jamesdudleystudios.com/blog/wp-content/uploads/2009/05/istock_000005181840-300x225.jpg" alt="community" width="206" height="154" />Some ideas for local organization to work with:</p>
<ul>
<li>Your local town (help clean up or run an event)</li>
<li>Your local Boy/Girl Scout troop</li>
<li>Habitat for Humanity</li>
<li>Adopt-A-Highway</li>
<li>Churches</li>
<li>Schools, camps</li>
<li>Environment protection agencies (your local forests or lakes)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.jdstudios.us/marketing-advertising/get-involved-in-your-communit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creative Ways To Distribute Brochures For FREE</title>
		<link>http://www.jdstudios.us/marketing-advertising/creative-ways-to-distribute-brochures-for-free/</link>
		<comments>http://www.jdstudios.us/marketing-advertising/creative-ways-to-distribute-brochures-for-free/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 16:58:49 +0000</pubDate>
		<dc:creator>James Dudley</dc:creator>
				<category><![CDATA[Business Branding]]></category>
		<category><![CDATA[Marketing & Advertising]]></category>

		<guid isPermaLink="false">http://www.jamesdudleystudios.com/blog/?p=32</guid>
		<description><![CDATA[Here is this Monday&#8217;s Marketing Tip! Creative Ways To Distribute Brochures For FREE First, make sure you have a great looking and informative brochure! Find local bulletin boards to pin up your brochure (or business card). Search out local businesses that are complimentary to yours and ask them if they could place a stack of [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #808080;"><em>Here is this Monday&#8217;s Marketing Tip!</em></span></p>
<p><strong>Creative Ways To Distribute Brochures For FREE<br />
</strong></p>
<p><img class="alignright size-full wp-image-33" title="brochure_rack" src="http://www.jamesdudleystudios.com/blog/wp-content/uploads/2009/04/rack_can.jpg" alt="brochure_rack" width="169" height="200" />First, make sure you have a great looking and informative brochure!</p>
<ul>
<li>Find local bulletin boards to pin up your brochure (or business card).</li>
<li>Search out local businesses that are complimentary to yours and ask them if they could place a stack of brochures somewhere in their store/office.  Make sure you offer to do the same for them.</li>
<li>Find busy parking lots and place your brochure under the windshield wipers of the cars.</li>
<li>Attend local events where you can hand out your brochures and get your name out there.</li>
<li>Always keep some of your brochures in your car. You never know when you&#8217;ll meet someone that you really want to give one to.</li>
<li>Always send a copy of your brochure along with anything you mail to prospective clients (letters, estimates, proposals, etc)</li>
</ul>
<p>And here are two ideas that cost some money, but get your brochures in more places:</p>
<ul>
<li>Join your local or regional Chamber of Commerce (usually an annual fee, mine is around $200). They will usually distribute your brochures for you to all of the other fellow members and their businesses.</li>
<li>Find the organization who places all the brochures in the highway rest areas and welcome centers in your state. They will charge a hefty fee, but you&#8217;ll get your brochures in places where there is lots of traffic.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.jdstudios.us/marketing-advertising/creative-ways-to-distribute-brochures-for-free/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

