<?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</title>
	<atom:link href="http://smalltowngeeks.net/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>Installing Fog</title>
		<link>http://smalltowngeeks.net/2010/04/07/installing-fog/</link>
		<comments>http://smalltowngeeks.net/2010/04/07/installing-fog/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 05:09:43 +0000</pubDate>
		<dc:creator>TJ</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[FOG]]></category>
		<category><![CDATA[Imaging]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://smalltowngeeks.net/?p=457</guid>
		<description><![CDATA[&#8220;Fog is a Linux-based, free and open source computer imaging solution for Windows XP and Vista that ties together a few open-source tools with a php-based web interface. Fog doesn&#8217;t use any boot disks, or CDs; everything is done via TFTP and PXE. “ Now that you have Ubuntu installed your system is now ready [...]]]></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%2F04%2F07%2Finstalling-fog%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsmalltowngeeks.net%2F2010%2F04%2F07%2Finstalling-fog%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/2010/04/logo.gif"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="logo" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/logo_thumb.gif" border="0" alt="logo" width="532" height="48" /></a></p>
<blockquote><p>&#8220;Fog is a Linux-based, free and open source computer imaging solution for Windows XP and Vista that ties together a few open-source tools with a php-based web interface. Fog doesn&#8217;t use any boot disks, or CDs; everything is done via TFTP and PXE. “</p>
<p><span id="more-457"></span></p></blockquote>
<p>Now that you have Ubuntu installed your system is now ready to install the FOG Suite.</p>
<p>Login and lets get started.</p>
<p>1. Download the newest version of Fog from <a href="http://sourceforge.net/projects/freeghost/">http://sourceforge.net/projects/freeghost/</a> you can do this by going to Applications à Internet à Firefox and entering the url</p>
<p>2. Save the file to the /opt directory (should be named fog_*.**.fc.tar.gz)</p>
<p>3. Open terminal by going to Applications à Accessories à Terminal</p>
<p>4. Now we are going to un-tar (unzip) the installation files,</p>
<p>Here are the commands:</p>
<p>cd /opt</p>
<p>tar –xvzf fog*</p>
<p>cd fog*</p>
<p>cd bin</p>
<p>v. ./installfog.sh (This will launch the setup Script)</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image002.jpg"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="clip_image002" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image002_thumb.jpg" border="0" alt="clip_image002" width="240" height="221" /></a></p>
<p>5. Follow the prompts and answer the questions. Answers may vary depending on your network.</p>
<p>6. After the installation is complete go back into Firefox and enter the url : <a href="http://[serveripaddress]/fog/management">http://[serveripaddress]/fog/management</a> once here you will be asked to install the database schema. Click Install/Upgrade Now</p>
<p>7. After this is complete go back to <a href="http://[serveripaddress]/fog/management">http://[serveripaddress]/fog/management</a> . Now that the schema is installed you should be asked for a username and password. The username is fog and the password is password</p>
<p>8. The installation is now complete.</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image004.jpg"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="clip_image004" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image004_thumb.jpg" border="0" alt="clip_image004" width="240" height="165" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://smalltowngeeks.net/2010/04/07/installing-fog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My 5 favorite iPad apps.</title>
		<link>http://smalltowngeeks.net/2010/04/07/my-5-favorite-ipad-apps/</link>
		<comments>http://smalltowngeeks.net/2010/04/07/my-5-favorite-ipad-apps/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 05:03:05 +0000</pubDate>
		<dc:creator>TJ</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[ipad]]></category>

		<guid isPermaLink="false">http://smalltowngeeks.net/?p=450</guid>
		<description><![CDATA[As of right now I am writing this blog post from my new I pad. It takes a little getting used to but I am blown away by how well this device performs. So far I have installed quite a few apps and I am loving all of them. My goal is to replace my [...]]]></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%2F04%2F07%2Fmy-5-favorite-ipad-apps%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsmalltowngeeks.net%2F2010%2F04%2F07%2Fmy-5-favorite-ipad-apps%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/2010/04/photo.png"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="photo" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/photo_thumb.png" border="0" alt="photo" width="286" height="285" /></a></p>
<p>As of right now I am writing this blog post from my new I pad. It takes a little getting used to but I am blown away by how well this device performs. So far I have installed quite a few apps and I am loving all of them. My goal is to replace my Macbook Pro that I normally use at school to lighten my load. I am not expecting to be able to do everything but basic web browsing and note taking should work great. I think it&#8217;s going to be pretty easy to do. Here are the apps that I am enjoying so far.</p>
<p><span id="more-450"></span></p>
<p>Desktop Connect:</p>
<p>By far my favorite app on the device. I am able to control Linux boxes, Apple Machines as well as Windows Machines remotely. This is a RDP and VNC remote desktop app. I really like the mouse control, you don’t directly control the mouse it’s different, but nice. Another cool feature is the auto-discovery of Windows and Apple devices that are advertising remote connections. All devices that are available show up on the left hand side.</p>
<p>Netflix:</p>
<p>I have never seen Netflix work so flawlessly. Within 30 seconds I was logged in and my movie was playing, almost instantly. The Netflix streaming catalog is growing every day. I was able to browse TV shows and Movies without any lag or slowness.</p>
<p>WordPress:</p>
<p>The next one was a tuff decision. What app would I use to keep up with the Twitter universe?<br />
My first instinct was to download tweet deck. I was un-pleasantly surprised when I clicked on a link and I could not navigate to the Webpage. (It does work in portrait mode)</p>
<p>Twitteriffic:<br />
This is a pleasant upgrade from Tweet Deck, it even makes cool bird sounds when its launched. It&#8217;s like pretty much every other Twitter Client you have access to a timeline with all your friends as well as re-tweet and reply. I really like the simple and easy to use interface.</p>
<p>Real Racing HD:</p>
<p>Everyone that I demo this app for is blown away by how well the device handles the game and how stunning the graphics are. The game play is solid although I would like some more control over the game. All you have access to is the brake, not the accelerator. Overall the game is a 9 out of 10.</p>
]]></content:encoded>
			<wfw:commentRss>http://smalltowngeeks.net/2010/04/07/my-5-favorite-ipad-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using wireless in Hyper-V</title>
		<link>http://smalltowngeeks.net/2010/04/07/using-wireless-in-hyper-v/</link>
		<comments>http://smalltowngeeks.net/2010/04/07/using-wireless-in-hyper-v/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 21:24:16 +0000</pubDate>
		<dc:creator>TJ</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[HyperV]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://smalltowngeeks.net/?p=435</guid>
		<description><![CDATA[&#160; I know, I know, Who is going to have a wireless card even close to there data center? The answer, no one. But you may find yourself wanting to create, test, and verify VHD’s while on the road or away from the server. Hyper-V does not natively support using Wireless Cards as they are [...]]]></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%2F04%2F07%2Fusing-wireless-in-hyper-v%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsmalltowngeeks.net%2F2010%2F04%2F07%2Fusing-wireless-in-hyper-v%2F&amp;source=smalltowngeeks&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>&#160;</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/Wireless_HyperV.jpg"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Wireless_HyperV" border="0" alt="Wireless_HyperV" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/Wireless_HyperV_thumb.jpg" width="332" height="126" /></a> </p>
<p>I know, I know, Who is going to have a wireless card even close to there data center? The answer, no one. But you may find yourself wanting to create, test, and verify VHD’s while on the road or away from the server. Hyper-V does not natively support using Wireless Cards as they are un-likely to be used in production environments, that said it is still possible. </p>
<p> <span id="more-435"></span>
<p>There are three different types of virtual networks that we can utilize in Hyper-V .External which binds a physical interface to the connection to the machine can access a physical network. Internal which will create a Virtual network adapter that you use to communicate between the machines on the server and the physical machine itself. The final one which is Private which creates a network that only the machines that you select can communicate on the virtual network. </p>
<p>The connection type that we will be using is the “Internal” type of connection. Like I stated earlier this connection creates a network interface on the physical computer so it can communicate with the virtual machine. </p>
<p>Go into Hyper-V Virtual Network Manager and create a new network. We will call it STG. </p>
<p align="center">&#160;<a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/HyperV_Wireless.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="HyperV_Wireless" border="0" alt="HyperV_Wireless" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/HyperV_Wireless_thumb.png" width="280" height="308" /></a></p>
<p align="left">Now go into “Network Connections” (Control Panel –&gt; Network and Internet –&gt; Network and Sharing Center –&gt; Change Adapter Settings ) </p>
<p align="left">&#160;</p>
<p align="center"><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/HyperV_Wireless2.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="HyperV_Wireless2" border="0" alt="HyperV_Wireless2" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/HyperV_Wireless2_thumb.png" width="317" height="284" /></a> </p>
<p align="left">Select the virtual adapter that was created and the wireless adapter and right click “Add to Bridge” You will now see a Network bridge that displays both networks IE STG and DadderN (Home Network).</p>
<p align="left">&#160;</p>
<p align="center"><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/HyperV_Wireless5.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="HyperV_Wireless5" border="0" alt="HyperV_Wireless5" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/HyperV_Wireless5_thumb.png" width="189" height="81" /></a> </p>
<p align="center">&#160;</p>
</p>
<p>Now set the IP settings to your default gateway and other network settings. </p>
<p>&#160;</p>
<p align="center"><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/HyperV_Wireless4.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="HyperV_Wireless4" border="0" alt="HyperV_Wireless4" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/HyperV_Wireless4_thumb.png" width="216" height="320" /></a> </p>
<p>Now you will have given outside network access to your virtual switch and you will be able to navigate outside of your lan. </p>
<p>If you have any problems feel free to email me at tj{at}smalltowngeeks{dot}net</p>
<p>&#160;</p>
<p>TJ</p>
]]></content:encoded>
			<wfw:commentRss>http://smalltowngeeks.net/2010/04/07/using-wireless-in-hyper-v/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Ubuntu</title>
		<link>http://smalltowngeeks.net/2010/04/07/installing-ubuntu/</link>
		<comments>http://smalltowngeeks.net/2010/04/07/installing-ubuntu/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 20:51:26 +0000</pubDate>
		<dc:creator>TJ</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://smalltowngeeks.net/2010/04/07/installing-ubuntu/</guid>
		<description><![CDATA[&#160; Here is a Quick Guide on how to install Ubuntu. Installation of Ubuntu 1. Download the most up to date distro of Ubuntu from : http://ubuntu.com 2. Burn ISO image to a optical media such as a DVD or CD 3. Insert disk into the server and set your boot options within the bios [...]]]></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%2F04%2F07%2Finstalling-ubuntu%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsmalltowngeeks.net%2F2010%2F04%2F07%2Finstalling-ubuntu%2F&amp;source=smalltowngeeks&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>&#160;</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/ubuntuwallpapereasy.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="ubuntu-wallpaper-easy" border="0" alt="ubuntu-wallpaper-easy" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/ubuntuwallpapereasy_thumb.png" width="244" height="184" /></a> </p>
<p>Here is a Quick Guide on how to install Ubuntu. </p>
<p>Installation of Ubuntu</p>
<p>1. Download the most up to date distro of Ubuntu from : <a href="http://ubuntu.com">http://ubuntu.com</a></p>
<p>2. Burn ISO image to a optical media such as a DVD or CD</p>
<p> <span id="more-432"></span>
<p>3. Insert disk into the server and set your boot options within the bios to boot to optical drive. </p>
<p>4. When the installer starts you will be presented with a prompt to choose your language, select your language.</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image002.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="clip_image002" border="0" alt="clip_image002" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image002_thumb.png" width="244" height="185" /></a></p>
<p>5. Next you will see a menu with different options that you can choose to do with the disk. We want to select “Install Ubuntu”</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image003.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="clip_image003" border="0" alt="clip_image003" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image003_thumb.png" width="244" height="86" /></a></p>
<p>6. Next choose your language again.</p>
<p>7. Now select your Time Zone and adjust the time.</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image005.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="clip_image005" border="0" alt="clip_image005" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image005_thumb.png" width="244" height="182" /></a></p>
<p>8. Next select your keyboard layout.</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image006.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="clip_image006" border="0" alt="clip_image006" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image006_thumb.png" width="244" height="72" /></a></p>
<p>9. Next is when you can select different partition options. In this example we are going to use the whole disk. </p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image008.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="clip_image008" border="0" alt="clip_image008" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image008_thumb.png" width="244" height="96" /></a></p>
<p>10. Now we must name the machine as well as setup passwords for the unit.</p>
<p>Tip: If on a domain make sure you stay within naming policies to save yourself some hassle later. </p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image010.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="clip_image010" border="0" alt="clip_image010" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image010_thumb.png" width="244" height="158" /></a></p>
<p>11. Now we are ready to install, verify your settings and click next to start the installation.</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image012.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="clip_image012" border="0" alt="clip_image012" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image012_thumb.png" width="244" height="193" /></a></p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image014.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="clip_image014" border="0" alt="clip_image014" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image014_thumb.png" width="244" height="193" /></a></p>
<p>12. Ubuntu will now be installed on your system.</p>
<p>13. Click Login to begin.</p>
]]></content:encoded>
			<wfw:commentRss>http://smalltowngeeks.net/2010/04/07/installing-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Manually Update Droid</title>
		<link>http://smalltowngeeks.net/2010/03/31/manually-update-droid/</link>
		<comments>http://smalltowngeeks.net/2010/03/31/manually-update-droid/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 03:22:22 +0000</pubDate>
		<dc:creator>TJ</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[How To's]]></category>
		<category><![CDATA[2.1 update]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Droid]]></category>

		<guid isPermaLink="false">http://smalltowngeeks.net/2010/03/31/manually-update-droid/</guid>
		<description><![CDATA[I can’t wait anymore. I had to do it. I have finally updated my droid to the newest update. It was the easiest firmware update that I have had to do. Lets jump in. First thing you need to do is download the firmware. (Download) Rename the file to “update.zip” and copy it to the [...]]]></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%2F03%2F31%2Fmanually-update-droid%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsmalltowngeeks.net%2F2010%2F03%2F31%2Fmanually-update-droid%2F&amp;source=smalltowngeeks&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>I can’t wait anymore. I had to do it. I have finally updated my droid to the newest update. It was the easiest firmware update that I have had to do. Lets jump in. </p>
