<?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>TragicallyNull</title>
	<atom:link href="http://tragicallynull.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tragicallynull.com</link>
	<description>technology news, reviews and solutions</description>
	<lastBuildDate>Mon, 30 Nov 2009 06:10:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Star Wars: Knights of the Old Republic $2.49 on STEAM</title>
		<link>http://tragicallynull.com/2009/11/28/star-wars-knights-of-the-old-republic-2-49-on-steam/</link>
		<comments>http://tragicallynull.com/2009/11/28/star-wars-knights-of-the-old-republic-2-49-on-steam/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 20:00:32 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Deals]]></category>
		<category><![CDATA[Deal]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[Star Wars]]></category>
		<category><![CDATA[Steam]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/?p=301</guid>
		<description><![CDATA[In honor of the mass money letting scam that is Black Friday, the STEAM Store is having a 1-day sale on select games for a total of 5 days. Confused? You should be.
The important part is that today you have the chance to own one of the best role-playing experiences ever to come to the [...]]]></description>
			<content:encoded><![CDATA[<p>In honor of the mass money letting scam that is Black Friday, the STEAM Store is having a 1-day sale on select games for a total of 5 days. Confused? You should be.<span id="more-301"></span></p>
<p>The important part is that today you have the chance to own one of the best role-playing experiences ever to come to the PC. Star Wars: Knights of the Old Republic is the game that made me a fan of Star Wars even though I never enjoyed the movies (yes, even the classics). The story is rich, the characters are fun to interact with and gameplay actually works. Don&#8217;t miss out on your chance to own a classic for less than the cost of a starving african.</p>
<p><strong>Update:</strong><br />
The sale is over. I hope everyone snagged a copy of this great game.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2009/11/28/star-wars-knights-of-the-old-republic-2-49-on-steam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magic: The Gathering Gatherer Autolinker WordPress Plugin</title>
		<link>http://tragicallynull.com/2009/02/14/magic-the-gathering-gatherer-autolinker-wordpress-plugin/</link>
		<comments>http://tragicallynull.com/2009/02/14/magic-the-gathering-gatherer-autolinker-wordpress-plugin/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 05:45:26 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Solution]]></category>
		<category><![CDATA[Magic The Gathering]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/?p=272</guid>
		<description><![CDATA[This plugin was updated on April 18th, 2009 to version 0.3, previous versions of the plugin may not work.
Magic: The Gathering Gatherer Autolinker is a WordPress plugin that takes special tags in your posts and converts them into links to the beta version of Gatherer, the official Magic: The Gathering online card database.
Installation

Download and unzip [...]]]></description>
			<content:encoded><![CDATA[<p class="special-alert">This plugin was updated on April 18th, 2009 to version 0.3, previous versions of the plugin may not work.</p>
<p>Magic: The Gathering Gatherer Autolinker is a WordPress plugin that takes special tags in your posts and converts them into links to the beta version of Gatherer, the official Magic: The Gathering online card database.<span id="more-272"></span></p>
<h2>Installation</h2>
<ol>
<li><a href="http://tragicallynull.com/etc/php/mtgautolinker/mtgautolinker.zip">Download</a> and unzip the plugin.</li>
<li>Upload mtgautolinker.php to wp-content/plugins.</li>
<li>Activate the plugin inside of WordPress.</li>
</ol>
<h2>Usage</h2>
<p>Anywhere inside of your post you can put &#91;mg]Card Name&#91;/mg] tags and it will appear as <a href="http://beta.gatherer.wizards.com/Pages/Search/Default.aspx?name=Card Name">Card Name</a> on your blog. The card name you use does have to be exact and there isn&#8217;t a way to speicify custom link text, but anyone with even basic PHP knowledge could add one with little effort. If you&#8217;d like it to work in comments too just add <code>add_filter('comment_text', 'mgreplacer');</code> under the addfilter line at the bottom of the file before ?&gt;.</p>
<h2>Source</h2>
<p>This plugin really couldn&#8217;t be any simpler, you could have done it with minimal time and effort.<br />
<code class="special-codeblock">&lt;?php<br />
  /*<br />
  Plugin Name: MTG Gatherer Autolinker<br />
  Plugin URI: http://tragicallynull.com/2009/02/14/magic-the-gathering-gatherer-autolinker-wordpress-plugin<br />
  Description: Autolinks Magic: The Gathering cards to the newly released version of the Gatherer (card database) using [mg]Card Name[/mg] tags.<br />
  Version: 0.3<br />
  Author: John Stone III<br />
  Author URI: http://tragicallynull.com<br />
  */</code><br />
<code class="special-codeblock">function mgreplacer ($text){<br />
  $mgreplace = &#39;/(\[mg\])(.+)(\[\/mg\])/&#39;;<br />
  $mgreplacement = &#39;&lt;a href=&quot;http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[&amp;quot;\\2&amp;quot;]&quot;&gt;\\2&lt;/a&gt;&#39;;<br />
  $text = preg_replace($mgreplace, $mgreplacement, $text);<br />
  return $text;<br />
  }<br />
  add_filter(&#39;the_content&#39;, &#39;mgreplacer&#39;);<br />
  ?&gt;</code></p>
<p>It&#8217;s really so simple just about anyone can edit it to make other custom &#8220;autolinkers&#8221; of their own.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2009/02/14/magic-the-gathering-gatherer-autolinker-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Magic Online 3.0 Review</title>
		<link>http://tragicallynull.com/2009/02/13/magic-online-30-review/</link>
		<comments>http://tragicallynull.com/2009/02/13/magic-online-30-review/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 05:48:54 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Gripe]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Magic]]></category>
		<category><![CDATA[Magic The Gathering]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/?p=262</guid>
		<description><![CDATA[Oh Magic Online 3.0, how I love thee, let me count the ways&#8230; 0, that&#8217;s it.
Getting started should be easy&#8230;. should be
When you want to play Magic Online, you better have a credit card ready, because it costs $10 just to run the app. By that I mean accounts cost $10 just to create, but [...]]]></description>
			<content:encoded><![CDATA[<p>Oh Magic Online 3.0, how I love thee, let me count the ways&#8230; 0, that&#8217;s it.<span id="more-262"></span></p>
<h2>Getting started should be easy&#8230;. should be</h2>
<p>When you want to play Magic Online, you better have a credit card ready, because it costs $10 just to run the app. By that I mean accounts cost $10 just to create, but come with a $10 coupon for anything in their online store, neat eh? Well not if you wanted to pay with PayPal because you assumed the PayPal button on the account creation screen is anything but decoration. If you try to use PayPal you&#8217;re fucked, the account wont process no matter what you do, even if you switch back to credit card. </p>
<p>I call support and they guy makes the *click/sucking in air* noise when I tell him I tried to use PayPal, he informs me I can&#8217;t and the name I wanted was now &#8220;lost&#8221; and I would have to do everything again with a different name. Not only do they have a big &#8220;fuck you&#8221; button on there that&#8217;s a trap, they also say I&#8217;m SOL about getting my name back. Right foot, consider yourself started out on.</p>
<h2>But at least the software is good, right?</h2>
<p>Wrong. The software is clunky and resource intensive, which is surprising for a CARD GAME with no other effects than &#8220;shimmer&#8221; on foil cards. When you maximize the window you don&#8217;t get more real estate, no, all of the interface items just scale up. The way windows are managed inside of the app is acceptable at best, everything is done in &#8220;scenes&#8221; and in the sidebar, except the sidebar is too narrow because it&#8217;s just scaled and not expanded.</p>
<p>Maybe that&#8217;s a little strong, Magic Online has a tremendous burden placed on it, that burden being the rules. It has to keep track of every single possible card interaction, every single ruling and it has to add new sets every few months, and it does it pretty well. For that, things suffer. The way the cards zoom in on middle click is very awesome though.</p>
<p>An example of how they just get it wrong is when I first got my account to work the servers went down. All servers need downtime and maintenance, I know, that&#8217;s fine. But there is absolutely no indication on the app that the servers are down, instead I get a socket error. I&#8217;m a computer guy, so I know what a socket is, but the error is so obtuse that I end up uninstalling and redownloading the multi-GB app trying to get it to work. The solution to this would be to say in the error &#8220;Unable to connect to the Magic Online servers, please check your internet connection. If the problem persists, check the server status link below.&#8221; but no, socket error, fuck you fuck face.</p>
<h2>What about the team behind it?</h2>
<p><img src="http://tragicallynull.com/backend/uploads/2009/02/magicdev-211x300.jpg" alt="magicdev" title="magicdev" width="211" height="300" style="float:right;margin-left:5px;margin-bottom:5px; size-medium wp-image-263" /></p>
<p>Incompetence is a harsh word, and I&#8217;m using it. The way everything is handled is abrupt, direct and unrefined. Even Dreamhost has better PR than the Wizards Magic 3.0 team. Everything gets labeled with &#8220;We&#8217;re on it, it gets done when it gets done.&#8221; including things like a new &#8220;Collections Server&#8221; that would resolve SHOW STOPPING issues like trades not working and 1 person losing &#8220;tickets&#8221; (de-facto in-game currency) and not gaining the cards the payed for. I briefly played in the beta for 3.0 and I got to see first hand how it feels more like 3 guys working in a basement and not a team that&#8217;s working under a division of Hasboro. But I&#8217;m sure they&#8217;re not to blame, I get the feeling that they&#8217;re understaffed and over worked with unreasonable deadlines. It just would have been nice for Wizards to splurge and actually have a real developer make their cash-cow of a game.</p>
<h2>Cash-cow?</h2>
<p>They print no cards, they ship nothing to nowhere, they use art of the paper cards. The online business is a nearly 100% profit venture for them, they pay for the software development and servers, that&#8217;s all. They sell boosters/tourny packs/theme decks all MSRP which is about a dollar higher than what they cost at a store and they keep all of the money. Don&#8217;t even get my started on the <a href="http://spreadsheets.google.com/pub?key=pDVYtvSiuj8U5qU6iAJpjOg">Theme Decks</a> and what a disrespectful ripoff they are.</p>
<h2>So why even bother?</h2>
<p>At the end of the day it is the best way to play Magic. The rules engine works, so even noobs can pick it up without worrying about the &#8220;phases&#8221; or the stack, it prompts you and holds your hand along the way, automating every automatible process. You can play literally any time of the day and get in a game in < 2 minutes. That can't be beat and is a good experience... if you can afford it.</p>
<h2>How much does it cost to play Magic Online?</h2>
<p>$10, if you just want to sit there staring at the screen. $50 if you want to be competitive in casual constructed, >$100 if you want to be competitive in standard constructed tournaments. Most of this, of course, you have to rebuy every year or so when a block/core set rotates out. Drafts cost $15 (3 packs at $4 + 2 tickets at $1). People will try to tell you different, but your fun in this game does depend on how much you&#8217;re willing to spend, and that, for me, is Magic&#8217;s biggest downfall.</p>
<h2>So what do you really think?</h2>
<p>If you have the cash, Magic Online 3.0 is the best game in town. Everything works well enough to keep you sane and playing whenever you want is great.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2009/02/13/magic-online-30-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magic: The Gathering and Me, a Story</title>
		<link>http://tragicallynull.com/2009/02/12/magic-the-gathering-and-me-a-story/</link>
		<comments>http://tragicallynull.com/2009/02/12/magic-the-gathering-and-me-a-story/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 04:47:04 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Magic]]></category>
		<category><![CDATA[Magic The Gathering]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[Story]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/?p=246</guid>
		<description><![CDATA[Mmm&#8230; The smell of virginity (cheetos, tears and lube). It&#8217;s no secret, but perhaps an untold truth, that I&#8217;ve always had a secret love for Magic: the Gathering, or, the idea of it anyway. Unfortunately I none of my friends were ever nerdy enough to want to play, ENTER: Magic Online. 
I&#8217;ve been interested in [...]]]></description>
			<content:encoded><![CDATA[<p>Mmm&#8230; The smell of virginity (cheetos, tears and lube). It&#8217;s no secret, but perhaps an untold truth, that I&#8217;ve always had a secret love for <a href="http://wizards.com/magic">Magic: the Gathering</a>, or, the idea of it anyway. Unfortunately I none of my friends were ever nerdy enough to want to play, ENTER: <a href="http://www.wizards.com/Magic/Digital/MagicOnline.aspx">Magic Online</a>. <span id="more-246"></span></p>
<p>I&#8217;ve been interested in Magic ever since I was about 8 or 9 when I saw a commercial for it on TV, it wasn&#8217;t gimmicky with overdone with shitty CG dragons flying everywhere, it just showed two people playing Magic with a really cool build up about how you can play anywhere at any time. It&#8217;d be awesome if it were as widespread as that shitty game in Final Fantasy 8 was, but alas it was not.</p>
<h2>And So My Journey to Mt. Virgin Begins</h2>
<p>I tried to buy cards, first Portal and then a 5th edition white theme deck (with <a href="http://beta.gatherer.wizards.com/Pages/Search/Default.aspx?name=Wrath of God">Wrath of God</a>!), finally being duped by the guys at the local hobby shop into the $10 100+ count boxes of old, shitty out of Standard cards that I couldn&#8217;t do anything with. I played in a draft or two but never did well because I was 12 and I was playing against adults. Later, much later I saw that there was an online version of the game, at the time version 2.5 and I could not have been happier&#8230;</p>
<h2>How to be Successful in 7 Easy Credit Card Transactions</h2>
<p>$120 later I probably could have been a lot happier. The bad thing about Magic Online (and maybe Magic: The Gathering in general) is that you <em>can</em> buy success and anything where money means you do well means fun and satisfaction decrease. Knowing that you lost a game because you didn’t buy 4X of the $12 rare isn&#8217;t a good feeling, especially if you can&#8217;t justify the $48 of invisible cards to your reptile brain. It&#8217;s not like Magic cards are subjective either, X card is good because of Y, therefore it costs more. Sure there&#8217;s a whole lobby for &#8220;casual&#8221; play but that just means you need the $6 rare set instead.</p>
<p><img src="http://tragicallynull.com/backend/uploads/2009/02/graph.gif" alt="graph" title="graph" width="488" height="249" class="aligncenter size-full wp-image-258" /></p>
<h2>&#8220;Just when I thought I was out — they pulled me back in.&#8221;</h2>
<p>After a few weeks winning because I spent the money and losing because I didn&#8217;t, I was done. I was pretty lucky and recouped about 90% of my investment by selling my collection, but I think I got lucky. But did I learn? Fuck no, fuck me. A <a href="http://rogueidea.com">friend</a> mentioned that her boyfriend had gotten her to play Magic, so dopey-dumb me, forgetting all the bad and remembering nothing but the good decides to dive right in again, but this time it&#8217;s version 3.0! (3.0.5, to be exact)</p>
<h2>How Quickly We Remember</h2>
<p>Buy an account for $10, <strong>check</strong>. Buy 10 &#8220;tickets&#8221;, the de-facto in-game currency for MTGO, with the $10 coupon, <strong>check</strong>. Spend 3 days debating which cards to buy with the tickets and additional $60 investment, <strong>check</strong>. Realize you&#8217;re $90 away from being competitive in more than 1 color, <strong>check</strong>. Regret, <strong>check</strong>. Recoup initial investment, <em>working on it</em>. That sums up my entire experience with Magic Online 3.0 from a fun:financial standpoint. I&#8217;ll go more into detail about my feelings of the Magic Online 3.0 software and supporting cast of characters in my actual review.</p>
<h2>A Challenger Appears</h2>
<p>Apparently there&#8217;s an alternative to Magic Online that&#8217;s completely free but somewhat ugly. It&#8217;s called <a href="http://mwsdata.com">Magic Workstation</a> and apparently you have to download a bunch of piece to get it to work, but get it to work I shall, and when I do, I&#8217;ll review it as well. Even if it doesn&#8217;t have the 500+ people playing at one time that Magic Online has, it&#8217;s still beats paying to win.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2009/02/12/magic-the-gathering-and-me-a-story/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Left 4 Dead Demo: OMG ZOMBIES!</title>
		<link>http://tragicallynull.com/2008/11/06/left-4-dead-demo-omg-zombies/</link>
		<comments>http://tragicallynull.com/2008/11/06/left-4-dead-demo-omg-zombies/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 23:31:03 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[left4dead]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Valve]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/?p=242</guid>
		<description><![CDATA[So I preordered Left 4 Dead about 2 weeks ago and today I got the demo download offer from Steam. Let me tell you right now, this is the GOTY. Valve once again shows us that you don’t have to reinvent the wheel to make a good game; you just need to make a really [...]]]></description>
			<content:encoded><![CDATA[<p>So I preordered Left 4 Dead about 2 weeks ago and today I got the demo download offer from Steam. Let me tell you right now, this is the GOTY. Valve once again shows us that you don’t have to reinvent the wheel to make a good game; you just need to make a really badass wheel.<span id="more-242"></span></p>
<p>By that, I mean that the game doesn’t do anything particularly new or different aside from the AI director, which customizes the game each time you play, adding atmosphere, zombies, boss zombies and powerups along the way depending on how you’re playing the game. This is a straight shooter that gives you more things to shoot that pretty much any game before it, 50+ zombies at a time in some situations. It’s mindless, it’s simple to pick up and it’s a hell of a lot of fun.</p>
<p>When I first heard about this game, I was excited. Fucking zombies, who doesn’t love fucking zombies, and more than that, who doesn’t love slaughtering fucking zombies? But when I started to see the promotional material for it, I got a little concerned. I’m a strong supporter of the slow, Romero style zombies, but this game opted for fast 28 Days Later style zombies. Disappointed as I was, I wasn’t going to turn down the opportunity to massacre legions of undead.</p>
<p>As it turns out, my fears were completely put to rest as soon as I started playing. The zombie balance is perfect, they don’t feel overpowered in the slightest, in fact, their heads come off with a delightful ease. They do swarm with supernatural efficiency if you let them, but it’s quite possible to engage and neutralize an entire room of zombies without taking a single point of damage. Also, stopping a zombie mid-run and having it stumble over its own dismemberment is a joy everyone should experience just once.</p>
<p>Valve once again shows a deep understanding of what it’s players want from a game, they don’t resort to cutting the lights, leaving you to fire aimless into darkness for a cheap “scare”, they give you plenty of ammo (depending on difficulty), unlimited flashlight and competent co-op AI. They’ve made what many companies don’t seem to want to anymore, a fun game.</p>
<p>Preorder it now, you will not be disappointed.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2008/11/06/left-4-dead-demo-omg-zombies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solution: PHP / WordPress won&#8217;t send email on Debian</title>
		<link>http://tragicallynull.com/2008/11/02/solution-php-wordpress-wont-send-email-on-debian/</link>
		<comments>http://tragicallynull.com/2008/11/02/solution-php-wordpress-wont-send-email-on-debian/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 18:27:16 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Solution]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[exim4]]></category>
		<category><![CDATA[Fix]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[postfix]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/?p=238</guid>
		<description><![CDATA[I got this issue when I tried to send email on my VPS using PHP, the app would report everything sent successfully, but nothing came. This fix is for Debian, but may work with any Debian-based Linux OS that uses the apt-get package manager, like Ubuntu.
It turns out that my VPS&#8217;s Debian install has been [...]]]></description>
			<content:encoded><![CDATA[<p>I got this issue when I tried to send email on my VPS using PHP, the app would report everything sent successfully, but nothing came. This fix is for Debian, but may work with any Debian-based Linux OS that uses the apt-get package manager, like Ubuntu.<span id="more-238"></span></p>
<p>It turns out that my VPS&#8217;s Debian install has been configured with exim4. I don’t know when I installed it, but it might have been included as a dependency somewhere down the line. For some reason PHP wasn’t feeling the love. So out with the exim4 and in the the postifx. I went in and used apt-get to install postfix. This automatically removed exim4, installed and configured postfix, allowing me to use PHP to send emails.</p>
<p><code>apt-get install postfix</code></p>
<p>Don’t do this if you’re actually using exim4 for your real email service, this is just a fix for people who need PHP to send email and use an external service like Gmail for their domain’s email.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2008/11/02/solution-php-wordpress-wont-send-email-on-debian/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Solution: Can&#8217;t browse internet while utorrent is open (torrents)</title>
		<link>http://tragicallynull.com/2008/09/26/solution-cant-browse-internet-while-utorrent-is-open-torrents/</link>
		<comments>http://tragicallynull.com/2008/09/26/solution-cant-browse-internet-while-utorrent-is-open-torrents/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 06:37:59 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Solution]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[Fix]]></category>
		<category><![CDATA[nod32]]></category>
		<category><![CDATA[uTorrent]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/?p=234</guid>
		<description><![CDATA[So you open a torrent and it starts to download just fine but when to switch to your web browser you can&#8217;t get to any websites. It happens in Firefox, Internet Explorer, Opera, doesn&#8217;t matter. Well the fix is easy and a little ironic because it&#8217;s caused by Nod32.
To fix your problem all you need [...]]]></description>
			<content:encoded><![CDATA[<p>So you open a torrent and it starts to download just fine but when to switch to your web browser you can&#8217;t get to any websites. It happens in Firefox, Internet Explorer, Opera, doesn&#8217;t matter. Well the fix is easy and a little ironic because it&#8217;s caused by Nod32.<span id="more-234"></span></p>
<p>To fix your problem all you need to do is right click on the Nod32 system try icon, then click &#8220;Advanced Setup&#8230;&#8221; navigate the tree to &#8220;Antivirus and antispyware &gt; Web access protection &gt; HTTP &gt; Web Browsers&#8221; and make sure uTorrent and any other torrent programs are unticked (red X).</p>
<p>The problem is that Nod32 thinks uTorrent is a browser and then scrutinizes the traffic as such creating a very narrow bottleneck choking your normal internet traffic to a crawl. It doesn&#8217;t effect normal web browsers because of the low amount of throughput they have.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2008/09/26/solution-cant-browse-internet-while-utorrent-is-open-torrents/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>-bash: ./hldsupdatetool.bin: No such file or directory when trying to install SRCDS (Source Dedicated Server)</title>
		<link>http://tragicallynull.com/2008/04/27/bash-hldsupdatetoolbin-no-such-file-or-directory-when-trying-to-install-srcds-source-dedicated-server/</link>
		<comments>http://tragicallynull.com/2008/04/27/bash-hldsupdatetoolbin-no-such-file-or-directory-when-trying-to-install-srcds-source-dedicated-server/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 13:57:13 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/?p=233</guid>
		<description><![CDATA[If you&#8217;re running a 64bit OS and you try to install SRCDS (Source Dedicated Server) and you don&#8217;t have the right packages installed you&#8217;ll get the following error &#8220;-bash: ./hldsupdatetool.bin: No such file or directory&#8221;. The problem is you don&#8217;t have 32bit libraries installed, which are required by the technological luddites at ValvE.
The solution? Run [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re running a 64bit OS and you try to install SRCDS (Source Dedicated Server) and you don&#8217;t have the right packages installed you&#8217;ll get the following error &#8220;-bash: ./hldsupdatetool.bin: No such file or directory&#8221;. The problem is you don&#8217;t have 32bit libraries installed, which are required by the technological luddites at ValvE.<span id="more-233"></span></p>
<p>The solution? Run the following code in shell.<br />
&lt;code&gt;sudo apt-get install ia32-libs&lt;/code&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2008/04/27/bash-hldsupdatetoolbin-no-such-file-or-directory-when-trying-to-install-srcds-source-dedicated-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Team Fortress 2 Steam: engine error: no permissions to run tf</title>
		<link>http://tragicallynull.com/2008/04/20/team-fortress-2-steam-engine-error-no-permissions-to-run-tf/</link>
		<comments>http://tragicallynull.com/2008/04/20/team-fortress-2-steam-engine-error-no-permissions-to-run-tf/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 05:16:54 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Solution]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Steam]]></category>
		<category><![CDATA[Team Fortress 2]]></category>
		<category><![CDATA[Valve]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/?p=232</guid>
		<description><![CDATA[So you just bought Team Fortress 2 through Steam and you&#8217;re ready to go, but wait! When you try to launch the game you get the following error: Engine Error: No permissions to run tf. After some googling you&#8217;d think it was something to do with your Vista/XP permissions, but no! You&#8217;re already running as [...]]]></description>
			<content:encoded><![CDATA[<p>So you just bought Team Fortress 2 through Steam and you&#8217;re ready to go, but wait! When you try to launch the game you get the following error: Engine Error: No permissions to run tf.<span id="more-232"></span> After some googling you&#8217;d think it was something to do with your Vista/XP permissions, but no! You&#8217;re already running as admin. The solution? Restart the Steam Client. Simple as that.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2008/04/20/team-fortress-2-steam-engine-error-no-permissions-to-run-tf/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Ghosts I-IV, I bought it, what?</title>
		<link>http://tragicallynull.com/2008/03/13/ghosts-i-iv-i-bought-it-what/</link>
		<comments>http://tragicallynull.com/2008/03/13/ghosts-i-iv-i-bought-it-what/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 14:42:07 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Ghosts I-IV]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[NIN]]></category>
		<category><![CDATA[Nine Inch Nails]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/2008/03/13/ghosts-i-iv-i-bought-it-what/</guid>
		<description><![CDATA[So yeah, the very minute I heard that a major band who I respected was officially ditching the major record labels and putting out an entire album solely on their own, unlike Radiohead who still rely on the major labels for B&#038;M physical CD sales, I bought it, sight unseen. The new entirely instrumental album [...]]]></description>
			<content:encoded><![CDATA[<p>So yeah, the very minute I heard that a major band who I respected was officially ditching the major record labels and putting out an entire album solely on their own, unlike Radiohead who still rely on the major labels for B&#038;M physical CD sales, I bought it, sight unseen. The new entirely instrumental album from Nine Inch Nails consists of thirty-six tracks in four nine track albums, ergo Ghosts I-IV. It can be had as a digital download for $5 in either losses or super-high quality 320kbps LAME encoded MP3s, including a 40 page PDF of album art and both standard and widescreen wallpapers of each.<span id="more-231"></span></p>
<p>Now, I&#8217;ll be the first to admit that an entirely instrumental album from NIN threw me off slightly at first, and having listened to all of the tracks, I find it to be an exceptional album, but it&#8217;s clearly not going to be for everyone, especially if you&#8217;re expecting some high energy rock to trash to. This album is more about the nuance of instrumental composition and clearly a pet project of Trent Reznor, and while still having some clear rock influences the tracks are high experimental and branch out into many different styles of music, but most if not all of the tracks feel very tight, well thought out and will be enjoyable to most people.</p>
<p>But don&#8217;t take my word for it. The first 9 tracks are free to everyone who wants them, then if you decide you like it, and I&#8217;m pretty sure you will, the entire album is only $5. And honestly, even if you don&#8217;t like it, support people when they take risks for positive change and actually trust the fans to support them. Thank&#8217;s for &#8220;getting it&#8221; Trent.</p>
<p><a href="http://ghosts.nin.com/main/home">Buy it, enjoy it.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2008/03/13/ghosts-i-iv-i-bought-it-what/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Firefox 3 Beta 4: LOL Wut?</title>
		<link>http://tragicallynull.com/2008/03/12/firefox-3-beta-4-lol-wut/</link>
		<comments>http://tragicallynull.com/2008/03/12/firefox-3-beta-4-lol-wut/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 23:02:22 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Gripe]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Beta]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/2008/03/12/firefox-3-beta-4-lol-wut/</guid>
		<description><![CDATA[So I just downloaded a copy of Firefox 3 Beta 4 SG-1 Sigma 9 Gamma, and pretty much the gist of what I&#8217;m going to say is that I really hope they polish it before it goes live, because right now this son of a bitch is rough. Most noticeably are the new navigation icons, [...]]]></description>
			<content:encoded><![CDATA[<p>So I just downloaded a copy of Firefox 3 Beta 4 SG-1 Sigma 9 Gamma, and pretty much the gist of what I&#8217;m going to say is that I really hope they polish it before it goes live, because right now this son of a bitch is rough.<span id="more-230"></span> Most noticeably are the new navigation icons, both in small and full icon modes, the full version looks like a direct rip of IE7 panel which I guess is part of the &#8220;Vista Specific UI&#8221; but damn, the RSS icon is just hideous with it&#8217;s unnecessary 1px shadow and beveledness and the unrefined bookmark star that looks like someone used the shape from Photoshop to make. Not only that, but they removed the sub-back arrow, now I have to right click to see as list of the pages I&#8217;ve been to, but not only <em>that</em> but in full icon mode the remaining forward sub-arrow doesn&#8217;t even give you feedback when you click it, very sloppy in my book.</p>
<p>On the upside I do like Smart Bookmarks which allow you to view your most visited websites as well as your most recently bookmarked, the star, for it&#8217;s uglyness is a very nice way to quickly bookmark sites and the new notification system, while a little hard to get used to, is much more functional than the show stopping popup. There are also a mirriad of other features and behind the scenes stuff I&#8217;m sure, but that&#8217;s what has jumped out at me thus far.</p>
<p>All in all Firefox 3 is a needed and feature rich update that takes what works and does it&#8217;s best to make it better. It would be nice to see a little more polish before it ships but I&#8217;m not complaining, it&#8217;s the best browser available and it&#8217;s free.</p>
<p><a href="http://download.mozilla.org/?product=firefox-3.0b4&#038;os=win&#038;lang=en-US">Download Firefox 3 Beta 4</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2008/03/12/firefox-3-beta-4-lol-wut/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Instant Jailbreak for iPod touch, iPhone ANY OS, Windows or OSX</title>
		<link>http://tragicallynull.com/2007/10/29/instant-jailbreak-for-ipod-touch-iphone-any-os-windows-or-osx/</link>
		<comments>http://tragicallynull.com/2007/10/29/instant-jailbreak-for-ipod-touch-iphone-any-os-windows-or-osx/#comments</comments>
		<pubDate>Mon, 29 Oct 2007 06:44:32 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Firmware]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod touch]]></category>
		<category><![CDATA[Jailbreak]]></category>
		<category><![CDATA[v1.1.1]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/2007/10/29/instant-jailbreak-for-ipod-touch-iphone-any-os-windows-or-osx/</guid>
		<description><![CDATA[This guide is outdated, please visit the QuickPWN website for the easiest jailbreak to date for both iPod Touch and iPhone.
Rezen and the guys from #iTouch on osx86.hu have done it again, further simplifying the Jailbreak process to a single website visit, effectively obsoleting all other software Jailbreaks. No apps to download, no resets to [...]]]></description>
			<content:encoded><![CDATA[<p class="special-alert">This guide is outdated, please visit the <a href="http://www.quickpwn.com/"><strong>QuickPWN</strong></a> website for the easiest jailbreak to date for both iPod Touch and iPhone.</p>
<p>Rezen and the guys from <a href="irc://irc.osx86.hu/#iTouch">#iTouch</a> on osx86.hu have done it again, further simplifying the Jailbreak process to a single website visit, effectively obsoleting all other software Jailbreaks. No apps to download, no resets to do, this Jailbreak does it&#8217;s work in just the first step of most other software Jailbreaks. All you have to do is visit <a href="http://jailbreakme.com">jailbreakme.com</a> on your v1.1.1 iPhone or iPod touch and click confirm.<span id="more-227"></span> That&#8217;s it. It will crash to the icons and reboot itself, leaving you with a fully Jailbroken device with Installer.app installed.</p>
<p>It&#8217;s important to note that this Jailbreak only leaves you with Installer.app installed, no default SSH client. If you need to SFTP or SSH into your device, you&#8217;ll need to install the BSD Subsystem, Community Sources and then OpenSSH using Installer.app. Super easy to do.</p>
<p><a href="http://jailbreakme.com">Truly Jailbreak your iPod touch or iPhone with one click</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2007/10/29/instant-jailbreak-for-ipod-touch-iphone-any-os-windows-or-osx/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Patch TIFF exploit in Safari, iPod touch, iPhone</title>
		<link>http://tragicallynull.com/2007/10/28/patch-tiff-exploit-in-safari-ipod-touch-iphone/</link>
		<comments>http://tragicallynull.com/2007/10/28/patch-tiff-exploit-in-safari-ipod-touch-iphone/#comments</comments>
		<pubDate>Sun, 28 Oct 2007 22:09:44 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Fix]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod touch]]></category>
		<category><![CDATA[Patch]]></category>
		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/2007/10/28/patch-tiff-exploit-in-safari-ipod-touch-iphone/</guid>
		<description><![CDATA[Once you&#8217;ve used the TIFF exploit to Jailbreak your iPod touch or iPhone it&#8217;s a bad idea to leave your browser open to the fairly serious vulnerability, luckily someone has created a patch and it&#8217;s dead simple to install.
Step 1: Download patch-graphics from here. (Right-click, save as for best results. You might also have to [...]]]></description>
			<content:encoded><![CDATA[<p>Once you&#8217;ve used the TIFF exploit to Jailbreak your iPod touch or iPhone it&#8217;s a bad idea to leave your browser open to the fairly serious vulnerability, luckily someone has created a patch and it&#8217;s dead simple to install.<span id="more-226"></span></p>
<p>Step 1: Download <a href="http://www.cse.msu.edu/~dunham/touch/patch-graphics">patch-graphics</a> from <a href="http://www.cse.msu.edu/~dunham/touch/">here</a>. (Right-click, save as for best results. You might also have to remove the file extension .html depending on your web browser. You should be left with an extensionless file called patch-graphics)<br />
Step 2: Using SFTP, upload the file to your iPod touch or iPhone to the /Applications/ directory.<br />
Step 3: SSH into your iPod touch or iPhone and run <var>/bin/chmod a+w /Applications/*</var><br />
Step 4: Run the patch using the following command <var>./Applications/patch-graphics</var> A bunch of text should fill the screen and you should be returned to the prompt.<br />
Step 5: Success, you&#8217;re done. Visit the web with impunity.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2007/10/28/patch-tiff-exploit-in-safari-ipod-touch-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple doesn&#8217;t want your cash&#8230; At least not for iPhones</title>
		<link>http://tragicallynull.com/2007/10/27/apple-doesnt-want-your-cash-at-least-not-for-iphones/</link>
		<comments>http://tragicallynull.com/2007/10/27/apple-doesnt-want-your-cash-at-least-not-for-iphones/#comments</comments>
		<pubDate>Sat, 27 Oct 2007 06:45:00 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Evil]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Unlocked]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/2007/10/27/apple-doesnt-want-your-cash-at-least-not-for-iphones/</guid>
		<description><![CDATA[In a hopeless effort to stop the resale of unlocked iPhone, Apple has introduced a new policy limiting customers to both paying with a credit or debit card and limiting sales to 2 iPhones per person. Apple estimates that over a quarter million of the 1.4 million iPhones sold have been unlocked causing then substantial [...]]]></description>
			<content:encoded><![CDATA[<p>In a hopeless effort to stop the resale of unlocked iPhone, Apple has introduced a new policy limiting customers to both paying with a credit or debit card and limiting sales to 2 iPhones per person. Apple estimates that over a quarter million of the 1.4 million iPhones sold have been unlocked causing then substantial financial losses as AT&#038;T pays Apple monthly for each iPhone service plan sold.<span id="more-225"></span></p>
<p>Perhaps Apple really doesn&#8217;t get &#8220;stopping piracy&#8221; as much as MadDogg Steve Jobs&#8217; open letter would suggest. Not accepting cash isn&#8217;t going to hurt the unlocked iPhone resellers, they&#8217;ll use disposable credit cards or Apple Store gift cards to purchase their iPhones, while people who legitamately just want to buy one with cash wont be able to. Anti-Piracy hurts your customers, always.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2007/10/27/apple-doesnt-want-your-cash-at-least-not-for-iphones/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Save battery-life by turning off SSH on the iPod touch, iPhone</title>
		<link>http://tragicallynull.com/2007/10/26/save-battery-life-by-turning-off-ssh-on-the-ipod-touch-iphone/</link>
		<comments>http://tragicallynull.com/2007/10/26/save-battery-life-by-turning-off-ssh-on-the-ipod-touch-iphone/#comments</comments>
		<pubDate>Sat, 27 Oct 2007 02:47:33 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod touch]]></category>
		<category><![CDATA[Jailbreak]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/2007/10/26/save-battery-life-by-turning-off-ssh-on-the-ipod-touch-iphone/</guid>
		<description><![CDATA[After Jailbreaking your iPod touch or iPhone you&#8217;ll have an SSH server running, necessary when first installing new applications, but once you&#8217;re done it continues to run in the background, even when not in use and can significantly drain your battery. But there is a solution, Services.app, a community application that lets you disable certain [...]]]></description>
			<content:encoded><![CDATA[<p>After Jailbreaking your iPod touch or iPhone you&#8217;ll have an SSH server running, necessary when first installing new applications, but once you&#8217;re done it continues to run in the background, even when not in use and can significantly drain your battery. But there is a solution, Services.app, a community application that lets you disable certain services including SSH.<span id="more-224"></span></p>
<p>Step 1: [OPTIONAL] Follow <a href="http://tragicallynull.com/2007/10/18/remove-dropbear-ssh-from-ipod-touch-iphone/">my guide</a> to replace Dropbear SSH with OpenSSH.<br />
Step 2: Install Services.app though Installer.app. It will be in the Utilities section. If you can&#8217;t find it, make sure you have Community Sources installed.<br />
Step 3: Run Services.app.<br />
Step 4: You should see several switches, Edge and Bluetooth are superfluous on the iPod touch even though they may appear to be on. The switch you&#8217;re interested in is the one marked SSH, simply turn it off when you don&#8217;t need SFTP/Shell access to your device, which should be 90% of the time. If you see two SSH switches, please follow <a href="http://tragicallynull.com/2007/10/18/remove-dropbear-ssh-from-ipod-touch-iphone/">my guide</a> to remove one of them.<br />
Step 5: You&#8217;re done!</p>
<p>You should see a boost in your battery-life if you&#8217;ve been using your iPod touch/iPhone with SSH running.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2007/10/26/save-battery-life-by-turning-off-ssh-on-the-ipod-touch-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>touchFree &#8211; GUI iPod touch 1-click Jailbreak for Windows with Summerboard</title>
		<link>http://tragicallynull.com/2007/10/26/touchfree-gui-ipod-touch-1-click-jailbreak-for-windows-with-summerboard/</link>
		<comments>http://tragicallynull.com/2007/10/26/touchfree-gui-ipod-touch-1-click-jailbreak-for-windows-with-summerboard/#comments</comments>
		<pubDate>Sat, 27 Oct 2007 02:32:37 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Firmware]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod touch]]></category>
		<category><![CDATA[Jailbreak]]></category>
		<category><![CDATA[v1.1.1]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/2007/10/26/touchfree-gui-ipod-touch-1-click-jailbreak-for-windows-with-summerboard/</guid>
		<description><![CDATA[This guide is outdated, please visit the QuickPWN website for the easiest jailbreak to date for both iPod Touch and iPhone.
An even easier to use GUI version of planetbeing&#8217;s 1-click iPod touch Jailbreak application has been released depreciating most of my previous guide. The new version requires fewer reboots and installs the alpha version of [...]]]></description>
			<content:encoded><![CDATA[<p class="special-alert">This guide is outdated, please visit the <a href="http://www.quickpwn.com/"><strong>QuickPWN</strong></a> website for the easiest jailbreak to date for both iPod Touch and iPhone.</p>
<p>An even easier to use <a href="http://www.slovix.com/touchfree/">GUI version</a> of planetbeing&#8217;s 1-click iPod touch Jailbreak application has been released depreciating most of <a href="http://tragicallynull.com/2007/10/12/touchfree-ipod-touch-1-click-jailbreak-for-windows-guide/">my previous guide</a>. The new version requires fewer reboots and installs the alpha version of <a href="http://apptapp.com/summerboard">Summerboard</a><span id="more-223"></span> but still installs an old version of Installer.app that you will need to <a href="http://tragicallynull.com/2007/10/19/installerapp-version-30-released/">upgrade</a>. Portions of the guide that are still relevant can be found below.</p>
<p>You can download the new version and get instructions on how to use it <a href="http://www.slovix.com/touchfree/">here</a>.</p>
<h2>Previous iPod touch Articles</h2>
<p><a href="http://tragicallynull.com/2007/10/18/remove-dropbear-ssh-from-ipod-touch-iphone/">Replacing Dropbear with OpenSSH</a><br />
<a href="http://tragicallynull.com/2007/10/19/installerapp-version-30-released/">Uprading to Installer.app version 3.0a</a><br />
<a href="http://tragicallynull.com/2007/10/12/touchfree-ipod-touch-1-click-jailbreak-for-windows-guide/">Original command line touchFree guide</a></p>
<h2>Final Steps for Safety</h2>
<p><small>Courtesy of the <a href="http://www.touchdev.net/wiki/Jailbreak_Guide">iTouch Dev Wiki</a></small></p>
<p>It is a very good idea to change the default password from &#8220;alpineâ€ to something else. This prevents people who happen to see your iPod touch on a wireless network from logging into it and doing nasty things. To do this:</p>
<p>1. Install &#8220;Community Sourcesâ€, &#8220;BSD Subsystemâ€ and &#8220;Term-vt100â€³ packages from Installer.app.<br />
2. Launch Term-vt100.<br />
3. At the # prompt, type &#8220;passwdâ€ (without the quotes) and press return.<br />
4. Enter your new password and confirm it.<br />
5. DON&#8217;T LOSE YOUR NEW PASSWORD! :) If you do, in order to log into your touch from SSH or SFTP you will have to do a restore and start this process all over again.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2007/10/26/touchfree-gui-ipod-touch-1-click-jailbreak-for-windows-with-summerboard/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mozilla: F- it, we can do it too</title>
		<link>http://tragicallynull.com/2007/10/26/mozilla-f-it-we-can-do-it-too/</link>
		<comments>http://tragicallynull.com/2007/10/26/mozilla-f-it-we-can-do-it-too/#comments</comments>
		<pubDate>Sat, 27 Oct 2007 02:10:19 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Prisim]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/2007/10/26/mozilla-f-it-we-can-do-it-too/</guid>
		<description><![CDATA[Mozilla has announced, in a stroke of original genius, that they&#8217;re working on a &#8220;web on the desktop&#8221; application, they&#8217;re calling Prisim, to compete with the likes of Adobe Air, Microsoft Silverlight, Konfabulator, Apple Widgets, Google Gears and Microsoft Gadgets. 
How will they be different? Well they say their platform won&#8217;t be proprietary, that is [...]]]></description>
			<content:encoded><![CDATA[<p>Mozilla has announced, in a stroke of original genius, that they&#8217;re working on a &#8220;web on the desktop&#8221; application, they&#8217;re calling Prisim, to compete with the likes of <a href="http://labs.adobe.com/technologies/air/">Adobe Air</a>, <a href="http://silverlight.net/">Microsoft Silverlight</a>, <a href="http://konfabulator.com">Konfabulator</a>, <a href="http://www.apple.com/downloads/dashboard/">Apple Widgets</a>, <a href="http://gears.google.com/">Google Gears</a> and <a href="http://gallery.live.com/">Microsoft Gadgets</a>. <span id="more-222"></span></p>
<p>How will they be different? Well they say their platform won&#8217;t be proprietary, that is &#8220;they aren&#8217;t trying to replace the web&#8221;. Prisim is based off of the virtually unknown Mozilla Labs Webrunner. Prisim will eventually be available for Windows, Mac OSX and Linux, but currently only a pre-alpha <a href="http://starkravingfinkle.org/projects/webrunner/prism-0.8-win32.exe">Windows build</a> is available.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2007/10/26/mozilla-f-it-we-can-do-it-too/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To iTunes: Warner music threatening to take ball and go home</title>
		<link>http://tragicallynull.com/2007/10/25/to-itunes-warner-music-threatening-to-take-ball-and-go-home/</link>
		<comments>http://tragicallynull.com/2007/10/25/to-itunes-warner-music-threatening-to-take-ball-and-go-home/#comments</comments>
		<pubDate>Fri, 26 Oct 2007 02:57:23 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[NBC]]></category>
		<category><![CDATA[Universal]]></category>
		<category><![CDATA[Warner]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/2007/10/25/to-itunes-warner-music-threatening-to-take-ball-and-go-home/</guid>
		<description><![CDATA[In a move that&#8217;s becoming more common amongst content providers, Warner music is threatening to pull it&#8217;s content from the iTunes Music Store, seemingly over Steve Job&#8217;s insistent control of the prices for for said content. This in the wake of NBC choosing not to put their fall season on the iTunes Music Store, opting [...]]]></description>
			<content:encoded><![CDATA[<p>In a move that&#8217;s becoming more common amongst content providers, Warner music is threatening to pull it&#8217;s content from the iTunes Music Store, seemingly over Steve Job&#8217;s insistent control of the prices for for said content. This in the wake of NBC choosing not to put their fall season on the iTunes Music Store<span id="more-218"></span>, opting instead to start their own joint venture with News Corp, <a href="http://hulu.com">Hulu</a>, to serve their content. Universal Music Group also chose not to renew their longterm contract with Apple, instead opting for shorter month-to-month contract terms.</p>
<p>Unfortunately it&#8217;s not because they want to charge less. According to some, NBC wanted to charge as much as $4.99 per episode, up from the $1.99 and Steve Jobs wouldn&#8217;t bend on the $1.99 price-point so they pulled their content. And it&#8217;s not a secret that the major music labels would love to have tiered pricing.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2007/10/25/to-itunes-warner-music-threatening-to-take-ball-and-go-home/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google to enable IMAP for Gmail in next few days</title>
		<link>http://tragicallynull.com/2007/10/24/google-to-enable-imap-for-gmail-in-next-few-days/</link>
		<comments>http://tragicallynull.com/2007/10/24/google-to-enable-imap-for-gmail-in-next-few-days/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 05:44:15 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Features]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[IMAP]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/2007/10/24/google-to-enable-imap-for-gmail-in-next-few-days/</guid>
		<description><![CDATA[Previous speculation and documentation detective work has yielded several rumors about upcoming features for Gmail, one of them being IMAP support, and it seems it will be rolled out in the next couple of days. Some users are already seeing the change, having Forwarding and POP in their Gmail settings turn into Forwarding and POP/IMAP. [...]]]></description>
			<content:encoded><![CDATA[<p>Previous speculation and documentation detective work has yielded several rumors about upcoming features for Gmail, one of them being IMAP support, and it <a href="http://mail.google.com/support/bin/answer.py?ctx=%67mail&#038;hl=en&#038;answer=75726">seems</a> it will be rolled out in the next couple of days.<span id="more-214"></span> Some users are already seeing the change, having Forwarding and POP in their Gmail settings turn into Forwarding and POP/IMAP. As with all new Google features, they will be rolled out, seemingly randomly, over a few days.</p>
<p>This much needed update is especially good for iPhone/hacked iPod touch/mobile device users as now they can get and manage their Gmail from their device without having to delete email twice.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2007/10/24/google-to-enable-imap-for-gmail-in-next-few-days/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazon pattents search strings, seriously</title>
		<link>http://tragicallynull.com/2007/10/23/amazon-pattents-search-strings-seriously/</link>
		<comments>http://tragicallynull.com/2007/10/23/amazon-pattents-search-strings-seriously/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 00:59:51 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Evil]]></category>
		<category><![CDATA[Patents]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/2007/10/23/amazon-pattents-search-strings-seriously/</guid>
		<description><![CDATA[Amazon has been granted a patent for appending a search term to a URL without special formatting such as  this. would take you to a page with search results concurrent with Amazon&#8217;s recent activities.
Amazon owns this now:
http://amazon.com/rampent-abuse-of-the-patent-system
Over-broad? Check. Obvious? Check. Disregard for prior art? Check.
Thanks USPTO.
]]></description>
			<content:encoded><![CDATA[<p>Amazon has been granted a patent for appending a search term to a URL without special formatting such as  <a href="http://amazon.com/rampent-abuse-of-the-patent-system">this</a>. would take you to a page with search results concurrent with Amazon&#8217;s recent activities.<span id="more-213"></span></p>
<p>Amazon owns this now:<br />
http://amazon.com/rampent-abuse-of-the-patent-system</p>
<p>Over-broad? Check. Obvious? Check. Disregard for prior art? Check.<br />
Thanks <acronym title="United States Patent and Trade Office">USPTO</acronym>.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2007/10/23/amazon-pattents-search-strings-seriously/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone Elite team releases iPhone Revirginizer</title>
		<link>http://tragicallynull.com/2007/10/23/iphone-elite-team-releases-iphone-revirginizer/</link>
		<comments>http://tragicallynull.com/2007/10/23/iphone-elite-team-releases-iphone-revirginizer/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 00:42:08 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone Elite]]></category>
		<category><![CDATA[Revirginize]]></category>
		<category><![CDATA[Unbrick]]></category>
		<category><![CDATA[v1.0.2]]></category>
		<category><![CDATA[v1.1.1]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/2007/10/23/iphone-elite-team-releases-iphone-revirginizer/</guid>
		<description><![CDATA[The iPhone Elite team has done it again, providing a free tool to Revirginize your bricked iPhone that you upgraded to v1.1.1 after unlocking it. It will restore it to a pristine v1.0.2 that you can then update to v1.1.1 and unlock again. As with all new hacks, caveat&#8230; whatever user is in latin, in [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://code.google.com/p/iphone-elite/wiki/RevirginizingTool">iPhone Elite</a> team has done it again, providing a free tool to Revirginize your bricked iPhone that you upgraded to v1.1.1 after unlocking it. It will restore it to a pristine v1.0.2 that you can then update to v1.1.1 and unlock again.<span id="more-211"></span> As with all new hacks, caveat&#8230; whatever user is in latin, in other words, be careful, make sure you know what you&#8217;re doing.</p>
<p><a href="http://code.google.com/p/iphone-elite/wiki/RevirginizingTool">Download the Revirginizer</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2007/10/23/iphone-elite-team-releases-iphone-revirginizer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OiNK misreporting, propaganda continues</title>
		<link>http://tragicallynull.com/2007/10/23/oink-misreporting-propaganda-continues/</link>
		<comments>http://tragicallynull.com/2007/10/23/oink-misreporting-propaganda-continues/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 00:25:03 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Evil]]></category>
		<category><![CDATA[Litigation]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Oink]]></category>
		<category><![CDATA[P2P]]></category>
		<category><![CDATA[RIAA]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/2007/10/23/oink-misreporting-propaganda-continues/</guid>
		<description><![CDATA[Almost all of the major news sources are misreporting the facts of the case in regards to the function and purpose of OiNK claiming that the site was &#8220;for-pay&#8221; or subscription based and &#8220;hosted copyright music on the server&#8221; when the site was COMPLETELY donation based and NEVER hosted files on the server, only small [...]]]></description>
			<content:encoded><![CDATA[<p>Almost all of the major news sources are misreporting the facts of the case in regards to the function and purpose of OiNK claiming that the site was &#8220;for-pay&#8221; or subscription based and &#8220;hosted copyright music on the server&#8221; when the site was COMPLETELY donation based and NEVER hosted files on the server<span id="more-210"></span>, only small bits of generic information, .torrent files, on how to receive the files from other users, NOT illegal. It would be like telling someone how to fire a gun then getting charged for murder when they shoot someone.</p>
<p>There&#8217;s also the issue of IFPI using the stolen Oink.cd domain to spread propaganda, fear, uncertainty and doubt amongst the users of the site with messages such as &#8220;A criminal investigation continues into the identities and activities of the site&#8217;s users&#8221; when in actuality there was nothing criminally damning on the server in regards to the users. All of the data is generic, no transfer of copyright files EVER took place on the server, it couldn&#8217;t have by the virtue of being a torrent tracker, it just let people connect with each other.</p>
<p>They claim that there were over 180,000 users of OiNK, spread all throughout the world, a jurisdictional nightmare and simply cost prohibitive for anyone wanting to file suit against the users, especially given the completely spurious charges they would have to file. They have no proof that any file transfers took place and would therefore have to compel the users of the site to, in effect, point the finger at each other, impossible given that torrent clients don&#8217;t keep logs. Failing that, they would in some way prove that user x sent user y copyright files without any logs, something that would be near impossible.</p>
<p>Many large torrent sites have been taken down before, Lokitorrent for example, no users were ever tracked down and sued. It was much more fiscally sound for them to simply put the fear of god into pirates and try to scare them back into stores. Just more scare tactics from the people defending a dying industry on a gangrene business model, hoping that can win fans though lawsuits.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2007/10/23/oink-misreporting-propaganda-continues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OiNK shutdown, servers raided, admin arrested curtesy of the IFPI</title>
		<link>http://tragicallynull.com/2007/10/23/oinkcd-shutdown-by-ifpi/</link>
		<comments>http://tragicallynull.com/2007/10/23/oinkcd-shutdown-by-ifpi/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 11:20:29 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Evil]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Oink]]></category>
		<category><![CDATA[P2P]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/2007/10/23/oinkcd-shutdown-by-ifpi/</guid>
		<description><![CDATA[The hugely popular invite-only p2p music site OiNK was shut down by British and Dutch police in conjunction with the IFPI after a 2 year on-going investigation. Several data centers in Amsterdam were raided, servers seized and the sites proprietor, a 24 year old IT worker, arrested. 
The consequences for the owner as well as [...]]]></description>
			<content:encoded><![CDATA[<p>The hugely popular invite-only p2p music site <a href="http://oink.cd">OiNK</a> was shut down by British and Dutch police in conjunction with the <acronym title="International Federation of the Phonographic Industry">IFPI</acronym> after a 2 year on-going investigation. Several data centers in Amsterdam were raided, servers seized and the sites proprietor, a 24 year old IT worker, arrested.<span id="more-209"></span> </p>
<p>The consequences for the owner as well as the users still unknown. However, since no illegal material was ever hosted directly on Oink, only distributed between users via torrent, they may have a hard time proving that any copyright violation actually took place on Oink servers. Nor do they have logs of the connections and data transfer between users, virtually the only incriminating evidence to take place during torrent transfers.</p>
<p><a href="http://torrentfreak.com/oinkcd-servers-raided-admin-arrested/">Read more on TorrentFreak</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2007/10/23/oinkcd-shutdown-by-ifpi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kinset launches 3D store &#8211; people keep not caring</title>
		<link>http://tragicallynull.com/2007/10/22/kinset-launches-3d-store-people-keep-not-caring/</link>
		<comments>http://tragicallynull.com/2007/10/22/kinset-launches-3d-store-people-keep-not-caring/#comments</comments>
		<pubDate>Mon, 22 Oct 2007 22:31:41 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Gripe]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[Bad Idea]]></category>
		<category><![CDATA[Kinset]]></category>
		<category><![CDATA[Lame]]></category>
		<category><![CDATA[Store]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/2007/10/22/kinset-launches-3d-store-people-keep-not-caring/</guid>
		<description><![CDATA[In a move we&#8217;ve seen a thousands times and will see a thousand times again, some company thinks putting their website or their storefront in 3D will make them unique, that for some reason people desire the &#8220;Shelf&#8221; display of items over an organized list in a web page and they will continue to be [...]]]></description>
			<content:encoded><![CDATA[<p>In a move we&#8217;ve seen a thousands times and will see a thousand times again, some company thinks putting their website or their storefront in 3D will make them unique, that for some reason people desire the &#8220;Shelf&#8221; display of items over an organized list in a web page and they will continue to be wrong.<span id="more-207"></span> The web is it&#8217;s own kind of media, you don&#8217;t need to make it look like &#8220;the real thing&#8221;, you need to design for what it&#8217;s capable of in and of itself.</p>
<p>The company claims one of the benefits of the idea is that people not familiar with ordering online will be familiar with the shelf setup, but perhaps in the real world teaching Grandma how to search with Amazon might be easier than teaching her to &#8220;walk&#8221; though a virtual store looking for what she wants, especially seeing as how there is only one Kinset and many stores like Amazon. Give a Grandma a fish and she shops for a day, teach a Grandma to use Amazon and she&#8217;ll shop until your inheritance is gone.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2007/10/22/kinset-launches-3d-store-people-keep-not-caring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brown Microsoft Zune $80, black or white $100</title>
		<link>http://tragicallynull.com/2007/10/22/brown-microsoft-zune-80-black-or-white-100/</link>
		<comments>http://tragicallynull.com/2007/10/22/brown-microsoft-zune-80-black-or-white-100/#comments</comments>
		<pubDate>Mon, 22 Oct 2007 11:45:58 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Deals]]></category>
		<category><![CDATA[Cheap]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Woot]]></category>
		<category><![CDATA[Zune]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/2007/10/22/brown-microsoft-zune-80-black-or-white-100/</guid>
		<description><![CDATA[Woot is selling off their surplus of brown Microsoft Zunes for just $80 a piece. An exceptional deal by itself, but when you consider that the previous generation Zunes will be able to upgrade their firmware to that of the next generation Zune in less than a month, the deal becomes unbeatable. Quite a way [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://woot.com">Woot</a> is selling off their surplus of brown Microsoft Zunes for just $80 a piece. An exceptional deal by itself, but when you consider that the previous generation Zunes will be able to upgrade their firmware to that of the next generation Zune in less than a month, the deal becomes unbeatable.<span id="more-206"></span> Quite a way to respect your customer base, Apple could learn a thing or two from Microsoft on this one. They&#8217;re also selling the black and white versions for $100 at their sister site on <a href="http://sellout.woot.com">Yahoo</a>.</p>
<p>Texas residents can use the coupon code TAXSUCKS to receive free shipping.</p>
<p><a href="http://woot.com">Brown Microsoft Zune &#8211; $80</a><br />
<a href="http://sellout.woot.com">Black or White Microsoft Zune &#8211; $100</a><br />
<small>Please note these links will expire on October 23rd, 2007</small></p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2007/10/22/brown-microsoft-zune-80-black-or-white-100/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
