﻿<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title>Brian's Blog</title>
	<updated>2010-03-11T15:37:59Z</updated>
	<id>http://voghan.com/atom.aspx</id>
	<link href="http://voghan.com/atom.aspx" rel="self" type="application/rss+xml" />
	<link href="http://voghan.com" rel="alternate" type="application/rss+xml" />
	<generator uri="http://app.onlinequickblog.com/" version="2.0">Quick Blogcast</generator>
	<entry>
		<title>Week of Android Wrap up</title>
		<link rel="alternate" href="http://voghan.com/2010/02/28/week-of-android-wrap-up.aspx?ref=rss" />
		<id>tag:voghan.com,2010-02-28:9ba05507-0427-4daf-b937-a74ba10ff1b9</id>
		<author>
			<name>Brian Vaughn</name>
		</author>
		<category term="Development" />
		<updated>2010-03-01T04:20:00Z</updated>
		<published>2010-03-01T04:20:00Z</published>
		<content type="html">&lt;span style="font-family: Verdana; font-size: 13px; "&gt;Over the past seven days I have taken time away from work and family to learn how to develop an application for the Android platform. &amp;nbsp;I bought my first android phone last fall and have become excited with the platform. &amp;nbsp;I picked up a book, setup an IDE and started building a couple applications.&lt;br&gt;&lt;br&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;I would have liked to have gotten through more of my book but I only got though seven chapters of the book. &amp;nbsp;I was able to build a handful of application ranging from a To Do List application to a Earthquake monitoring application. &amp;nbsp;It's been interesting to see how to create UIs, capture data, load data from an online xml feed and persist the data to a local database.&lt;/div&gt;&lt;br&gt;I feel like there are a lot of possibilities available developing for the Android platform. &amp;nbsp;I've got a couple ideas about building apps that I think would do well to fit a nitche not found in the android marketplace. &amp;nbsp;I'm hoping to spend about five hours a week finishing the book I'm reading and then building a new application. &amp;nbsp;I'd like to have an app on the marketplace by the end of the year. &amp;nbsp;Hopefully this decision will open up some new opportunities for me.&lt;/span&gt;</content>
	</entry>
	<entry>
		<title>Android Development: Day Four</title>
		<link rel="alternate" href="http://voghan.com/2010/02/26/android-development-day-four.aspx?ref=rss" />
		<id>tag:voghan.com,2010-02-26:e16ceb1a-e8c4-40cd-a475-7d6f94d96588</id>
		<author>
			<name>Brian Vaughn</name>
		</author>
		<category term="Development" />
		<updated>2010-02-26T07:45:00Z</updated>
		<published>2010-02-26T07:45:00Z</published>
		<content type="html">&lt;span style="font-family: Verdana; font-size: 13px; "&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;Today was a long day to not get much accomplished. &amp;nbsp;I was only able to complete one chapter in the book but did finish four laps. &amp;nbsp;In todays chapter we covered a few topics that didn't really flow together but covered a lot of functionality.&lt;/div&gt;&lt;br&gt;The book covered Intents, Broadcast receivers, adapters and internet connectivity in the chapter and we had labs for three of the items. &amp;nbsp;An intent seems to be the way you launch a sub-view and retrieve data from that view. &amp;nbsp;In the lab we created a simple app that had a button that launched the contact list screen. &amp;nbsp;User clicks on a contact and their name is displayed on the original screen. &amp;nbsp;This felt a lot like magic so I went back over this section to figure out how it launched the correct sub-view.&lt;br&gt;&lt;br&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;An adapter is just overriding the default display so you can customize the view. &amp;nbsp;This was a simple change made for the to do list app adding task and created date onto the screen. &amp;nbsp;We did not have a lab yet for broadcast receivers but it seems to be kind of like system wide event listener. &amp;nbsp;Lastly we covered internet as the app I built in the lab parsed an xml http response and displayed the data in a list view. &amp;nbsp;Besides some complex debugging, the application was easy enough to build. &amp;nbsp;There was more code parsing the xml than anything else.&lt;/div&gt;&lt;br&gt;So far I'm seeing a lot more xml being modified than actual code in the apps. &amp;nbsp;I'm curious how many actual lines of code some of these applications are actually requiring. &amp;nbsp;It feels like a lot more xml is required. &amp;nbsp;Debugging the app was extremely hard as well. &amp;nbsp;I was not able to create a simple junit and had to run a special junit to test the code. &amp;nbsp;I still have no idea where my debug statements end up as I do not see a log file being written anywhere. &amp;nbsp;There is still a lot to learn about this platform I'm wondering what I can and can't do.&lt;/span&gt;</content>
	</entry>
	<entry>
		<title>Android Development: Day Three</title>
		<link rel="alternate" href="http://voghan.com/2010/02/25/android-development-day-three.aspx?ref=rss" />
		<id>tag:voghan.com,2010-02-24:553bc25f-6148-4206-9799-a289dd79b857</id>
		<author>
			<name>Brian Vaughn</name>
		</author>
		<category term="Development" />
		<updated>2010-02-25T05:45:00Z</updated>
		<published>2010-02-25T05:45:00Z</published>
		<content type="html">&lt;span style="font-family: Verdana; font-size: 13px; "&gt;Today was a slow but productive day for me. &amp;nbsp;I was able to finish reading two chapters and finished two labs. &amp;nbsp;I've got one more lab to finish for the last chapter but I'll punch that out tomorrow. &amp;nbsp;Today's topics were UI design and Android life cycle which were big chapters with lots of reading. &amp;nbsp;&lt;/span&gt;&lt;div&gt;&lt;span style="font-family: Verdana; font-size: 13px; "&gt;&lt;br&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style="font-family: Verdana; font-size: 13px; "&gt;Android is interesting in that it will keep processes alive in the background and starting killing applications as it needs resources. &amp;nbsp;It's almost like thread processing where your app will flow through different priority levels as it switches state.&lt;br&gt;&lt;br&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;UI Design is not my favorite topic since it reminds me of Swing. &amp;nbsp;The UI in android can be all laid out in java but the best practice is to use XML. Makes sense when your UI concerns are more about UI component layout than client side scripting. &amp;nbsp;It is interesting to see how Android manages their menus. &amp;nbsp;Their menus slide up from the bottom of the phone and can also act as popup windows. &amp;nbsp;This can lead to a crisp, clean UI design if you want that look.&lt;/div&gt;&lt;br&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;With only four chapters down and seven more to read I don't think I'll finish the book this week. &amp;nbsp;I hope to get though enough of the topics this week to feel comfortable with Android development. &amp;nbsp;So far I feel like I've only seen the tip of the iceberg. &amp;nbsp;My next couple chapters deal with persisted data and more guts of the android framework. &amp;nbsp;Hopefully we'll be adding some real good stuff to the To Do List app I've been building in the book.&lt;/div&gt;&lt;/span&gt;&lt;/div&gt;</content>
	</entry>
	<entry>
		<title>Android Developer</title>
		<link rel="alternate" href="http://voghan.com/2010/02/24/android-developer.aspx?ref=rss" />
		<id>tag:voghan.com,2010-02-23:ff422786-dbaa-4ba1-badf-ba1cbc635fcc</id>
		<author>
			<name>Brian Vaughn</name>
		</author>
		<category term="Development" />
		<updated>2010-02-24T05:29:00Z</updated>
		<published>2010-02-24T05:29:00Z</published>
		<content type="html">&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: medium 'Times New Roman'; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" class=Apple-style-span&gt; 
