<?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>Lightning Shock &#187; Blogging</title>
	<atom:link href="http://www.lightningshock.com/category/internet/blogging/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lightningshock.com</link>
	<description>(Were you expecting a witty tagline?)</description>
	<lastBuildDate>Fri, 30 Apr 2010 20:31:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Project is Finally Completed!</title>
		<link>http://www.lightningshock.com/2009/09/27/project-is-finally-completed/</link>
		<comments>http://www.lightningshock.com/2009/09/27/project-is-finally-completed/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 18:26:43 +0000</pubDate>
		<dc:creator>James Lewitzke</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Cool Sites]]></category>
		<category><![CDATA[Lightning Shock]]></category>
		<category><![CDATA[Online Communities]]></category>

		<guid isPermaLink="false">http://www.lightningshock.com/?p=95</guid>
		<description><![CDATA[After over a YEAR of planning and composing, I&#8217;ve finally manifested my ideas into one great WordPress Project. (UPDATE 12/16/2009 = due to some legal technicalities, I changed the domain and revamped my business site.) Engipress is my professional output for anything and everything related to WordPress. I designed the WordPress Theme, designed the vBulletin [...]]]></description>
			<content:encoded><![CDATA[<p>After over a YEAR of planning and composing, I&#8217;ve finally manifested my ideas into one great WordPress Project.<span id="more-95"></span></p>
<p>(UPDATE 12/16/2009 = due to some legal technicalities, I changed the domain and revamped my business site.)</p>
<p><a href="http://engipress.com">Engipress</a> is my professional output for anything and everything related to WordPress. I designed the WordPress Theme, designed the vBulletin forum skin, and I even went out of my way to find great mods to enhance the forum posting experience, all done by myself (to assist in showcasing my skills).</p>
<p>The designs are intertwined to give a great overall similar feel for the new website structure (The vBulletin forum sits atop the WP Theme forum), so the forum doesn&#8217;t impair the blog&#8217;s CSS layout or font stylings.</p>
<p>Perhaps the main attraction of this new website for me will be to contract freelance website work for those using WordPress as either a Blog or Content Management System. Just visit my <a href="http://engipress.com/hire">hire page</a> to see what services I offer. I&#8217;m very flexible with the pricing as I realize different people will require different needs for what they want to accomplish.</p>
<p>Also as a FYI, any posts relating to WordPress or blogging will probably be made on my <a href="http://engipress.com/blog/">Engipress Blog</a> from now on. This doesn&#8217;t mean I&#8217;ll be neglecting Lightning Shock, it just represents the fact that my personal website will be shifting directions in a sense.</p>
<p>I feel I&#8217;m doing everyone a favor by providing this great resource to anyone who uses wordpress or plans to.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lightningshock.com/2009/09/27/project-is-finally-completed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create a Widgetized Page in WordPress</title>
		<link>http://www.lightningshock.com/2008/06/10/how-to-create-a-widgetized-page-in-wordpress/</link>
		<comments>http://www.lightningshock.com/2008/06/10/how-to-create-a-widgetized-page-in-wordpress/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 23:17:26 +0000</pubDate>
		<dc:creator>James Lewitzke</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://www.lightningshock.com/?p=54</guid>
		<description><![CDATA[This tutorial I&#8217;m writing will show you the basics of how to add widgets to the actual page of a blog, rather than just having widgets contained within the sidebar. I was assisted by Joni Mueller in the process. This will allow you to easily display things like &#8220;Recent Posts&#8221;, Text inserts, and even Google [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial I&#8217;m writing will show you the basics of how to add widgets to the actual page of a blog, rather than just having widgets contained within the sidebar. I was assisted by <a href="http://www.pixelita.com/">Joni Mueller</a> in the process.</p>
<p>This will allow you to easily display things like &#8220;Recent Posts&#8221;, Text inserts, and even Google Adsense Ads on your homepage. My website&#8217;s front page was created using this process, so I will specifically teach you how two create a two column page layout. Any text editor will do, I used Notepad++, which works great.<span id="more-54"></span></p>
<p>First, you have to register the widgets and create two new custom sidebars for your theme. I named each sidebar &#8220;col-left&#8221; and &#8220;col-right&#8221;, so, if you wish to name them something differently, then replace the phrase within the code appropriately. To do this, open your functions.php file in your theme&#8217;s folder and insert the following code (It works fine for me right at the top of the file):</p>
<p><code>&lt;?php<br />
if ( function_exists('register_sidebar') )<br />
register_sidebar(array('name'=&gt;'col-left',<br />
'before_widget' =&gt; '',<br />
'after_widget' =&gt; '',<br />
'before_title' =&gt; '&lt;h2&gt;',<br />
'after_title' =&gt; '&lt;/h2&gt;',<br />
));<br />
register_sidebar(array('name'=&gt;'col-right',<br />
'before_widget' =&gt; '',<br />
'after_widget' =&gt; '',<br />
'before_title' =&gt; '&lt;h2&gt;',<br />
'after_title' =&gt; '&lt;/h2&gt;',<br />
));<br />
?&gt;</code></p>
<p>Assuming your theme is already using widgets, you&#8217;ll want to find the specific section of code in functions.php where the widgets are already registered. For my theme, this is where it was:</p>
<p><code>&lt;?php<br />
if (function_exists('register_sidebar')) {<br />
register_sidebar();<br />
register_sidebar();<br />
register_sidebar(array('name'=&gt;'Royale Top'));<br />
register_sidebar(array('name'=&gt;'Royale Bottom'));<br />
}</code></p>
<p>And then I added the newly defined sidebars to it, like this:</p>
<p><code>&lt;?php<br />
if (function_exists('register_sidebar')) {<br />
<strong> register_sidebar();<br />
register_sidebar();</strong><br />
register_sidebar();<br />
register_sidebar();<br />
<strong> register_sidebar(array('name'=&gt;'col-left'));<br />
register_sidebar(array('name'=&gt;'col-right'));</strong><br />
register_sidebar(array('name'=&gt;'Royale Top'));<br />
register_sidebar(array('name'=&gt;'Royale Bottom'));<br />
}</code></p>
<p>Now that we&#8217;ve got the functions out of the way, we need to create a Page Template. For my homepage, I decided to include a header, footer, and the new widget sidebars we just defined.</p>
<p>Open a new text document and save the file, I decided to call it welcome.php. To be sure that wordpress reads this appropriately, we need to include the template name in the file, like so:</p>
<p><code>&lt;?php</code></p>
<p><code>/*<br />
Template Name: Welcome Page<br />
*/<br />
?&gt;</code></p>
<p>And to include the sidebars and everything else in this specific template, insert the following:</p>
<p><code>&lt;?php get_header(); ?&gt;</code></p>
<p><code>&lt;div id="widecontent"&gt;<br />
&lt;div id="col-left"&gt;<br />
&lt;?php if ( !function_exists('dynamic_sidebar')<br />
|| !dynamic_sidebar('col-left') ) : ?&gt;<br />
&lt;?php endif; ?&gt;<br />
&lt;/div&gt;<br />
&lt;div id="col-right"&gt;<br />
&lt;?php if ( !function_exists('dynamic_sidebar')<br />
|| !dynamic_sidebar('col-right') ) : ?&gt;<br />
&lt;?php endif; ?&gt;<br />
&lt;/div&gt;</code></p>
<p><code>&lt;/div&gt;</code></p>
<p><code>&lt;?php get_footer(); ?&gt;</code></p>
<p>Then you can upload the welcome.php we just created to your theme&#8217;s root folder (the same folder that contains your functions.php file). To actually apply this template is fairly easy, just go to &#8220;Write &gt; Page&#8221;, scroll down to &#8220;Page Template&#8221; and select the appropriate file you just created (Welcome Page, in my case). Then go to &#8220;Design &gt; Widgets&#8221; and select which features you want to appear in each sidebar (col-left and col-right).</p>
<p>Woohoo! The sidebars are now showing up on the main page. But, it looks pretty bad, just one underneath the other. To adjust where and how these widgets look, we must apply styles to the newly created sidebars. If you&#8217;ve noticed, when we coded the template, we applied some divisional IDs to the sidebars, so we have to open up style.css and insert them somewhere (preferably a section where you&#8217;ll be able to find them easily) and float the sidebars and add margins to the content, for example:</p>
<p><code>#widecontent {<br />
font-size: 1.9em;<br />
width: 45%;<br />
list-style: none;<br />
margin-left: 100px;<br />
}</code></p>
<p><code>#col-left {<br />
float: left;<br />
}</code></p>
<p><code>#col-right {<br />
float: left;<br />
}</code></p>
<p>It&#8217;s really up to you how you want to style the sidebars, so have fun and play around with them for a little bit. Adjust them to your personal tastes and likings. I was able to include many things on my homepage now that I wasn&#8217;t able to before.</p>
<p>(UPDATE = 6/21/2009) I made a few style changes to the homepage, so it doesn&#8217;t look exactly like the code written above, however the basic premise of the concept is still the same. The Homepage still uses a widgetized page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lightningshock.com/2008/06/10/how-to-create-a-widgetized-page-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Fix the SRG Clean Archives WordPress 2.5 Plugin Bug</title>
		<link>http://www.lightningshock.com/2008/05/12/how-to-fix-the-srg-clean-archives-wordpress-25-plugin-bug/</link>
		<comments>http://www.lightningshock.com/2008/05/12/how-to-fix-the-srg-clean-archives-wordpress-25-plugin-bug/#comments</comments>
		<pubDate>Mon, 12 May 2008 22:30:34 +0000</pubDate>
		<dc:creator>James Lewitzke</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://www.lightningshock.com/?p=72</guid>
		<description><![CDATA[For those that have recently updated to WordPress 2.5, you have probably experienced a few bugs and workarounds along the way. The Plugin First I want to say that the SRG Clean Archives Plugin is the BEST Archive plugin for wordpress out there. If you don&#8217;t have it installed, I&#8217;d highly recommend you do. The [...]]]></description>
			<content:encoded><![CDATA[<p>For those that have recently updated to WordPress 2.5, you have probably experienced a few bugs and workarounds along the way.<span id="more-72"></span></p>
<p><strong>The Plugin</strong></p>
<p>First I want to say that the <a href="http://www.idunzo.com/projects/clean-archives/">SRG Clean Archives</a> Plugin is the BEST Archive plugin for wordpress out there. If you don&#8217;t have it installed, I&#8217;d highly recommend you do.</p>
<p><strong>The Problem</strong></p>
<p>When you download the plugin, everything should be working fine, display-wise. You can still create the page and have a list of all your blog posts in one place.</p>
<p>However, in the administration control panel, you&#8217;ll notice that the plugin will NOT allow you to update options. After you check a few off and click &#8220;Update Options&#8221; It takes you to a completely blank, white screen.</p>
<p><strong>The Solution</strong></p>
<p>The fix for this error is actually pretty simple. Just open up the srg_clean_archives.php file in a text editor, scroll down to approximately line 240 or so. Look for this highlighted portion of the code:</p>
<p><code>function srg_admin_page() {<br />
if (isset($_POST['srg_submit'])) {</code></p>
<p><code><strong>check_admin_referer( '$myplugin_nonce', $myplugin_nonce );</strong></code></p>
<p><code>if (isset($_POST['srg_show-comments'])) {<br />
update_option('srg-clean_comment-display', 'true');<br />
} else {<br />
update_option('srg-clean_comment-display', 'false');<br />
}</code></p>
<p>And add two forward slashes in front of that line, so you&#8217;ll end up with this:</p>
<p><code>function srg_admin_page() {<br />
if (isset($_POST['srg_submit'])) {</code></p>
<p><code><strong>// check_admin_referer( '$myplugin_nonce', $myplugin_nonce );</strong></code></p>
<p><code>if (isset($_POST['srg_show-comments'])) {<br />
update_option('srg-clean_comment-display', 'true');<br />
} else {<br />
update_option('srg-clean_comment-display', 'false');<br />
}</code></p>
<p>Now you can change and edit all the plugin options you wish to make. <img src='http://www.lightningshock.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Lastly, I have to give credit to <a href="http://wordpress.org/support/profile/512135">clowny</a> for finding the error.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lightningshock.com/2008/05/12/how-to-fix-the-srg-clean-archives-wordpress-25-plugin-bug/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Blogging is NOT for Making Quick Money Online</title>
		<link>http://www.lightningshock.com/2008/03/07/blogging-is-not-for-making-quick-money-online/</link>
		<comments>http://www.lightningshock.com/2008/03/07/blogging-is-not-for-making-quick-money-online/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 21:49:53 +0000</pubDate>
		<dc:creator>James Lewitzke</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://www.lightningshock.com/2008/03/07/blogging-is-not-for-making-quick-money-online/</guid>
		<description><![CDATA[If you decided to start blogging to make a few quick, easy bucks, your going to be in for a world of disappointment. However, in no way am I saying it isn&#8217;t possible to monetize and generate passive income from them. Blogging requires a great amount of time and effort to write great article posts [...]]]></description>
			<content:encoded><![CDATA[<p>If you decided  to start blogging to make a few quick, easy bucks, your going to be in for a world of disappointment. However, in no way am I saying it isn&#8217;t possible to monetize and generate passive income from them.</p>
<p>Blogging requires a great amount of time and effort to write great article posts and market it effectively. If you want to take the money path, you have to treat it as a business.<span id="more-30"></span></p>
<p>Take <a href="http://www.stevepavlina.com/blog/2006/05/how-to-make-money-from-your-blog/">this Pavlina post</a> for example, he tells his story of how he was able to make a living of of his blog, and provides some tips to newbies at blogging. He didn&#8217;t start out with just a couple of ideas and hoped for the best, he offers a unique perspective on life and writes about something he is passionate about, Personal Development.</p>
<p>Most people are probably thinking that you could write maybe about 15 or 20 posts for their site, place some ads on their site, and expect the income to just roll right in, however this is certainly not the case, it doesn&#8217;t work that way. How do I know this? It&#8217;s because I had a similar mindset when I was first starting out.</p>
<p>Take my first site I ever created as a prime example, <a href="http://www.toptenlisted.com/">Toptenlisted.com</a>. I started out thinking that if I wrote a few Top 10 Lists that were mildly interesting, my income opportunities would roll right in and I&#8217;d be flowing with the cash. Not necessarily scamming people or anything, I just thought I originally had a great idea, only to learn that there were already at least 5 or 10 other competing sites (another lesson to learn here, make sure you do your research properly beforehand).</p>
<p>I first started out with my ideas back in the Fall of 2006. I figured I&#8217;d purchase some Website designing software (Dreamweaver), use a common template without knowing much about HTML or CMS systems, slap some content together, and I&#8217;d be on my way. This was before I really knew how wonderful WordPress can be.</p>
<p>I completed everything I mentioned around February of &#8217;07, and I can honestly say my first site attempts were awful. Take a look at the <a href="http://web.archive.org/web/*/http://www.toptenlisted.com/">site archives of Toptenlisted</a> to get a few screenshots of what it looked like.</p>
<p>After I realized just how awful my designs were, I thought that I couldn&#8217;t create something great. But then I decided to look around at <a href="http://wordpress.org/">WordPress.org</a> and played with a few designs until I finally rested on my current theme, which looks pretty good to me at this moment, in my opinion, miles better than what I first started out with.</p>
<p>Although I felt my design was OK, and I had a fair amount of content written for it, it was too restricting for me. I feel that my mind is always racing with ideas and always writing a &#8220;Top 10 Reasons&#8230;..&#8221; or a &#8220;Top 10 Ways&#8230;..&#8221; was just holding me back, thus the reasoning for this blog&#8217;s creation was born.</p>
<p>You have to keep it at and not give up so easily, even now with my current blog, I&#8217;ve made about a grand total of $10 via adsense. However, money is not my primary concern at this moment, you have to build a traffic base and network with others who have similar interests as yours. If monetizing and writing for money is your primary reason for getting into blogging, you probably won&#8217;t be very happy with the results you receive.</p>
<p><a href="http://www.yellowhousehosting.com/resources/">Vangogh </a>gave me some great advice a while back (over 6 months ago) on the Webmaster Talk Thread &#8220;<a href="http://www.webmaster-talk.com/miscellaneous-internet-marketing-discussion/92399-how-do-you-build-quality-links.html">How do you build Quality Links?</a>&#8221; (among others, such as St0x and Seolman, etc. not to discredit the advice everyone else also gave, but Steven&#8217;s really hit me). I&#8217;d recommend reading this thread if you&#8217;re just starting out and would like to receive some great insight on blogging and internet networking, or to find out just how much of a n00b I was back then (Not saying I&#8217;m not a n00b anymore, that&#8217;s still up for debate <img src='http://www.lightningshock.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  ).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lightningshock.com/2008/03/07/blogging-is-not-for-making-quick-money-online/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Why does your Blog not have Quality Traffic?</title>
		<link>http://www.lightningshock.com/2008/02/26/why-does-your-blog-not-have-quality-traffic/</link>
		<comments>http://www.lightningshock.com/2008/02/26/why-does-your-blog-not-have-quality-traffic/#comments</comments>
		<pubDate>Tue, 26 Feb 2008 16:30:37 +0000</pubDate>
		<dc:creator>James Lewitzke</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://www.lightningshock.com/2008/02/26/why-does-your-blog-not-have-quality-traffic/</guid>
		<description><![CDATA[Are you upset that your website isn&#8217;t getting traffic? I&#8217;ve come up with some reasons why you&#8217;re probably missing out. Your Content Sucks You don&#8217;t want to admit it, but this is likely a reason why you&#8217;re not doing to well. While you may think you have just written a great blog post, many of [...]]]></description>
			<content:encoded><![CDATA[<p>Are you upset that your website isn&#8217;t getting traffic? I&#8217;ve come up with some reasons why you&#8217;re probably missing out.<span id="more-16"></span></p>
<p><strong>Your Content Sucks</strong></p>
<p>You don&#8217;t want to admit it, but this is likely a reason why you&#8217;re not doing to well. While you may think you have just written a great blog post, many of us are highly biased in favor of our own content, and in turn have a subjective viewpoint on what we write about.</p>
<p>In order to whether what you are writing is truly &#8220;good&#8221; or not, depends on who reads it, and what comments hey may make on your site. Other bloggers will definitely link to your site if they like it well enough.</p>
<p><strong>You&#8217;re Not Marketing Properly</strong></p>
<p>See an <a href="http://www.lightningshock.com/2008/01/04/how-to-break-free-from-the-seo-wannabe-mindset/">earlier post I made</a> about how to effectively network with those that have similar-minded interests as yours to gain some more insight.</p>
<p>Instead of using strategies like &#8220;link building&#8221; or SEO, if you decide to just have something other bloggers want to link to, the marketing aspect should take care of itself. Remember, hyperlinks are there to navigate through the web, not for whatever &#8220;perceived&#8221; SEO benefits you *think* they may have.</p>
<p><strong>Your Site Design Sucks</strong></p>
<p>Whether its due to the colors you choose or just usability issues, Website design can turn away up to half of your potential visitors.</p>
<p>One other point to keep in mind here is that your site may also have a wide variety of visitor-types. For example, there is a large percentage of the elderly population online, thus considering things like text size, flashing lights, etc. may turn some of them off, because they may have trouble viewing the screen, or controlling the mouse effectively.</p>
<p><strong>You&#8217;re just being Lazy</strong></p>
<p>This is the probably the biggest reason. You know you want to write that extra blog post, or comment on a few other blogs, but deep down, you realize you just don&#8217;t feel like taking care of the problem.</p>
<p>You&#8217;d probably rather be doing something like playing online games, or chatting with friends all night. But remember, in order to have a great, high-quality-traffic site, it takes a great amount of time and dedication. It reminds me of the 10/90 quote:</p>
<blockquote><p>&#8220;Everything in life is 10 percent inspiration and 90 percent perspiration.&#8221;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.lightningshock.com/2008/02/26/why-does-your-blog-not-have-quality-traffic/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>What to write&#8230;. What to Write?</title>
		<link>http://www.lightningshock.com/2008/01/27/what-to-write-what-to-write/</link>
		<comments>http://www.lightningshock.com/2008/01/27/what-to-write-what-to-write/#comments</comments>
		<pubDate>Mon, 28 Jan 2008 03:14:12 +0000</pubDate>
		<dc:creator>James Lewitzke</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[How Awesome am I?]]></category>
		<category><![CDATA[Random Question]]></category>

		<guid isPermaLink="false">http://www.lightningshock.com/2008/01/27/what-to-write-what-to-write/</guid>
		<description><![CDATA[Have you ever had writer&#8217;s block? Or you just couldn&#8217;t figure out what to blog about? That&#8217;s what I&#8217;m currently going through at the time I&#8217;m writing this. Seriously I have no idea what I&#8217;m currently writing about at this time, I&#8217;m just going with my flow. Some would probably say that this is crazy, [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever had writer&#8217;s block? Or you just couldn&#8217;t figure out what to blog about?<span id="more-29"></span></p>
<p>That&#8217;s what I&#8217;m currently going through at the time I&#8217;m writing this. Seriously I have no idea what I&#8217;m currently writing about at this time, I&#8217;m just going with my flow.</p>
<p>Some would probably say that this is crazy, or that I&#8217;m just extremely bored (may be true, to some extent) I thought I&#8217;d try this experimentation that could help me get past this mind detour.</p>
<p>Right now I&#8217;m listening to Metallica&#8217;s Orion, I&#8217;m sitting in front of my computer typing this blog post (obviously), and I&#8217;m eating some Dove chocolates (Yeah, I know, real exciting).I wonder what my future holds in store for me tomorrow, maybe something fun and different will happen or an interesting event will occur&#8230;&#8230;.. OK, probably not.</p>
<p>Hmmmmm&#8230;&#8230;.<br />
Maybe now would be a good time to create a homework chart, (for my college classes), so I can keep track of all my assignments and make sure none are late. I&#8217;ll probably use excel or something and make sure I include all my classes, and get some work done ahead of time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lightningshock.com/2008/01/27/what-to-write-what-to-write/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>What?!?!? I&#8217;m writing for visitors, and not search engines?</title>
		<link>http://www.lightningshock.com/2007/12/22/what-im-writing-for-visitors-and-not-search-engines/</link>
		<comments>http://www.lightningshock.com/2007/12/22/what-im-writing-for-visitors-and-not-search-engines/#comments</comments>
		<pubDate>Sat, 22 Dec 2007 06:23:54 +0000</pubDate>
		<dc:creator>James Lewitzke</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General Search Engine Talk]]></category>
		<category><![CDATA[How Awesome am I?]]></category>

		<guid isPermaLink="false">http://www.lightningshock.com/2007/12/22/what-im-writing-for-visitors-and-not-search-engines/</guid>
		<description><![CDATA[That&#8217;s crazy thinking! Why in the world should I create content and write for the people who are actually going to read it??? Shouldn&#8217;t I be focusing on SEO? Or optimizing META keywords? Or article submission services? To put it plainly&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.No What&#8217;s the point in trying to *get* a good ranking, worrying about SERP&#8217;s every [...]]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s crazy thinking! Why in the world should I create content and write for the people who are actually going to read it??? Shouldn&#8217;t I be focusing on SEO? Or optimizing META keywords? Or article submission services?</p>
<p><span id="more-12"></span></p>
<p>To put it plainly&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.No</p>
<p>What&#8217;s the point in trying to *get* a good ranking, worrying about SERP&#8217;s every other moment, how many links I can get, or whether or not someone like Google is going to &#8220;penalize&#8221; my website for whatever reason?</p>
<p>Like I really want to waste my time writing content for search engines that *might * rank my pages high one day and low the next. A search engine, such as Google, is NOT the boss of my blog, and they can&#8217;t tell me what I should or shouldn&#8217;t do with it.</p>
<p>I want to strongly emphasize that *I* choose what *I* want to write about, and I do it to either please or inform my readers, or  on occasion inflate my ego. And if the Search Engines don&#8217;t like it, well then &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.tough break, they can go to Hell.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lightningshock.com/2007/12/22/what-im-writing-for-visitors-and-not-search-engines/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Yep, I&#8217;ve got Ads on my Blog</title>
		<link>http://www.lightningshock.com/2007/12/14/yep-ive-got-ads-on-my-blog/</link>
		<comments>http://www.lightningshock.com/2007/12/14/yep-ive-got-ads-on-my-blog/#comments</comments>
		<pubDate>Fri, 14 Dec 2007 20:21:06 +0000</pubDate>
		<dc:creator>James Lewitzke</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Lightning Shock]]></category>

		<guid isPermaLink="false">http://www.lightningshock.com/2007/12/14/yep-ive-got-ads-on-my-blog/</guid>
		<description><![CDATA[&#8230;.and guess what, I don&#8217;t care what anyone else thinks, I love adsense. I&#8217;ve already made over $40 from the program. Whether anyone else likes&#8217;em or hates them, doesn&#8217;t make much difference to me. Sure, some may say it is immoral to place ads on blogs, or holds a personal grudge against sites with ads, [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230;.and guess what, I don&#8217;t care what anyone else thinks, I love adsense.</p>
<p><span id="more-7"></span></p>
<p>I&#8217;ve already made over $40 from the program. Whether anyone else likes&#8217;em or hates them, doesn&#8217;t make much difference to me. Sure, some may say it is immoral to place ads on blogs, or holds a personal grudge against sites with ads, but I just don&#8217;t care. If you wish for the ads in general to disappear, go find information somewhere else, because my ads are here to stay, baby!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lightningshock.com/2007/12/14/yep-ive-got-ads-on-my-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 5.355 seconds -->