<p>First thing you need to do is download the firmware. <a href="http://android.clients.google.com/updates/voles/signed-voles-ESE81-from-ESD56.fa406da6.zip" target="_blank">(Download)</a></p>
<p>Rename the file to “update.zip” and copy it to the root of your SD card.</p>
<p>&#160;</p>
<p>Now we need to get your droid into recovery mode. </p>
<p>1. Power down your droid.</p>
<p>2. Now when you power your Droid back on hold down the “X” key on your keyboard.</p>
<p>3. You will now see a triangle and an ! point</p>
<p>4. After you see the recovery screen hold down the “Volume +” key as well as the camera key</p>
<p>5. You will see a menu appear towards the top, use the D pad to navigate to the update option. </p>
<p>6. Sit back and let the droid update. </p>
<p>7. Enjoy</p>
]]></content:encoded>
			<wfw:commentRss>http://smalltowngeeks.net/2010/03/31/manually-update-droid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Go Daddy Site Diagnostics. AKA Sales Tool</title>
		<link>http://smalltowngeeks.net/2010/03/17/go-daddy-site-diagnostics-aka-sales-tool/</link>
		<comments>http://smalltowngeeks.net/2010/03/17/go-daddy-site-diagnostics-aka-sales-tool/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 03:21:12 +0000</pubDate>
		<dc:creator>TJ</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://smalltowngeeks.net/2010/03/17/go-daddy-site-diagnostics-aka-sales-tool/</guid>
		<description><![CDATA[Today while looking at all of my domains ( way to many) and I saw that Godaddy added a new feature to all of my domains. Site Diagnostics.   I was thinking that Godaddy would help me with SEO and things like that. Unfortunately it was just another sales tool. It seems like everyday I [...]]]></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%2F03%2F17%2Fgo-daddy-site-diagnostics-aka-sales-tool%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsmalltowngeeks.net%2F2010%2F03%2F17%2Fgo-daddy-site-diagnostics-aka-sales-tool%2F&amp;source=smalltowngeeks&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><img src="http://smalltowngeeks.net/wp-content/uploads/2010/03/wpid-SiteDiagnostics.WM4nncZXpJZi.jpg" alt="wpid-SiteDiagnostics.WM4nncZXpJZi.jpg" width="357" height="44" /></p>