&lt;DIV style="PADDING-BOTTOM: 0px; LINE-HEIGHT: normal; BACKGROUND-COLOR: rgb(255,255,255); MARGIN: 6px; MIN-HEIGHT: 1100px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; FONT-FAMILY: Verdana; COUNTER-RESET: __goog_page__ 0; COLOR: rgb(0,0,0); FONT-SIZE: 10pt; PADDING-TOP: 0px"&gt;
&lt;DIV style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px"&gt;Well you might say I've decided to look for something new to play with but I am intrigued to start looking on writing applications that will run on the Android platform. &amp;nbsp;I've been thinking a lot about it and I knew that if I didn't make a significant effort to set aside time to accomplish this, it would never occur. &amp;nbsp;So I decided to take a week off of work and hunker down reading a book on Android development and punching out a couple simple applications from the book.&lt;/DIV&gt;&lt;BR&gt;
&lt;DIV style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px"&gt;Day one of the exercise went fairly well with me reading the first two chapters and coding the first two example applications. &amp;nbsp;It didn't end well because I was unable to get either application working via the emulator. &amp;nbsp;Like any software project there is a certain amount of setup to be performed and it's always fun setting up a new environment you've never worked in before.&lt;/DIV&gt;&lt;BR&gt;
&lt;DIV style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px"&gt;As it turns out my book, which was published in 2009, was written when there was only one version of Android (there are now four) and somethings have changed. &amp;nbsp;I installed JDK 1.6, Eclipse 3.5, Android plugin and downloaded the Android SDK fairly easily. &amp;nbsp;Everything went well until it seems Google decided to not actually provide the sdk but instead a setup tool. &amp;nbsp;I think this is were things went horribly wrong about 9 pm Monday night.&lt;/DIV&gt;&lt;BR&gt;
&lt;DIV style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px"&gt;Building my first application didn't have me writing any code because the Android plugin did all the work. &amp;nbsp;This was fairly easy to do, name your application hello world and you're set. &amp;nbsp;The problem came when I couldn't figure out how to get the emulator to start and then I didn't realize I'd have to wait five minutes for the device to actually start. &amp;nbsp;Imagine me sitting at my desk looking at a window that looks like a picture of a phone....expecting something to happen.&lt;/DIV&gt;&lt;BR&gt;
&lt;DIV style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px"&gt;By this point I'm cursing my computer that is horribly slow (P4 1.6 with 756MB of RAM I bought in 2000) because flipping from my browser to eclipse takes a minute and flipping between files in eclipse takes minutes. &amp;nbsp;After banged my head on my desk and I started shopping for a new laptop. &amp;nbsp;I had suddenly remembered why I hated working on code at home, it was painful to work in an IDE and I just wasn't interested in buying a new computer. &amp;nbsp;Clearly that's no longer the case because I bought a new laptop this morning.&lt;/DIV&gt;&lt;BR&gt;
&lt;DIV style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px"&gt;Talk about upping the ante, not only am I taking a week off of work for this but now I just bought a new laptop to develop on. &amp;nbsp;After watching the kids this morning and trying again to do something on my dinosaur of a pc, I took Colin and Leah to Best Buy to pick up a cherry red Dell laptop. &amp;nbsp;It's my second Dell and since the first one mostly survived the kids I felt safe buying another Dell.&lt;/DIV&gt;&lt;BR&gt;Buying a new laptop means setting up a new environment again! Oh joy! &amp;nbsp;This time I decided to skip the book's setup and checkout Google's online documentation. &amp;nbsp;I ran accross it while trouble shooting all the issues I had the night before. &amp;nbsp;This time I added the tool folder and jdk to my path and created my emulator via the command line. Now I have two working Android programs running on my fake phone!&lt;BR&gt;&lt;BR&gt;
&lt;DIV style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px"&gt;I think part of my problems last night were CKI: chair keyboard interface. &amp;nbsp;When launching the emulator, the program takes a while to get to the android home screen. &amp;nbsp;I was expecting the emulator to pop up my simple apps immediately. &amp;nbsp;Well that's not how it works. &amp;nbsp;The emulator opens a fully operational android os that looks just like the core 1.5 build (which I chose) found on a phone. &amp;nbsp;I can then find my applications on the emulator just like any other app.&lt;BR&gt;&lt;BR&gt;&lt;/DIV&gt;Now that I have finished the basics I hope to dig into the rest of the book and learn to write mobile applications I will someday put on the Android Marketplace. &amp;nbsp;I have a couple ideas bouncing in my head and one app I think would be killer but I'm holding onto it and I hope to see if it's possible. &amp;nbsp;I'm really excited about this as an opportunity to branch out into something different. &amp;nbsp;Feast or famine, I'll try to post my journey on the blog for anyone interested to follow.&lt;/DIV&gt;&lt;/SPAN&gt;</content>
	</entry>
	<entry>
		<title>Is it an iPad world?</title>
		<link rel="alternate" href="http://voghan.com/2010/01/31/is-it-an-ipad-world.aspx?ref=rss" />
		<id>tag:voghan.com,2010-01-31:98112804-55d9-404e-8360-a58b7ee0af2b</id>
		<author>
			<name>Brian Vaughn</name>
		</author>
		<category term="Technology" />
		<updated>2010-01-31T18:14:00Z</updated>
		<published>2010-01-31T18:14:00Z</published>
		<content type="html">&lt;span style="font-family: Verdana; font-size: 13px; "&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;With very little suspense, Apple announced the their computing tablet: the iPad. &amp;nbsp;For a couple weeks now we knew that Apple had something up their sleeve as many gadget sites had started reporting rumors about the device. &amp;nbsp;It also makes sense that Apple would want to show of theirs soon since most companies were showing their tablets at CES a couple weeks ago.&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;So far the iPad has gotten a lot of criticism from it's competitors as just a "bigger iPod touch." &amp;nbsp; In reality this is a fair complaint because at launch the device does not offer any real innovation. &amp;nbsp;There is no camera, no phone capabilities and no flash support. &amp;nbsp;This device is just a really big iPod touch. &amp;nbsp;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;What the device does have an extremely large upside. &amp;nbsp;For the home there really isn't a need for a desktop or laptop computer unless you are working from home. &amp;nbsp;The casual computer user is surfing the web, sending emails and post photos online...three things you really don't need a powerful computer to accomplish. &amp;nbsp;In fact now that I have a smart phone I rarely use my laptop or desktop at home. &amp;nbsp;I only use those for working from home or writing a blog post. &amp;nbsp;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;I can envision a future where you have tablets and cell phones linked together as communication devices in the home. &amp;nbsp;Maybe you tablet sits on the wall in your kitchen with a dock for your phone and acts as a video phone. &amp;nbsp;You can take the call their or transfer it to your cellphone. &amp;nbsp;I can also see the tablet as a savior for the print media industry. &amp;nbsp;Instead of spending money printing a newspaper or magazine, you'll be able to open an application and flip through the newspaper or magazine on your tablet. &amp;nbsp;I can also see applications for a tablet at school where students can take perfect notes because their teacher's lecture will be converted from voice to text. &amp;nbsp;Throw out your three ring binder and pick up a tablet.&lt;/div&gt;&lt;br&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;So the question becomes who's tablet will win and can we handle a three operating system universe. &amp;nbsp;Google has thrown their hat into the game with Android tablets coming out soon. &amp;nbsp;Microsoft has always had an eye on the tablet industry and has never had a device take off. &amp;nbsp;Apple wants to convert all their iPod users into iPad users but that might not be as easy as it seems. &amp;nbsp;I think we are a very long way aways from my vision for tablet computing. &amp;nbsp;Ten years from now we may very well be only using tablets and smart phones but more likely it will be twenty years before that all become common place. &amp;nbsp;My recommendation is to not buy any of the first incarnations of these devices because in a couple years their you'll get so much more out of them. &amp;nbsp;If you do happen to love gadgets, like me, you probably will pick one up to play with but don't be surprised when next years model has a camera and supports VoIP.&lt;/div&gt;&lt;/span&gt;</content>
	</entry>
	<entry>
		<title>Finished up Bayonetta</title>
		<link rel="alternate" href="http://voghan.com/2010/01/17/finished-up-bayonetta.aspx?ref=rss" />
		<id>tag:voghan.com,2010-01-17:bfd50af1-599f-4624-ac89-f45025f78e2a</id>
		<author>
			<name>Brian Vaughn</name>
		</author>
		<category term="Gaming" />
		<updated>2010-01-18T04:09:00Z</updated>
		<published>2010-01-18T04:09:00Z</published>
		<content type="html">&lt;span style="font-family: Verdana; font-size: 13px; "&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;Now there are certain games that hit my sweet spot. &amp;nbsp;Games like Devil May Cry or Ninja&amp;nbsp;Gaiden&amp;nbsp;or even Ninja Blade fulfill my Highlander desire to kick ass and carry a sword. &amp;nbsp;Bayonetta&amp;nbsp;builds on the foundation of Devil May Cry and creates a story you'd expect to of came out of junior high boy. &amp;nbsp;You play as&amp;nbsp;Bayonetta, a hot witch, killing all kinds of angelic forms on your way to recover your forgotten past. &amp;nbsp;To say the story is over the top is an understatement as you pull off maneuvers in a fighting style that is a mix of poll dancer, samurai and trick shot artist.&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;What Bayonetta&amp;nbsp;does right is they make the game extremely approachable with an Easy and Very Easy setting available (I beat the game on normal). &amp;nbsp;The game has a combination of sword play and shooting where you have guns in both of your hands and connected to your shoes. &amp;nbsp;You will be asked to perform multiple combos kicking, shooting and slashing your way to killing angels and gathering halos. &amp;nbsp;The combat is very enjoyable as you will be rewarded for learning the combos and mastering Witch Time. &amp;nbsp;Witch Time is&amp;nbsp;Bayonetta's&amp;nbsp;version of bullet time which is activated by dodging an enemies strike at the last possible moment. &amp;nbsp;This will slow down time and allow you to inflict as much damage as possible in a short period of time.&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;Even though&amp;nbsp;Bayonetta&amp;nbsp;is a Japanese developed game it does not fall into many of the pitfalls previous actions games have. &amp;nbsp;The best thing I can tell you is you will not back track in any of the levels. &amp;nbsp;This is a very welcome decision because in Devil May Cry 4 you essentially played every level twice and fought every boss three times. &amp;nbsp;You will also be thankful the quick time action events are done well. &amp;nbsp;You will have to hit keys but they flow very will with the existing combat in the game.&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;Now&amp;nbsp;Bayonetta&amp;nbsp;is not all roses. &amp;nbsp;There are a few things the game does not do well. &amp;nbsp;For the most part you will face some fairly moderate challenges in the game but some enemies will frustrate the hell out of you. &amp;nbsp;I found that I needed to rely on making magic items to recover health, deflect damage or increase the damage of your attacks. &amp;nbsp;In a very typical&amp;nbsp;&amp;nbsp;Japanese game attribute, you can get items from destroying benches, statues, potted plants and there will be items hidden in the levels for you to find. &amp;nbsp;Over time you can gather enough elements to create items of either a weak or strong form. &amp;nbsp;You will also collect halos to spend on items, techniques and accessories to help you become a better fighter. &amp;nbsp;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;If you do get stuck and need halos, there is an area to grind and get cheap halos and collect elements. &amp;nbsp;At the beginning of chapter one you will arrive at a train station. &amp;nbsp;Run around and break all the benches on the second level then hop on the train as it leaves the station. &amp;nbsp;You'll get an easy 10,000 halos plus any items you find for breaking all those benches. &amp;nbsp;There is also a nice reward sitting on the tracks after the train has left. &amp;nbsp;This can be repeated indefinitely.&lt;br&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;I can not express to you how good&amp;nbsp;Bayonetta&amp;nbsp;is as an action game. &amp;nbsp;The game looks good, runs good the entire time and makes a fairly long game enjoyable. &amp;nbsp;The game has 16 levels that took me around 14 hours to complete. &amp;nbsp;If you can look past the crazy story, aggressive sexuality and occasional frustrating battle sequences you will find an enjoyable game that you won't finish in a weekend.&amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/span&gt;</content>
	</entry>
	<entry>
		<title>Quick Impressions of Bayonetta</title>
		<link rel="alternate" href="http://voghan.com/2010/01/11/quick-impressions-of-bayonetta.aspx?ref=rss" />
		<id>tag:voghan.com,2010-01-11:711051e8-b5e6-460f-a2ce-3f96391ab063</id>
		<author>
			<name>Brian Vaughn</name>
		</author>
		<category term="Games" />
		<updated>2010-01-12T02:31:00Z</updated>
		<published>2010-01-12T02:31:00Z</published>
		<content type="html">&lt;span style="font-family: Verdana; font-size: 13px; "&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;From the original creator of Devil May Cry comes Bayonetta: a action game involving a witch fighting Angels and other entities sent from heaven. &amp;nbsp;The game play is fairly entertaining for a shoot and slash game in the mold of Devil May Cry. &amp;nbsp;The combat doesn't feel as good as Devil May Cry or Ninja Gaiden but so far it plays a little bit easier then those games. &amp;nbsp;The story in the game is a bit off center with a few missing parts. &amp;nbsp;Hopefully they will clue us in more as the game goes on. &amp;nbsp;I have this odd feeling that I will be playing as another character somewhere in the middle of this game. Lets hope this game doesn't start making me back track or face the same boss six times.&lt;br&gt;&lt;/div&gt;&lt;/span&gt;</content>
	</entry>
	<entry>
		<title>Nexus One Video</title>
		<link rel="alternate" href="http://voghan.com/2010/01/05/nexus-one-video.aspx?ref=rss" />
		<id>tag:voghan.com,2010-01-05:8fcf90fe-a56b-4a7f-bc8d-22e8a8a60b90</id>
		<author>
			<name>Brian Vaughn</name>
		</author>
		<category term="Phones" />
		<updated>2010-01-05T20:42:00Z</updated>
		<published>2010-01-05T20:42:00Z</published>
		<content type="html">&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/I6COwgigJ-g&amp;amp;color1=0xb1b1b1&amp;amp;color2=0xcfcfcf&amp;amp;hl=en_US&amp;amp;feature=player_embedded&amp;amp;fs=1"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowScriptAccess" value="always"&gt;&lt;embed src="http://www.youtube.com/v/I6COwgigJ-g&amp;amp;color1=0xb1b1b1&amp;amp;color2=0xcfcfcf&amp;amp;hl=en_US&amp;amp;feature=player_embedded&amp;amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="425" height="344"&gt;&lt;/object&gt;
