<?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>idlethreat &#187; admin</title>
	<atom:link href="http://idlethreat.com/site/index.php/archives/author/admin/feed" rel="self" type="application/rss+xml" />
	<link>http://idlethreat.com/site</link>
	<description>stupid is durable</description>
	<lastBuildDate>Fri, 03 Sep 2010 11:33:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Visualizing network connections using GraphViz and Afterglow</title>
		<link>http://idlethreat.com/site/index.php/archives/5</link>
		<comments>http://idlethreat.com/site/index.php/archives/5#comments</comments>
		<pubDate>Sun, 15 Mar 2009 16:53:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[GraphViz]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[After recovering from a particularly nasty crash and migrating my sites and data over to a new server, I became curious at the number of networking connections that it received, and what was going where. Sure, there&#8217;s a lot of tools out there to give me that sort of information, but sometimes you would really [...]]]></description>
			<content:encoded><![CDATA[<p>After recovering from a particularly nasty crash and migrating my sites and data over to a new server, I became curious at the number of networking connections that it received, and what was going where. Sure, there&#8217;s a lot of tools out there to give me that sort of information, but sometimes you would really just like a pretty (if informative) picture of information instead of dry old text scrolling across the screen.<br />
<span id="more-5"></span><br />
In this document I&#8217;ll assume the following:</p>
<p>You have access to a Linux / Unix server system and have administrative capabilities on it.</p>
<h2>tools I used</h2>
<p>Graphviz is an open source graph visualization software. It takes standard textual input and can automatically generate graphs depending on the input itself. It has its own graphing language, which is used to create all of this information for you.</p>
<p>Afterglow is a collection of scripts which assist in converting csv and other table data into information which can be pushed off to Graphviz to generate graphs with.</p>
<p>I also ended up with a &#8216;glue&#8217; shell script or two which assisted in gathering the information and pushing it off to Afterglow for processing.</p>
<h2>How To</h2>
<p>Download and install <a href="http://www.graphviz.org/">GraphViz</a> using your favorite package management system. Next, download and un-archive the <a href="http://afterglow.sourceforge.net/">Afterglow</a> package on the system. For myself, I placed all the Afterglow packages from afterglow/src/perl directory to a new /opt/afterglow directory.</p>
<p>After that has been set up, it&#8217;s time to get a tcpdump of your current connections. We&#8217;ll grab the first 10,000 packets and put it in the /opt/afterglow directory.</p>
<p><code class="prettyprint">tcpdump -vttttnneli eth0 -c10000 &gt; /opt/afterglow/eth0.dump</</code></p>
<p>Next, we'll parse it through Afterglow and let it do its magic. In this instance, we'll be looking at the source IP, destination IP, and finally the destination port. There's quite a number of possible fields to go by. Check out the source code from tcpdump2csv.pl for a full treatment of what is available.</p>
<p><code class="prettyprint">cat /opt/afterglow/eth0.dump | /opt/afterglow/parsers/tcpdump2csv.pl "sip dip dport" | /opt/afterglow/graph/afterglow.pl -c /opt/afterglow/parsers/color.properties -e 2 | neato -Tgif -o /opt/afterglow/eth0.gif</code>></p>
<p><img src="http://idlethreat.com/files/networking/fig1.gif" alt="" width="500" /></p>
<p>The initial run is interesting, but pretty cluttered. Looks more like a geek version of a fertilized-egg-and-sperm picture.</p>
<p>Since we're using three arguments (sip dip dport) as arguments, let's change the mode from the default (zero) up to three and then re-run the results.</p>
<p><code class="prettyprint">cat /opt/afterglow/eth0.dump | /opt/afterglow/parsers/tcpdump2csv.pl "sip dip dport" | /opt/afterglow/graph/afterglow.pl -p3 -c /opt/afterglow/parsers/color.properties -e 2 | neato -Tgif -o /opt/afterglow/eth0.gif</code></p>
<p><img src="http://idlethreat.com/files/networking/fig2.gif" alt="" width="500" /></p>
<p>This one is much more revealing and easy to read. You will notice by now that:</p>
<ul>
<li>Arrows show the direction of traffic</li>
<li>Red ovals will be an IP address which <strong>initiates</strong> a connection. A lot of the time this will be your own system. Other times it will be an external system sending in a request.</li>
<li>Red blocks will be an IP address which is <strong>processing</strong> a request. Again, your system will show up either as a processor of requests, or sending something out.</li>
<li>Light Blue Ovals will show which port this traffic is traveling across</li>
<li>Dark Blue Ovals will show up whenever communication is going across a 'named' port (below 1024). This is normally like port 80, 443, or 53 (DNS).</li>
</ul>
<p>Changing colors to fit your needs are relatively easy as well. I like a nice bright green to distinguish my system against all the other connections out there. To color your own "home" system as green, edit the /opt/afterglow/parsers/color.properties. At the top of the regex list, add in a line something like:</p>
<p><code class="prettyprint">color.source="green" if ($fields[0]=~/^your.ip.address.here/);</code></p>
<p>Save your changes and re-run the script to get an output where your IP address has a dinstinct color to it.</p>
<p><img src="files/networking/fig3.gif" alt="" width="500" /></p>
<p>Finally, if you would like to have a constantly refreshing view of your server traffic, then something like this should work out well for you:</p>
<p><code class="prettyprint"><br />
while true; do<br />
tcpdump -vttttnneli eth0 -c 2000 &gt; /opt/afterglow/current.dump<br />
cat current.dump |/opt/afterglow/parsers/tcpdump2csv.pl "sip dip dport" | /opt/afterglow/graph/afterglow.pl -p3 -c /opt/afterglow/parsers/color.properties -e 2 | neato -Tgif -o /var/www/yourwebsite.com/traffic.gif<br />
sleep 60<br />
done<br />
</code></p>
<p>Kick off the script, let it run once, and then hit <a title="http://yourwebsite.com/traffic.gif" href="http://yourwebsite.com/traffic.gif">http://yourwebsite.com/traffic.gif</a> for the story. It will refresh every 60 seconds.</p>
<h2>Summary</h2>
<p>Using Graphviz and Afterglow will give you a unique overview of your incoming and outgoing traffic and a much broader overview of what is coming in and out of your immediate network. This is a wonderful tool and one that deserves to be in every server geek's arsenal.</p>
<p>Enjoy!</p>
<p>tom</p>
]]></content:encoded>
			<wfw:commentRss>http://idlethreat.com/site/index.php/archives/5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crashed</title>
		<link>http://idlethreat.com/site/index.php/archives/6</link>
		<comments>http://idlethreat.com/site/index.php/archives/6#comments</comments>
		<pubDate>Sun, 08 Mar 2009 20:33:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Muddling About]]></category>
		<category><![CDATA[whoops!]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Had a system go down over the week, so have been scrambling around behind the scenes to get things back where they were. More here later. Cheers, tom]]></description>
			<content:encoded><![CDATA[<p>Had a system go down over the week, so have been scrambling around behind the scenes to get things back where they were.</p>
<p>More here later.</p>
<p>Cheers,</p>
<p>tom</p>
]]></content:encoded>
			<wfw:commentRss>http://idlethreat.com/site/index.php/archives/6/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>0xDEADBEEF Does Not Exist</title>
		<link>http://idlethreat.com/site/index.php/archives/7</link>
		<comments>http://idlethreat.com/site/index.php/archives/7#comments</comments>
		<pubDate>Mon, 16 Feb 2009 12:46:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Amusing]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Up until this weekend, I was completely convinced that the 0xDEADBEEF was more a programming joke than an actual system error message. This weekend, I learned a lot. Was reloading the wife&#039;s grandmother&#039;s computer after a particularly nasty crash. When I attempted a Windows repair install, the mythical 0XDEADBEEF reared its ugly head not once, [...]]]></description>
			<content:encoded><![CDATA[<p>Up until this weekend, I was completely convinced that the <a href="http://en.wikipedia.org/wiki/Hexspeak">0xDEADBEEF</a> was more a programming joke than an actual system error message. This weekend, I learned a lot.</p>
<p><center><a href="http://idlethreat.com/drupal/files/images/0xDEADBEEF.jpg"><img src="http://idlethreat.com/drupal/files/images/0xDEADBEEF.jpg" width="500" /></a></center></p>
<p>Was reloading the wife&#039;s grandmother&#039;s computer after a particularly nasty crash. When I attempted a Windows repair install, the mythical 0XDEADBEEF reared its ugly head not once, but three separate times.</p>
<p>So, yeah. I ended up formatting and wiping out the whole thing. </p>
<p>they lost some stuff, but the whole experience was somewhat surreal.</p>
<p>tom</p>
]]></content:encoded>
			<wfw:commentRss>http://idlethreat.com/site/index.php/archives/7/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Set Up Your Own Left 4 Dead Server in Linux</title>
		<link>http://idlethreat.com/site/index.php/archives/8</link>
		<comments>http://idlethreat.com/site/index.php/archives/8#comments</comments>
		<pubDate>Sun, 04 Jan 2009 04:22:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Muddling About]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[While I adore the zombie horror game Left 4 Dead, the online co-op play seems to be hit-and-miss at the moment. Depending on which server you auto-connect to, you end up with something laggy, or completely inappropriate to your level of play. So, since I happen to have my own dedicated system I decided to [...]]]></description>
			<content:encoded><![CDATA[<p>While I adore the zombie horror game <a href="http://www.l4d.com/">Left 4 Dead</a>, the online co-op play seems to be hit-and-miss at the moment. Depending on which server you auto-connect to, you end up with something laggy, or completely inappropriate to your level of play.</p>
<p>So, since I happen to have my own dedicated system I decided to give a try at running my own dedicated server instead. Since I couldn&#039;t locate one place that had all of this information, I decided to write up my own document to show you how to install and setup your very own Left 4 Dead Dedicated Server.</p>
<p><span id="more-8"></span></p>
<h2>Setup</h2>
<p>My server setup is pretty anemic at this time. However, this is all for testing at the moment until I get better hardware in place:</p>
<p>* 512 MB ram<br />
* Dual P3 500 Mhz CPU&#039;s<br />
* Lots of disk space for the game files</p>
<p>From what I see, I&#039;d recommend a fast dual processor CPU with a minimum of 2GB memory to run the server. You can also run multiple instances of the server, so you can serve lots of groups all at once.</p>
<h2>Installing Steam on Linux</h2>
<p>The first thing you need to do to have a L4D Dedicated server is to download Steam for Linux. the installer is located over at <a href="http://storefront.steampowered.com/download/hldsupdatetool.bin">http://storefront.steampowered.com/download/hldsupdatetool.bin</a>. Use wget on the Linux system to download this file. </p>
<p>I will assume that we will be creating a /opt/steam directory for everything. If you don&#039;t have one, go ahead and make it now and download the hldsupdatetool.bin application to there.</p>
<p>Once downloaded, chmod +x the file to make it executable, and then run it. You will have to agree to the license. Once you agree, it will create a readme file as well as an executable named <i>steam</i>. We will be using that in the next step.</p>
<h2>Running Steam in Linux</h2>
<p>Now, the next step will be to create a new directory where all of our Left 4 Dead files to live in. Create a /opt/steam/l4d directory on your system and then run the following:</p>
<p><tt><br />
root@london:/opt/steam# ./steam<br />
Checking bootstrapper version ...<br />
Getting version 34 of Steam HLDS Update Tool<br />
Downloading. . . . . . . . . . .<br />
Steam Linux Client updated, please retry the command<br />
</tt></p>
<p>Once the update is complete, we will be installing the L4D game by using the following command:</p>
<p><tt><br />
./steam -command update -game left4dead -dir /opt/steam/l4d<br />
root@london:/opt/steam# ./steam -command update -game left4dead -dir /opt/steam/l4d<br />
Checking bootstrapper version ...<br />
Updating Installation<br />
Checking/Installing &#039;Left 4 Dead binaries&#039; version 6<br />
Checking/Installing &#039;Left 4 Dead base&#039; version 7<br />
Checking/Installing &#039;left4dead linux dedicated server&#039; version 3<br />
...<br />
</tt></p>
<p>It will take about 5-10 minutes (depending on a lot of variables here) for all the files to download and get installed into the /opt/steam/l4d/l4d directory. Once you get that installed, it&#039;s time for the next step, configuring it.</p>
<h2>Configuring L4D Dedicated Server</h2>
<p>there&#039;s a bunch of configuration files in the /opt/steam/l4d/l4d/left4dead/cfg directory, so I will give you highlights on how I configured my own server.</p>
<h3>infected.cfg</h3>
<p>Since I wanted just a pure co-op game without any users playing infected, I set this file like so:</p>
<p><tt>director_no_human_zombies 1</tt></p>
<h3>singleplayer.cfg</h3>
<p>Unsure if this means anything, but I ended up configuring the singleplayer.cfg to limit to 4 players (that&#039;s the &#039;maxplayers&#039; bit).</p>
<p><tt><br />
wait<br />
wait<br />
exec infected_off.cfg<br />
sv_lan 1<br />
setmaster enable<br />
maxplayers 4<br />
progress_enable<br />
num_ai_survivors 3<br />
director_solo_mode 0<br />
director_min_start_players 1</tt></p>
<p>sv_pausable 0
</p>
<h3>twoplayers.cfg</h3>
<p>Same here, but I configured the minimum number of starting players at 1 (that&#039;s the &#039;director_min_start_players&#039; bit)</p>
<p><tt>wait<br />
wait<br />
exec infected_off.cfg<br />
sv_lan 1<br />
setmaster enable<br />
maxplayers 4<br />
progress_enable<br />
num_ai_survivors 2<br />
director_solo_mode 0<br />
director_min_start_players 1</tt></p>
<p>sv_pausable 0
</p>
<h3>server.cfg</h3>
<p>A lot of these items I got from <a href="http://www.left4dead411.com/left-4-dead-servers">here</a>. You may check out the variables and tweak them to your liking.</p>
<p><tt>hostname "*My server banner here*"<br />
rcon_password "*I put in a server password here*"<br />
sv_lan 0<br />
mp_disable_autokick 1<br />
sv_cheats 0<br />
sv_clearhinthistory 0<br />
sv_consistency 1<br />
sv_pausable 0<br />
sv_search_key "<your server name here in quotes>"</your></tt></p>
<p>sv_allow_lobby_connect_only 0
</p>
<h2>Running From Command Line</h2>
<p>Finally, after all the configuration has been completed, I run the following from the command line to kick off the server:</p>
<p><tt>cd /opt/steam/l4d/l4d<br />
./srcds_run -console -game left4dead -maxplayers 4 -autoupdate +map l4d_hospital01_apartment +ip *my server&#039;s public IP address* -port 27015 -nohltv +sv_lan 0</tt></p>
<p>give it a few minutes to start up and keep an eye on the console for any error messages. Since this configuration worked &#8220;out of the box&#8221; for me, I&#039;m unsure at what sort of errors that you might get. Use Google if you run across something.</p>
<h2>Connecting to Your Dedicated Server</h2>
<p>After start up is complete, bring up your Left 4 Dead client, open a console. Now, enter the following:</p>
<p><tt>connect *your dedicated server IP address here*</tt></p>
<p>Hit enter and you should connect to your new Linux Left 4 Dead Dedicated Server.</p>
<h2>Other Links</h2>
<p>Here&#039;s some other places you may be interested in checking out for information on running your own L4D server:</p>
<ul>
<li><a href="http://www.inx-gaming.com/forum/l4d-server-config-etc-t8939/index.html?s=e7b1e521c57817936bcf920119a405bb">Server Configs</a></li>
<li><a href="http://left4dead411.com/left-4-dead-server-motd">Server MOTD</a></li>
<li><a href="http://www.blog.last-save.com/2008/11/left-4-dead-dedicated-server-setup/">Another server setup page</a></li>
</ul>
<p>I hope you enjoy and have a lot of fun with it. On Steam, my user name is <b>idlethreat</b>. Stop by and say hi sometime.</p>
<p>Cheers,</p>
<p>tom</p>
]]></content:encoded>
			<wfw:commentRss>http://idlethreat.com/site/index.php/archives/8/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zombies Ate My Free Time</title>
		<link>http://idlethreat.com/site/index.php/archives/9</link>
		<comments>http://idlethreat.com/site/index.php/archives/9#comments</comments>
		<pubDate>Fri, 12 Dec 2008 04:07:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Muddling About]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[While I had all the best intentions of posting more neat and interesting stuff (well, to me, that is), I managed to run smack into Left 4 Dead and things haven&#039;t been quite the same since. Sure, I&#039;m still the standard-issue Midwest programming geek, but I just happen to flinch a hell of a lot [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src="http://idlethreat.com/drupal/files/l4d-southpark-wallpaper-fr.jpg" /></center></p>
<p>While I had all the best intentions of posting more neat and interesting stuff (well, to me, that is), I managed to run smack into <a href="http://l4d.com">Left 4 Dead</a> and things haven&#039;t been quite the same since.</p>
<p>Sure, I&#039;m still the standard-issue Midwest programming geek, but I just happen to flinch a hell of a lot more in dark rooms.</p>
<p>If you guys haven&#039;t had an opportunity to try L4D out, I would highly recommend it. If you already happen to have it and are looking for someone to join you in the festivities, just hop over to <a href="http://steamcommunity.com/profiles/76561197987366990">my Steam page</a> and contact me.</p>
<p>Finally, this reminds me that I have extra Steam copies of <a href="http://www.metacritic.com/games/platforms/pc/halflife2">HL 2</a> and <a href="http://www.metacritic.com/games/platforms/pc/halflife2episodeone"> HL2, Episode One</a> that I picked up whenever I got Orange Box.</p>
<p>If you would like a free legal copy of them for your very own, just log in (or create yourself a new account) and reply back with your Steam contact information.</p>
<p>Cheers,</p>
<p>tom</p>
]]></content:encoded>
			<wfw:commentRss>http://idlethreat.com/site/index.php/archives/9/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ripping The Government</title>
		<link>http://idlethreat.com/site/index.php/archives/10</link>
		<comments>http://idlethreat.com/site/index.php/archives/10#comments</comments>
		<pubDate>Mon, 24 Nov 2008 18:59:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I&#039;ve been researching one of those &#8220;odd project bits&#8221; that has been stuck in my head over the past few days. But, instead of filling up a notepad full of notes and sleeping on it, I decided to make a blog post about it instead. Concept The concept behind the whole thing is pretty easy. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#039;ve been researching one of those &#8220;odd project bits&#8221; that has been stuck in my head over the past few days. But, instead of filling up a notepad full of notes and sleeping on it, I decided to make a blog post about it instead.</p>