<p>Today while looking at all of my domains ( way to many) and I saw that Godaddy added a new feature to all of my domains. Site Diagnostics.<br />
 <br />
I was thinking that Godaddy would help me with SEO and things like that. Unfortunately it was just another sales tool. It seems like everyday I go back to Godaddy they just want to sell me something that i probably do not need. I am getting sick of sorting through ad’s and such to manage my DNS. I do give them credit, they did give me a rating for load time for my site but that was about it. </p>
<p>GoDaddy please stop trying to sell me things that I do not need!</p>
]]></content:encoded>
			<wfw:commentRss>http://smalltowngeeks.net/2010/03/17/go-daddy-site-diagnostics-aka-sales-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Staying sane with multiple PC&#8217;s</title>
		<link>http://smalltowngeeks.net/2010/02/13/staying-sane-with-multiple-pcs/</link>
		<comments>http://smalltowngeeks.net/2010/02/13/staying-sane-with-multiple-pcs/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 21:12:40 +0000</pubDate>
		<dc:creator>TJ</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://smalltowngeeks.net/2010/02/13/staying-sane-with-multiple-pcs/</guid>
		<description><![CDATA[Having 5 classes and multiple computers in use to complete assignments, I have found myself losing flash drives and not having my assignments when I need them. I have tried other services in the  past, but Dropbox is by far the easiest to use and gives me the features I need. First, what is Dropbox? [...]]]></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%2F02%2F13%2Fstaying-sane-with-multiple-pcs%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsmalltowngeeks.net%2F2010%2F02%2F13%2Fstaying-sane-with-multiple-pcs%2F&amp;source=smalltowngeeks&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: center;"><a href="http://smalltowngeeks.net/wp-content/uploads/2010/02/Dropbox-472X512.jpg"><img class="size-full wp-image-388 aligncenter" title="Dropbox 472X512" src="http://smalltowngeeks.net/wp-content/uploads/2010/02/Dropbox-472X512.jpg" alt="" width="195" height="140" /></a></p>