&lt;br&gt;
&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Welcome to the new Google phone, Nexus One. &amp;nbsp;The phone will come out on T-mobile to start but will be coming to Verizon and Vadafone later in 2010. &amp;nbsp;The phone is fairly impressive with all the features it contains. &amp;nbsp;I'm a little disappointed that Sprint has not joined the party but maybe they will eventually. &amp;nbsp;I guess I now know why Verizon was off loading the Eris for so cheap. &amp;nbsp;No one would want one of those if they could get a Nexus One.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://www.androidcentral.com/googles-nexus-one-videos"&gt;http://www.androidcentral.com/googles-nexus-one-videos&lt;/a&gt;&lt;br&gt;&lt;/div&gt;</content>
	</entry>
	<entry>
		<title>A Decade in Technology</title>
		<link rel="alternate" href="http://voghan.com/2010/01/03/a-decade-in-technology.aspx?ref=rss" />
		<id>tag:voghan.com,2010-01-03:74ccb337-b611-40c7-8fa0-be8fff94a99a</id>
		<author>
			<name>Brian Vaughn</name>
		</author>
		<category term="Tech" />
		<updated>2010-01-03T15:48:00Z</updated>
		<published>2010-01-03T15:48:00Z</published>
		<content type="html">&lt;span style="font-family: Verdana; font-size: 13px; "&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;The past decade has been amazing technology wise. &amp;nbsp;We have seen so many new innovations in communication, computing and accessing media over the past ten years. &amp;nbsp;I definitely think the 2000s will go down as the start of the information age.&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;Over the past ten years we've seen high definition TV, LCDs, DVD, BluRay, video on demand, digital video recorders and streaming video change the way we watch our TV. &amp;nbsp;The idea of a VCR or VHS tapes has completely become irrelevant since we can now records shows with DVRs and watch movies with DVDs and BluRays. &amp;nbsp;We are no longer watching TV on square tube TVs either as almost everyone now has made the move to HDTVs.&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;We are also no longer listening to tapes or CDs. &amp;nbsp;We now have iTunes and MP3s to listen to music and podcasts. &amp;nbsp;We started with Napster to listen to music free and ended up with services like iTunes and Zune Marketplace to purchase music. &amp;nbsp;No one carries a Dicsman anymore, instead it's ipods and other mp3 players.&lt;/div&gt;&lt;br&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;I remember buying my first cell phone in 1999 with regional coverage, roaming fees and all it could do was make calls and send texts. &amp;nbsp;Now phones are practically replacements for computers with web browsers, apps and built in tools to help you be keep up with your friends. &amp;nbsp;For some the past decade means their home phone service is no longer provided by the phone company. &amp;nbsp;We now have voice over IP which allows us to not be locked into the phone company for service. We also have voice messaging so we are no longer reliant on answering machines.&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;At the beginning of the decade the communicating over the internet meant email and chat rooms. &amp;nbsp;Now we have seen the rise of web 2.0 with social networking sites like MySpace, FaceBook, Twitter and LinkedIn. &amp;nbsp;We now read our new online instead of on a news paper or by watching the evening news. &amp;nbsp;Digital media may not have completely taken over but in another ten years print will be dead.&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;We have also seen the rise of online stores like Amazon.com and retail stores expanding their presence with their own online stores. &amp;nbsp;We have seen auction sites like eBay and Craig's List emerge as sites people can resell items. &amp;nbsp;Shopping has really been changed over the past ten years by the maturing of the internet.&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;It will be very fascinating to see what new technologies will emerge in the next decade. &amp;nbsp;Will we see the tablet make a roaring comeback to replace laptops? &amp;nbsp;What will we see next out of cellphones? &amp;nbsp;Will we even use desktop pcs in ten years or will they be replaced with something we can dock and un-dock as needed. &amp;nbsp;&lt;/div&gt;&lt;/span&gt;</content>
	</entry>
	<entry>
		<title>New Years Resolutions</title>
		<link rel="alternate" href="http://voghan.com/2010/01/02/new-years-resolutions.aspx?ref=rss" />
		<id>tag:voghan.com,2010-01-02:e8dd2585-6d47-4760-9ef4-058948c651b7</id>
		<author>
			<name>Brian Vaughn</name>
		</author>
		<category term="General" />
		<updated>2010-01-02T13:44:00Z</updated>
		<published>2010-01-02T13:44:00Z</published>
		<content type="html">&lt;span style="font-family: 'Times New Roman'; font-size: medium; "&gt;&lt;div style="margin-top: 6px; margin-right: 6px; margin-bottom: 6px; margin-left: 6px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Verdana; font-size: 10pt; background-color: rgb(255, 255, 255); min-height: 1100px; counter-reset: __goog_page__ 0; line-height: normal; "&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;This year I actually do have some New Years resolution I want to share. &amp;nbsp;In the past I have never bothered with resolutions because I felt they always get broken a couple months later. &amp;nbsp;This time I'm going to pick some I should have no problems achieving.&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;1) Lost 25 pounds&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;2) Walk Rudy on days I don't do baths&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;3) Play 25 rounds of golf&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;4) Hit the range 50 times&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;5) Take golf lessons&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;6) Take Colin golfing 5 times&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;7) See 10 movies in a theater&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;8) Take Colin and Leah to a baseball game&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;9) Build an Android app&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;10) Buy a new car&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;By far I feel losing weight should be my top priority. &amp;nbsp;Over the past couple years I've gained 25 pounds so I feel I should be able to drop this weight. &amp;nbsp; &amp;nbsp;By walking Rudy on a regular basis I think I can drop some of this weight. &amp;nbsp;Before we moved to our current house we used to walk Rudy a lot but now that has dropped off. &amp;nbsp;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;Now my golf game is no where near where it used to be. &amp;nbsp;Mostly this is because I'm not playing as often and not practicing as often either. &amp;nbsp;I feel I should be able to play more this year now that I know about my Gout. &amp;nbsp;I lost several rounds because of foot pain over the summer. &amp;nbsp;I also want to get a pro to watch my swing, make improvements and keep me playing my best. &amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;Part of my resolutions are to have more family activities. &amp;nbsp;I feel Colin is probably old enough to go to the range and play on the mini pitch and put by my house. &amp;nbsp;Colin can really hit the ball well so I think he's now ready to learn how to play golf. &amp;nbsp;With the new outdoor baseball stadium I think it will be exciting to take the kids to a game. &amp;nbsp;I've taken Colin to a game at the dome but Leah has never seen a baseball game. &amp;nbsp;I'd also like to see more movies in theaters. &amp;nbsp;We never go to movies and I think it's time to end that.&lt;/div&gt;&lt;br&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;My last two resolutions are for me to buy a new car and to build an Android app for my phone. &amp;nbsp;I've been looking at cars for the past nine months and will not buy a car till maybe this Spring. &amp;nbsp;I've been driving my wife's old car for maybe five years now so it's time to get my own car.&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;I've gotten an Android phone so now I'm going to build an application. &amp;nbsp;I have not decided on what that app will do but I'm definitely going to build something. &amp;nbsp;It may be a golf app or maybe something I can't find in the app store. &amp;nbsp;Who knows but it will be good to learn a new tech and make something.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/span&gt;</content>
	</entry>
	<entry>
		<title>A Decade in Review</title>
		<link rel="alternate" href="http://voghan.com/2009/12/31/a-decade-in-review.aspx?ref=rss" />
		<id>tag:voghan.com,2009-12-31:69cb0e1f-9998-433d-a9e0-90dd3624788b</id>
		<author>
			<name>Brian Vaughn</name>
		</author>
		<category term="General" />
		<updated>2010-01-01T01:02:00Z</updated>
		<published>2010-01-01T01:02:00Z</published>
		<content type="html">&lt;span style="font-family: Verdana; font-size: 13px; "&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;It's kind of bizarre thinking that the decade is almost over. &amp;nbsp;By far it's been the best decade I've been a live but then again I'm not that old. &amp;nbsp;The decade started out with me getting engaged and married to my wife Erin. &amp;nbsp;I was working for a consulting company filling in spots using PL/SQL and C mostly. &amp;nbsp;That job ended shortly after the tech bubble burster in 2001. &amp;nbsp;I spent a few months unemployed but landed at a company that would make impacts on my career I'd never realize at the time.&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;I spent three years at Gelco as a software engineer where I met my first true mentor. &amp;nbsp;What I learned at Gelco was to not just write software but ti think about writing good software. &amp;nbsp;Most software developers just care about writing code without worrying if it performs, maintainable or simple. &amp;nbsp;I also learned to never stop learning. &amp;nbsp;You need to keep sharp by reading books and writing code on the side to make sure you can keep yourself relevant.&lt;/div&gt;&lt;br&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;Over the past decade I watched my family grow from just Erin and I to adding our dog Rudy, then the birth of our son Colin and eventually the birth of our daughter Leah. Having Colin and Leah has really made this past decade the best times of my life. &amp;nbsp;I love waking up with them and having breakfast together. &amp;nbsp;It's been amazing to watch them grew up and see how neat they really are.&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;I realize I have been extremely lucky in life and have benefited from hard work. &amp;nbsp;I realize I'm not the best software developer out there but I have a strong work ethic and the ability to explain technical issues to multiple audiences. &amp;nbsp;I've found myself is a great place at my current company and can't imagine leaving. &amp;nbsp;I hope the next ten years are as great as the past ten have been.&amp;nbsp;&lt;/div&gt;&lt;/span&gt;</content>
	</entry>
	<entry>
		<title>Revisiting my Smartphone vs Zune HD post</title>
		<link rel="alternate" href="http://voghan.com/2009/12/29/revisiting-my-smartphone-vs-zune-hd-post.aspx?ref=rss" />
		<id>tag:voghan.com,2009-12-29:dac8f637-eb9d-477a-8d5f-8e70c39da486</id>
		<author>
			<name>Brian Vaughn</name>
		</author>
		<category term="Phones" />
		<category term="Zune" />
		<updated>2009-12-29T15:08:00Z</updated>
		<published>2009-12-29T15:08:00Z</published>
		<content type="html">&lt;span style="font-family: arial, sans-serif; font-size: 13px; "&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;So I'm kind of obsessed about my phone and anything Android right now. I'm thinking smart phones are crazy awesome with easy internet access and tons of free apps to make your life easier. &amp;nbsp;The iPhone may have more apps than the Android market but with over ten thousands apps in the Android market place you'll probably find anything you need. &amp;nbsp;I'd say that I use my phone more for surfing the web and using apps than I do for making actual phone calls.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;I do realize I get a bit obsessed about gadgets when I get one. Just look at how I embraced the zune. I really like that device and service but its kind of a failure. &amp;nbsp;The zune was advertised nowhere this holiday season. When I was in Best Buy holiday shopping I could barely find a points card and didn't even see a zune hd on display. Feels like either Microsoft is going to re-brand the zune or drop the device.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;Microsoft just opened up the app marketplace for their Zune HD device with a whole whopping 16 apps. &amp;nbsp;There are 12 games and 4 "other" apps. &amp;nbsp;Seems Microsoft has seriously dropped the ball on the app department. &amp;nbsp;Microsoft has decided to compete with the iPod touch with a mostly disconnected device that can play music and games. &amp;nbsp;I think Microsoft is too concerned with matching what the competition has to offer instead of looking at the market space and deciding where the competition is heading.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;One has to look at Google's vision for the Android to see the future is devices connected to data networks. &amp;nbsp;It was over 20 years ago we first stated seeing tablet computers. &amp;nbsp;Back then they didn't make much general consumer sense but now with the raise of the internet, social networking and online gaming, the idea of having a compact computer you can carry in your pocket makes does. &amp;nbsp;These new smart phones are very close to the original vision of the tablet PCs.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;I'm using my phone more as a hand held computer than an actual phone. &amp;nbsp;I have access to email, docs, internet, social networks, news and games on my phone. &amp;nbsp;The evolution of the cellphone is going to be a device &amp;nbsp;connected to a data network that allows you to do Voice over IP. &amp;nbsp;There will not be a need for an actual voice contract counting minutes because it will be transmitted as pure data. &amp;nbsp;This makes me feel that the Zune HD is dated and will not have make much of an impact in the market place. &amp;nbsp;Maybe Best Buy feels the same way since they aren't giving it decent shelf space.&lt;/p&gt;&lt;/span&gt;</content>
	</entry>
	<entry>
		<title>Bayonetta Demo Impressions</title>
		<link rel="alternate" href="http://voghan.com/2009/12/27/bayonetta-demo-impressions.aspx?ref=rss" />
		<id>tag:voghan.com,2009-12-27:8b066908-57f3-4065-bfb4-c58f7bbcb406</id>
		<author>
			<name>Brian Vaughn</name>
		</author>
		<category term="Gaming" />
		<updated>2009-12-27T15:06:00Z</updated>
		<published>2009-12-27T15:06:00Z</published>
		<content type="html">&lt;span style="font-family: Verdana; font-size: 13px; "&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;The Bayonetta demo is now available on the Xbox 360 and PS3 for free to try out. &amp;nbsp;The developers of the original Devil May Cry games are behind Bayonetta. &amp;nbsp;The games a violent action adventure game that is noted for the heroin shooting from her shoes. &amp;nbsp;She also has a striking resemblance to Sarah Palin.&lt;br&gt;&lt;/div&gt;&lt;br&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;The demo is fairly short nut allows you to learn some combos and fight several enemies. &amp;nbsp;I think I feel this game is extremely anti-western religions as you play a witch killing enemies with halos that look like Jewish and Christian symbols. &amp;nbsp;So far the game has gotten very good reviews from the gaming media but probably isn't worth a purchase from the casual gamers. &amp;nbsp;I'll be picking one up but this kind of game is in my wheel house. &amp;nbsp;Mindless hack and slash games are tons of fun for me.&lt;/div&gt;&lt;/span&gt;</content>
	</entry>
	<entry>
		<title>The Google Phone</title>
		<link rel="alternate" href="http://voghan.com/2009/12/24/the-google-phone.aspx?ref=rss" />
		<id>tag:voghan.com,2009-12-24:8b2c0da3-72a3-412d-b927-65f8308d0e46</id>
		<author>
			<name>Brian Vaughn</name>
		</author>
		<category term="Phones" />
		<updated>2009-12-24T15:56:00Z</updated>
		<published>2009-12-24T15:56:00Z</published>
		<content type="html">&lt;span style="font-family: Verdana; font-size: 13px; "&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;
