<?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>Small Town Geeks &#187; Skrieder</title>
	<atom:link href="http://smalltowngeeks.net/author/skrieder/feed/" rel="self" type="application/rss+xml" />
	<link>http://smalltowngeeks.net</link>
	<description>Tech News, How to's, and Reviews</description>
	<lastBuildDate>Tue, 31 Aug 2010 17:13:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Sending spam e-mail using a simple PHP method.</title>
		<link>http://smalltowngeeks.net/2010/05/19/sending-spam-e-mail-using-a-simple-php-method/</link>
		<comments>http://smalltowngeeks.net/2010/05/19/sending-spam-e-mail-using-a-simple-php-method/#comments</comments>
		<pubDate>Thu, 20 May 2010 06:12:25 +0000</pubDate>
		<dc:creator>Skrieder</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[How To's]]></category>

		<guid isPermaLink="false">http://smalltowngeeks.net/?p=474</guid>
		<description><![CDATA[A quick post on how to send spam e-mail using a PHP method.  Also, don’t use this form as a normal contact form as it has no security built in. NOTE:  First in some cases the client will receive an e-mail that looks spoofed.  In this case you can make an e-mail look like it [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fsmalltowngeeks.net%2F2010%2F05%2F19%2Fsending-spam-e-mail-using-a-simple-php-method%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsmalltowngeeks.net%2F2010%2F05%2F19%2Fsending-spam-e-mail-using-a-simple-php-method%2F&amp;source=smalltowngeeks&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>A quick post on how to send spam e-mail using a PHP method.  Also, don’t use this form as a normal contact form as it has no security built in.</p>
<p><span id="more-474"></span>NOTE:  First in some cases the client will receive an e-mail that looks spoofed.  In this case you can make an e-mail look like it has been sent from someone other than you.  Second, in some cases the client will receive an e-mail from your server.  In either case DO NOT USE THIS MALICIOUSLY because….it’s very easy to be caught.  If someone were to examine the details of the e-mail in either case it would show your server and you would be traceable.</p>
<p>&lt;code&gt;</p>
<p>&lt;!— sampleSpamForm.php</p>
<p>Note:  All of this code should be placed on a single page.  If you look below you will see that the form will post to itself, after the post if the email field is set then it will send the email.  If not then it will display the form.</p>
<p>—&gt;</p>
<p>&lt;?php<br />
if (isset($_REQUEST['email']))<br />
//if “email” is filled out, send email<br />
{<br />
//send email<br />
$to = “email to send to”;<br />
$from = “email you want the email to appear to be sent from”;<br />
$name = $_REQUEST['name'] ;<br />
$email = $_REQUEST['email'] ;<br />
$subject = $_REQUEST['subject'] ;<br />
$message = $_REQUEST['message'] ;<br />
$headers = “From: $from”;<br />
$body = “$message $name”;<br />
mail($to,$subject,$body,$headers);<br />
echo “Thank you $name for using the spam form.”;<br />
}<br />
else<br />
//if “email” is not filled out, display the form<br />
{<br />
echo “&lt;form method=’post’ action=’spam.php’&gt;<br />
Name: &lt;input name=’name’ type=’text’&gt;<br />
&lt;br&gt;<br />
Email: &lt;input name=’email’ type=’text’&gt;<br />
&lt;br&gt;<br />
Subject: &lt;input name=’subject’ type=’text’&gt;<br />
&lt;br&gt;<br />
Message:<br />
&lt;br&gt;<br />
&lt;textarea name=’message’ rows=’15′ cols=’40′&gt; &lt;/textarea&gt;<br />
&lt;br&gt;<br />
&lt;input type=’submit’ /&gt;<br />
&lt;/form&gt;”;<br />
}<br />
?&gt;</p>
<p>&lt;/code&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://smalltowngeeks.net/2010/05/19/sending-spam-e-mail-using-a-simple-php-method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Sidewiki</title>
		<link>http://smalltowngeeks.net/2009/09/24/google-sidewiki/</link>
		<comments>http://smalltowngeeks.net/2009/09/24/google-sidewiki/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 17:48:59 +0000</pubDate>
		<dc:creator>Skrieder</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://smalltowngeeks.net/?p=335</guid>
		<description><![CDATA[Google Sidewiki released to Internet Explorer and Firefox.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fsmalltowngeeks.net%2F2009%2F09%2F24%2Fgoogle-sidewiki%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsmalltowngeeks.net%2F2009%2F09%2F24%2Fgoogle-sidewiki%2F&amp;source=smalltowngeeks&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Google recently launched a new add-on to Firefox and Internet Explorer called Sidewiki.</p>
<div id="attachment_336" class="wp-caption aligncenter" style="width: 228px"><a href="http://www.google.com/sidewiki/intl/en/index.html"><img class="size-full wp-image-336" title="sidewikilogo" src="http://smalltowngeeks.net/wp-content/uploads/2009/09/sidewikilogo.PNG" alt="Google Sidewiki Logo" width="218" height="54" /></a><p class="wp-caption-text">Google Sidewiki Logo</p></div>
<p>This add-on allows users to comment about any given web page that you are on.  However some pages are limited, such as users are not allowed to comment on several Google sites such as Gmail.</p>
<p><span id="more-335"></span></p>
<p>If used correctly this tool would be an awesome new way to get the opinions of real life people. If you are interested in a new product you no longer would have to search all around the web to make a decision because all the opinions would be on the site right before your eyes.  Maybe you want to know how the public is reacting to that new iPod nano with the built in video camera?  Well just mosey on over to</p>
<p>But if abused it can really destroy webpages.  As a web developer one drawback is that now you don&#8217;t have complete control over what experience users have when they visit your page.</p>
<div id="attachment_337" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.microsoft.com"><img class="size-medium wp-image-337 " title="sidewikiMicro" src="http://smalltowngeeks.net/wp-content/uploads/2009/09/sidewikiMicro-300x127.png" alt="sidewikiMicro" width="300" height="127" /></a><p class="wp-caption-text">First couple of Sidewiki posts on Microsoft.com</p></div>
<p style="text-align: left;">Make sure you check out <a href="http://www.googlelabs.com/">Google Labs</a> to see what Google is brewing up next.</p>
<p style="text-align: left;">Happy Hacking,</p>
<p style="text-align: left;">-Scott</p>
<p><a href="http://scottkrieder.com">ScottKrieder.Com</a></p>
<p><a href="http://SmallTownGeeks.Net">SmallTownGeeks.Net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://smalltowngeeks.net/2009/09/24/google-sidewiki/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Tasks</title>
		<link>http://smalltowngeeks.net/2009/07/25/google-tasks/</link>
		<comments>http://smalltowngeeks.net/2009/07/25/google-tasks/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 16:58:06 +0000</pubDate>
		<dc:creator>Skrieder</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://smalltowngeeks.net/?p=203</guid>
		<description><![CDATA[GoogleTasks Google just added a new feature to Gmail and Google calendars.  You can now add tasks to a list that you are able to view in Gmail, Google calendar, iGoogle gadget or on your mobile phone. In Gmail the task list will appear just like another embedded gchat window on the far right of [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fsmalltowngeeks.net%2F2009%2F07%2F25%2Fgoogle-tasks%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsmalltowngeeks.net%2F2009%2F07%2F25%2Fgoogle-tasks%2F&amp;source=smalltowngeeks&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>GoogleTasks</p>
<p>Google just added a new feature to Gmail and Google calendars.  You can now add tasks to a list that you are able to view in Gmail, Google calendar, iGoogle gadget or on your mobile phone.</p>
<p><span id="more-203"></span><!--more--></p>
<p>In Gmail the task list will appear just like another embedded gchat window on the far right of the screen.(See fig. 1)</p>
<p><img class="alignnone size-medium wp-image-206" title="art1fig1" src="http://smalltowngeeks.net/wp-content/uploads/2009/07/art1fig1-219x300.jpg" alt="art1fig1" width="219" height="300" /></p>
<p>In GCal it will appear as another calendar type on the left hand side of the screen.  (See fig. 2)  If you choose a due date it will show up on the calendar with a checkable box. (See fig. 3)  And finally on the right hand side of the screen you will see a task list.  (See fig. 4)</p>
<p><img class="alignnone size-full wp-image-207" title="art1fig2" src="http://smalltowngeeks.net/wp-content/uploads/2009/07/art1fig2.JPG" alt="art1fig2" width="191" height="86" /></p>
<p><img class="alignnone size-full wp-image-208" title="art1fig3" src="http://smalltowngeeks.net/wp-content/uploads/2009/07/art1fig3.JPG" alt="art1fig3" width="237" height="143" /></p>
<p><img class="alignnone size-full wp-image-209" title="art1fig4" src="http://smalltowngeeks.net/wp-content/uploads/2009/07/art1fig4.JPG" alt="art1fig4" width="205" height="303" /></p>
<p>Third, you can access your tasks from your mobile phone as well by logging onto gmail.com/tasks from your cell phone.</p>
<p>And finally you can check off your tasks after installing the iGoogle task gadget.  (See fig. 5)</p>
<p>Happy tasking,</p>
<p>Scott</p>
<p><img class="alignnone size-full wp-image-210" title="art1fig5" src="http://smalltowngeeks.net/wp-content/uploads/2009/07/art1fig5.JPG" alt="art1fig5" width="520" height="498" /></p>
]]></content:encoded>
			<wfw:commentRss>http://smalltowngeeks.net/2009/07/25/google-tasks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