<p>Having 5 classes and multiple computers in use to complete assignments, I have found myself losing flash drives and not having my assignments when I need them. I have tried other services in the  past, but Dropbox is by far the easiest to use and gives me the features I need.</p>
<p><span id="more-384"></span></p>
<p>First, what is Dropbox?</p>
<blockquote><p>“Put your files into your Dropbox on one computer, and they&#8217;ll be instantly available on any of your other computers that you&#8217;ve installed Dropbox on (Windows, Mac, and Linux too!) Because a copy of your files are stored on Dropbox&#8217;s secure servers, you can also access them from any computer or mobile device using the <a href="https://www.dropbox.com/">Dropbox website</a>.” (From there site)</p></blockquote>
<p>Utilizing Dropbox’s sync capabilities I never have to worry about where my assignments reside. They are always available whether I am on my own computer or a computer in the schools labs.</p>
<p>Here are some key features:</p>
<ul>
<li>
<div>2 GB of online storage for free.</div>
</li>
<li>
<div>50gb or 100gb packages available for $99 and $199 a year respectively.</div>
</li>
<li>
<div>Folder synchronization is by far the best feature of this service. I love the idea of typing a paper on computer A then driving home and finishing my paper on computer B with no effort on my part.</div>
</li>
<li>
<div>Works on Mac and PC. Being a “Mac” guy in a Windows world I find myself bouncing back and forth between both operating systems. Dropbox enables me to keep my files safe no matter which operating system I am in.</div>
</li>
<li>
<div>Share files easily with others with a click of the mouse</div>
</li>
</ul>
<p>Dropbox will make your life much easier as a student. The nice thing is at the end of the semester you can Zip up the folder that you are using and archive it so you can have a hard copy in case you need it in the future.</p>
<p>Sign up for drop box <a href="http://www.dropbox.com/referrals/NTQzMTE0OTM5?tw=6">here</a></p>
<p>Until next time,</p>
<p>Carpe Noctum</p>
<p>“Sieze the night”</p>
<p>TJ</p>
]]></content:encoded>
			<wfw:commentRss>http://smalltowngeeks.net/2010/02/13/staying-sane-with-multiple-pcs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Chrome OS</title>
		<link>http://smalltowngeeks.net/2009/11/19/google-chrome-os/</link>
		<comments>http://smalltowngeeks.net/2009/11/19/google-chrome-os/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 19:39:18 +0000</pubDate>
		<dc:creator>TJ</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://smalltowngeeks.net/?p=373</guid>
		<description><![CDATA[  The Chrome OS seems to be built for the net book community but they are looking to expand the OS into other markets. As of right now the OS is very hardware dependant. Google has a set list of compatible hardware meaning you may not be able to download the OS and just install [...]]]></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%2F11%2F19%2Fgoogle-chrome-os%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsmalltowngeeks.net%2F2009%2F11%2F19%2Fgoogle-chrome-os%2F&amp;source=smalltowngeeks&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: center;"> <a href="http://smalltowngeeks.net/wp-content/uploads/2009/11/250.jpg"><img class="aligncenter size-medium wp-image-377" title="Chrome OS" src="http://smalltowngeeks.net/wp-content/uploads/2009/11/250-300x182.jpg" alt="" width="300" height="182" /></a></p>