&lt;img src="http://cache.gawker.com/assets/images/gizmodo/2009/12/bgrgn-2.jpg"&gt;&lt;br&gt;
Over the past week or so several web sites have leaked photos of the next Android phone, Nextus One. &amp;nbsp;This phone has been given to Google employees to start using and may very well be available at retail in a couple weeks. &amp;nbsp;The phone is being advertised as a iPhone G3 killer with a flash camera, 4GB flash card that is upgradeable to 32GB, and it's thinner and faster that the G3. &amp;nbsp;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;There has been a lot of talk about what kind of phone this new device would be. &amp;nbsp;So far it looks like it might run on the T-Mobil network but it may not matter. &amp;nbsp;The phone may come unlocked so that it will be available for any phone network. &amp;nbsp;There has been some talk as well of it be a Voice over IP (VOIP) phone with no need for a voice contract. I think this is probably the future of cell phones. &amp;nbsp;VOIP has been made familiar by companies like Comcast and Vonage which offer phone service over their high speed internet network. &amp;nbsp;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;With the recent release of several Google Android phones it will be interesting to see how that platform grows. &amp;nbsp;Before you could only get a android phone on T-Mobil but now they are available on Sprint and Verizon. &amp;nbsp;If Google makes the Nexus One open to any network it could seriously cut into Apple's lead on smart phones. &amp;nbsp;It will be interesting to see consumers will turn on Apple and move towards the Google phones that have an open app store and probably the best developers in the world.&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;Sources:&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;a href="http://www.androidcentral.com/nexus-one-specs-leaked-retail-sales-may-be-invite-only-intially" style="color: rgb(85, 26, 139); "&gt;http://www.androidcentral.com/nexus-one-specs-leaked-retail-sales-may-be-invite-only-intially&lt;/a&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;a href="http://gizmodo.com/5432678/google-nexus-one-hands-on" style="color: rgb(85, 26, 139); "&gt;http://gizmodo.com/5432678/google-nexus-one-hands-on&lt;/a&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-bottom: 0px; "&gt;&lt;br&gt;&lt;/div&gt;&lt;/span&gt;</content>
	</entry>
	<entry>
		<title>Attack of the Gout</title>
		<link rel="alternate" href="http://voghan.com/2009/12/20/attack-of-the-gout.aspx?ref=rss" />
		<id>tag:voghan.com,2009-12-20:0e707c35-17f7-45d0-b02d-3a278ef733e9</id>
		<author>
			<name>Brian Vaughn</name>
		</author>
		<category term="General" />
		<updated>2009-12-21T04:21:00Z</updated>
		<published>2009-12-21T04:21:00Z</published>
		<content type="html">So a couple weeks ago I suffered a sever case of gout in my right
