<?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>randyj.net</title>
	<atom:link href="http://randyj.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://randyj.net/blog</link>
	<description>Mild Ramblings of a Techhead</description>
	<lastBuildDate>Fri, 03 Feb 2012 21:44:21 +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>Perfect Timing</title>
		<link>http://randyj.net/blog/2011/08/14/perfect-timing/</link>
		<comments>http://randyj.net/blog/2011/08/14/perfect-timing/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 04:59:01 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://randyj.net/blog/?p=452</guid>
		<description><![CDATA[Some things you&#8217;re not letting happen right now because the timing isn&#8217;t perfect for you. Some you&#8217;re not letting happen because you are very aware of where you are. But all things, as they are happening, are happening in perfect order. And if you will relax and begin saying, &#8220;Everything in its perfect time. Everything [...]]]></description>
			<content:encoded><![CDATA[<p>Some things you&#8217;re not letting happen right now because the timing isn&#8217;t perfect for you. Some you&#8217;re not letting happen because you are very aware of where you are. But all things, as they are happening, are happening in perfect order. And if you will relax and begin saying, &#8220;Everything in its perfect time. Everything is unfolding. And I&#8217;m enjoying where I am now, in relationship to where I&#8217;m going. Content where I am, and eager for more,&#8221; that is the perfect vibrational stance. </p>
<p>&#8212; Abraham </p>
]]></content:encoded>
			<wfw:commentRss>http://randyj.net/blog/2011/08/14/perfect-timing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turn off the Backlight on a Notebook with Ubuntu</title>
		<link>http://randyj.net/blog/2011/06/13/turn-off-the-backlight-on-a-notebook-with-ubuntu/</link>
		<comments>http://randyj.net/blog/2011/06/13/turn-off-the-backlight-on-a-notebook-with-ubuntu/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 18:03:09 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://randyj.net/blog/?p=409</guid>
		<description><![CDATA[1. sudo apt-get install vbetool 2. sudo vbetool dpms off 3. sudo vbetool dpms on 4. sudo vbetool dpms off Originally found at: http://ubuntuforums.org/showthread.php?t=1097503]]></description>
			<content:encoded><![CDATA[<blockquote><p>1. sudo apt-get install vbetool<br />
2. sudo vbetool dpms off<br />
3. sudo vbetool dpms on<br />
4. sudo vbetool dpms off</p></blockquote>
<p>Originally found at: http://ubuntuforums.org/showthread.php?t=1097503</p>
]]></content:encoded>
			<wfw:commentRss>http://randyj.net/blog/2011/06/13/turn-off-the-backlight-on-a-notebook-with-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Latest PHP/Mysql/Apache From Source</title>
		<link>http://randyj.net/blog/2011/04/14/php-mysql-apache-from-source/</link>
		<comments>http://randyj.net/blog/2011/04/14/php-mysql-apache-from-source/#comments</comments>
		<pubDate>Thu, 14 Apr 2011 15:08:39 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[PHP-MySQL]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[Moodle]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://randyj.net/blog/?p=410</guid>
		<description><![CDATA[I setup a new 64-bit virtual server running CentOS 5.6.    It was a pretty much vanilla install of CentOS minus Apache, PHP and MySQL I  decided to compile MySQL, PHP and Apache from Source.  Everything was installed in /usr/local/ I created sym links to the version directories to keep a copy of the programs just [...]]]></description>
			<content:encoded><![CDATA[<p>I setup a new 64-bit virtual server running CentOS 5.6.    It was a pretty much vanilla install of CentOS minus Apache, PHP and MySQL</p>
<p>I  decided to compile MySQL, PHP and Apache from Source.  Everything was installed in /usr/local/ I created sym links to the version directories to keep a copy of the programs just in case anything went wrong.</p>
<p>ln -s /usr/local/php-5.3.6 /usr/local/php<br />
ln -s /usr/local/mysql-5.5.11 /usr/local/mysql<br />
ln -s /usr/local/httpd-2.2.17 /usr/local/httpd</p>
<p>edited /etc/profile to have /usr/local/mysql/bin and /usr/local/php/bin in PATH variable.  Below was added to the bottom of /etc/profile<br />
<code><br />
PATH=$PATH:/usr/local/mysql/bin:/usr/local/php/bin<br />
export PATH<br />
</code><br />
Steps to Install MySQL Apache and PHP from source</p>
<p>1. Had to install and compile Cmake first for MySQL from source (cmake.org).  I installed it to /usr to keep things simple.</p>
<ul>
<li>cmake .</li>
<li>make -j3</li>
<li>make install</li>
<li>created mysql user and group</li>
<li>changed ownership of data dir to mysql</li>
<li>run mysql_install_db from MYSQL_INSTALL_DIR/scripts/mysql_install_db &#8211;user=mysql</li>
</ul>
<p>2. Apache was configured with:</p>
<p><code>./configure --prefix=/usr/local/httpd --enable-ssl --enable-so --enable-rewrite</code><br />
3. yum install libicu-devel<br />
4. yum install libmcrypt-devel<br />
5. yum install aspell-devel</p>
<p>6. For PHP, I used the following configure options.  Notice this is for a 64 bit install.</p>
<p><code>./configure --prefix=/usr/local/php </code><code>--with-libdir=lib64 --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --enable-sqlite-utf8 --with-apxs2=/usr/local/httpd/bin/apxs --with-mcrypt=/usr/local/mcrypt --with-openssl --with-bz2 --with-curl --with-freetype-dir=/usr --with-png-dir=/usr --enable-gd-native-ttf --with-gettext --with-gmp --with-iconv --with-jpeg-dir=/usr --with-openssl --with-pspell --with-zlib --enable-exif --enable-ftp --enable-magic-quotes --enable-sockets --enable-zip --with-pear --enable-calendar --enable-mbstring --with-ldap=/usr --enable-soap --with-xmlrpc --with-gd --enable-intl </code></p>
]]></content:encoded>
			<wfw:commentRss>http://randyj.net/blog/2011/04/14/php-mysql-apache-from-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On RelationSHIPS</title>
		<link>http://randyj.net/blog/2011/04/02/on-relationships/</link>
		<comments>http://randyj.net/blog/2011/04/02/on-relationships/#comments</comments>
		<pubDate>Sat, 02 Apr 2011 08:51:37 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Friends]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Whatever]]></category>
		<category><![CDATA[Relationships]]></category>

		<guid isPermaLink="false">http://randyj.net/blog/?p=398</guid>
		<description><![CDATA[The following link is from a post that one of my Twitter buds wrote about relationships. I thought it was pretty powerful. Opened my eyes. http://2bigblackmenandapancake.tumblr.com/post/2444023018/give-take]]></description>
			<content:encoded><![CDATA[<p>The following link is from a post that one of my Twitter buds wrote about relationships.  I thought it was pretty powerful.  Opened my eyes.</p>
<p><a title="Give &amp; Take" href="http://2bigblackmenandapancake.tumblr.com/post/2444023018/give-take"></a>http://2bigblackmenandapancake.tumblr.com/post/2444023018/give-take</p>
]]></content:encoded>
			<wfw:commentRss>http://randyj.net/blog/2011/04/02/on-relationships/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Phone Drama</title>
		<link>http://randyj.net/blog/2010/05/09/phone-drama/</link>
		<comments>http://randyj.net/blog/2010/05/09/phone-drama/#comments</comments>
		<pubDate>Mon, 10 May 2010 03:10:03 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[3g]]></category>
		<category><![CDATA[3gs]]></category>
		<category><![CDATA[4g]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[at&t]]></category>
		<category><![CDATA[desire]]></category>
		<category><![CDATA[droid]]></category>
		<category><![CDATA[eris]]></category>
		<category><![CDATA[evo]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[htc]]></category>
		<category><![CDATA[incredible]]></category>
		<category><![CDATA[motorola]]></category>
		<category><![CDATA[nexus one]]></category>
		<category><![CDATA[palm]]></category>
		<category><![CDATA[phones]]></category>
		<category><![CDATA[pre]]></category>
		<category><![CDATA[sprint]]></category>
		<category><![CDATA[t-mobile]]></category>
		<category><![CDATA[verizon]]></category>

		<guid isPermaLink="false">http://randyj.net/blog/?p=388</guid>
		<description><![CDATA[Battle of the Smart Phones Before I switched from my beloved T-Mobile back in 2008 to get the iPhone from AT&#38;T, I waited until the first Android phone was to be released.  I saw the FCC sketches and the prototypes of the G1 and I thought i was an ugly phone.   I didn&#8217;t like the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Battle of the Smart Phones</strong></p>
<p>Before I switched from my beloved T-Mobile back in 2008 to get the iPhone from AT&amp;T, I waited until the first Android phone was to be released.  I saw the FCC sketches and the prototypes of the G1 and I thought i was an ugly phone.   I didn&#8217;t like the &#8220;chin&#8221; and the sliding keyboard looked awkward.  I had the T-Mobile MDA so I was use to the sliding keyboard action.</p>
<p>I had been lusting after the iPhone since it came out in 2007.  I just didn&#8217;t have $600 to plunk down on a phone and I was still under contract with T-Mobile.  So when the iPhone 3G was released summer of 2008 I was excited, but not ready to part with T-Mobile just yet, I decided to wait to see what the G1 would be like.</p>
<p>Since I was disappointed in the design of the G1, I decided to make the switch to AT&amp;T to get the iPhone.   I was sooo in love with the phone when I got it.  The day after, I couldn&#8217;t hardly get any work done.  There was some serious endorphins being kicked off owning the iPhone.  I never have felt so content in my life.  It was  weird feeling.  It was like the iPhone made my life complete.</p>
<p>In 2009, when the iPhone 3GS came out, I had new tech envy.  The 3GS proved to be a definite improvement over the previous generation in speed and memory.  I wouldn&#8217;t be eligible for an upgrade until March of 2010.  After agonizing over it a bit, I decided to just wait until the new iPhone would be release for 2010.</p>
<p><strong>Forward to 2010</strong></p>
<p>Back in December, the school board switch from Alltel to Verizon.  The Motorola Droid was the new hotness and I decided to get it as my work phone.  After using it for a couple of weeks, I hated it!  The screen was too narrow and the on screen keyboard was not very accurate.  Some parts of the UI were just awkward and inconsistent.  It just didn&#8217;t have that iPhone polish and granted, I was a little biased.  I passed it along to a coworker who is completely happy with it.  *kanye shrug*</p>
<p>Next I decided to try out the Palm Pre Plus.   The packaging of the Pre had the new car smell and inhaled the inside the box quite a bit.  It did smell good. *lol*  I thought the Pre was a nice compact phone but the keyboard was an issue for me.  The keys were just too small and I didn&#8217;t like having to slide open the phone every time I wanted to make a text entry.   I longed for an onscreen keyboard.  Voice recognition input would have been helpful.  The UI wasn&#8217;t too bad to navigate.  I found the notification system a little awkward; better than the iPhone&#8217;s but still awkward.  Still unsatisfied, I sent it back and opted for the Droid Eris.</p>
<p>I liked the Eris better than the Pre and Droid.  Even though the screen is smaller than the iPhone&#8217;s, but I got use to it.  The Eris, made by HTC, has the Sense UI &#8220;stuff&#8221; which adds some much needed polish to the Android interface.  It was alot better to use than the Droid to me, but it still had some UI issues.  The on screen keyboard wasn&#8217;t as much as a pain to type on as the Droid, but a pain nonetheless.  Adding shapewriter helped.  Overall, I think my Eris was a lemon.  Battery life was horrible (wouldn&#8217;t last a complete day, where as my coworker didn&#8217;t have any problems), and it didn&#8217;t like to hang on to the 3G signal when I was in Tuskegee.  In Auburn, it wasn&#8217;t much of a problem.  Also, the phone wouldn&#8217;t associate itself with a remembered wireless network automatically.</p>
<p>A month or so later, I discovered that Verizon would be releasing another Android phone called the Incredible which boasted some impressive specs.  It&#8217;s specs are very similar to the Nexus One and the Desire, which are considered to be the &#8220;best&#8221; Android phones out there.  I decided to give it a try.  I preordered the phone which arrived a day after the official release date.</p>
<p>So far, I&#8217;m really impressed with the phone.  It&#8217;s light, fast, and I really like the gorgeous OLED display.  Battery life is excellent even after heavy use.  Reception is pretty good as well.  The camera is light years better than the Eris or any mobile phone camera that I&#8217;ve seen so far.</p>
<p><strong>Touch Decision</strong></p>
<p>Lately, I&#8217;ve been debating whether I should stick with AT&amp;T or not.  The only thing they really have going for them is the iPhone and their 3G speed.  I can consistently get 2MBps download speed in Atlanta and where I now live in Auburn.  I have the MyWi Wifi/USB tether app for the iPhone and it works really well as a hotspot for the iPad (drains the battery like crazy though).  My phone bill is $80+ a month and that&#8217;s with a discount I&#8217;m getting with my previous employer.  That $80+ is for the 450 anytime minutes, 1500 sms/mms for $15 and the mandatory $30 dataplan.  The $30 data plan is a rip off since I&#8217;m mostly on wifi when I&#8217;m at work or home and I don&#8217;t use anywhere near the 5GB cap each month;  I use less than 250MB per month on the data connection.  Since I have so very little daytime minutes, I use Skype alot during the week before 9pm and I&#8217;ve banked alot of daytime minutes in the process.  For a similar plan, I won&#8217;t get much of a deal with the other carriers.  Only Sprint and T-Mobile offer much better deals.  One issue with T-Mobile is that their 3G coverage isn&#8217;t as good as the others, but it&#8217;s no worse than AT&amp;T&#8217;s in the area where I work and live.  My other issue I have with T-Mobile is the lack of any high end Android phones.</p>
<p>There is the rumor that the iPhone is coming to Verizon this year.  I don&#8217;t see that happening and this is why:  Apple and AT&amp;T proudly shows that with the iPhone you can surf and talk at the same time over the 3G network.  Verizon or Sprint&#8217;s EV-DO network does not allow that and since that&#8217;s one of the marketing points of the iPhone, I doubt we&#8217;ll see a iPhone on Verizon&#8217;s 3G network.  That may be a different story when Verizon starts rolling out their LTE network and I can then see a Verizon branded iPhone perhaps next year.  And there&#8217;s also the issue of Apple&#8217;s supposedly 5 year exclusivity contract with AT&amp;T.</p>
<p>Also, the HTC Incredible impressed me to take a second look at the Android phones.  The Nexus One looks bland to me and I don&#8217;t like the its stock Android UI.  I believe it has been rooted and it wouldn&#8217;t be a big issue to get Sense UI on it.   The Incredible and Nexus One&#8217;s sibling, the HTC Desire, should be coming to AT&amp;T soon so says FCC approval on it&#8217;s 3G radio bands.</p>
<p>Sprint is coming out with with a high end Android phone called the HTC EVO 4G this summer.  As a carrier, Sprint probably has the best value in their plans.  Their 3G network is compatible with Verizon&#8217;s; so where ever big Red works, the Now Network should work as well.  I&#8217;m not currently covered by Sprint&#8217;s 4G network yet, but again, I&#8217;m mostly at home or at work where I have wifi access.  The EVO 4G boast some pretty impressive specs as well.  It doesn&#8217;t have an AMOLED display, so I&#8217;m not sure how well battery life will fair with it.</p>
<p>I&#8217;ve been thinking about going the prepaid route since I no longer have an interest in staying with AT&amp;T and to ultimately save a few bucks.  I&#8217;m not that impressed with the iPhone 4.0 update coming out later this summer either.  There are some useful improvements, but not really enough for me to upgrade to the new iPhone.  I may try to cop a 3GS from eBay or Craigslist to get some extra speed.  The iPad pretty much satisfies my Apple gadget needs so I don&#8217;t feel compelled to stick out out with AT&amp;T again for the new iPhone.</p>
]]></content:encoded>
			<wfw:commentRss>http://randyj.net/blog/2010/05/09/phone-drama/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dreaming of Bones</title>
		<link>http://randyj.net/blog/2009/10/18/dreaming-of-bones/</link>
		<comments>http://randyj.net/blog/2009/10/18/dreaming-of-bones/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 16:08:54 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[dreams]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[bones]]></category>
		<category><![CDATA[tv shows]]></category>

		<guid isPermaLink="false">http://randyj.net/blog/?p=381</guid>
		<description><![CDATA[So, I&#8217;m addicted to the TV show Bones! Last night I dreamed I was watching it.  Somehow a dead body ended up in Will Smith&#8217;s pool (yes the actor).  It was green from the algae.  I remember Dr. Brennan wanted to get some drudged from the bottom of the pool so that Dr. Hodges could examine [...]]]></description>
			<content:encoded><![CDATA[<p>So, I&#8217;m addicted to the TV show Bones!</p>
<p>Last night I dreamed I was watching it.  Somehow a dead body ended up in Will Smith&#8217;s pool (yes the actor).  It was green from the algae.  I remember Dr. Brennan wanted to get some drudged from the bottom of the pool so that Dr. Hodges could examine it for particulates.  I also distinctly remember wanted to know what he found.  However, the dreamed ended before I could find out.  <img src='http://randyj.net/blog/wp-includes/images/smilies/icon_rolleyes.gif' alt=':roll:' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://randyj.net/blog/2009/10/18/dreaming-of-bones/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why Auburn</title>
		<link>http://randyj.net/blog/2009/10/13/why-auburn/</link>
		<comments>http://randyj.net/blog/2009/10/13/why-auburn/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 23:24:21 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[Whatever]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://randyj.net/blog/?p=376</guid>
		<description><![CDATA[A few days after excepting the job (and after the board approved it), I drove down to Tuskegee to try and find somewhere decent to live.  I knew trying to find somewhere in Tuskegee I was going to like was going to be a challenge. Before I moved back to Atlanta, I lived in a [...]]]></description>
			<content:encoded><![CDATA[<p>A few days after excepting the job (and after the board approved it), I drove down to Tuskegee to try and find somewhere decent to live.  I knew trying to find somewhere in Tuskegee I was going to like was going to be a challenge.</p>
<p>Before I moved back to Atlanta, I lived in a studio apartment in a duplex that was within walking distance of campus.  Work was 5 to 10 minutes away depending on how many slow cars I got behind or traffic lights I caught.  Often I would roll out of bed and head to work and would come home for lunch.  I really wanted that convenience again.</p>
<p>However, my main concern with living in Tuskegee was security.  My apartment in Tuskegee was broken into twice within six months (between October 2006 and February 2007).  I have an idea who it was.  Granted, it was probably my fault for letting strangers in my house and leaving the windows open all day some days.  I believe that reason Asia disappeared was because of the second break in.</p>
<p>I first looked at an apartment complex where a lot of college students lived.  It was decent by Tuskegee standards.  They had bars on the doors and windows.  However, the apartment manager had all of the leases expire at the same time and I was looking to be moved before that happened.   I also checked another apartment complex out in Tuskegee.  Single bedroom, rent was cheap too.  Perfect for a college student, or someone trying to save some money starting off.  There were no bars on the windows or doors and it look like an easy target for a determined thef.  Even though the units were wired for ADT, someone could still break in your apartment and steal something before the police came.  Plus you have the added emotional baggage of someone violating your stuff.    I figured I could live there for a year or so, save up a lot of cash and perhaps find something else decent in Tusekgee.   I checked out a couple of houses that were for rent, but i just didn&#8217;t like the neighborhood that they were in.</p>
<p>I started  to become tired and frustrated.  It looked as if I wasn&#8217;t going to find something I liked in Tuskegee in timely matter.</p>
<p>Auburn it is!</p>
<p>The biggest issue I had with living in Auburn is the football traffic.  Auburn University&#8217;s football team is doing very well and their home games are well attended by students, alumni and fans.  As if one didn&#8217;t see enough of the variety Auburn University decals affixed to vehicles in all kind of ways, home games added flags on cars and faux tiger tails attached to rear bumpers.</p>
<p>By the time I got to Auburn, it was lunch time and so most of the rental offices were closed.  I was able to check out one place that catered to a lot of college students.  What irked me about a lot of the apartments in Auburn is that they were rented by the rooms and not units.  College town business I guess.  This particular complex only had three bed rooms available, but they said I could rent it  for paying the price of two rooms which came about to be a little over $1100.  $1100 for an apartment in Auburn, Alabama!?!?  $1100 would get me a studio or one bedroom apartment in midtown Atlanta with a decent view.  I started to get a headache and even more frustrated than i was before I left Tuskegee.</p>
<p>After driving around Auburn looking at different places there, I decided to call a friend of mine and asked her where she lived.  I spoke with her before online a few days prior and she told me about the complex where she stayed.  It was a little more than what I really wanted to start paying for a place initially, but the rent was within my preliminary budget.  My other concern was that it was a little further from work which would increase my commute time.</p>
<p>I got the directions from my friend and decided to check the place out.  The complex is called Paces at the Estates and is currently the only apartment complex in the Estates subdivision. The Estates is a relatively new subdivision that have very nice homes from the upper 200s, town homes in the upper 100s and perhaps 2 to 3 bedroom homes in the upper 100s.  The subdivision is in close proximity of the mall, movie theater and a private school.  A Wal-Mart is less than 5 minutes away and Tiger Town (a shopping center) is about 10 minutes away.  It&#8217;s also not far from a main artery of the Auburn/Opelika area where a lot businesses are situated.</p>
<p>I had already seen pictures from the website my friend sent me and it seemed like a really nice place.  And it is.  They only had two one bedrooms available.  One of the first and one of the second floor.  The one on the second floor is cheaper than the top and bottom floor.  The top floor has vaulted ceilings and the bottom floor has a nice stained concrete floors.  I had opted for the cheaper option, but the tenet wasn&#8217;t scheduled to move for a few more weeks and I needed to be moved in right away.  So I decided to take the first floor apartment and I&#8217;m glad I did.  I like the floors anyway and I can stomp all I want to.  My apartment has a study which will be my office.  It&#8217;s currently full of junk right now from the move.  The kitchen has track lighting, and I also got a complementary washing machine.  It was left from the previous tenet and the landlord said I can keep it.  I&#8217;m currently renting a dryer.</p>
<p>About a month ago, I finally got some furniture and bought my first very first tv, a 50 inch Panasonic Plasma.</p>
<p>All in all, things are going pretty good so far.  The job is keeping me busy as expected, but at least they are paying me right this time.  Makes it all worth it.</p>
]]></content:encoded>
			<wfw:commentRss>http://randyj.net/blog/2009/10/13/why-auburn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transition: Complete</title>
		<link>http://randyj.net/blog/2009/09/27/transition-complete/</link>
		<comments>http://randyj.net/blog/2009/09/27/transition-complete/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 03:52:41 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Whatever]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Decisions]]></category>
		<category><![CDATA[Family]]></category>
		<category><![CDATA[Friends]]></category>
		<category><![CDATA[God]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://randyj.net/blog/?p=366</guid>
		<description><![CDATA[The past couple of months have been pretty interesting.  I&#8217;ve moved back to Alabama after excepting to take my old job back with a bigger salary.  Even with the increase, it wasn&#8217;t an easy decision.  I toiled with the idea day and night.  I called and asked other people&#8217;s thoughts and opinions.  My family was [...]]]></description>
			<content:encoded><![CDATA[<p>The past couple of months have been pretty interesting.  I&#8217;ve moved back to Alabama after excepting to take my old job back with a bigger salary.  Even with the increase, it wasn&#8217;t an easy decision.  I toiled with the idea day and night.  I called and asked other people&#8217;s thoughts and opinions.  My family was all in for me going back.  Some of my friends not so much.  My friends knew of the drama I had with the job before and all of the ish that went on.  I went back to Atlanta not looking back and hoping to start my life over there.  God had other plans&#8230;.</p>
<p>I really enjoyed myself at Georgia Tech.  My coworkers were pretty cool and I got to work for one of the most internationally recognized universities in the world.  I learned alot more about admining linux servers thanks to my boss.</p>
<p>All in all, I&#8217;m enjoying being back.  The people are super nice and friendly as usual and most people (as I knew would be) were happy to see me come back.</p>
<p>Moving back  has put a new spin on things with my life and put some other things on hold.  I&#8217;m back to having no social life, but being an introvert, it&#8217;s the least of my worries.</p>
]]></content:encoded>
			<wfw:commentRss>http://randyj.net/blog/2009/09/27/transition-complete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alive Like Me</title>
		<link>http://randyj.net/blog/2009/07/15/alive-like-me/</link>
		<comments>http://randyj.net/blog/2009/07/15/alive-like-me/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 02:55:49 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[Whatever]]></category>
		<category><![CDATA[ramblings]]></category>
		<category><![CDATA[tv shows]]></category>

		<guid isPermaLink="false">http://randyj.net/blog/?p=353</guid>
		<description><![CDATA[Since I&#8217;m caught up on Bleach and my favorite shows have either ended (Battle Star Galatica) or been canceled (Terminator: Sarah Conner Chronicles), or out of season (Lost, Simpson, Family and a bunch others), I&#8217;ve been looking on Hulu to find some new shows to watch.  I started off with &#8220;Lie to Me&#8221; which I [...]]]></description>
			<content:encoded><![CDATA[<p>Since I&#8217;m caught up on Bleach and my favorite shows have either ended (Battle Star Galatica) or been canceled (Terminator: Sarah Conner Chronicles), or out of season (Lost, Simpson, Family and a bunch others), I&#8217;ve been looking on Hulu to find some new shows to watch.  I started off with &#8220;Lie to Me&#8221; which I really enjoyed.  Then, I started watching &#8220;Bones.&#8221;  Also, another good show, but sometimes it was difficult looking at some of those episodes, especially while I was eating.</p>
<p>When I finished with those shows, I once again starting perusing Hulu&#8217;s site to find something new to watch.  I tried a few; some didn&#8217;t appeal to me; some I couldn&#8217;t even finish watching one episode.</p>
<p>I found &#8220;Dead Like Me.&#8221;  I actually had the series in my Netflix queue, but I ended up taking it out because there was just too much stuff I wanted to watch in my queue.  I think I previously saw 2 or 3 episodes so when I started again, I tried to pick up where I left off.  Hulu currently has seasons 1 and 2 on there site.</p>
<p>I&#8217;ve been really enjoying the show.  I&#8217;m now in Season two and I&#8217;m halfway done.  The show is centered around a smart mouth 18 year old girl named &#8220;George,&#8221; short for Georgia.  After her unfortunately demise by a toilet seat from the International Space station, she is &#8220;turned&#8221; into a reaper.  She eventually joins up with other reapers were they meet in a diner (think Waffle House) everyday to receive their &#8220;reap&#8221; assignments from &#8220;Rube&#8221; (lets call him the chef reaper of this group).  We later find out that there are other reaper &#8220;groups&#8221; and different kinds of reapers.  Even pets have reapers.</p>
<p>These reapers receive their assignment on a post-it given to them by Rube.  The post-it only contains first initial, last name, date/time and place where the soul should be reaped.  The reapers have to show up in time, reap the soul (by touching them), and sometimes stand by and watch them die a traffic and often humorous death.  Normally after the person dies, they appear in the same form before death standing next to the reaper looking at their dead body confused.  Of course no one can see them but the reaper and they can pass through people and objects.  The reapers are then to guide the souls on to the next life.  What the souls see before they &#8220;pass on&#8221; is different for each one.  Often the souls asks the reapers what&#8217;s on the other side, but they don&#8217;t really have a clue themselves, but their job is to comfort the soul as much as possible and get them to &#8220;cross on over.&#8221;</p>
<p>Interesting enough, these reapers have physical needs and they have to have a place to stay and eat.  Since reaping doesn&#8217;t pay the bills, they have to get &#8220;real&#8221; jobs.  The main character so far is the only person we know with a real job, even though Rube assures everyone that reaping is serious business and it &#8220;has to be done.&#8221;  George works at a temp agency called Happy Times which is hilarious in and of itself.  I can see that becoming a spin off.  Anyway, when George looks in the mirror, she doesn&#8217;t see her self as she was when she was alive.  To me, the person in the mirror is a lot less attractive and I would assumed obviously so, but she is regarded as pretty throughout the show. *shrug*</p>
<p>Anyway, the writing is very interesting.  The deaths are pretty stupid and some even lame, but it&#8217;s not really about how they died, but who and what they did before they died.  There are some pretty deap episodes and there is some pretty good character development going on with some episodes half focusing on one character in a serious situation while the others are off being silly.  It&#8217;s really a riot.</p>
<p>Of course I don&#8217;t believe in reapers and the so called &#8220;after life.&#8221;</p>
<blockquote>
<p style="text-align: center;">&#8220;For the living know that they shall die: but the dead know not any thing, neither have they any more a reward; for the memory of them is forgotten.&#8221; &#8211; Ecclesiastes 9:5 KJV</p>
</blockquote>
<p style="text-align: left;">But we have this comforting promise:</p>
<blockquote><p>But I would not have you to be ignorant, brethren, concerning them which are asleep, that ye sorrow not, even as others which have no hope.   For if we believe that Jesus died and rose again, even so them also which sleep in Jesus will God bring with him.  For this we say unto you by the word of the Lord, that we which are alive and remain unto the coming of the Lord shall not prevent them which are asleep.  For the Lord himself shall descend from heaven with a shout, with the voice of the archangel, and with the trump of God: and the dead in Christ shall rise first:  Then we which are alive and remain shall be caught up together with them in the clouds, to meet the Lord in the air: and so shall we ever be with the Lord. &#8211; 1st Thessalonians 13-17 KJV</p></blockquote>
<p style="text-align: left;">
<p style="text-align: left;">And I&#8217;ve even considered I really shouldn&#8217;t be watching the show since it&#8217;s so biblically incorrect and what not.  But it&#8217;s just some mild entertainment.</p>
]]></content:encoded>
			<wfw:commentRss>http://randyj.net/blog/2009/07/15/alive-like-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code Code Code&#8230;</title>
		<link>http://randyj.net/blog/2009/07/15/code-code-code/</link>
		<comments>http://randyj.net/blog/2009/07/15/code-code-code/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 00:09:36 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[cars]]></category>
		<category><![CDATA[mazda]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://randyj.net/blog/?p=346</guid>
		<description><![CDATA[The past couple of days, I&#8217;ve been churning out some php code.  I&#8217;ve been making some modifications to the gallery code.  Mostly back end stuff.  I created a script where I can upload photos into a folder on the server and have a PHP page process those photos and add them to an album I [...]]]></description>
			<content:encoded><![CDATA[<p>The past couple of days, I&#8217;ve been churning out some php code.  I&#8217;ve been making some modifications to the gallery code.  Mostly back end stuff.  I created a script where I can upload photos into a folder on the server and have a PHP page process those photos and add them to an album I created.  It&#8217;s alot quicker (and eaiser) than going the web form route.  I also ended up fixing some bugs and making tweaks here and there.  Still needs alot more work.</p>
<p>One of the major changes I made to the gallery site is how the photos were stored.  Before, I had them all lumped into one folder which would make trying to backup and restore the photos somewhere else a nightmare.  Now, they are all stored in folders named after the album they were created for.  Also, I created some code to automatically create a smaller version of the original photo if it didn&#8217;t already exist.  This would save time uploading my album to another host if I needed to.</p>
<p>Last night, I started working on another WordPress theme I&#8217;d like to use.  I saw it on another site and I sort of copped it.   <img src='http://randyj.net/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':grin:' class='wp-smiley' />   I like the color scheme and all, but I will add my own unique touches to it.</p>
<p>I&#8217;ve been tweeting alot lately, perhaps for the past month or so.  I guess I can &#8220;blame&#8221; a friend of mine for that.  He suggested I follow a couple of his Oakwood buddies and they ended up being a very chatty bunch.  It&#8217;s been fun.  Meet some really cool people.  I&#8217;ve only been on Twitter and year, but it feels like it&#8217;s been much longer.   I guess because everyone is talking about it and doing it.  It&#8217;s the thing to do thanks to Ashton Kutcher and Oprah.</p>
<p>My car turned 40K yesterday somewhere on I-20 on the way to work.  I&#8217;ve had it two years and less than 3 months.  The amount of miles I&#8217;ve been putting on it a month have slowed down since I&#8217;ve moved to Atlanta.   All that traveling between sites with the previous job racked up alot of miles.  But she&#8217;s still holding together.</p>
<div id="attachment_347" class="wp-caption aligncenter" style="width: 310px"><a href="http://randyj.net/blog/wp-content/uploads/2009/07/MyMazda3.jpg"><img class="size-medium wp-image-347" title="My Mazda3" src="http://randyj.net/blog/wp-content/uploads/2009/07/MyMazda3-300x225.jpg" alt="My Mazda3" width="300" height="225" /></a><p class="wp-caption-text">My Mazda3</p></div>
]]></content:encoded>
			<wfw:commentRss>http://randyj.net/blog/2009/07/15/code-code-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