<p><span id="more-10"></span></p>
<h2>Concept</h2>
<p>The concept behind the whole thing is pretty easy. Take a general purpose PC with a video card in it, and tune it into the general-issue US government channel, <a href="http://www.cspan.org/">Cspan</a>. Next, start a stream rip of the <a href="http://en.wikipedia.org/wiki/Closed_captioning">CC</a> stream.<br />
Parse and tag the CC stream and load the data into a MySQL (or other, if there&#039;s a better choice out there) database. Finally, allow for full text searching and even email alerting on particular chunks of text as they pop up. So, if the House or Senate happen to go blithering off on something you happen to be concerned about (I.E. health care, taxes, etc), then you will get a transcript for that chunk of time to review as needed.</p>
<h2>History</h2>
<p>I recall something quite a bit like that a number of years ago on <a href="http://slashdot.org">Slashdot</a>, however, several searches have turned up nothing actionable. Since that particular project went under (from what I recall), I decided to bring it back in my own way by seeing how far I would be able to get on my own.<br />
While there are <a href="http://www.capitolcaptioning.com">companies</a> which provide this service for a fee, there&#039;s no way that I would bring myself to pay for something that is as close as a video capture card and some clever coding.</p>
<h2>Tools</h2>
<p>The only real tool that I&#039;m aware of would fit the bill would be <a href="http://ccextractor.sourceforge.net/">CCExtractor</a>. While I like the idea of coding up my own stream extractor in Python or some other language, all the hard work has already been done by this clever fellow. Gluing the extractor together with parsing and other information extracting capabilities would be entertaining enough as it is.</p>
<h2>Design Requirements</h2>
<ul>
<li>Capture CC information in 5 minute segments, strip and parse the data so that it is flat text.</li>
<li>Inject the relevant text into a database along with link to video footage.</li>
<li>Implement full text search engine on the captured information.</li>
<li>Write up search and alerting capabilities to the information, including links to the relevant text as well as video footage.</li>
</ul>
<p>Seems like an interesting project to me. My one and only PC is still downstairs at the moment, acting as a DVR to record my shows. Once I get a new TiVO on order and shipped in, then I will be able to swap it out and begin the project in earnest.</p>
<p>So, any input? Heard of any project quite like this before?</p>
<p><b>[update]</b><br />
I did run across <a href="http://metavid.org/wiki/Main_Page">http://metavid.org</a> while writing this bit. It&#039;s possible that this will do exactly what I want. Still kicking things down and researching.</p>
<p>Cheers,</p>
<p>tom</p>
]]></content:encoded>
			<wfw:commentRss>http://idlethreat.com/site/index.php/archives/10/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aaahhhhhhh, Yeah</title>
		<link>http://idlethreat.com/site/index.php/archives/11</link>
		<comments>http://idlethreat.com/site/index.php/archives/11#comments</comments>
		<pubDate>Thu, 06 Nov 2008 03:36:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Amusing]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><center><a href="http://idlethreat.com/drupal/files/obama/2.jpg"><img src="http://idlethreat.com/drupal/files/obama/ZZ3E3C0486.jpg" /></a></center></p>
]]></content:encoded>
			<wfw:commentRss>http://idlethreat.com/site/index.php/archives/11/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Atmosphir: A Quick Preview</title>
		<link>http://idlethreat.com/site/index.php/archives/12</link>
		<comments>http://idlethreat.com/site/index.php/archives/12#comments</comments>
		<pubDate>Mon, 03 Nov 2008 07:52:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Recently, I had an opportunity to become a part of a closed beta test for Atmosphir. Atmosphir is a new, multi-platform game for Windows, Mac, or Linux computers which allows you to have control over a little clever fellow in a world full of platforms to jump to, things to climb up, and all sorts [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I had an opportunity to become a part of a closed beta test for <a href="http://atmosphir.com/">Atmosphir</a>. Atmosphir is a new, multi-platform game for Windows, Mac, or Linux computers which allows you to have control over a little clever fellow in a world full of platforms to jump to, things to climb up, and all sorts of entertaining traps to escape to reach the end flag.<br />
<span id="more-12"></span>
</p>
<p><a href="http://idlethreat.com/drupal/files/ss5.jpg"><br />
<img src="http://idlethreat.com/drupal/files/tn_ss5.jpg" /></a></p>
<p>The more interesting bit about the game is that all the boards that you play are online, created by other users whom have a copy of Atmosphir on their systems.
</p>
<p><a href="http://idlethreat.com/drupal/files/ss2.jpg"><img src="http://idlethreat.com/drupal/files/tn_ss2.jpg" /></a></p>
<p>Some are of pretty good quality, others are simple &#8220;run across a few (virtual) miles of power ups and jump really high to his the finish mark&#8221;. At the moment, there seems to be a lot more of the latter than the former. However, with new members in the Beta test being added, the level of quality will start coming up eventually.
</p>
<p>Along with merely playing the game, you have a full-blown editor in-game (which reminds me a lot of the editor in <a href="http://sauerbraten.org/">Sauerbraten</a>) so that you can create your own masterpiece- Or, edit any of the currently existing levels online and save them locally or even upload them as your own.
</p>
<p><a href="http://idlethreat.com/drupal/files/ss4.jpg"><img src="http://idlethreat.com/drupal/files/tn_ss4.jpg" /></a></p>
<p>Installation of the software on the Mac is quick and painless. I like that the developer opted to go with the all-in-one bundle instead of a proper installer application. This will allow for trivial moving, and even deletion of the application without leaving a bunch of libraries scattered all over the place. Unsure of the Windows version, but I assume that it has an installer somewhere.
</p>
<p><a href="http://idlethreat.com/drupal/files/ss1.jpg"><img src="http://idlethreat.com/drupal/files/tn_ss1.jpg" /></a></p>
<p>Preferences are pretty basic at the moment- Movement controls and screen size are about it.
</p>
<p><a href="http://idlethreat.com/drupal/files/ss3.jpg"><img src="http://idlethreat.com/drupal/files/tn_ss3.jpg" /></a></p>
<p>Overall, the performance of the application is pretty good for beta software. There are some hang-ups in the UI whenever the maps are downloaded, and when updates are installed. Overall, for what it offers, and the possibilities afforded, I think this is an acceptable compromise.
</p>
<p>So, if interested, check out the Atmosphir web site. There&#039;s another review online <a href="http://www.linuxhaxor.net/2008/10/05/atmosphir-game-review/">[Posted Here]</a> that should give you an even better overview than this one has.
</p>
<p>Enjoy!
</p>
<p>tom</p>
]]></content:encoded>
			<wfw:commentRss>http://idlethreat.com/site/index.php/archives/12/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Road Trip!</title>
		<link>http://idlethreat.com/site/index.php/archives/13</link>
		<comments>http://idlethreat.com/site/index.php/archives/13#comments</comments>
		<pubDate>Sat, 18 Oct 2008 14:33:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Muddling About]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Heading down to Eureka Springs, Arkansas. Planning to make it back in town Thursday sometime. View Larger Map Have a great week, all. More code coming soon! tom]]></description>
			<content:encoded><![CDATA[<p>Heading down to Eureka Springs, Arkansas. Planning to make it back in town Thursday sometime.</p>
<p><center><br />
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=d&amp;saddr=kansas+city,+mo&amp;daddr=eureka+springs,+arkansas&amp;hl=en&amp;geocode=&amp;mra=ls&amp;sll=52.160455,-122.607422&amp;sspn=38.995761,79.101563&amp;ie=UTF8&amp;ll=37.72533,-94.160705&amp;spn=2.74076,0.84589&amp;output=embed&amp;s=AARTsJriNcJkuQifQGPKYkIQJVacSK453w"></iframe><br /><small><a href="http://maps.google.com/maps?f=d&amp;saddr=kansas+city,+mo&amp;daddr=eureka+springs,+arkansas&amp;hl=en&amp;geocode=&amp;mra=ls&amp;sll=52.160455,-122.607422&amp;sspn=38.995761,79.101563&amp;ie=UTF8&amp;ll=37.72533,-94.160705&amp;spn=2.74076,0.84589&amp;source=embed" style="color:#0000FF;text-align:left">View Larger Map</a></small><br />
</center></p>
<p>Have a great week, all. More code coming soon!</p>
<p>tom</p>
]]></content:encoded>
			<wfw:commentRss>http://idlethreat.com/site/index.php/archives/13/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crazy Sprinkler Lady</title>
		<link>http://idlethreat.com/site/index.php/archives/14</link>
		<comments>http://idlethreat.com/site/index.php/archives/14#comments</comments>
		<pubDate>Fri, 10 Oct 2008 13:42:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Amusing]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I don&#039;t normally post stuff like this, but hoo boy. tom See more funny videos and funny pictures at CollegeHumor.]]></description>
			<content:encoded><![CDATA[<p>I don&#039;t normally post stuff like this, but hoo boy.</p>
<p>tom<br />
<center></center></p>
<p><object type="application/x-shockwave-flash" data="http://www.collegehumor.com/moogaloop/moogaloop.swf?clip_id=1825469&#038;fullscreen=1" width="480" height="360" ><param name="allowfullscreen" value="true" /><param name="AllowScriptAccess" value="true" /><param name="movie" quality="best" value="http://www.collegehumor.com/moogaloop/moogaloop.swf?clip_id=1825469&#038;fullscreen=1" /></object>
<div style="padding:5px 0; text-align:center; width:480px;">See more <a href="http://www.collegehumor.com/videos">funny videos</a> and <a href="http://www.collegehumor.com/pictures">funny pictures</a> at <a href="http://www.collegehumor.com/">CollegeHumor</a>.</div></p>
]]></content:encoded>
			<wfw:commentRss>http://idlethreat.com/site/index.php/archives/14/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