knee.&amp;nbsp; Unfortunately I had no idea that I had gout, instead I thought I
tweaked my knee and maybe teared a tendon.&amp;nbsp; I ended up seeing a doctor
and after an negative MRI it was discovered I have gout.&amp;nbsp; Too bad it
took about a week to make this diagnosis.&amp;nbsp; I ended up spending several
days in bed, in pain and unable to do much.&amp;nbsp; Finally I saw a specialist
and got a cortisone shot which helped relieve the pain.&lt;br&gt;
&lt;br&gt;
Since that time I have not played any games on the Xbox and instead
found myself reading more about the health care debate and cell
phones.&amp;nbsp; There are some good games out there but right now I'm not
feeling compelled to play them.&amp;nbsp; It's kind of funny then that when I
finally started up my 360 to race a little, my Xbox died for a 3rd
time.&amp;nbsp; I got the E74 error on my system.&amp;nbsp; I knew it was coming because
the graphics started going crazy when I was playing some Forza.&amp;nbsp; I
shipped it off to Microsoft on Saturday so hopefully I'll get it back
in time for Bayonetta's release.&lt;br&gt;
&lt;br&gt;
I'm feeling that government health care is inevitable now.&amp;nbsp; I expect
we'll have the new health care bill signed into law by the end of the
year.&amp;nbsp; I honestly do not believe this will lower costs and will end up
getting people dumped into a Federally run co-op.&amp;nbsp; Once people realize
this doesn;t lower costs there will be moves by government to run
private companies out of the health care business.&amp;nbsp; We'll still have
private insurance but it will be the haves and the have not's as
companies decide to drop health coverage as a benefit to improve the
companies stock prices.&amp;nbsp; Lets hope this doesn't happen.&lt;br&gt;
&lt;br&gt;
Lastly I've been fascinated with the rise of the Google phone, Nexus
One.&amp;nbsp; I'll write more about this phone once I know more but I think we
finally have a company that can kill Apple.&amp;nbsp; I happen to hate Steve
Jobs and Apple so seeing Google launch their Android phones OS has been
fun.&amp;nbsp; I'm enjoying the commercials attacking AT&amp;amp;T's data network
and was pleased to hear SNL took a shot at Apple last weekend.&amp;nbsp; Apple
sells over priced items to trendy yuppies which makes me sick.&amp;nbsp; Google
has always made useful web applications and now it's clear they are
ready top take on Apple and Microsoft in the phone, browser and OS.</content>
	</entry>
	<entry>
		<title>HTC Hero Review</title>
		<link rel="alternate" href="http://voghan.com/2009/12/07/htc-hero-review.aspx?ref=rss" />
		<id>tag:voghan.com,2009-12-07:de262a7f-7a82-4466-916d-2be670aabd7c</id>
		<author>
			<name>Brian Vaughn</name>
		</author>
		<category term="Phones" />
		<updated>2009-12-07T11:55:00Z</updated>
		<published>2009-12-07T11:55:00Z</published>
		<content type="html">A couple weeks ago I picked up a HTC Hero for my wife and myself.&amp;nbsp;