<p>The Chrome OS seems to be built for the net book community but they are looking to expand the OS into other markets. As of right now the OS is very hardware dependant. <span id="more-373"></span>Google has a set list of compatible hardware meaning you may not be able to download the OS and just install it. Google is giving all of the code back to the open source community.  Here is a video that will explain more about the chrome OS.</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2009/11/chromeos-demo2.jpg"><img class="aligncenter size-full wp-image-379" title="chromeos-demo2" src="http://smalltowngeeks.net/wp-content/uploads/2009/11/chromeos-demo2.jpg" alt="chromeos-demo2" width="360" height="147" /></a></p>
<p>Some of the main points from the webcast:</p>
<p>Chrome will launch in 2010</p>
<p>Under the hood:<br />
-  No hard disks, only solid-state drives<br />
-  Verified boot, meaning if the boot does not pass signature then it will reload.<br />
-  Security: the OS does not trust any app<br />
-  Read-only root file system (Better Security)<br />
-  User data synced to the cloud. If your cloud goes down. O noooz<br />
-  Automatic updates for the entire OS</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2009/11/chromeos-hard.jpg"><img class="aligncenter size-full wp-image-380" title="chromeos-hard" src="http://smalltowngeeks.net/wp-content/uploads/2009/11/chromeos-hard.jpg" alt="chromeos-hard" width="384" height="266" /></a><br />
Trends:<br />
-  Net books have taken off in popularity<br />
-  Web Browser are 90% of what people use PC’s for</p>
<p>Chrome OS:<br />
- Instant boot (Under 7 Seconds)<br />
- Every app is a web app no native apps like android<br />
- All data is in the cloud<br />
- Browser security model. Sandboxes Apps.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/0QRO3gKj3qw&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/0QRO3gKj3qw&amp;hl=en_US&amp;fs=1&amp;" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://smalltowngeeks.net/2009/11/19/google-chrome-os/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Small Town Geeks, Episode 2: i-Phone and WEP Cracking</title>
		<link>http://smalltowngeeks.net/2009/10/01/small-town-geeks-episode-2-i-phone-and-wep-cracking/</link>
		<comments>http://smalltowngeeks.net/2009/10/01/small-town-geeks-episode-2-i-phone-and-wep-cracking/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 13:13:43 +0000</pubDate>
		<dc:creator>TJ</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Video's]]></category>

		<guid isPermaLink="false">http://smalltowngeeks.net/2009/10/01/small-town-geeks-episode-2-i-phone-and-wep-cracking/</guid>
		<description><![CDATA[Click to Play In this episode we dive into WEP cracking and Iphone Jail-breaking. Also take a look at Malware Bites to get rid of those nasty infections.]]></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%2F10%2F01%2Fsmall-town-geeks-episode-2-i-phone-and-wep-cracking%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsmalltowngeeks.net%2F2009%2F10%2F01%2Fsmall-town-geeks-episode-2-i-phone-and-wep-cracking%2F&amp;source=smalltowngeeks&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: center;"><script src="http://blip.tv/scripts/pokkariPlayer.js?ver=2009070701" type="text/javascript"></script><script src="http://blip.tv/syndication/write_player?skin=js&amp;posts_id=2687718&amp;source=3&amp;autoplay=true&amp;file_type=flv&amp;player_width=&amp;player_height=" type="text/javascript"></script></p>
