<?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>Beginnercode.com &#187; General Site Maint</title>
	<atom:link href="http://www.beginnercode.com/category/2/1/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.beginnercode.com</link>
	<description>The adventures of an amateur coder</description>
	<lastBuildDate>Thu, 15 Apr 2010 20:17:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
  <link>http://www.beginnercode.com</link>
  <url>http://www.beginnercode.com/wp-content/themes/neuron/favicon.ico</url>
  <title>Beginnercode.com</title>
</image>
		<item>
		<title>Javascript: Focus() on a textbox</title>
		<link>http://www.beginnercode.com/2009/08/12/javascript-focus-on-a-textbox/</link>
		<comments>http://www.beginnercode.com/2009/08/12/javascript-focus-on-a-textbox/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 19:09:47 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[General Site Maint]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/?p=233</guid>
		<description><![CDATA[A dirty way to run js script inline and bring focus to an element:

&#60;html&#62;
&#60;body&#62;

    &#60;form method=&#34;post&#34; action=&#34;index.php&#34; id=&#34;myForm&#34;&#62;
        &#60;p&#62; Login: &#60;input type=&#34;text&#34; name=&#34;pwd&#34; id=&#34;pwd&#34; /&#62;  &#60;/p&#62;
    &#60;/form&#62;

    &#60;script type=&#34;text/javascript&#34;&#62;document.myForm.pwd.focus();&#60;/script&#62;

&#60;/body&#62;
&#60;/html&#62;

Notice that both the form and form element have an [...]]]></description>
			<content:encoded><![CDATA[<p>A dirty way to run js script inline and bring focus to an element:</p>
<pre class="brush: xml;">
&lt;html&gt;
&lt;body&gt;

    &lt;form method=&quot;post&quot; action=&quot;index.php&quot; id=&quot;myForm&quot;&gt;
        &lt;p&gt; Login: &lt;input type=&quot;text&quot; name=&quot;pwd&quot; id=&quot;pwd&quot; /&gt;  &lt;/p&gt;
    &lt;/form&gt;

    &lt;script type=&quot;text/javascript&quot;&gt;document.myForm.pwd.focus();&lt;/script&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>Notice that both the form and form element have an ID</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2009/08/12/javascript-focus-on-a-textbox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Return key doesn&#8217;t play nice in web form using Internet Explorer</title>
		<link>http://www.beginnercode.com/2008/09/26/return-key-doesnt-play-nice-in-web-form-using-internet-explorer/</link>
		<comments>http://www.beginnercode.com/2008/09/26/return-key-doesnt-play-nice-in-web-form-using-internet-explorer/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 20:40:00 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[General Site Maint]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/index.php/2008/09/26/return-key-doesnt-play-nice-in-web-form-using-internet-explorer/</guid>
		<description><![CDATA[I ran across an interesting situation where some users of mine were complaining that a form I created &#8220;didn&#8217;t work&#8221;. Kind of strange to get this complaint after almost a full year of operation. I remember testing the xhtml and css design in both firefox and IE browsers and it all checked out. What I [...]]]></description>
			<content:encoded><![CDATA[<p>I ran across an interesting situation where some users of mine were complaining that a form I created &#8220;didn&#8217;t work&#8221;. Kind of strange to get this complaint after almost a full year of operation. I remember testing the xhtml and css design in both firefox and IE browsers and it all checked out. What I didn&#8217;t think of checking was the behavior of browsers when one presses the return key. With the help of <a href="http://www.fiddlertool.com/fiddler/">Fiddler</a> (thanks to <a href="http://www.aviditysoftware.com/">Casey Williams</a> for the Fiddler suggestion) this is what I discovered:</p>
<table style="width: 460px; border:1px solid #000; border-collapse: collapse; margin: 0 auto;" >
<tr>
<th style="background-color: #E8FFFF; text-align: center; border-bottom: 1px solid #333; width: 160px; "></th>
<th style="background-color: #E8FFFF; text-align: center;  border-bottom: 1px solid #333; ">IE</th>
<th style="background-color: #E8FFFF;  border-bottom: 1px solid #333; ">Firefox</th>
</tr>
<tr>
<th style="border-right: 1px solid #333; padding: 4px;">Submit Button Clicked</th>
<td style="border-bottom: 1px solid #ccc; padding: 4px;">All inputs $_POSTed</td>
<td style="border-bottom: 1px solid #ccc; padding: 4px;">All inputs $_POSTed</td>
</tr>
<tr>
<th style="border-right: 1px solid #333; padding: 4px;">Return Key Pressed</th>
<td style="background-color: #FFF28E; padding: 4px;">All inputs $_POSTed<br />except form buttons</td>
<td style=" padding: 4px;">All inputs $_POSTed</td>
</tr>
</table>
<p style="text-align: center;">(<a href='http://www.beginnercode.com/wp-content/imgupload/2008/09/ie_ff_input_comparison.jpg' title='ie_ff_input_comparison.jpg'>For a larger, more detailed image click here</a>)</p>
<p>As you can see, when my IE users were pressing the return key, the button itself was not being $_POSTed. So what right? Well what if you were checking if the submit button was pressed before doing any processing? Like so&#8230;</p>
<pre class="brush: php;">
&lt; ?php
if(isset($_POST['button_name'])){
    // validate the user entries...
}
?&gt;
</pre>
<p>This would fail if the user hit the return key in IE7. I haven&#8217;t tested earlier versions. </p>
<p><a href="http://www.beginnercode.com/examples/IE7_returnKey.php" target="_blank">View the example</a>. Test it in both browsers.</p>
<p>Right now the only thing that was suggested to me was to add a hidden field to mimic the submit button in your form like so:</p>
<pre class="brush: php;">
&lt;form ...&gt;
    &lt;input type=&quot;hidden&quot; name=&quot;button_name&quot; value=&quot;whatever&quot;... /&gt;
&lt;/form&gt;
</pre>
<p>That works just fine.</p>
<p>From perusing irc and several forums, the only response as to WHY this happens are comments like &#8220;It&#8217;s IE, what do you expect?&#8221;. I&#8217;m already annoyed that IE doesn&#8217;t think it has to adapt to web standards, but this ont really caught me off guard. </p>
<p>I&#8217;m wondering if any readers might have some input on my inputs ;P</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2008/09/26/return-key-doesnt-play-nice-in-web-form-using-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Talk like a pirate day 2008</title>
		<link>http://www.beginnercode.com/2008/09/19/talk-like-a-pirate-day-2008/</link>
		<comments>http://www.beginnercode.com/2008/09/19/talk-like-a-pirate-day-2008/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 13:46:35 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[General Site Maint]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/index.php/2008/09/19/talk-like-a-pirate-day-2008/</guid>
		<description><![CDATA[Ahoy there!
Just a reminder that today is talk like a pirate day! Arggghhh!
All posts and comments for today will be translated in to pirate speak by using the nifty text plugin from Dougal Campbell. It looks like it hasn&#8217;t been updated in a while, but it still works. At least in version 2.1.3.
So what are [...]]]></description>
			<content:encoded><![CDATA[<p>Ahoy there!<br />
Just a reminder that today is <a href="http://www.talklikeapirate.com/">talk like a pirate day</a>! Arggghhh!</p>
<p>All posts and comments for today will be translated in to pirate speak by using the nifty text plugin from <a href="http://dougal.gunters.org/blog/2004/08/30/text-filter-suite">Dougal Campbell</a>. It looks like it hasn&#8217;t been updated in a while, but it still works. At least in version 2.1.3.</p>
<p>So what are you waiting for people!? Let&#8217;s have some fun in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2008/09/19/talk-like-a-pirate-day-2008/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Screen shots a snap with Vista snip tool</title>
		<link>http://www.beginnercode.com/2008/07/29/screen-shots-a-snap-with-vista-snip-tool/</link>
		<comments>http://www.beginnercode.com/2008/07/29/screen-shots-a-snap-with-vista-snip-tool/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 13:50:33 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[General Site Maint]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/index.php/2008/07/29/screen-shots-a-snap-with-vista-snip-tool/</guid>
		<description><![CDATA[ I was searching my Vista accessories for hyperteminal and stumbled upon a built in screen shot tool in Vista called Snipping Tool. I&#8217;m sure to most it&#8217;s nothing new, but coming late in the game leaves for more surprises!
You can find it in the start menu -> all programs -> accessories. 
By default there [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.beginnercode.com/wp-content/imgupload/2008/07/startmenu-snip.jpg"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="160" alt="startMenu_snip" src="http://www.beginnercode.com/wp-content/imgupload/2008/07/startmenu-snip-thumb.jpg" width="151" align="right" border="0" /></a> I was searching my Vista accessories for hyperteminal and stumbled upon a built in screen shot tool in Vista called <strong>Snipping Tool</strong>. I&#8217;m sure to most it&#8217;s nothing new, but coming late in the game leaves for more surprises!</p>
<p>You can find it in the <strong>start menu -> all programs -> accessories</strong>. </p>
<p>By default there is an outline around any window space that you choose to grab. This can be turned off by clearing the check box in the <strong>options -></strong>&#8220;<em>Show selection ink after snips are captured</em>&#8220;. </p>
<p><a href="http://www.beginnercode.com/wp-content/imgupload/2008/07/startmenu-snip1.jpg"></a></p>
<p style="text-align: center"><a href="http://www.beginnercode.com/wp-content/imgupload/2008/07/snip-options.jpg"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="231" alt="snip_Options" src="http://www.beginnercode.com/wp-content/imgupload/2008/07/snip-options-thumb.jpg" width="244" border="0" /></a></p>
<p>You can take snips of menus and the like this:</p>
<ol>
<li>Open Snipping Tool </li>
<li>Press Escape </li>
<li>Navigate to the menu, or start menu area </li>
<li>Press Ctrl + Print Screen (PC) </li>
<li>Use the snip tool </li>
</ol>
<p>Of course to take screen shots of the snipping tool, I needed to use the old stand by <a href="http://www.traction-software.co.uk/screengrabpro/"><em>Screen Grab Pro</em></a><em>. </em>Otherwise it took a selection of the desktop behind the app.</p>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:11c1f378-454e-4ee5-bdd3-9c3ca633bbfb" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">Technorati Tags: <a href="http://technorati.com/tags/Vista" rel="tag">Vista</a>,<a href="http://technorati.com/tags/snip%20tool" rel="tag">snip tool</a>,<a href="http://technorati.com/tags/screen%20shot" rel="tag">screen shot</a></div>
<p><a href="http://www.beginnercode.com/wp-content/imgupload/2008/07/startmenu-snip1.jpg"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2008/07/29/screen-shots-a-snap-with-vista-snip-tool/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Site Upgrades</title>
		<link>http://www.beginnercode.com/2007/05/11/site-upgrades/</link>
		<comments>http://www.beginnercode.com/2007/05/11/site-upgrades/#comments</comments>
		<pubDate>Fri, 11 May 2007 18:39:06 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[Blog Adventures]]></category>
		<category><![CDATA[General Site Maint]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/index.php/2007/05/11/site-upgrades/</guid>
		<description><![CDATA[I went for it. I upgraded (finally) from WP v1.2 to v2.1. Along with it I chose a new theme for beginner code. I really like that its very symmetrical. I didn&#8217;t want to change partly because it&#8217;s something different. But why not.
Upgrading Word Press was fairly easy. Just follow the steps outlined at the [...]]]></description>
			<content:encoded><![CDATA[<p>I went for it. I upgraded (finally) from WP v1.2 to v2.1. Along with it I chose a new theme for beginner code. I really like that its very symmetrical. I didn&#8217;t want to change partly because it&#8217;s something different. But why not.</p>
<p>Upgrading Word Press was fairly easy. Just follow the steps outlined at the <a href="http://codex.wordpress.org/Upgrading_WordPress">WP blog</a>.</p>
<p>Then I chose this <a href="http://themes.wordpress.net/columns/3-columns/2874/simple-tech-10/">simple-tech theme</a> from the Word Press Theme viewer. I chose it because it looks easier to tweak for the adsense heat map. It was hard to find themes that I liked visually, that also had a left column out of the box.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2007/05/11/site-upgrades/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Blog Traffic Surfing Sites</title>
		<link>http://www.beginnercode.com/2005/12/29/blog-traffic-surfing-sites/</link>
		<comments>http://www.beginnercode.com/2005/12/29/blog-traffic-surfing-sites/#comments</comments>
		<pubDate>Thu, 29 Dec 2005 16:15:31 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[Blog Adventures]]></category>
		<category><![CDATA[General Site Maint]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/?p=70</guid>
		<description><![CDATA[I&#8217;ve tried a few of these blog traffic surfing sites. Some have been successful. They have given me traffic etc. Some visitors come back again outside of the realm of the &#8217;surf bars&#8217;. It&#8217;s nice to have a few regular readers. Unfortunately what I haven&#8217;t seen from this type of traffic is any affiliate or [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve tried a few of these blog traffic surfing sites. Some have been successful. They have given me traffic etc. Some visitors come back again outside of the realm of the &#8217;surf bars&#8217;. It&#8217;s nice to have a few regular readers. Unfortunately what I haven&#8217;t seen from this type of traffic is any affiliate or adsense revenue.</p>
<p>I have noticed some things. I noticed that over at <a href="http://blogclicker.com/?username=lestat">BlogClicker</a>, the credits I receive for surfing have started to &#8216;lessen&#8217;. Over at <a href="http://www.blogadvance.com/?ref=956">blogAdvance</a> I&#8217;ve had times where my account shows I&#8217;ve earned manual credits, but I was unable to transfer them or allocate them in the control panel. The control panel would show I hade none, yet the surf bar would show at least 10 credits. At <a href="http://www.blogexplosion.com/index.php?ref=lestat">BlogExplosion</a> I&#8217;m pretty pleased. </p>
<p>I haven&#8217;t gone one day without winning some mystery credits. The user interface is pretty easy. I was able to assign surfing credits and banner credits intuitively. I&#8217;ve voted for blogs in the &#8216;battle of the blogs&#8217; contest. (I&#8217;ve won and lost some of those battles as well). You can even rent your blog, or have your blog rented. The rentor gets a position on another bloggers page for a fee of credits. That also generates some traffic. I saving up my credits for a reputable page to hopfully rent some space. There are many opportunities to gain credits.</p>
<p>Today I received a newsletter from <a href="http://www.blogmad.net/?ref=1a235cfa84eaa7e">BlogMad</a>. I signed up there after finding out they haven&#8217;t launched yet. After all the experiencees I&#8217;ve been having, I&#8217;m quite curious how well their service will work. I hope it isn&#8217;t a letdown. They <b>are</b> promising a 1:1 ratio! The newsletter included some screenshots of the soon to be launched site.<br />
<center></p>
<table style="border-collapse:collapse;border:none;">
<tr>
<td style="padding: 10px;"><center>News and main page<br /><a href="http://www.beginnercode.com/wp-content/imgupload/main.jpg"><img src="http://www.beginnercode.com/wp-content/imgupload/_main.jpg" width="250" height="250" alt="" title=""  /></a></center></td>
<td style="padding: 10px;"><center>Directories<br /><a href="http://www.beginnercode.com/wp-content/imgupload/dirs.jpg"><img src="http://www.beginnercode.com/wp-content/imgupload/_dirs.jpg" width="250" height="250" alt="" title=""  /></a></center></td>
</tr>
<tr>
<td style="padding: 10px;"><center>Your referral Page<br /><a href="http://www.beginnercode.com/wp-content/imgupload/referrals.jpg"><img src="http://www.beginnercode.com/wp-content/imgupload/_referrals.jpg" width="250" height="250" alt="" title=""  /></a></center></td>
<td style="padding: 10px;"><center>IRC chat Page<br /><a href="http://www.beginnercode.com/wp-content/imgupload/chat.jpg"><img src="http://www.beginnercode.com/wp-content/imgupload/_chat.jpg" width="250" height="250" alt="" title=""  /></a></center></td>
</tr>
</table>
<p></center></p>
<p>The newsletter also included a list of sites that will be Beta testing. I would really like to be part of that. It would be nice to be able to give input from a &#8216;users&#8217; point of view. They are including a mascot naming contest which the prize is of course some credits and bragging rights.   They are also still accepting signups with bonus credits for referrals. As far as the irc thing goes, I&#8217;m not too sure about that. Iv&#8217;e seen quite a few channels get taken over. Hopefully that no longer happens. If your still interested in signing up, you can still get in on the early referral credits. Just give the button a click <a href="http://www.blogmad.net/?ref=1a235cfa84eaa7e" title="BlogMad"><img src="http://www.blogmad.net/banners/80x15/32.gif" alt="BlogMad!" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2005/12/29/blog-traffic-surfing-sites/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Blog Traffic With BlogMad</title>
		<link>http://www.beginnercode.com/2005/12/22/blog-traffic-with-blogmad/</link>
		<comments>http://www.beginnercode.com/2005/12/22/blog-traffic-with-blogmad/#comments</comments>
		<pubDate>Thu, 22 Dec 2005 18:12:17 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[Blog Adventures]]></category>
		<category><![CDATA[General Site Maint]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/?p=67</guid>
		<description><![CDATA[A new service is about to launch similar to the services of Blog Explosion. I&#8217;m not quite sure what&#8217;s all involved in it. They are allowing free signups right now before the launch, promising credits before the launch. I&#8217;ll give it a go and report on it. Click the banner to get in now.

BlogMad, Blog [...]]]></description>
			<content:encoded><![CDATA[<p>A new service is about to launch similar to the services of <a href="http://www.blogexplosion.com/index.php?ref=lestat">Blog Explosion</a>. I&#8217;m not quite sure what&#8217;s all involved in it. They are allowing free signups right now before the launch, promising credits before the launch. I&#8217;ll give it a go and report on it. Click the banner to get in now.<br />
<center><a href="http://www.blogmad.net/?ref=1a235cfa84eaa7e" title="BlogMad"><img src="http://www.blogmad.net/banners/468x60/25.gif" alt="BlogMad!" /></a></center><br />
<tags>BlogMad, Blog Traffic</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2005/12/22/blog-traffic-with-blogmad/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Add a puzzle to your site</title>
		<link>http://www.beginnercode.com/2005/12/20/add-a-puzzle-to-your-site/</link>
		<comments>http://www.beginnercode.com/2005/12/20/add-a-puzzle-to-your-site/#comments</comments>
		<pubDate>Tue, 20 Dec 2005 20:55:42 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[Blog Adventures]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[General Site Maint]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/?p=66</guid>
		<description><![CDATA[Thanks to TDavid for finding this cool game at Custom Quizilla!. Have a little fun with this Blog Explosion Puzzle. It&#8217;s real easy. You can upload an image, or link to one if you like. Fill in the blanks, and viola! They give you the code to paste!

Puzzle
]]></description>
			<content:encoded><![CDATA[<p>Thanks to <a href="http://www.makeyougohmm.com/20051220/2758/">TDavid</a> for finding this cool game at <a href="http://quizilla.com/games/showgame.php?gamesId=10&#038;customId=37211">Custom Quizilla!</a>. Have a little fun with this <a href="http://www.blogexplosion.com/index.php?ref=lestat">Blog Explosion</a> Puzzle. It&#8217;s real easy. You can upload an image, or link to one if you like. Fill in the blanks, and viola! They give you the code to paste!<br />
<embed src="http://download.quizilla.com/games/puzzlecustom.swf?customId=37211" quality="high" width="550" height="400" align="middle" type="application/x-shockwave-flash" allowScriptAccess="sameDomain" pluginspage="http://www.macromedia.com/go/getflashplayer" /></p>
<p><tags>Puzzle</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2005/12/20/add-a-puzzle-to-your-site/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WP Spam Comment Plugin</title>
		<link>http://www.beginnercode.com/2005/12/17/wp-spam-comment-plugin/</link>
		<comments>http://www.beginnercode.com/2005/12/17/wp-spam-comment-plugin/#comments</comments>
		<pubDate>Sun, 18 Dec 2005 04:10:19 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[Blog Adventures]]></category>
		<category><![CDATA[General Site Maint]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/?p=64</guid>
		<description><![CDATA[So I gave the Battle of the blogs a go over at BlogExplosion. IT was fun. I won some, and lost some. The cool thing was that it definately brought traffic my way. The bad news is that it brought traffic my way. Saturday morning when I logged in, I found 79 comments waiting for [...]]]></description>
			<content:encoded><![CDATA[<p>So I gave the Battle of the blogs a go over at <a href="http://www.blogexplosion.com/index.php?ref=lestat">BlogExplosion</a>. IT was fun. I won some, and lost some. The cool thing was that it definately brought traffic my way. The bad news is that it brought traffic my way. Saturday morning when I logged in, I found 79 comments waiting for moderation. Each and every one was spam. I&#8217;ve had comments like that before, but not 79 of them!! It was time for action!</p>
<p>I downloaded and installed <a href="http://unknowngenius.com/blog/wordpress/spam-karma/">Spam Karma 2.0</a>. The install was pretty typical. Unzip the package, and install it in your plugins folder. Then access, and activate it in the plugins screen of the WP manager. I noticed it listed all previous comments that I marked as spam, the date it occurred, and the comment. Honestly, it&#8217;s way over my head&#8230; but all Iknow is that for now, it works.</p>
<p><tags>Wordpress plugins,  comment spam</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2005/12/17/wp-spam-comment-plugin/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Book Publishers Sue Google</title>
		<link>http://www.beginnercode.com/2005/10/20/book-publishers-sue-google/</link>
		<comments>http://www.beginnercode.com/2005/10/20/book-publishers-sue-google/#comments</comments>
		<pubDate>Thu, 20 Oct 2005 19:20:20 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[General Site Maint]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/?p=57</guid>
		<description><![CDATA[From InternetWeek &#8211; 
Google Inc. on Wednesday was sued by a major publishing association for digitizing library books without the permissions of copyright holders, the second such suit filed against the search engine giant
I didn&#8217;t even know about Google Print(Still in Beta) until I read this. So I went and checked it out. It pretty [...]]]></description>
			<content:encoded><![CDATA[<p>From <a href="http://www.internetweek.com/showArticle.jhtml?articleId=172302562">InternetWeek</a> &#8211; </p>
<blockquote><p>Google Inc. on Wednesday was sued by a major publishing association for digitizing library books without the permissions of copyright holders, the second such suit filed against the search engine giant</p></blockquote>
<p>I didn&#8217;t even know about <a href="http://print.google.com/">Google Print</a>(Still in Beta) until I read this. So I went and checked it out. It pretty much looks and works like the google web search, <a href="http://print.google.com/intl/en/googleprint/about.html">except it searches for books</a>. </p>
<p>I thought I would give it a run. I typed in &#8216;cats&#8217;. The usual list pops up including a color photo of the front cover of each book. I randomly chose a book about why cats paint. (Didn&#8217;t know they could). From there I could see a few pages. Table of contents, and a couple of other pages. From there you could search even deeper into the book. I typed in &#8216;color&#8217;. I was presented with about 10 links to several pages within the book. After being prompted to login with my google account, each link would show me a page, and a page or 2 forward or backward in the book. I&#8217;m not sure how far is too far with copyrighted content. </p>
<p>They do reference the author, the publisher, and a few links to where one could buy the book. I can only imagine that they <strong>have the permission of the publishers and authors</strong>. It <b>is</b> duly noted on <a href="http://print.google.com/googleprint/screenshots.html">this page</a>: </p>
<blockquote><p><b>Library books still in copyright:</b> For books that we have scanned from a library which are still in copyright, you will only be able to view the bibliographic information and a few short sentences of text around your search term. </p></blockquote>
<p>I seriously doubt that google wouldn&#8217;t have covered those bases before they attempted this endeavor.</p>
<p>I wrote an <a href="http://www.beginnercode.com/index.php/2005/09/21/get-code-snippets-from-published-books/">entry</a> about a similar service called <a href="http://php.codefetch.com/fetch.html">codefetch{</a> that allows you to search for books on programming code. These also would show a few excerpts of each authors pages. (A handy tool BTW!). </p>
<p>If anything you would think authors might even persue google, to plan how and what content would be shown. What a great way to advertise, and get books sold!</p>
<p>I&#8217;m thinking we haven&#8217;t seen the end of this topic, or copyright rules and laws.</p>
<p><tags>google, google print, lawsuit, publisher, books, internet</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2005/10/20/book-publishers-sue-google/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