I've never used a smart phone before but was looking forward to the
idea of getting to my Google apps from my phone.&amp;nbsp; Since I was never
going to go back to AT&amp;amp;T wireless after the way they over billed me
at the end of our relationship, I've been looking forward to getting a
Google phone from Sprint.
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;I was immediately taken back by how crisp the screen was on the
Hero.&amp;nbsp; The browser is excellent, the UI is easy to maneuver around and
the ease of use with GMail, GTalk and Google Calender are excellent.&amp;nbsp;
The Hero has seven panels you can move though which you can place short
cuts to apps running on your phone.&amp;nbsp; For the most part I'm happy with
the number of apps I've been able to find on the Google Marketplace.&amp;nbsp;
I've gotten a few free games, some oddball applications and utilities.&amp;nbsp;
As I find something neat, I've been adding apps.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;I did notice that the battery life on the phone was poor during
moderate use.&amp;nbsp; This lead me to looking for several ways to improve the
battery life by turning off features.&amp;nbsp; I ended first turning off wifi
and back light which helped slightly.&amp;nbsp;&amp;nbsp; I then downloaded a tool to
monitor my battery life and suggest setting change to improve battery
performance.&amp;nbsp; What ended up making a huge improvement was turning off
the "Enable always-on mobile" setting under Mobile Network Settings.&amp;nbsp;
By turning this off my battery life doubled which allowed me to not
have to charge my phone every night.&lt;/div&gt;&lt;br&gt;The nicest feature I've
used a lot is the easy access to Facebook and Twitter.&amp;nbsp;&amp;nbsp; The 5 mega
pixel camera built into the phone allows me to take a picture and
immediately upload pictures to Facebook or Flickr.&amp;nbsp; I also just find
myself using Facebook and Twitter more now that I can access them
easily from my phone.&amp;nbsp; The phone has become a hand held computer that I
can check my email, IM, check my account balances, look for resaraunts,
get directions and all kinds of other things. &amp;nbsp;It a brave new world to explore and so far I like it.</content>
	</entry>
	<entry>
		<title>Where have I been?</title>
		<link rel="alternate" href="http://voghan.com/2009/12/05/where-have-i-been.aspx?ref=rss" />
		<id>tag:voghan.com,2009-12-05:c311b323-6d38-4bba-b9f6-3da9c206f625</id>
		<author>
			<name>Brian Vaughn</name>
		</author>
		<category term="General" />
		<updated>2009-12-05T09:13:00Z</updated>
		<published>2009-12-05T09:13:00Z</published>
		<content type="html">It feels like I haven't written anything for the blog in a month or