<div id="blip_movie_content_2687718"><a onclick="play_blip_movie_2687718(); return false;" rel="enclosure" href="http://blip.tv/file/get/SmallTownGeeks-SmallTownGeeksEpisode2IPhoneAndWEPCracking580.mov"><img class="aligncenter" style="border: 0px;" title="Click to play" src="http://blip.tv/file/get/SmallTownGeeks-SmallTownGeeksEpisode2IPhoneAndWEPCracking580.mov.jpg" border="0" alt="Video thumbnail. Click to play" width="210" height="347" /></a><br />
<a onclick="play_blip_movie_2687718(); return false;" rel="enclosure" href="http://blip.tv/file/get/SmallTownGeeks-SmallTownGeeksEpisode2IPhoneAndWEPCracking580.mov">Click to Play</a></div>
<div class="blip_description">In this episode we dive into WEP cracking and Iphone Jail-breaking. Also take a look at Malware Bites to get rid of those nasty infections.</div>
]]></content:encoded>
			<wfw:commentRss>http://smalltowngeeks.net/2009/10/01/small-town-geeks-episode-2-i-phone-and-wep-cracking/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://blip.tv/file/get/SmallTownGeeks-SmallTownGeeksEpisode2IPhoneAndWEPCracking580.mov" length="129869491" type="video/quicktime" />
		</item>
	</channel>
</rss>
