<?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; Development</title>
	<atom:link href="http://smalltowngeeks.net/category/developer/feed/" rel="self" type="application/rss+xml" />
	<link>http://smalltowngeeks.net</link>
	<description>Tech News, How to's, and Reviews</description>
	<lastBuildDate>Thu, 20 May 2010 06:12:25 +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>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>Screen Shots on Your Blackberry</title>
		<link>http://smalltowngeeks.net/2009/08/19/screen-shots-on-your-blackberry/</link>
		<comments>http://smalltowngeeks.net/2009/08/19/screen-shots-on-your-blackberry/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 04:11:00 +0000</pubDate>
		<dc:creator>TJ</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[How To's]]></category>

		<guid isPermaLink="false">http://smalltowngeeks.net/?p=258</guid>
		<description><![CDATA[As a blogger and avid Blackberry user, I have found a need to do screenshots for new product reviews as well as demonstration for How to’s. The old way of screen capturing involved connecting your BlackBerry to your PC and using a program like JL_Cmder and take a Screenshot. I will tell you, this was [...]]]></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%2F08%2F19%2Fscreen-shots-on-your-blackberry%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsmalltowngeeks.net%2F2009%2F08%2F19%2Fscreen-shots-on-your-blackberry%2F&amp;source=smalltowngeeks&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2009/08/090813195633.jpg"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="090813195633" src="http://smalltowngeeks.net/wp-content/uploads/2009/08/090813195633_thumb.jpg" border="0" alt="090813195633" width="244" height="184" /></a></p>
<p>As a blogger and avid Blackberry user, I have found a need to do screenshots for new product reviews as well as demonstration for How to’s.</p>
<p><span id="more-258"></span>The old way of screen capturing involved connecting your BlackBerry to your PC and using a program like JL_Cmder and take a Screenshot.</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2009/08/jl_loader.png"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="jl_loader" src="http://smalltowngeeks.net/wp-content/uploads/2009/08/jl_loader_thumb.png" border="0" alt="jl_loader" width="197" height="267" /></a>I will tell you, this was a pain. Since then I have found a few apps that do a much better job at creating screenshots to share with others. The app that works the best, is a free program called “<em>Capture It</em>” from “<em>The Tech Mogul”.</em></p>
<blockquote><p>Description from the website:<br />
<em>A simple screen capture utility for </em><a href="http://forums.pinstack.com/#"><em>Blackberry</em></a><em> devices with 4.3 or higher. You simple assign the the application to a Blackberry convenience key, and press the key on the screen of your choice. The device capture will be saved to the first available storage medium (Storage Card or Device Memory)</em></p></blockquote>
<p>This has made Screenshotting much easier to do. I definitely recommend using this app if you find yourself needing to showcase an app or a theme on your blackberry.</p>
<p>Developers Website:</p>
<p><a title="http://www.thetechmogul.com/" href="http://www.thetechmogul.com/">http://www.thetechmogul.com/</a></p>
<p>Over the air Download:</p>
<p><a href="http://www.thetechmogul.com/CaptureIt/CaptureIt.jad">http://www.thetechmogul.com/CaptureIt/CaptureIt.jad</a></p>
<p>Good Luck</p>
<p>T.J.</p>
]]></content:encoded>
			<wfw:commentRss>http://smalltowngeeks.net/2009/08/19/screen-shots-on-your-blackberry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft DreamSpark</title>
		<link>http://smalltowngeeks.net/2008/02/19/microsoft-dreamspark/</link>
		<comments>http://smalltowngeeks.net/2008/02/19/microsoft-dreamspark/#comments</comments>
		<pubDate>Wed, 20 Feb 2008 03:26:00 +0000</pubDate>
		<dc:creator>TJ</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://smalltowngeeks.net/?p=132</guid>
		<description><![CDATA[It was announced today that Microsoft is giving students a package of developer tools that is rival to none. The first thing you do is go over to Channel 8 and sign in using your live ID. After giving your ID you are asked to validate your school, which is very similar to the regular [...]]]></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%2F2008%2F02%2F19%2Fmicrosoft-dreamspark%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsmalltowngeeks.net%2F2008%2F02%2F19%2Fmicrosoft-dreamspark%2F&amp;source=smalltowngeeks&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://1.bp.blogspot.com/_a4mcs_8wWCk/R7ueVM03_QI/AAAAAAAAAEA/chYb_RSMjNE/s1600-h/visual_studio_2005.gif"><img id="BLOGGER_PHOTO_ID_5168899084395216130" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://1.bp.blogspot.com/_a4mcs_8wWCk/R7ueVM03_QI/AAAAAAAAAEA/chYb_RSMjNE/s320/visual_studio_2005.gif" border="0" /></a>
<div>It was announced today that Microsoft is giving students a package of developer tools that is rival to none. The first thing you do is go over to <a href="http://channel8.msdn.com/">Channel 8</a> and sign in using your live ID. After giving your ID you are asked to validate your school, which is very similar to the regular MSDN that you may be accustomed to. If your school is on there… Enjoy the free software. If you are still reading this then your schools name was not on the list. Its ok there is hope for you yet. If you scroll down you will see a message that states,<br />“If you have selected your Country, but your University is not listed in the above ListBox, here are some <a href="https://downloads.channel8.msdn.com/StudentIdOptions.aspx">options</a> to get a new Student ID.”<br />Just follow the steps to validate that you are a student. After you do, feel free to enjoy the free software that Microsoft has bestowed upon you.</p>
<p>Things available for download:<br />SQL Server 2005<br />XNA Game Studio 2.0<br />Visual Studio 2005 professional Edition<br />Visual C# 2005<br />Visual Basic 2005<br />Visual Studio 2008<br />Windows Server 2003<br />Microsoft Expression Studio<br />Xna Creators Club Online<br />Visual C++ 2005<br />SQL Server 2005 Express<br />Visual J# 2005<br />And Virtual PC 2007</div>
]]></content:encoded>
			<wfw:commentRss>http://smalltowngeeks.net/2008/02/19/microsoft-dreamspark/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