two.&amp;nbsp; Well that will be changing now that work is looking a whole lot
better.&amp;nbsp; I notice that as work gets crazy I completely shut down this
blog.&amp;nbsp; Now my work isn't going to get easier but it should be more
interesting and enjoyable going forward.&lt;br&gt;
&lt;br&gt;
I just recently completed a project de-identifying all the data in our
dev and qa databases.&amp;nbsp; This basically means we scrambled all the data
per some algorithm so that no one could use our customer data against
us...again.&amp;nbsp; The project wouldn't have been so tough if it weren't for
the fact we also had to create a entirely new environment.&amp;nbsp; That meant
installing all the apps on this new box, configuring websphere and
setting up several MQueues.&amp;nbsp; All in about three weeks right as we
rolled out my tomcat application.&amp;nbsp; Stress levels were high.&lt;br&gt;
&lt;br&gt;
With that behind me I have more time to enjoy the little things in life
like movies, video games and my phone.&amp;nbsp; I'll be writing about my new
phone shortly.&amp;nbsp; I'm pretty excited about the phone and use it a ton
more than I ever used my previous phones.&amp;nbsp; I've been mostly playing
Forza 3 on the 360 but I'm in a bit of a rut with that game.&amp;nbsp; It's
great but it's beginning to feel like a grind to finish the current
season I'm playing.&lt;br&gt;
&lt;br&gt;
I'll probably also be writing more about technology then I had been on
this blog.&amp;nbsp; My tomcat app is now in production but we have three more
phases to release.&amp;nbsp; I've been working on performance tuning the
application as well.&amp;nbsp; It's amazing how easy it is to find bottle necks
once you have the right tools.&amp;nbsp; I'm excited to be heading to St. Louis
for a couple days next week.&amp;nbsp; I'll be presenting a few different slide
shows to an group in my company.&amp;nbsp; Hopefully this will help get them on
their project and provide me with a little more visibility.</content>
	</entry>
	<entry>
		<title>After thoughts on Modern Warfare 2</title>
		<link rel="alternate" href="http://voghan.com/2009/11/22/after-thoughts-on-modern-warfare-2.aspx?ref=rss" />
		<id>tag:voghan.com,2009-11-22:c8d05178-861d-4054-9d5f-e844d5912448</id>
		<author>
			<name>Brian Vaughn</name>
		</author>
		<category term="Gaming" />
		<updated>2009-11-22T15:39:00Z</updated>
		<published>2009-11-22T15:39:00Z</published>
		<content type="html">While talking about Modern Warfare 2, I figured out why I'm not 100%
