<?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>ThePizzy.net/blog &#187; Search Results  &#187;  tsnlocal</title>
	<atom:link href="http://thepizzy.net/blog/search/tsnlocal/feed/rss2/" rel="self" type="application/rss+xml" />
	<link>http://thepizzy.net/blog</link>
	<description>Solving the complex in 140 characters or less...</description>
	<lastBuildDate>Mon, 02 Jan 2012 15:55:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-alpha-19719</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Hamachi Web Status Images</title>
		<link>http://thepizzy.net/blog/2009/09/hamachi-web-status-images/</link>
		<comments>http://thepizzy.net/blog/2009/09/hamachi-web-status-images/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 16:05:13 +0000</pubDate>
		<dc:creator>[[Neo]]</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[tsnLocal.net]]></category>
		<category><![CDATA[hamachi]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[status]]></category>
		<category><![CDATA[vpn]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://thepizzy.net/blog/?p=474</guid>
		<description><![CDATA[Update&#8230; Unfortunately, LogMeIn figured out they forgot about that page, I guess when people started reading this post and hitting it on their servers. They have removed the text status...]]></description>
			<content:encoded><![CDATA[<h2>Update&#8230;</h2>
<p>Unfortunately, LogMeIn figured out they forgot about that page, I guess when people started reading this post and hitting it on their servers. They have removed the text status as well as all the others, and I can&#8217;t figure out why they would do such a thing.</p>
<p>I&#8217;m also not sure what they&#8217;re offering as an alternative either. So if you know, please leave a comment below. Thanks.</p>
<h2>Depreciated Process&#8230;</h2>
<p><img class="alignleft size-full wp-image-628" title="LogMeIn Hamachi Logo" src="http://thepizzy.net/blog/wp-content/uploads/2009/09/hamachi1.jpg" alt="" width="384" height="189" />A while back, I started a project called <a href="http://thepizzy.net/blog/?s=tsnlocal">tsn.lcl or tsnlocal</a>, but gave up on it when my electricity bill hit $400 in a month.</p>
<p>Today, I decided to fix up the domain name and get it back on the internet &#8211; at least to remove it from GoDaddy&#8217;s Parking Page &#8211; where they&#8217;re making money, not me, off of it.</p>
<p>When I got it <a href="http://tsnlocal.net" target="_blank">published</a> I noticed that none of the Hamachi Web Status images worked anymore, and that the <a href="https://my.hamachi.cc/status/image.php?5.28.161.250">link to such an image</a>, redirected to their login page for your Hamachi Management Dashboard. However, upon further investigation, I found that there was not only an Image version of those status instances, but also a <a href="https://my.hamachi.cc/status/text.php?5.28.161.250">text version</a>.</p>
<p>I really wanted to show the online status of all my machines again, so I wrote my own php script to parse that text data, and created some simple images to show on the website based on the returned status.</p>
<p>So here&#8217;s the code so you can do the same thing&#8230;</p>
<h2>The PHP Function</h2>
<p>{code type=php}&lt;?php<br />
function hamachiImg($ip) {<br />
$url = &#8220;https://my.hamachi.cc/status/text.php?$ip&#8221;;<br />
$status = file_get_contents($url);<br />
$status = preg_replace(&#8216;/\d*\.\d*\.\d*.\d* /&#8217;, &#8221;, $status);<br />
$image_url = &#8220;./images/$status.png&#8221;;<br />
return $image_url;<br />
}<br />
?&gt;{/code}<br />
This code creates a $url variable with the address to the text status, based on the $ip that is passed to it. Then it requests the data, removes the ip address and the trailing space, leaving only the status text. On the server, I have a collection of images with the 4 different statuses as their file name, and with that an $image_url is created to be returned.</p>
<p>The 4 possible statuses are:</p>
<ul>
<li><img class="alignnone" title="hamachi-online" src="http://tsnlocal.net/images/online.png" alt="" width="16" height="17" /> &#8211; online</li>
<li><img class="alignnone" title="hamachi-offline" src="http://tsnlocal.net/images/offline.png" alt="" width="16" height="17" /> &#8211; offline</li>
<li><img class="alignnone" title="hamachi-unknown" src="http://tsnlocal.net/images/unknown.png" alt="" width="16" height="17" /> &#8211; unknown</li>
<li><img class="alignnone" title="hamachi-error" src="http://tsnlocal.net/images/error.png" alt="" width="16" height="17" /> &#8211; error</li>
</ul>
<h2>The HTML Code and PHP Function Call</h2>
<p>Once you have your php function in the page (I stuck mine before the first &lt;html&gt; tag), you can use the php function to insert the image url when you pass it an IP&#8230;<br />
{code type=html}&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;td style=&#8221;width: 100%&#8221;&gt;[[Neo]]:&lt;/td&gt;<br />
&lt;td style=&#8221;width: 100%&#8221;&gt; &lt;img src=&#8221;&lt;?php echo hamachiImg(&#8217;5.37.117.104&#8242;); ?&gt;&#8221;&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;{/code}<br />
<a href="http://thepizzy.net/blog/wp-content/uploads/2009/09/hamachi-example.png"><img class="alignright size-full wp-image-477" title="hamachi-example" src="http://thepizzy.net/blog/wp-content/uploads/2009/09/hamachi-example.png" alt="hamachi-example" width="210" height="201" /></a>Once you&#8217;ve done that, assuming you have entered a valid hamachi IP address, the results should look something like the image at right.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/hamachi' rel='tag' target='_blank'>hamachi</a>, <a class='technorati-link' href='http://technorati.com/tag/images' rel='tag' target='_blank'>images</a>, <a class='technorati-link' href='http://technorati.com/tag/status' rel='tag' target='_blank'>status</a>, <a class='technorati-link' href='http://technorati.com/tag/vpn' rel='tag' target='_blank'>vpn</a>, <a class='technorati-link' href='http://technorati.com/tag/Web' rel='tag' target='_blank'>Web</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://thepizzy.net/blog/2009/09/hamachi-web-status-images/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>[[Oracle]] and tsnlocal.net</title>
		<link>http://thepizzy.net/blog/2006/09/oracle-and-tsnlocalnet/</link>
		<comments>http://thepizzy.net/blog/2006/09/oracle-and-tsnlocalnet/#comments</comments>
		<pubDate>Thu, 21 Sep 2006 22:14:00 +0000</pubDate>
		<dc:creator>[[Neo]]</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[the-spot.net]]></category>
		<category><![CDATA[The-Spot.Network]]></category>
		<category><![CDATA[thepizzy.net]]></category>
		<category><![CDATA[tsnLocal.net]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[[[Oracle]]]]></category>
		<category><![CDATA[bind]]></category>
		<category><![CDATA[chat rooms]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[dns control]]></category>
		<category><![CDATA[domain name]]></category>
		<category><![CDATA[dyndns]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[email server]]></category>
		<category><![CDATA[email settings]]></category>
		<category><![CDATA[exodus]]></category>
		<category><![CDATA[FileZilla]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[godaddy]]></category>
		<category><![CDATA[hamachi]]></category>
		<category><![CDATA[instant messaging]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[Jabber]]></category>
		<category><![CDATA[jabber client]]></category>
		<category><![CDATA[jabber server]]></category>
		<category><![CDATA[Jabbin]]></category>
		<category><![CDATA[nameserver]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[pop]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[smtp]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sql capabilities]]></category>
		<category><![CDATA[VoIP]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[web server]]></category>
		<category><![CDATA[webpage]]></category>
		<category><![CDATA[webserver]]></category>
		<category><![CDATA[Wildfire]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://thepizzy.net/blog/?p=73</guid>
		<description><![CDATA[I&#8217;ve spent the last two weeks working on getting [[Oracle]] into the role she was designed to play&#8230;but have found it to be a bit more involved than I realized....]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-1191" title="oracle" src="http://thepizzy.net/blog/wp-content/uploads/2007/10/oracle-150x150.png" alt="" width="150" height="150" />I&#8217;ve spent the last two weeks working on getting [[Oracle]] into the role she was designed to play&#8230;but have found it to be a bit more involved than I realized.</p>
<p>Originally, I set up the server to be a <a title="[[Oracle]] Reborn, tsnlocal goes up beta" href="http://thepizzy.net/blog/2006/09/oracle-reborn-tsnlocal-goes-up-beta/" target="_blank">web server with php and sql capabilities</a>. Then I realized I needed to FTP files to the web server, so I installed <a href="http://filezilla.sourceforge.net/" target="_blank">FileZilla Server</a>. Once that was done, I started working on the webpage for tsnlocal.net. I got it up, and then wanted to play around with some other type of server, and decided on a Jabber server for instant messaging. I installed <a href="http://www.jivesoftware.org/index.jsp" target="_blank">Wildfire</a>.</p>
<p>Wildfire is extremely easy to setup and install &#8211; so once I finished that, I looked for a Jabber client. My first choice was a VoIP client called <a href="http://www.jabbin.com/int/" target="_blank">Jabbin</a>, but I couldn&#8217;t get it to connect to the server &#8211; probably because I don&#8217;t have a VoIP Protocol on the server to support it. So I went with what we use at work, <a href="http://exodus.jabberstudio.org/: target=">Exodus</a>. It&#8217;s a fairly functional Jabber client &#8211; with chat rooms, IM rosters, subscriptions, and file transfer&#8230;and a bunch of other stuff, including plugins.</p>
<p>Once the Jabber service was set up, and I figured out how to connect to it, I realized that telling people to use my dyndns domain name was not going to work. So I had to figure out how to get my Godaddy.com domain name to link directly to my IP address. But, come to find out, I have to have a Top Level Domain for an IP address, or my dyndns must be a nameserver registered with the NS Registry, in order to use it as a nameserver. I spent 2 days setting up BIND on Windows XP (because there was very little help on the internet for how to do it). Then I jacked around with the Total DNS control settings on godaddy, and got the webserver to work like it should &#8211; almost.</p>
<p>So now you can join the jabber server with yourname@jabber.tsnlocal.net. Now that I had that working, I noticed that there were email settings like pop.tsnlocal.net and smtp.tsnlocal.net that could be set up, so I decided to look into running my own email server. I got in #bloodshotgamer on irc.gamesurge.net and asked some of the tecky people I talk to in there what they&#8217;d recommend. Duck-Lap recommended qmail for linux, but mentined <a href="http://mailenable.com" target="_blank">MailEnable</a> for Windows. I was hoping for an IMAP service so I could run the webpage side of it, but that was not included with this. I might upgrade the service to something new later on, but for now, this was easy to install, and has easy administration, which is what I&#8217;m looking for since most of these other services aren&#8217;t critical to the function of the server. BIND was about the only thing that was hell to configure&#8230;everything else was easily figured out once I had the info and a general grasp of what it does and how it does it.</p>
<p>So now, [[Oracle]] does these things:<br />
- Web Server (Apache, PHP, MySQL)<br />
- FTP Server<br />
- DNS Server<br />
- Email Server<br />
- Jabber Server<br />
- TeamSpeak Voicechat Server<br />
- Hamachi server<br />
- Google Desktop distributed indexing server for the hamachi shares (the essence of tsnlocal)<br />
- and a keep-alive for the dyndns service linking my IP to the dynamic domain</p>
<p>That&#8217;s a lot for a little box&#8230;but I&#8217;m not done yet &#8211; I need to put ssh on it so I can telnet into it. I&#8217;m sure there are other things that I will find to do with it as time goes on too.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/bind' rel='tag' target='_blank'>bind</a>, <a class='technorati-link' href='http://technorati.com/tag/chat+rooms' rel='tag' target='_blank'>chat rooms</a>, <a class='technorati-link' href='http://technorati.com/tag/DNS' rel='tag' target='_blank'>DNS</a>, <a class='technorati-link' href='http://technorati.com/tag/dns+control' rel='tag' target='_blank'>dns control</a>, <a class='technorati-link' href='http://technorati.com/tag/domain+name' rel='tag' target='_blank'>domain name</a>, <a class='technorati-link' href='http://technorati.com/tag/dyndns' rel='tag' target='_blank'>dyndns</a>, <a class='technorati-link' href='http://technorati.com/tag/Email' rel='tag' target='_blank'>Email</a>, <a class='technorati-link' href='http://technorati.com/tag/email+server' rel='tag' target='_blank'>email server</a>, <a class='technorati-link' href='http://technorati.com/tag/email+settings' rel='tag' target='_blank'>email settings</a>, <a class='technorati-link' href='http://technorati.com/tag/exodus' rel='tag' target='_blank'>exodus</a>, <a class='technorati-link' href='http://technorati.com/tag/FileZilla' rel='tag' target='_blank'>FileZilla</a>, <a class='technorati-link' href='http://technorati.com/tag/FTP' rel='tag' target='_blank'>FTP</a>, <a class='technorati-link' href='http://technorati.com/tag/godaddy' rel='tag' target='_blank'>godaddy</a>, <a class='technorati-link' href='http://technorati.com/tag/hamachi' rel='tag' target='_blank'>hamachi</a>, <a class='technorati-link' href='http://technorati.com/tag/instant+messaging' rel='tag' target='_blank'>instant messaging</a>, <a class='technorati-link' href='http://technorati.com/tag/internet' rel='tag' target='_blank'>internet</a>, <a class='technorati-link' href='http://technorati.com/tag/Jabber' rel='tag' target='_blank'>Jabber</a>, <a class='technorati-link' href='http://technorati.com/tag/jabber+client' rel='tag' target='_blank'>jabber client</a>, <a class='technorati-link' href='http://technorati.com/tag/jabber+server' rel='tag' target='_blank'>jabber server</a>, <a class='technorati-link' href='http://technorati.com/tag/Jabbin' rel='tag' target='_blank'>Jabbin</a>, <a class='technorati-link' href='http://technorati.com/tag/nameserver' rel='tag' target='_blank'>nameserver</a>, <a class='technorati-link' href='http://technorati.com/tag/PHP' rel='tag' target='_blank'>PHP</a>, <a class='technorati-link' href='http://technorati.com/tag/pop' rel='tag' target='_blank'>pop</a>, <a class='technorati-link' href='http://technorati.com/tag/server' rel='tag' target='_blank'>server</a>, <a class='technorati-link' href='http://technorati.com/tag/setup' rel='tag' target='_blank'>setup</a>, <a class='technorati-link' href='http://technorati.com/tag/smtp' rel='tag' target='_blank'>smtp</a>, <a class='technorati-link' href='http://technorati.com/tag/sql' rel='tag' target='_blank'>sql</a>, <a class='technorati-link' href='http://technorati.com/tag/sql+capabilities' rel='tag' target='_blank'>sql capabilities</a>, <a class='technorati-link' href='http://technorati.com/tag/VoIP' rel='tag' target='_blank'>VoIP</a>, <a class='technorati-link' href='http://technorati.com/tag/Web' rel='tag' target='_blank'>Web</a>, <a class='technorati-link' href='http://technorati.com/tag/web+server' rel='tag' target='_blank'>web server</a>, <a class='technorati-link' href='http://technorati.com/tag/webpage' rel='tag' target='_blank'>webpage</a>, <a class='technorati-link' href='http://technorati.com/tag/webserver' rel='tag' target='_blank'>webserver</a>, <a class='technorati-link' href='http://technorati.com/tag/Wildfire' rel='tag' target='_blank'>Wildfire</a>, <a class='technorati-link' href='http://technorati.com/tag/Windows' rel='tag' target='_blank'>Windows</a>, <a class='technorati-link' href='http://technorati.com/tag/%5B%5BOracle%5D%5D' rel='tag' target='_blank'>[[Oracle]]</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://thepizzy.net/blog/2006/09/oracle-and-tsnlocalnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Back into the swing…</title>
		<link>http://thepizzy.net/blog/2006/09/back-into-the-swing/</link>
		<comments>http://thepizzy.net/blog/2006/09/back-into-the-swing/#comments</comments>
		<pubDate>Mon, 18 Sep 2006 04:16:23 +0000</pubDate>
		<dc:creator>[[Neo]]</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[the-spot.net]]></category>
		<category><![CDATA[The-Spot.Network]]></category>
		<category><![CDATA[thepizzy.net]]></category>
		<category><![CDATA[tsnLocal.net]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[[[Oracle]]]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[dns server]]></category>
		<category><![CDATA[Frontpage]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[myspot]]></category>
		<category><![CDATA[oracle server]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[server capabilities]]></category>
		<category><![CDATA[ThePizzy]]></category>
		<category><![CDATA[tsn]]></category>
		<category><![CDATA[tsnlocal]]></category>
		<category><![CDATA[tsnX]]></category>
		<category><![CDATA[webpage]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[WYSIWYG]]></category>
		<category><![CDATA[wysiwyg editor]]></category>

		<guid isPermaLink="false">http://thepizzy.net/blog/?p=72</guid>
		<description><![CDATA[I am just now starting to get back into the swing of things for tsn. After working on some graphics for tsnlocal.net, and creating background for the [[Oracle]] server and...]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-1181" title="the-spot.net logo" src="http://thepizzy.net/blog/wp-content/uploads/2008/04/Untitled-2-150x150.png" alt="" width="150" height="150" />I am just now starting to get back into the swing of things for tsn.</p>
<p>After working on some graphics for tsnlocal.net, and creating background for the [[Oracle]] server and my computer, I&#8217;ve begun work on the next theme for tsnX: tsnX-dark. This one is a bit tricky because there is a combination of dark and light going on the same page that will require a different set of coding for the template to keep everything visible.</p>
<p>I&#8217;ve also been sparked to start working on some more stuff by a simple task they gave me at work &#8211; create a webpage, without using Frontpage and stuff, to display a server-is-down message in plain html. So I did it, all in Notepad++, and was actually pretty impressed that I could write a whole page using CSS and html from nothing, without using a WYSIWYG editor &#8211; I guess it&#8217;s still true that I know how to do it, it&#8217;s just easier for design purposes that I use an editor&#8230;.even though I still do the hard coding by hand.</p>
<p>Anyway, I&#8217;ve begun work on tsnX-dark, and am still working on tsnlocal.net and the [[Oracle]] server, to give it its own DNS server capabilities. If I am able to do that, then if [wizard] and I end up in the same house with faster internet, I&#8217;ll be able to host all my website from my own computers, instead of having to host them commercially.</p>
<p>I&#8217;m also going to restart the daunting task of creating the MySpot page&#8230;there is already one out there, but it&#8217;s just a simple New Posts search page&#8230;I have to get some other code in there and a new design on it to finish it up. I&#8217;m also going to make the server and user status on the tsnlocal page into an Auto-refreshing portion of the page via AJAX. Then I&#8217;m revamping thepizzy.net homepage to reflect the tsnX design and update the information that has apparently not been touched since tsn went down earlier this year.</p>
<p>It just takes the proper motivation and desire to work on this stuff &#8211; because if you&#8217;re not totally into the job, then the product is going to suck if you finish it. So look for changes.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/ajax' rel='tag' target='_blank'>ajax</a>, <a class='technorati-link' href='http://technorati.com/tag/computer' rel='tag' target='_blank'>computer</a>, <a class='technorati-link' href='http://technorati.com/tag/CSS' rel='tag' target='_blank'>CSS</a>, <a class='technorati-link' href='http://technorati.com/tag/DNS' rel='tag' target='_blank'>DNS</a>, <a class='technorati-link' href='http://technorati.com/tag/dns+server' rel='tag' target='_blank'>dns server</a>, <a class='technorati-link' href='http://technorati.com/tag/Frontpage' rel='tag' target='_blank'>Frontpage</a>, <a class='technorati-link' href='http://technorati.com/tag/html' rel='tag' target='_blank'>html</a>, <a class='technorati-link' href='http://technorati.com/tag/internet' rel='tag' target='_blank'>internet</a>, <a class='technorati-link' href='http://technorati.com/tag/myspot' rel='tag' target='_blank'>myspot</a>, <a class='technorati-link' href='http://technorati.com/tag/oracle+server' rel='tag' target='_blank'>oracle server</a>, <a class='technorati-link' href='http://technorati.com/tag/search' rel='tag' target='_blank'>search</a>, <a class='technorati-link' href='http://technorati.com/tag/server+capabilities' rel='tag' target='_blank'>server capabilities</a>, <a class='technorati-link' href='http://technorati.com/tag/ThePizzy' rel='tag' target='_blank'>ThePizzy</a>, <a class='technorati-link' href='http://technorati.com/tag/tsn' rel='tag' target='_blank'>tsn</a>, <a class='technorati-link' href='http://technorati.com/tag/tsnlocal' rel='tag' target='_blank'>tsnlocal</a>, <a class='technorati-link' href='http://technorati.com/tag/tsnX' rel='tag' target='_blank'>tsnX</a>, <a class='technorati-link' href='http://technorati.com/tag/webpage' rel='tag' target='_blank'>webpage</a>, <a class='technorati-link' href='http://technorati.com/tag/website' rel='tag' target='_blank'>website</a>, <a class='technorati-link' href='http://technorati.com/tag/WYSIWYG' rel='tag' target='_blank'>WYSIWYG</a>, <a class='technorati-link' href='http://technorati.com/tag/wysiwyg+editor' rel='tag' target='_blank'>wysiwyg editor</a>, <a class='technorati-link' href='http://technorati.com/tag/%5B%5BOracle%5D%5D' rel='tag' target='_blank'>[[Oracle]]</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://thepizzy.net/blog/2006/09/back-into-the-swing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[[Oracle]] Reborn, tsnlocal goes up beta</title>
		<link>http://thepizzy.net/blog/2006/09/oracle-reborn-tsnlocal-goes-up-beta/</link>
		<comments>http://thepizzy.net/blog/2006/09/oracle-reborn-tsnlocal-goes-up-beta/#comments</comments>
		<pubDate>Mon, 11 Sep 2006 13:16:29 +0000</pubDate>
		<dc:creator>[[Neo]]</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[the-spot.net]]></category>
		<category><![CDATA[tsnLocal.net]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[[m3rlin]]]></category>
		<category><![CDATA[[[Oracle]]]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[apache mysql]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[computer oracle]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[game server]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[hamachi]]></category>
		<category><![CDATA[IRC]]></category>
		<category><![CDATA[irc bot]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[network connections]]></category>
		<category><![CDATA[network shares]]></category>
		<category><![CDATA[oracle hosting]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[search page]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[TeamSpeak]]></category>
		<category><![CDATA[teamspeak server]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[WAMP]]></category>
		<category><![CDATA[webserver]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://thepizzy.net/blog/?p=71</guid>
		<description><![CDATA[This weekend, I hung out with [wizard] and we worked on our servers. He created his [m3rlin] server, and I created my [[Oracle]] server. Originally, as you might recall from...]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-1191" title="oracle" src="http://thepizzy.net/blog/wp-content/uploads/2007/10/oracle-150x150.png" alt="" width="150" height="150" />This weekend, I hung out with [wizard] and we worked on our servers. He created his [m3rlin] server, and I created my [[Oracle]] server.</p>
<p>Originally, as you might recall from <a title="Project: [[Oracle]].Server" href="http://thepizzy.net/blog/2006/03/project-oracleserver/">previous</a> <a title="Update: [[Oracle]].Server" href="http://thepizzy.net/blog/2006/04/project-oracleserver-updated/">posts</a>, [[Oracle]] is an IRC bot that we use for auto responding and chanserv purposes. Our bots are still the same in function so far, but they each have their own computer.</p>
<p>[[Oracle]] is now the webserver for tsnlocal.net, and runs the tsn.lcl project. It&#8217;s hosting a hamachi client, and serveral tsnlocal network connections. It&#8217;s also using Google Desktop those network shares, so that I can make them web-searchable, and the files downloadable for those connected to the tsnlocal network. I&#8217;m still working on the technology to provide the search page to the outside world (though the files will only be accessible to those who are connected and authenticated to the hamachi network.</p>
<p>To do this, I have installed WAMP (Apache, MySQL, and PHP for Windows) and put it on an XP Professional box. There is a main webpage up right now that shows the online status of [[Oracle]] and [[Oracle]].1 (a secondary server, of which there is also an [[Oracle]].2 which will be used later). The webpage also shows the online status of those involved with the tsnlocal project. The design of the webpage is still under construction though, at the moment.</p>
<p>[[Oracle]] is also hosting some other services for tsn&#8230;things that aren&#8217;t directly tied to the website, per se&#8230;like a TeamSpeak server, Blockland game server, and some other stuff that I haven&#8217;t gotten to set up yet.</p>
<p>It&#8217;s also been brought to my attention that there is a security exploit in Apache for windows, and [[Oracle]] will be the test-bed for solving that exploit. I have a solution in mind that would work, but might be a bit difficult to set up &#8211; though it would solve the problem until a patch is fixed. I&#8217;ll post more on that when I get some time to test it.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Apache' rel='tag' target='_blank'>Apache</a>, <a class='technorati-link' href='http://technorati.com/tag/apache+mysql' rel='tag' target='_blank'>apache mysql</a>, <a class='technorati-link' href='http://technorati.com/tag/client' rel='tag' target='_blank'>client</a>, <a class='technorati-link' href='http://technorati.com/tag/computer+oracle' rel='tag' target='_blank'>computer oracle</a>, <a class='technorati-link' href='http://technorati.com/tag/design' rel='tag' target='_blank'>design</a>, <a class='technorati-link' href='http://technorati.com/tag/game+server' rel='tag' target='_blank'>game server</a>, <a class='technorati-link' href='http://technorati.com/tag/google' rel='tag' target='_blank'>google</a>, <a class='technorati-link' href='http://technorati.com/tag/hamachi' rel='tag' target='_blank'>hamachi</a>, <a class='technorati-link' href='http://technorati.com/tag/IRC' rel='tag' target='_blank'>IRC</a>, <a class='technorati-link' href='http://technorati.com/tag/irc+bot' rel='tag' target='_blank'>irc bot</a>, <a class='technorati-link' href='http://technorati.com/tag/MySQL' rel='tag' target='_blank'>MySQL</a>, <a class='technorati-link' href='http://technorati.com/tag/network+connections' rel='tag' target='_blank'>network connections</a>, <a class='technorati-link' href='http://technorati.com/tag/network+shares' rel='tag' target='_blank'>network shares</a>, <a class='technorati-link' href='http://technorati.com/tag/oracle+hosting' rel='tag' target='_blank'>oracle hosting</a>, <a class='technorati-link' href='http://technorati.com/tag/PHP' rel='tag' target='_blank'>PHP</a>, <a class='technorati-link' href='http://technorati.com/tag/search+page' rel='tag' target='_blank'>search page</a>, <a class='technorati-link' href='http://technorati.com/tag/Servers' rel='tag' target='_blank'>Servers</a>, <a class='technorati-link' href='http://technorati.com/tag/TeamSpeak' rel='tag' target='_blank'>TeamSpeak</a>, <a class='technorati-link' href='http://technorati.com/tag/teamspeak+server' rel='tag' target='_blank'>teamspeak server</a>, <a class='technorati-link' href='http://technorati.com/tag/technology' rel='tag' target='_blank'>technology</a>, <a class='technorati-link' href='http://technorati.com/tag/the-spot.net' rel='tag' target='_blank'>the-spot.net</a>, <a class='technorati-link' href='http://technorati.com/tag/tsnLocal.net' rel='tag' target='_blank'>tsnLocal.net</a>, <a class='technorati-link' href='http://technorati.com/tag/WAMP' rel='tag' target='_blank'>WAMP</a>, <a class='technorati-link' href='http://technorati.com/tag/webserver' rel='tag' target='_blank'>webserver</a>, <a class='technorati-link' href='http://technorati.com/tag/website' rel='tag' target='_blank'>website</a>, <a class='technorati-link' href='http://technorati.com/tag/Windows' rel='tag' target='_blank'>Windows</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://thepizzy.net/blog/2006/09/oracle-reborn-tsnlocal-goes-up-beta/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>tsnX: Email packages and plans!</title>
		<link>http://thepizzy.net/blog/2006/04/tsnx-email-packages-and-plans/</link>
		<comments>http://thepizzy.net/blog/2006/04/tsnx-email-packages-and-plans/#comments</comments>
		<pubDate>Thu, 27 Apr 2006 15:36:48 +0000</pubDate>
		<dc:creator>[[Neo]]</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[the-blot.net]]></category>
		<category><![CDATA[the-spot.net]]></category>
		<category><![CDATA[tsnLocal.net]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[winkydo.net]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[web server]]></category>
		<category><![CDATA[xpress]]></category>

		<guid isPermaLink="false">http://thepizzy.net/blog/?p=48</guid>
		<description><![CDATA[I have come to the point where I have acquired enough email addresses, that I can start issuing emails. What I have: @the-spot.net : 900 @tsnlocal.net : 49 @the-blot.net :...]]></description>
			<content:encoded><![CDATA[<p>I have come to the point where I have acquired enough email addresses, that I can start issuing emails.</p>
<p>What I have:</p>
<ul>
<li>@the-spot.net : 900</li>
<li>@tsnlocal.net : 49</li>
<li>@the-blot.net : 38</li>
<li>@the-blot.com: 40</li>
</ul>
<p><span id="more-48"></span>The emails at the-blot.net and the-blot.com are hosted at hotmail, with the Microsoft Live Hotmail beta with 2GB of space.<br />
The emails at tsnlocal.net are hosted with Gmail, with 2GB of space.<br />
And the emails for the-spot.net are hosted on tsn, which can be downloaded to your Outlook or accessed at the-spot.net/webmail with about 100mb of space on the web, but that can be downloaded to your computer in Outlook or Outlook Express, or any other mail client on your computer.</p>
<p>I will be setting these up in the freeformfrog.com store within the next week or two, for access. So here&#8217;s the deal:</p>
<p>If you want an email @the-spot.net, your options are:</p>
<ul>
<li>A donation of $2/month (or more would be appreciated) will be billed monthly</li>
<li>Or, a donation of $20/year billed yearly (again, you can choose to donate more if you&#8217;d like)</li>
</ul>
<p>If you want an email @the-blot.net or @the-blot.com, your options are:</p>
<ul>
<li>A donation of $3/month (or more) will be billed monthly</li>
<li>Or, a donation of $30/year (or more) billed yearly</li>
</ul>
<p>For access to tsnlocal.net and an email @tsnlocal.net (hosted by Google&#8217;s Gmail):</p>
<ul>
<li>If you help beta test the service, you get a FREE 1-yr subscription to it, and a FREE tsnlocal.net email account.</li>
</ul>
<p>Otherwise:</p>
<ul>
<li>A donation of $5/month (or more) will be billed monthly</li>
<li>Or, a donation of $50/year (or more) billed yearly</li>
</ul>
<p>All the donations will go towards maintaining that portion of the site. TSN&#8217;s donations will be used to sponsor further server costs, and costs of development. The-Blot.Net/.Com&#8217;s donations will go towards domain name and server expenses for the development and release of the site. And the donations for tsnlocal will go towards the electricity cost it takes to run the servers to enable search capabilities and hosting the web server locally (that&#8217;s why it&#8217;s slightly more).</p>
<p>But with these subscriptions and donations, you get a gift based on your level of donation above what is mentioned:</p>
<ul>
<li><u>Bronze Member</u>: A donation of $0.25/month ($3.00/year), billed once, will get you a bronze member graphic above your rank on the site, telling everyone that you are a member of that site (the-spot, the-blot, tsnlocal).</li>
<li><u>Silver Member</u>: A donation of $0.50/month ($6.00/year), billed once, will get you a silver member graphic, AND a FREE bumper sticker for your car from the freeformfrog.com store, with your site name, and &#8220;the-spot.net&#8221; (or one of the other tsn sites) on it.</li>
<li><u>Gold Member</u>: A donation of $1.50/month ($18.00/year), billed once, will get you a gold member graphic, AND a FREE hat or license plate cover with your site name and &#8220;the-spot.net&#8221; (or one of the other tsn sites)</li>
<li><u>Platnium Member</u>: A donation of $2.50/month ($30.00/year), billed once, will get you a platnium member graphic, AND a FREE custom made t-shirt from the freeformfrog.com online store.</li>
</ul>
<p>All these things will be announced more in the coming weeks on the-spot.net and other tsn sites. Be looking for the announcements.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/google' rel='tag' target='_blank'>google</a>, <a class='technorati-link' href='http://technorati.com/tag/mail' rel='tag' target='_blank'>mail</a>, <a class='technorati-link' href='http://technorati.com/tag/the-spot.net' rel='tag' target='_blank'>the-spot.net</a>, <a class='technorati-link' href='http://technorati.com/tag/web+server' rel='tag' target='_blank'>web server</a>, <a class='technorati-link' href='http://technorati.com/tag/xpress' rel='tag' target='_blank'>xpress</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://thepizzy.net/blog/2006/04/tsnx-email-packages-and-plans/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Info: Google hosted &#8220;tMail&#8221; at tsn, tsnlocal.net &amp; the-blot.net email</title>
		<link>http://thepizzy.net/blog/2006/04/info-google-hosted-tmail-at-tsn-tsnlocalnet-the-blotnet-email/</link>
		<comments>http://thepizzy.net/blog/2006/04/info-google-hosted-tmail-at-tsn-tsnlocalnet-the-blotnet-email/#comments</comments>
		<pubDate>Fri, 21 Apr 2006 15:14:03 +0000</pubDate>
		<dc:creator>[[Neo]]</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[the-blot.net]]></category>
		<category><![CDATA[the-spot.net]]></category>
		<category><![CDATA[tsnLocal.net]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">http://thepizzy.net/blog/?p=43</guid>
		<description><![CDATA[I got the beta invite from Google to try hosted gmail accounts, on the-spot.net. So I tried it, and set everything up, named it tMail, and then realized that I...]]></description>
			<content:encoded><![CDATA[<p>I got the beta invite from Google to try hosted gmail accounts, on the-spot.net. So I tried it, and set everything up, named it tMail, and then realized that I lost all functionality that I had with forwarders, and such, and that I would have to re-create the 5-6 email accounts that I use for the-spot.net, as well as the other people who have email accounts hosted here. But I also only get 25 accounts that I can create for free.</p>
<p>So while I enjoy Gmail and Google, and the ability to customize the appearance of tMail, I have switched back to the tsn server, and reapplied for the beta for the tsnlocal.net domain name.</p>
<p>I do have hosted email for the-blot.net through hotmail, with 2gb of space, and 40 (38 now, since wizard and I have one) email invites. I will start offering those out to the first 35 non-tsn-people that sign up for the-blot.net who want one. I’ll also start offering tsn email accounts to people who want one of those as well. There is no set date for that offer though. It will probably be after tsnX is released, and I can get some kind of web-based email solution going.</p>
<p>There will be more to come on this later.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/google' rel='tag' target='_blank'>google</a>, <a class='technorati-link' href='http://technorati.com/tag/mail' rel='tag' target='_blank'>mail</a>, <a class='technorati-link' href='http://technorati.com/tag/the-spot.net' rel='tag' target='_blank'>the-spot.net</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://thepizzy.net/blog/2006/04/info-google-hosted-tmail-at-tsn-tsnlocalnet-the-blotnet-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update: tsnX &#8211; tsn domain issues, profile cp, [[Oracle]]</title>
		<link>http://thepizzy.net/blog/2006/04/update-tsnx-tsn-domain-issues-profile-cp/</link>
		<comments>http://thepizzy.net/blog/2006/04/update-tsnx-tsn-domain-issues-profile-cp/#comments</comments>
		<pubDate>Sun, 09 Apr 2006 16:15:00 +0000</pubDate>
		<dc:creator>[[Neo]]</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[the-spot.net]]></category>
		<category><![CDATA[tsnLocal.net]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[[[Oracle]]]]></category>

		<guid isPermaLink="false">http://thepizzy.net/blog/?p=31</guid>
		<description><![CDATA[There have been problems lately with the dns server or something, according to my server people. I thought they had it fixed, but apparently it&#8217;s broke again. I&#8217;ll see what&#8217;s...]]></description>
			<content:encoded><![CDATA[<p>There have been problems lately with the dns server or something, according to my server people. I thought they had it fixed, but apparently it&#8217;s broke again. I&#8217;ll see what&#8217;s up with that if it&#8217;s not fixed soon.</p>
<p>Also, I managed to fail my quiz (which wasn&#8217;t for a grade) yesterday and didn&#8217;t manage to get anything done with the profile cp (which I WILL work on today)&#8230;but I did manage to get a gf, apparently. <img src='http://thepizzy.net/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>So I&#8217;ll be announcing the Melissa soon on The Black Journal, and also on tsn when it goes back up.</p>
<p>I&#8217;m also going to be starting up [[Oracle]] today to prepare for indexing. So if you&#8217;re on tsnlocal, and you want your files indexed the you should sign on. but also if you DON&#8217;T want your files indexed, or you don&#8217;t want a particular share indexed, then you need to let me know. It only scans the files that you&#8217;re sharing so people can search instead of sift through the shares.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/the-spot.net' rel='tag' target='_blank'>the-spot.net</a>, <a class='technorati-link' href='http://technorati.com/tag/%5B%5BOracle%5D%5D' rel='tag' target='_blank'>[[Oracle]]</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://thepizzy.net/blog/2006/04/update-tsnx-tsn-domain-issues-profile-cp/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Info: tsnlocal Requirements.</title>
		<link>http://thepizzy.net/blog/2006/04/info-tsnlocal-requirements/</link>
		<comments>http://thepizzy.net/blog/2006/04/info-tsnlocal-requirements/#comments</comments>
		<pubDate>Fri, 07 Apr 2006 18:29:25 +0000</pubDate>
		<dc:creator>[[Neo]]</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[the-spot.net]]></category>
		<category><![CDATA[tsnLocal.net]]></category>
		<category><![CDATA[automatic updates]]></category>
		<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">http://thepizzy.net/blog/?p=29</guid>
		<description><![CDATA[Ok, here are the requirements for joining tsnlocal. If you have questions, post them here, don&#8217;t IM me about them &#8211; I won&#8217;t be available. System Requirements: &#8211; Windows XP/2000...]]></description>
			<content:encoded><![CDATA[<p>Ok, here are the requirements for joining tsnlocal. If you have questions, post them here, don&#8217;t IM me about them &#8211; I won&#8217;t be available.</p>
<blockquote><p>System Requirements:<br />
    &#8211; Windows XP/2000 or Linux<br />
    &#8211; Hi-Speed Internet Connection (recommended)<br />
<span id="more-29"></span></p>
<p>Procedure:<br />
    &#8211; Visit http://the-spot.net/myspot.php and login.<br />
        &#8211; Leave this open in the background. You&#8217;ll need it for screenshots.<br />
    &#8211; Visit http://update.windows.com to get the latest updates for your Windows.<br />
       &#8211; Update your computer until it says there are no more updates<br />
       &#8211; Position this window over and to the side of the MySpot page, showing your logged into the site, and so that I can see there are no more windows updates for your computer.<br />
          &#8211; If you are running a &#8220;liberated&#8221; copy of Windows XP, and cannot update, then be sure you&#8217;ve turned on your Automatic Updates (found in your control panel, or by visiting the Windows update site) and show the System Properties (by right clicking on the My Computer icon, choosing Properties, Selecting the &#8220;General&#8221; tab) so I can see that you have Service Pack 2 on your computer.<br />
       &#8211; Take a screenshot of this<br />
          &#8211; Press &#8220;PrtScr&#8221; button by the F12 key, open MS Paint, Edit > Paste, File > Save As > save as a .jpg file<br />
       &#8211; Email this to graphics@the-spot.net</p>
<p>    &#8211; Run Spybot Search &#038; Destroy<br />
       &#8211; If you don&#8217;t have this program go to <a href="http://safer-networking.org/en/mirrors/index.html" target="_blank">safer-networking.org</a> and pick a place to download it from.<br />
       &#8211; Update your definitions for the program, and run it over your computer to remove any and all spyware that may be on your computer. Do it over and over until it&#8217;s completely clean.<br />
       &#8211; Position the finished results window in the same mannor as the Windows Update window over the-spot.net, and take a screenshot of that, save it as a .jpg, and email it.</p>
<p>    &#8211; Run Adaware<br />
       &#8211; If you don&#8217;t have this program, go to <a href="http://www.download.com/Ad-Aware-SE-Personal-Edition/3000-8022_4-10045910.html?part=dl-ad-aware&#038;subj=dl&#038;tag=top5" target="_blank">lavasoft.com</a> and download it there.<br />
       &#8211; Update your definitions for the program, and run it over your computer to remove any and all adware that may be on your computer. Do it over and over until it&#8217;s completely clean.<br />
       &#8211; Position the finished results window in the same mannor as the Windows Update window over the-spot.net, and take a screenshot of that, save it as a .jpg, and email it.</p>
<p>    &#8211; Run Virus Scan<br />
       &#8211; If you don&#8217;t have a virus scan program (SBC Virus scan, yahoo virus scan, or any other scan from an internet search company DOES NOT COUNT!!!) then get one from <a href="http://free.grisoft.com/doc/24/lng/us/tpl/v5" target="_blank">AVG&#8217;s website, grisoft.com</a> for free.<br />
       &#8211; Update your definitions for the program, and run it over your computer to remove any and all viruses that may be on your computer. Do it over and over until it&#8217;s completely clean.<br />
       &#8211; Position the finished results window in the same mannor as the Windows Update window over the-spot.net, and take a screenshot of that, save it as a .jpg, and email it.</p>
<p>When all of these things have been done and confirmed, you&#8217;ll be sent more instructions with the password for you to log into tsnlocal. Do not share the password with anyone, because we are watching who joins the network, and the password will only work for you, and only in the set amount of time that will be specified.</p>
<p>All of these software tools are free, as is the connection to hamachi for now. If there starts to be problems with security and viruses spreading, it will be considered to making it a subscription-based service (with the money going towards funding the search technologies&#8230;it&#8217;s not free to run 2 computers 24/7 to index. <img src='http://thepizzy.net/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  )</p></blockquote>
<p>Be aware that these requirements can change at any time, and I&#8217;ll make notification if they do. If such changes require that you perform the extra act to stay secure, then you will need to do so, or be faced with removal from the network.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/automatic+updates' rel='tag' target='_blank'>automatic updates</a>, <a class='technorati-link' href='http://technorati.com/tag/mail' rel='tag' target='_blank'>mail</a>, <a class='technorati-link' href='http://technorati.com/tag/the-spot.net' rel='tag' target='_blank'>the-spot.net</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://thepizzy.net/blog/2006/04/info-tsnlocal-requirements/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Update: tsnX &#8211; Sub-forums, 80% complete</title>
		<link>http://thepizzy.net/blog/2006/04/update-tsnx-sub-forums-80-complete/</link>
		<comments>http://thepizzy.net/blog/2006/04/update-tsnx-sub-forums-80-complete/#comments</comments>
		<pubDate>Thu, 06 Apr 2006 03:51:27 +0000</pubDate>
		<dc:creator>[[Neo]]</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[the-spot.net]]></category>
		<category><![CDATA[tsnLocal.net]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[phpbb]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://thepizzy.net/blog/?p=25</guid>
		<description><![CDATA[This is the longest mod to do by hand, because it&#8217;s sooooo long. It was one I was hoping to do with the EasyMod script. But it&#8217;s about 80% done....]]></description>
			<content:encoded><![CDATA[<p>This is the longest mod to do by hand, because it&#8217;s sooooo long. It was one I was hoping to do with the EasyMod script. But it&#8217;s about 80% done. After that comes the Profile Control Panel mod, and hopefully I can still use the EasyMod script on it, but if not, then that one should take tomorrow night to do as well. I don&#8217;t have school Thurs, Tues, or Thurs of this/next week at night, so that will help. I also have to finish my taxes this weekend, and study for a quiz on Friday night for my Real Estate class, so some of my time will be spent doing that.</p>
<p>When I get a working site up with those two features, the Sub-forums, and PCP, then I Will start allowing people to access it and use it to post temporarily. Your posts and stuff won&#8217;t stay when I put the database info on it, and you&#8217;ll get to see the site rise from simple phpBB to the essence of tsnX right before your eyes.</p>
<p>Once I get the mods installed, then I&#8217;ll start creating the template for the site. I&#8217;ll also post a couple of the features in a post here soon, to show SOME of the things that are new, that are changed, that are moved, and that aren&#8217;t going to be in this one.</p>
<p>I haven&#8217;t forgotten about the tsnlocal either. I&#8217;ll be posting that information here for those that want to join it this weekend too.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/phpbb' rel='tag' target='_blank'>phpbb</a>, <a class='technorati-link' href='http://technorati.com/tag/template' rel='tag' target='_blank'>template</a>, <a class='technorati-link' href='http://technorati.com/tag/the-spot.net' rel='tag' target='_blank'>the-spot.net</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://thepizzy.net/blog/2006/04/update-tsnx-sub-forums-80-complete/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Update: [[Oracle]].Server</title>
		<link>http://thepizzy.net/blog/2006/04/project-oracleserver-updated/</link>
		<comments>http://thepizzy.net/blog/2006/04/project-oracleserver-updated/#comments</comments>
		<pubDate>Mon, 03 Apr 2006 17:45:31 +0000</pubDate>
		<dc:creator>[[Neo]]</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[the-spot.net]]></category>
		<category><![CDATA[tsnLocal.net]]></category>
		<category><![CDATA[[[Oracle]]]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://thepizzy.net/blog/?p=22</guid>
		<description><![CDATA[I just built another computer, [[Oracle]].2, for this project and have set up a Google Account for the Oracle servers. I&#8217;m going to start distributed indexing for everyone that joins...]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-1191" title="oracle" src="http://thepizzy.net/blog/wp-content/uploads/2007/10/oracle-150x150.png" alt="" width="150" height="150" />I just built another computer, [[Oracle]].2, for this project and have set up a Google Account for the Oracle servers. I&#8217;m going to start distributed indexing for everyone that joins the tsnlocal network, which is going live April 12th, to commemorate the-spot.net&#8217;s 3rd year running.</p>
<p>I&#8217;ll set up a webserver on the tsn.lcl server using apache and a dynamic dns to point to my house. I&#8217;ll update more as things progress.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/google' rel='tag' target='_blank'>google</a>, <a class='technorati-link' href='http://technorati.com/tag/the-spot.net' rel='tag' target='_blank'>the-spot.net</a>, <a class='technorati-link' href='http://technorati.com/tag/%5B%5BOracle%5D%5D' rel='tag' target='_blank'>[[Oracle]]</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://thepizzy.net/blog/2006/04/project-oracleserver-updated/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

