<?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>Ricky Ford</title>
	<atom:link href="http://rickylford.com/feed" rel="self" type="application/rss+xml" />
	<link>http://rickylford.com</link>
	<description>I&#039;m a husband, web designer, app developer and teacher.</description>
	<lastBuildDate>Tue, 13 Mar 2012 02:54:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Updating the Transmission bittorrent software blocklist</title>
		<link>http://rickylford.com/blog/updating-the-transmission-bittorrent-software-blocklist</link>
		<comments>http://rickylford.com/blog/updating-the-transmission-bittorrent-software-blocklist#comments</comments>
		<pubDate>Tue, 13 Mar 2012 02:33:10 +0000</pubDate>
		<dc:creator>Ricky</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://rickylford.com/?p=377</guid>
		<description><![CDATA[If you use the Transmission bittorrent software for Ubuntu, you may have had a little bit of an issue updating your IP address blocklist within the program. I created a shell script that will help you do just that. All you need to do is first create a file called something like, &#8220;updateblocklists.sh&#8221; and fill [...]]]></description>
			<content:encoded><![CDATA[<p>If you use the Transmission bittorrent software for Ubuntu, you may have had a little bit of an issue updating your IP address blocklist within the program. I created a shell script that will help you do just that. All you need to do is first create a file called something like, &#8220;updateblocklists.sh&#8221; and fill it with the following script:</p>
<blockquote><p>
#!/bin/bash</p>
<p>BLOCKLISTDIR=&#8221;/var/lib/transmission-daemon/info/blocklists&#8221;<br />
BASEURL=&#8221;http://www.bluetack.co.uk/config&#8221;</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   BEFORE UPDATING, LET&#8217;S DELETE ALL PREVIOUS BLOCKLIST DATA&#8221;<br />
echo &#8221;   IF YOU RECEIVE AN ERROR, IGNORE IT. IT USUALLY MEANS YOU&#8221;<br />
echo &#8221;   DON&#8217;T HAVE ANY BLOCKLIST INFORMATION DOWNLOADED YET&#8221;<br />
echo &#8220;&#8221;<br />
rm &#8220;$BLOCKLISTDIR&#8221;/*<br />
echo &#8220;&#8221;<br />
echo &#8221;   DONE&#8221;<br />
echo &#8220;&#8221;</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   DOWNLOADING AND UNZIPPING BLOCKLIST level1.gz&#8221;<br />
echo &#8220;&#8221;</p>
<p>curl -L $BASEURL/level1.gz -o $BLOCKLISTDIR/level1.gz<br />
gunzip -f $BLOCKLISTDIR/level1.gz</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   RENAMING NEW BLOCKLIST FILE TO .txt&#8221;<br />
echo &#8220;&#8221;<br />
mv $BLOCKLISTDIR/level1 $BLOCKLISTDIR/level1.txt<br />
echo &#8220;&#8221;<br />
echo &#8221;   DONE&#8221;<br />
echo &#8220;&#8221;</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   DOWNLOADING AND UNZIPPING BLOCKLIST level2.gz&#8221;<br />
echo &#8220;&#8221;</p>
<p>curl -L $BASEURL/level2.gz -o $BLOCKLISTDIR/level2.gz<br />
gunzip -f $BLOCKLISTDIR/level2.gz</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   RENAMING NEW BLOCKLIST FILE TO .txt&#8221;<br />
echo &#8220;&#8221;<br />
mv $BLOCKLISTDIR/level2 $BLOCKLISTDIR/level2.txt<br />
echo &#8220;&#8221;<br />
echo &#8221;   DONE&#8221;<br />
echo &#8220;&#8221;</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   DOWNLOADING AND UNZIPPING BLOCKLIST level3.gz&#8221;<br />
echo &#8220;&#8221;</p>
<p>curl -L $BASEURL/level3.gz -o $BLOCKLISTDIR/level3.gz<br />
gunzip -f $BLOCKLISTDIR/level3.gz</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   RENAMING NEW BLOCKLIST FILE TO .txt&#8221;<br />
echo &#8220;&#8221;<br />
mv $BLOCKLISTDIR/level3 $BLOCKLISTDIR/level3.txt<br />
echo &#8220;&#8221;<br />
echo &#8221;   DONE&#8221;<br />
echo &#8220;&#8221;</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   DOWNLOADING AND UNZIPPING BLOCKLIST proxy.gz&#8221;<br />
echo &#8220;&#8221;</p>
<p>curl -L $BASEURL/proxy.gz -o $BLOCKLISTDIR/proxy.gz<br />
gunzip -f $BLOCKLISTDIR/proxy.gz</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   RENAMING NEW BLOCKLIST FILE TO .txt&#8221;<br />
echo &#8220;&#8221;<br />
mv $BLOCKLISTDIR/proxy $BLOCKLISTDIR/proxy.txt<br />
echo &#8220;&#8221;<br />
echo &#8221;   DONE&#8221;<br />
echo &#8220;&#8221;</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   DOWNLOADING AND UNZIPPING BLOCKLIST Microsoft.gz&#8221;<br />
echo &#8220;&#8221;</p>
<p>curl -L $BASEURL/Microsoft.gz -o $BLOCKLISTDIR/Microsoft.gz<br />
gunzip -f $BLOCKLISTDIR/Microsoft.gz</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   RENAMING NEW BLOCKLIST FILE TO .txt&#8221;<br />
echo &#8220;&#8221;<br />
mv $BLOCKLISTDIR/Microsoft $BLOCKLISTDIR/microsoft.txt<br />
echo &#8220;&#8221;<br />
echo &#8221;   DONE&#8221;<br />
echo &#8220;&#8221;</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   DOWNLOADING AND UNZIPPING BLOCKLIST edu.gz&#8221;<br />
echo &#8220;&#8221;</p>
<p>curl -L $BASEURL/edu.gz -o $BLOCKLISTDIR/edu.gz<br />
gunzip -f $BLOCKLISTDIR/edu.gz</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   RENAMING NEW BLOCKLIST FILE TO .txt&#8221;<br />
echo &#8220;&#8221;<br />
mv $BLOCKLISTDIR/edu $BLOCKLISTDIR/edu.txt<br />
echo &#8220;&#8221;<br />
echo &#8221;   DONE&#8221;<br />
echo &#8220;&#8221;</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   DOWNLOADING AND UNZIPPING BLOCKLIST hijacked.gz&#8221;<br />
echo &#8220;&#8221;</p>
<p>curl -L $BASEURL/hijacked.gz -o $BLOCKLISTDIR/hijacked.gz<br />
gunzip -f $BLOCKLISTDIR/hijacked.gz</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   RENAMING NEW BLOCKLIST FILE TO .txt&#8221;<br />
echo &#8220;&#8221;<br />
mv $BLOCKLISTDIR/hijacked $BLOCKLISTDIR/hijacked.txt<br />
echo &#8220;&#8221;<br />
echo &#8221;   DONE&#8221;<br />
echo &#8220;&#8221;</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   DOWNLOADING AND UNZIPPING BLOCKLIST spider.gz&#8221;<br />
echo &#8220;&#8221;</p>
<p>curl -L $BASEURL/spider.gz -o $BLOCKLISTDIR/spider.gz<br />
gunzip -f $BLOCKLISTDIR/spider.gz</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   RENAMING NEW BLOCKLIST FILE TO .txt&#8221;<br />
echo &#8220;&#8221;<br />
mv $BLOCKLISTDIR/spider $BLOCKLISTDIR/spider.txt<br />
echo &#8220;&#8221;<br />
echo &#8221;   DONE&#8221;<br />
echo &#8220;&#8221;</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   DOWNLOADING AND UNZIPPING BLOCKLIST spyware.gz&#8221;<br />
echo &#8220;&#8221;</p>
<p>curl -L $BASEURL/spyware.gz -o $BLOCKLISTDIR/spyware.gz<br />
gunzip -f $BLOCKLISTDIR/spyware.gz</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   RENAMING NEW BLOCKLIST FILE TO .txt&#8221;<br />
echo &#8220;&#8221;<br />
mv $BLOCKLISTDIR/spyware $BLOCKLISTDIR/spyware.txt<br />
echo &#8220;&#8221;<br />
echo &#8221;   DONE&#8221;<br />
echo &#8220;&#8221;</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   DOWNLOADING AND UNZIPPING BLOCKLIST webexploit.gz&#8221;<br />
echo &#8220;&#8221;</p>
<p>curl -L $BASEURL/webexploit.gz -o $BLOCKLISTDIR/webexploit.gz<br />
gunzip -f $BLOCKLISTDIR/webexploit.gz</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   RENAMING NEW BLOCKLIST FILE TO .txt&#8221;<br />
echo &#8220;&#8221;<br />
mv $BLOCKLISTDIR/webexploit $BLOCKLISTDIR/webexploit.txt<br />
echo &#8220;&#8221;<br />
echo &#8221;   DONE&#8221;<br />
echo &#8220;&#8221;</p>
<p>echo &#8220;&#8221;<br />
echo &#8221;   RELOAD THE TRANSMISSION SERVICE SO CHANGES TAKE EFFECT&#8221;<br />
echo &#8220;&#8221;<br />
service transmission-daemon restart<br />
echo &#8220;&#8221;<br />
echo &#8221;   YOUR BLOCKLISTS HAVE BEEN UPDATED&#8221;<br />
echo &#8220;&#8221;
</p></blockquote>
<p>Or you can download the above script by <a href="http://rickylford.com/updateblocklists.txt" target="_blank">clicking here</a>. When you download the file, you need to rename it from updateblocklists.txt to updateblocklists.sh so that you can run it from the command line. You need to make sure that you also run it using the sudo command if you aren&#8217;t logged in as root, otherwise the renaming and removing portions of the script won&#8217;t work. Also, be sure that in the script, you change the BLOCKLISTDIR variable at the beginning of the script to the correct path that points to your blocklist directory for Transmission. Currently this script downloads and processes the following blocklists from Bluetack Internet Security Solutions:</p>
<ul>
<li>level1</li>
<li>level2</li>
<li>level3</li>
<li>proxy</li>
<li>Microsoft</li>
<li>edu</li>
<li>hijacked</li>
<li>spider</li>
<li>spyware</li>
<li>webexploit</li>
</ul>
<p>This script currently, as of March 12th, 2012, adds 374,007 IP addresses to your Transmission blocklist. If there are any other blocklists you&#8217;d like added from Bluetack, don&#8217;t  hesitate to let me know in the comments and I can amend the script as needed.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickylford.com/blog/updating-the-transmission-bittorrent-software-blocklist/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RockTycoon the third</title>
		<link>http://rickylford.com/rocktycoon/rocktycoon-the-third</link>
		<comments>http://rickylford.com/rocktycoon/rocktycoon-the-third#comments</comments>
		<pubDate>Fri, 24 Feb 2012 21:36:14 +0000</pubDate>
		<dc:creator>Ricky</dc:creator>
				<category><![CDATA[RockTycoon]]></category>

		<guid isPermaLink="false">http://rickylford.com/?p=271</guid>
		<description><![CDATA[It seems as if things are never truly finished when you&#8217;re an independent game developer. There&#8217;s always a new issue or a new challenge to overcome, and with such, a lot of time and headaches involved with wrapping your head around programming. I&#8217;ve started the early design phase of RockTycoon version 3 where I will [...]]]></description>
			<content:encoded><![CDATA[<p>It seems as if things are never truly finished when you&#8217;re an independent game developer. There&#8217;s always a new issue or a new challenge to overcome, and with such, a lot of time and headaches involved with wrapping your head around programming. I&#8217;ve started the early design phase of RockTycoon version 3 where I will hopefully be able to introduce a couple of new features that the community has requested, such as giving bands the opportunity to book their own festivals, along with introducing the ability for bands to collaborate with each other on their albums.</p>
<p>I can already tell that version 3 is going to be a bigger headache than version 2 was, but I&#8217;m hoping that with the new changes, the database that hosts RockTycoon will run like a well-oiled machine. I&#8217;ve tossed around the idea of implementing rounds with the RockTycoon community, to which I&#8217;ve received a lot of feedback from users stating they would absolutely hate the idea. My reasonings for implementing rounds have always been backed by a solid idea of how the game should function.</p>
<p>At the current point, it&#8217;s entirely too easy for bands to gain millions of dollars in cash and not have anything to spend their money on. I&#8217;ve implemented new vehicles, new instruments and new venues, and still, it seems as if bands are pulling in way more money than what should be in circulation. The last time I did a check on the money in circulation, it was somewhere in the billions. I&#8217;d prefer the number to be in the low millions.</p>
<p>So, with the implementation of rounds in the game, it makes much more sense that we would have a fresh slate every two or three months so that bands that just signed up in the game have a fighting chance against bands that have been playing the game since it launched. At the moment, some bands are in the tens of millions of fans, where new players would find it difficult and time consuming to even place on the Top Rock Charts. With the introduction of rounds, there would be an even and fair playing field for everyone who signs up for the game.</p>
<p>Just typing up this post and thinking in my head of everything that needs to be done and everything I want to implement in the game shows me that it&#8217;s going to take a lot of work to get RockTycoon where I want it to be.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickylford.com/rocktycoon/rocktycoon-the-third/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>APB Reloaded</title>
		<link>http://rickylford.com/game-reviews/apb-reloaded</link>
		<comments>http://rickylford.com/game-reviews/apb-reloaded#comments</comments>
		<pubDate>Fri, 03 Feb 2012 16:21:36 +0000</pubDate>
		<dc:creator>Ricky</dc:creator>
				<category><![CDATA[Game Reviews]]></category>

		<guid isPermaLink="false">http://rickylford.com/?p=137</guid>
		<description><![CDATA[In perhaps one of the biggest gaming misnomers ever to be used in an MMO, GamersFirst has a land-lock on company names that make absolutely no sense. If you try and break up that name into two separate parts, as it implies, you get Gamers First. This would lead one to believe that they are [...]]]></description>
			<content:encoded><![CDATA[<p>In perhaps one of the biggest gaming misnomers ever to be used in an MMO, GamersFirst has a land-lock on company names that make absolutely no sense. If you try and break up that name into two separate parts, as it implies, you get Gamers First. This would lead one to believe that they are about pleasing the player and making sure they have a wonderful time using any product they release. I found this to be disappointing to say the least, as their customer service is probably the worst I&#8217;ve come across. I&#8217;ll try and keep my review base-lined to letting you know how I feel about APB Reloaded, but it&#8217;s going to be a difficult task when I&#8217;ve been completely slapped in the face by the company that published it.</p>
<p>Game graphics: I found the graphics to be quite enjoyable and well-rounded to the game itself. Although graphical bugs are present in some cases (such as turning a car too sharply and getting it &#8216;stuck&#8217; in the center median of the road, or when driving the dump truck, you squish another car into a wall and the other car gets stuck in the wall and the dump truck and begins violently convulsing back and forth, up and down uncontrollably), they are more amusing than annoying. The physics of watching your character fly off the top of the highest building after getting smashed with a rocket launcher and landing on his head as he hits the ground can also be quite amusing at times.</p>
<p>Game items: The free-to-play aspect hasn&#8217;t hit this game as hard as it&#8217;s hit other games. Although you can purchase additional weapons for real cash, GamersFirst has done a fairly decent job at balancing the premium weapons with the in-game weapons, so it honestly doesn&#8217;t feel as if it&#8217;s a &#8220;pay-to-win&#8221; kind of game. The only aspect of &#8220;pay-to-win&#8221; I see making it&#8217;s way into the game is the fact that premium players gain, in some instances, twice the amount of money and standing after a mission is over, which would make a non-premium player bulk in disgust. Especially if that other premium player is sitting on a big $300k mound of cash while the non-premium player is barely making ends meet with a poor $5k wallet. If being a non-premium player with no money isn&#8217;t bad enough, GamersFirst reminds you of that after EVERY. SINGLE. MISSION. by popping up a box and rubbing it in your face what you&#8217;re missing out on by not being a premium player. Annoying much? Absolutely.</p>
<p>Game mechanics: The missions get old quick. And I mean REALLY quick. Run here, burn that, break in to this building, hack this satellite, steal this car, burn this other car, break into this other window, steal this other car, over and over and over and over again. The only satisfaction coming from the missions is that each time you play someone else, you get a better aspect of the killing-spree side of the game. The only reason to complete the mission objectives is to keep the mission going long enough so that (1) you don&#8217;t lose and (2) you continue your kill streak. Doing the mission objectives isn&#8217;t what makes players want to do the missions, it&#8217;s the battle that ensues during the missions that make the game fun. When you finally get down to beating the mission&#8230;&#8230;..wait, what? GM kicked you from the game to inspect your account? Now you&#8217;re trying to log back in and it says blocked? What? What is going on?</p>
<p>Yea, that was my experience. While playing through a mission with my other clan members, I was booted from the game with a general message that a GM was inspecting my account. After trying to log back in 20 minutes later, I get an error code stating my account has been blocked. For what, you might ask? I have no idea. I wasn&#8217;t using any cheating software (the game is loaded with PunkBuster, so cheating is a waste of time), I wasn&#8217;t cursing or shouting or spamming the in-game chat channel, I wasn&#8217;t being a nuisance to other players, I was doing absolutely nothing that would warrant a ban on my account. So, what do I do? I send an e-mail to the GamersFirst support team, asking for a reason as to why my account was blocked.</p>
<p>All I get back a general canned response stating my account was observed to be using third-party tools (which of course it wasn&#8217;t) and that any and all future tickets regarding my account would be closed without further reading. This is where my belittling of the company name &#8220;GamersFirst&#8221; comes into play. I was blocked from their game for absolutely no reason that I could think of (unless PunkBuster detected something in my game that it thought was bad, when it truly was giving me no added advantage in the game) and when I tried to get a reason, it was canned general message response. The character that I was playing with had over $270k in the wallet, two level 3 character modifications (worth about $90k each) as well as one level 3 weapon modification (worth about $90k as well). In addition to that, I spent $15 to become a premium player for the month, which was indeed cut short due to their premature blocking of my account.</p>
<p>To say I was pissed off would be an understatement. The blocking of my account spoiled the game enough for me that I uninstalled it immediately following their e-mail reply and didn&#8217;t think to look back. All of those hours logged in-character and all of that money saved up was gone without a single reasoning behind it.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickylford.com/game-reviews/apb-reloaded/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>War Inc. Battlezone</title>
		<link>http://rickylford.com/game-reviews/war-inc-battlezone</link>
		<comments>http://rickylford.com/game-reviews/war-inc-battlezone#comments</comments>
		<pubDate>Fri, 03 Feb 2012 14:42:29 +0000</pubDate>
		<dc:creator>Ricky</dc:creator>
				<category><![CDATA[Game Reviews]]></category>

		<guid isPermaLink="false">http://rickylford.com/?p=110</guid>
		<description><![CDATA[I took a few hours last night to jump into the Free 2 Play game War Inc. Battlezone, offered by Steam, to see just how great the game actually is. The only reason I played is due to my falling out with APB: Reloaded (more on this later) and I needed a F2P game to [...]]]></description>
			<content:encoded><![CDATA[<p>I took a few hours last night to jump into the Free 2 Play game War Inc. Battlezone, offered by Steam, to see just how great the game actually is. The only reason I played is due to my falling out with APB: Reloaded (more on this later) and I needed a F2P game to fill that void. This is what I thought of the time I spent in the war zone.</p>
<p>Game graphics: I don&#8217;t know how in the hell they programmed and designed this game, but the frame rate is absolutely abysmal. I don&#8217;t have an ultra high-end laptop, but with an Intel i7-2860QM ~3.0GHz processor, 8GBs of RAM, 256GB solid-state drive, and an NVIDIA GeForce GT 555M 3GB video card, I should have been able to play this game on, at least, medium-quality settings. Nope. I had to drop down to the lowest possible settings just to keep my frame rate from dropping down to 10 FPS. Truly archaic. The graphics of the game (coming from viewing them in the lowest settings) seemed to be fairly decent, but I sure would have loved to experience them in full definition.</p>
<p>Game items: Switching load-outs and character add-on items seemed to be fairly straight-forward, if it wasn&#8217;t for a lot of the items in-game costing real money. One of the things I remembered seeing in the loading videos before the game played was that you didn&#8217;t have to pay real money to be able to enjoy the game, and could stay fairly competitive without spending a single penny. Well, that&#8217;s not the impression I got when looking through the store screens to purchase new weapons. There were maybe two or three weapons I could purchase without using real money, whereas the rest of the items (five or six) had a cost attached that involved me whipping out my wallet. That&#8217;s not what I&#8217;m about. If I play a F2P game, I expect to have a decent selection of items in-game that I can purchase by working my way towards them in-game. I don&#8217;t expect to have to pay any money to stay competitive, which despite what the game tells you in the beginning, it seems quite difficult.</p>
<p>Game mechanics: I&#8217;m assuming it takes a LOT of practice to be able to play this game to it&#8217;s full potential. When I wasn&#8217;t running into battle with a semi automatic rifle and getting my face melted by other players and their hand-guns, I was doing my best to hide in the bushes and snipe people off, instead being greeted by someone walking up behind me and killing me instantly. The cross-hairs in-game are incredibly difficult to see when walking around, as they are a bright white color, which when you tilt your view slightly upwards, blends them straight into the sky, making it nearly impossible to get a good bead on your target unless you&#8217;re aiming at their feet. Scoping your gun and looking down the barrel brings your character to an unnatural crawl, making it so that it&#8217;s nearly impossible to move out of enemy fire if they&#8217;re more than 20m away from your character; shooting without being scoped makes the game too finicky and it&#8217;s hard to actually lock onto your target. It was incredibly difficult finding the perfect balance of when to scope and when to shoot from the hip, a balance I couldn&#8217;t find the entire time I played.</p>
<p>All-in-all, I think they have a solid structure of what a F2P war-game should be, but they are far from executing that correctly. Fix the graphics so that the frame rate doesn&#8217;t drop to unplayable outside of the low-end settings and by God, advertise the game a little more so that players aren&#8217;t having to wait 10 minutes at the end of every round for enough people to join in the game.</p>
<p>I definitely would not have whipped out my wallet to purchase anything in-game, and will not see myself doing so until a lot of the actual mechanics are fixed in the game. I sure wouldn&#8217;t do it any time soon; I&#8217;ve already uninstalled the game.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickylford.com/game-reviews/war-inc-battlezone/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ADW DockPack (NFL)</title>
		<link>http://rickylford.com/android/adw-dockpack-nfl</link>
		<comments>http://rickylford.com/android/adw-dockpack-nfl#comments</comments>
		<pubDate>Fri, 30 Dec 2011 14:23:18 +0000</pubDate>
		<dc:creator>Ricky</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://rickylford.com/?p=89</guid>
		<description><![CDATA[Like my other ADW Launcher EX DockPack, this one comes in NFL team logo flavors. For only $0.99, you can show your support for your favorite NFL team by customizing your ADW Launcher dock image.   Use your favorite barcode scanner for Android to scan the following QR code and be taken to the market [...]]]></description>
			<content:encoded><![CDATA[<p>Like my other ADW Launcher EX DockPack, this one comes in NFL team logo flavors. For only $0.99, you can show your support for your favorite NFL team by customizing your ADW Launcher dock image.</p>
<p><a href="http://rickylford.com/adw-dockpack-nfl/screen01-2" rel="attachment wp-att-90"><img class="alignnone size-thumbnail wp-image-90" title="screen01" src="http://rickylford.com/wp-content/uploads/2011/12/screen011-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://rickylford.com/adw-dockpack-nfl/screen02-2" rel="attachment wp-att-91"><img class="alignnone size-thumbnail wp-image-91" title="screen02" src="http://rickylford.com/wp-content/uploads/2011/12/screen021-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p>Use your favorite barcode scanner for Android to scan the following QR code and be taken to the market to download the DockPack:</p>
<p><a href="http://rickylford.com/adw-dockpack-nfl/qr-2" rel="attachment wp-att-103"><img class="alignnone size-thumbnail wp-image-103" title="qr" src="http://rickylford.com/wp-content/uploads/2011/12/qr1-150x150.png" alt="" width="150" height="150" /></a></p>
<p>Link: <a href="https://market.android.com/details?id=com.rickylford.adwdockpacknfl&amp;feature=search_result">https://market.android.com/details?id=com.rickylford.adwdockpacknfl</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rickylford.com/android/adw-dockpack-nfl/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ADW DockPack</title>
		<link>http://rickylford.com/android/adw-dockpack</link>
		<comments>http://rickylford.com/android/adw-dockpack#comments</comments>
		<pubDate>Fri, 30 Dec 2011 14:19:51 +0000</pubDate>
		<dc:creator>Ricky</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://rickylford.com/?p=83</guid>
		<description><![CDATA[For those of you using an Android phone with the ADW Launcher EX launcher application, you can pick up my ADW DockPack in the Android market for only $0.99. It comes with 40 hi-res colors and textures in full and half-sizes.   Use your Android phone and scan the following QR code to be taken [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you using an Android phone with the ADW Launcher EX launcher application, you can pick up my ADW DockPack in the Android market for only $0.99. It comes with 40 hi-res colors and textures in full and half-sizes.</p>
<p><a href="http://rickylford.com/adw-dockpack/screen01" rel="attachment wp-att-86"><img class="alignnone size-thumbnail wp-image-86" title="screen01" src="http://rickylford.com/wp-content/uploads/2011/12/screen01-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://rickylford.com/adw-dockpack/screen02" rel="attachment wp-att-84"><img class="alignnone size-thumbnail wp-image-84" title="screen02" src="http://rickylford.com/wp-content/uploads/2011/12/screen02-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p>Use your Android phone and scan the following QR code to be taken to the market:</p>
<p><a href="http://rickylford.com/adw-dockpack/qr" rel="attachment wp-att-100"><img class="alignnone size-thumbnail wp-image-100" title="qr" src="http://rickylford.com/wp-content/uploads/2011/12/qr-150x150.png" alt="" width="150" height="150" /></a></p>
<p>Link: <a href="https://market.android.com/details?id=com.rickylford.adwdockpack&amp;feature=search_result">https://market.android.com/details?id=com.rickylford.adwdockpack</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rickylford.com/android/adw-dockpack/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dump GoDaddy Day</title>
		<link>http://rickylford.com/technology/dump-godaddy-day</link>
		<comments>http://rickylford.com/technology/dump-godaddy-day#comments</comments>
		<pubDate>Thu, 29 Dec 2011 14:30:35 +0000</pubDate>
		<dc:creator>Ricky</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://rickylford.com/?p=77</guid>
		<description><![CDATA[Today is the official day of the year that has been deemed as &#8220;Dump GoDaddy Day.&#8221; This move is massively due in part by GoDaddy&#8217;s vocal support of the Stop Online Piracy Act (SOPA), and then recanting that support due to the public outcry of thousands of customers. GoDaddy users are being urged to switch [...]]]></description>
			<content:encoded><![CDATA[<p>Today is the official day of the year that has been deemed as &#8220;Dump GoDaddy Day.&#8221; This move is massively due in part by GoDaddy&#8217;s vocal support of the Stop Online Piracy Act (SOPA), and then recanting that support due to the public outcry of thousands of customers.</p>
<p>GoDaddy users are being urged to switch to a different provider in a boycott of sorts to help damage the bottom-line and reputation of the world&#8217;s leading vendor in .coms.</p>
<p>Are you a GoDaddy user? Will you be switching? I must say, being a GoDaddy customer myself, it&#8217;s awfully tempting.</p>
<p>Update: Apparently, Namecheap is actually starting their own &#8220;move day&#8221;, conveniently titled &#8220;MoveYourDomainDay.&#8221; They are offering transfers for only $6.99 with the coupon code &#8220;SOPASucks.&#8221; The funny part of this is that the first how-to link they posted following the article is also titled &#8220;How to transfer a domain from GoDaddy.&#8221;</p>
<p>To read more about their efforts, head to: <a href="https://www.namecheap.com/moveyourdomainday.aspx">https://www.namecheap.com/moveyourdomainday.aspx</a></p>
<p>I&#8217;m actually thinking this might be a good move. Namecheap, here I come.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickylford.com/technology/dump-godaddy-day/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MediaTomb PS3 icon</title>
		<link>http://rickylford.com/blog/mediatomb-ps3-icon</link>
		<comments>http://rickylford.com/blog/mediatomb-ps3-icon#comments</comments>
		<pubDate>Thu, 29 Dec 2011 01:09:04 +0000</pubDate>
		<dc:creator>Ricky</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://rickylford.com/?p=58</guid>
		<description><![CDATA[I&#8217;ve been dabbing around lately with MediaTomb on my Ubuntu Server 11.10 installation and trying to get it just right. Although I&#8217;m still working on getting .mkv support to playback on the PS3, I spent a little time messing with the aesthetics of the program a little bit. I modified the icon that is displayed [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been dabbing around lately with MediaTomb on my Ubuntu Server 11.10 installation and trying to get it just right. Although I&#8217;m still working on getting .mkv support to playback on the PS3, I spent a little time messing with the aesthetics of the program a little bit. I modified the icon that is displayed on my PS3 for the MediaTomb media server to be something a little nicer. The old MT logo showing up with hideous, and today, I present to you a nice change from the default icon:</p>
<p><a href="http://rickylford.com/mediatomb-ps3-icon/mt-icon120-3" rel="attachment wp-att-61"><img class="alignnone size-full wp-image-61" title="mt-icon120" src="http://rickylford.com/wp-content/uploads/2011/12/mt-icon120.png" alt="" width="120" height="120" /></a></p>
<p><a href="http://rickylford.com/mediatomb-ps3-icon/mt-icon120" rel="attachment wp-att-59"><img class="alignnone size-full wp-image-59" title="mt-icon120" src="http://rickylford.com/wp-content/uploads/2011/12/mt-icon120.jpg" alt="" width="120" height="120" /></a></p>
<p><a href="http://rickylford.com/mediatomb-ps3-icon/mt-icon120-5" rel="attachment wp-att-65"><img class="alignnone size-full wp-image-65" title="mt-icon120" src="http://rickylford.com/wp-content/uploads/2011/12/mt-icon120.bmp" alt="" /></a></p>
<p>I posted the picture three times, not because I&#8217;m dense and hit the button too many times, but because there are three different filetypes that the icon is in: .bmp, .jpg and .png. To use the icon, just save these to your Ubuntu machine and replace the files in this folder:</p>
<blockquote><p>/usr/share/mediatomb/web/icons</p></blockquote>
<p>After you&#8217;ve replaced the three files (mt-icon120.bmp, mt-icon120.jpg and mt-icon120.png), restart your MediaShare instance in Ubuntu and then restart the PS3.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickylford.com/blog/mediatomb-ps3-icon/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DirecTV support</title>
		<link>http://rickylford.com/blog/directv-support</link>
		<comments>http://rickylford.com/blog/directv-support#comments</comments>
		<pubDate>Tue, 11 Oct 2011 17:15:53 +0000</pubDate>
		<dc:creator>Ricky</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://rickylford.com/?p=50</guid>
		<description><![CDATA[It has never been my practice to publicly lambaste a company due to my poor perception of their service. However, dealing with DirecTV certainly pushed me over the edge last night when I called to inquire about their services so that my fiance and I could upgrade our television service. The conversation went something like below: DirecTV (DTV): [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://rickylford.com/blog/directv-support/attachment/directv_detail" rel="attachment wp-att-51"><img class="alignleft size-thumbnail wp-image-51" title="directv_detail" src="http://rickylford.com/wp-content/uploads/2011/10/directv_detail-150x150.jpg" alt="" width="150" height="150" /></a>It has never been my practice to publicly lambaste a company due to my poor perception of their service. However, dealing with DirecTV certainly pushed me over the edge last night when I called to inquire about their services so that my fiance and I could upgrade our television service. The conversation went something like below:</p>
<p><strong>DirecTV (DTV): </strong>Thank you for calling DirecTV, how may I assist you?<br />
<strong>Me:</strong> I&#8217;m interested in finding out about the packages you have to offer and how much we can expect to pay per month before and after our contract terms.<br />
<strong>DTV:</strong> I would be happy to assist you with that information. May I please start by getting your address and zip code to see if you qualify for any additional discounts today?<br />
<strong>Me: </strong>Sure, but I want you to know that I do not plan on purchasing anything this evening. I merely want pricing information as we are still shopping around. (<em>at this point I give her my name, phone number, address and zip code)<br />
</em><strong>DTV:</strong> That&#8217;s great. Which company will you be switching from today?<br />
<strong>Me: </strong>We currently have [our cable provider]. We aren&#8217;t necessarily displeased with their service, we&#8217;re just looking for more satellite and digital options.<br />
<strong>DTV:</strong> (obviously showing disgust) [our cable provider] Ew! Yea, let&#8217;s get away from those guys. (she says this while chuckling a condescending chuckle)<br />
<em>At this point I let out a small chuckle, hoping she wouldn&#8217;t begin laughing at me for the service we already had.</em><br />
<strong>DTV:</strong> Now can I have your social security number so that I can run a credit check to see what other discounts you may qualify for today?<br />
<strong>Me:</strong> I&#8217;m not comfortable giving that to you at this point in time. As I stated previously, I&#8217;m not looking to obtain any service this evening; I only want pricing and general information about your services.<br />
<strong>DTV:</strong> What if I can promise you that you&#8217;ll hang up the phone today, not paying a single penny?<br />
<strong>Me: </strong>My efforts will remain the same. I&#8217;m not purchasing anything tonight.<br />
<em>At this point, she goes into a spiel about how DirecTV is the #1 choice of digital television and begins trying to &#8220;upsell&#8221; me on future orders I may place.<br />
</em> <strong>Me: </strong>I promise you, you aren&#8217;t going to make a sale with me this evening. There&#8217;s no need to try and tell me how great your product is because I&#8217;ve already called and I&#8217;m already interested. I will not be purchasing anything from you tonight. I just want general information.<br />
<strong>DTV: </strong>Okay, Mr. Ford. Can you tell me what information it is that you&#8217;re wanting to get?</p>
<p>Now at this point, I was about to ask her all about the stuff that <strong><em>I</em></strong> was interested in. Before I could get the first word out, the call was disconnected. Not a single thing from her said after that, she didn&#8217;t care to hear about anything I had to say regarding future services or didn&#8217;t bother to answer any more questions. That was it. She hung up the call.</p>
<p>I wrote an e-mail to DirecTV yesterday evening as soon as I was hung up on and explained the entire situation. Upon receiving a pseudo-canned response stating their professionalism and courtesy is their number one priority, I was informed they would then pass the information up to higher management as my case is unique.</p>
<p>I don&#8217;t expect to hear anything back regarding what happened, nor do I care much to. I do, however, know one thing for certain: I will <strong>not</strong> be choosing DirecTV for any digital television service.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickylford.com/blog/directv-support/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Reconstruction</title>
		<link>http://rickylford.com/blog/reconstruction</link>
		<comments>http://rickylford.com/blog/reconstruction#comments</comments>
		<pubDate>Thu, 15 Sep 2011 16:31:14 +0000</pubDate>
		<dc:creator>Ricky</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://rickylford.com/?p=8</guid>
		<description><![CDATA[For any of you that are coming here from RockTycoon or StreetTycoon and looking for the development blog, please bear with me as I am currently overhauling my entire blog. I should hopefully have everything back up and running in a week or so.]]></description>
			<content:encoded><![CDATA[<p>For any of you that are coming here from RockTycoon or StreetTycoon and looking for the development blog, please bear with me as I am currently overhauling my entire blog. I should hopefully have everything back up and running in a week or so.</p>
]]></content:encoded>
			<wfw:commentRss>http://rickylford.com/blog/reconstruction/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