sold on this game.&amp;nbsp; If you've played a Call of Duty game before you
know that the game likes to put you in the shoes of several different
playable characters.&amp;nbsp; In Modern Warfare 2 you'll play as either a US
Ranger or a elite soldier in Task Force 141.&amp;nbsp; In my opinion playing as
the US Ranger completely sucks and all I'm doign is hoping those
missions will end soon so I can be the kick ass British guy in Task
Force 141.&lt;br&gt;I&lt;br&gt;n Task Force 141 you play as a bad ass British
soldier infiltrating Russian bases, taking over oil rigs, fighting your
way though Brazilian shanty towns and sneaking your way through a
Afghanistan base built into the mountains.&amp;nbsp; The US Ranger missions have
no real connection to the main story line and are used just to throw
you into action heavy firefights.&amp;nbsp; The only cool mission in Modern
Warfare 2 for the Ranger is the very last mission which is surreal.&lt;br&gt;&lt;br&gt;The
first Modern Warfare was exactly the same with the Ranger missions
having little importance to the game's story.&amp;nbsp; The stars of the game
are really just the British special agents which are the ones fighting
the real enemies in the games that are pulling the strings.&amp;nbsp; The game's
graphics are so good that it's action stands head and shoulders above
the Rainbow Six and Ghost Recon games that have dominated this genera.&amp;nbsp;
In Modern Warfare 3 I just hope they have more missions fighting as the former SAS members than the US Rangers.</content>
	</entry>
	<entry>
		<title>Finished Modern Warfare 2</title>
		<link rel="alternate" href="http://voghan.com/2009/11/18/finished-modern-warfare-2.aspx?ref=rss" />
		<id>tag:voghan.com,2009-11-18:0c6ae5d3-88e2-43da-b3a9-2359d173c9e6</id>
		<author>
			<name>Brian Vaughn</name>
		</author>
		<category term="Gaming" />
		<updated>2009-11-18T16:00:00Z</updated>
		<published>2009-11-18T16:00:00Z</published>
		<content type="html">&lt;DIV goog_docs_charIndex="1"&gt;I have to say that the Modern Warfare games so far have been epic.&amp;nbsp; This is a game with an excellent story, characters you'll care for and out of your mind action.&amp;nbsp; People should be putting this game on the big screen not Halo.&amp;nbsp; After completing this piece in what is sure to be a trilogy, I have to say the story and environments are awesome.&amp;nbsp; The game play gets a bit annoying because you die so much but it is also very rewarding to get it right.&lt;BR goog_docs_charIndex="478"&gt;&lt;BR goog_docs_charIndex="479"&gt;The Modern Warfare model of game play seems to be many fairly short levels that always seem to include some memorable encounter.&amp;nbsp; For instance in the new game you will be in Brazil, Siberia, Moscow, Afghanistan and Washington DC fighting your way from kill box to kill box.&amp;nbsp; I have to say shooting your way to the roof of a war torn White House was very surreal.&amp;nbsp; Then again so was running on the roofs of the shanty town in Brazil to escape the local militia.&amp;nbsp; Fighting the Russians in the suburbs of Washington DC was also a bit crazy.&amp;nbsp; &lt;/DIV&gt;
&lt;DIV goog_docs_charIndex="1021"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV goog_docs_charIndex="1024"&gt;After finishing the campaign I have to say I feel a but let down because it was so great.&amp;nbsp; I really want more out of this game.&amp;nbsp; I will most likely play the game again on the hardest difficult to see how far I can get.&amp;nbsp; Playing on Hardened was crazy enough but playing on Veteran will test my skills and my patients.&amp;nbsp; It does seem that there is a new mode in the game called Special Ops which I will try out.&amp;nbsp; Sounds like more of the campaign scenarios that you can play co-op.&amp;nbsp; Maybe this time I won't trade the game in after a couple weeks like I did with the last one.&lt;/DIV&gt;</content>
	</entry>
	<entry>
		<title>ODST Sales</title>
		<link rel="alternate" href="http://voghan.com/2009/11/17/odst-sales.aspx?ref=rss" />
		<id>tag:voghan.com,2009-11-17:93e497d2-703f-43e5-a13b-174aa06b3566</id>
		<author>
			<name>Brian Vaughn</name>
		</author>
		<category term="Gaming" />
		<updated>2009-11-17T15:00:00Z</updated>
		<published>2009-11-17T15:00:00Z</published>
		<content type="html">&lt;div goog_docs_charindex="17"&gt;The October sales data has finally come out and we can get a better look at how well Halo 3: ODST sold.&amp;nbsp; In September the game launched selling 1,520,000 copies in North America and In October sold 271,000 copes.&amp;nbsp; Microsoft has recently stated ODST has sold 3 million copies world wide.&amp;nbsp; Considering this title didn't get nearly as much advertisement as Halo 3 received or feature the main character from the previous games, it's fairly impressive.&lt;br goog_docs_charindex="467"&gt;&lt;/div&gt;&lt;div goog_docs_charindex="469"&gt;&amp;nbsp;&lt;/div&gt;&lt;div goog_docs_charindex="472"&gt;The game probably didn't appeal to most Halo 3 fans but did offer a new multiplayer mode and additional maps for Halo 3 multiplayer.&amp;nbsp; It was clearly mentioned people could trade in their current Halo 3 game for ODST because ODST would contain all Halo 3 multiplayer maps.&amp;nbsp; I think the core Halo fans picked this game up for the new campaign mode and to return to the Halo universe.&lt;/div&gt;&lt;br goog_docs_charindex="855"&gt;One still has to wonder how well this game would have sold if Firefight was open to multiplayer like Horde Mode in Gears of War 2 or Left 4 Dead.&amp;nbsp; Instead they packed in a short campaign mode and packed in all the DLC already released (except for three new maps)&amp;nbsp;for Halo 3 which most Halo 3 fans probably already owned.&amp;nbsp; The gaming world has drastically changed this generation with the Halo franchise falling down a few notches in the FPS world with games like Modern Warefair and Gears of War taking large sections of the online shooter pie away from Bungie. &amp;nbsp; Hopefully Bungie is working hard at releasing a true block buster game in Reach which should be released next Fall.&amp;nbsp;</content>
	</entry>
</feed>