<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Newest Version Computer Services</title>
	<atom:link href="http://newestversion.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://newestversion.wordpress.com</link>
	<description>Another Geek Spouting his ideas.</description>
	<lastBuildDate>Fri, 19 Aug 2011 05:07:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='newestversion.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/04d25abdb8f691f8100876e00b2a194e?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Newest Version Computer Services</title>
		<link>http://newestversion.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://newestversion.wordpress.com/osd.xml" title="Newest Version Computer Services" />
	<atom:link rel='hub' href='http://newestversion.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Delete Profiles via command line</title>
		<link>http://newestversion.wordpress.com/2011/08/19/delete-profiles-via-command-line/</link>
		<comments>http://newestversion.wordpress.com/2011/08/19/delete-profiles-via-command-line/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 05:07:56 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Newest Version Computer Services]]></category>

		<guid isPermaLink="false">http://newestversion.wordpress.com/?p=313</guid>
		<description><![CDATA[If you are in an environment like me, a badly maintained Novel environment, you might come across a situation to use this. Because of reasons I can&#8217;t go in to&#8230; I can&#8217;t re-image the workstations at the site I support  to fix this the &#8216;right&#8217; way. But finding ways to do things that work in a constrained environment is what I do <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=newestversion.wordpress.com&amp;blog=23243497&amp;post=313&amp;subd=newestversion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you are in an environment like me, a badly maintained Novel environment, you might come across a situation to use this.<br />
Because of reasons I can&#8217;t go in to&#8230; I can&#8217;t re-image the workstations at the site I support  to fix this the &#8216;right&#8217; way. But finding ways to do things that work in a constrained environment is what I do best.</p>
<p><strong>The issue:</strong> Lots of user profiles on workstation<br />
There are about 300 systems with 20, 40, maybe even 60 user profiles stored on each of them.</p>
<p><strong>Cause:</strong> Non volatile account setup<br />
In Novel there are several ways of dealing with local Windows users. One of those ways is by using Dynamic Local users (DLU). This creates local windows users with the same name and password as their eDirectory accounts. There are potential problems with this approach.</p>
<p>If you have a large volume of users that will be using any one workstation you will want to check volatile users on the DLU policy. Because if you do not then profile data will remain stored for every individual user that logs in to that workstation. If it is checked then the profile data and user account is removed during logoff. Using DLU correctly does require some other prep-work too. Like, you will need to build a very good Default local user profile.<br />
What if someone didn&#8217;t turn on the volatile account option? How do you fix it without re-imaging every system?</p>
<p><strong>Solution:</strong> Delete Profile or Delprof<br />
Delprof program is a Microsoft utility to delete user profiles on systems. It is distributed in an MSI directly from Microsoft. Download link: <a href="http://www.microsoft.com/download/en/details.aspx?id=5405" target="_blank">http://www.microsoft.com/download/en/details.aspx?id=5405<br />
</a>The greatest thing about delprof is that you don&#8217;t really need to install it on every computer. You only need to install it on one to get the delprof.EXE file from the install. It will work without all the other stuff it may or may not install.<br />
Now that you have the EXE you can place it somewhere everyone in the network can have read access to it. Like the Public folder.<br />
Here is where we start talking geeky.<br />
Create a DelOldProf.bat file and call out our nice new and shiny delprof.exe file with some extra parameters. Just a caution&#8230; you can name your bat file anything you want&#8230; but never create a .bat with the same name as a .exe saved in the same folder and called by your .bat file. The .bat files won&#8217;t work right and you will be banging your head against a wall trying to figure out why. BEEN THERE DONE THAT&#8230; me = id-ten-t error.</p>
<p>Below is the full list of all the options you can use with this exe.</p>
<pre>usage:  DELPROF [/Q] [/I] [/P] [/R] [/C:\\] [/D:]

        /Q      Quiet, no confirmation.

        /I      Ignore errors and continue deleting.

        /P      Prompts for confirmation before deleting each profile.

        /R      Delete roaming profile cache only

        /C      Remote computer name.

        /D      Number of days of inactivity.</pre>
<p>My command looked a little like this: \\<em>server</em>\sys\public\delprof.exe /Q /I /D:60<br />
/Q  because I want this to run without user intervention.<br />
/I  because I don&#8217;t care about errors. I am trying to sweep up the big dirt on this one. The small dust that might get left behind I couldn&#8217;t care less about.<br />
/D:60  because if it is that many days old no one would care about it anymore. The number of days is up to you and how it works with your environment.</p>
<p>Save the nice batch file in your same public directory and add it to your Novell login script like this. #DelOldProf.bat</p>
<p>Next time someone logs-in&#8230; The big command screen will pop up and show everyone all the data it is deleting.<br />
Note: You can hide some info from the users by adding a @ECHO OFF command in the first line of the .bat file before your commands.  This turns off the prompt screen prints and will only display actual command outputs.</p>
<p>There are a few other things with this&#8230; This will delete your administrator profile if they exist. From my experience it will not delete the Default profile. This is something you really want not to happen and it should be restricted to read only just to be safe. There are commands that you can use to change that before the delprof if you are scared it isn&#8217;t set already.<br />
Last thing I promise&#8230; I don&#8217;t see this as a long-term solution for the too many profiles thing in my case. But in the case of roaming profiles&#8230;use the /R as a great way to clear that cache after so many days to keep it from clogging up the systems.<br />
I lied&#8230; one more&#8230; Always remember if you are adding and removing that much data on a workstation hard drive every day&#8230; make sure you are running a defrag at least weekly. I scheduled my workstations to do a 2 hour defrag three times a week.</p>
<p>&nbsp;</p>
<p>Until the next tech thing&#8230;</p>
<p>Andrew Birchler</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/newestversion.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/newestversion.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/newestversion.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/newestversion.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/newestversion.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/newestversion.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/newestversion.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/newestversion.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/newestversion.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/newestversion.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/newestversion.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/newestversion.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/newestversion.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/newestversion.wordpress.com/313/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=newestversion.wordpress.com&amp;blog=23243497&amp;post=313&amp;subd=newestversion&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://newestversion.wordpress.com/2011/08/19/delete-profiles-via-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/106e26e899ddafc93c334ce28a6501a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gottoon</media:title>
		</media:content>
	</item>
		<item>
		<title>New Phones</title>
		<link>http://newestversion.wordpress.com/2011/06/01/new-phones/</link>
		<comments>http://newestversion.wordpress.com/2011/06/01/new-phones/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 03:25:30 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Newest Version Computer Services]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[Droid X2]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[motoblur]]></category>
		<category><![CDATA[Motorola]]></category>
		<category><![CDATA[New phone]]></category>
		<category><![CDATA[Smartphones]]></category>

		<guid isPermaLink="false">http://newestversion.wordpress.com/?p=306</guid>
		<description><![CDATA[I like new tech to play with. But what do you do when the new tech doesn&#8217;t work like you want it to? So last week I updated phones to get a faster Dual Core CPU phone. My 1 1/2 year old Motorola Droid wasn&#8217;t cutting it anymore that my phone is my primary internet <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=newestversion.wordpress.com&amp;blog=23243497&amp;post=306&amp;subd=newestversion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I like new tech to play with. But what do you do when the new tech doesn&#8217;t work like you want it to?</p>
<p>So last week I updated phones to get a faster Dual Core CPU phone. My 1 1/2 year old Motorola Droid wasn&#8217;t cutting it anymore that my phone is my primary internet access now. (High-Speed internet technology has yet to make it where I live.) I needed something faster, less laggy, and had a bigger screen. Wow&#8230; this thing has problems. It seems to be all software related from what I have seen. And I am hoping the promised update makes it out sooner rather than later. The inconstant lag in the phone is annoying but when it effected dialing touch-tones for an automated system several times in a row it was on. Luckily I am generally a calm guy and my new Droid X2 didn&#8217;t end up at the bottom of the river. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  So now that I have had the time to play with my new phone, I give it a 9 for hardware, a 3 for software, and only a 4 for over all experience. Typing up a blog or beating a friend on Words with Friends just isn&#8217;t as satisfying as it was on my Old Droid.</p>
<p>It took time to get used to my last Droid so I hope with just a few tweaks here and there on the software will get me back to the feeling of &#8220;AWESOME&#8221; I always had before.</p>
<p>&nbsp;</p>
<p>Andrew</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/newestversion.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/newestversion.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/newestversion.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/newestversion.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/newestversion.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/newestversion.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/newestversion.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/newestversion.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/newestversion.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/newestversion.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/newestversion.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/newestversion.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/newestversion.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/newestversion.wordpress.com/306/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=newestversion.wordpress.com&amp;blog=23243497&amp;post=306&amp;subd=newestversion&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://newestversion.wordpress.com/2011/06/01/new-phones/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/106e26e899ddafc93c334ce28a6501a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gottoon</media:title>
		</media:content>
	</item>
		<item>
		<title>Official: Motorola Droid X2 launching May 26 for $199, available online May 19</title>
		<link>http://newestversion.wordpress.com/2011/05/18/official-motorola-droid-x2-launching-may-26-for-199-available-online-may-19/</link>
		<comments>http://newestversion.wordpress.com/2011/05/18/official-motorola-droid-x2-launching-may-26-for-199-available-online-may-19/#comments</comments>
		<pubDate>Wed, 18 May 2011 16:17:18 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Newest Version Computer Services]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[Droid]]></category>
		<category><![CDATA[Droid X2]]></category>
		<category><![CDATA[Motorola]]></category>

		<guid isPermaLink="false">http://newestversion.wordpress.com/?p=304</guid>
		<description><![CDATA[Official: Motorola Droid X2 launching May 26 for $199, available online May <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=newestversion.wordpress.com&amp;blog=23243497&amp;post=304&amp;subd=newestversion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://phandroid.com/2011/05/18/official-motorola-droid-x2-launching-may-26-for-199-pre-order-starts-may-19/">Official: Motorola Droid X2 launching May 26 for $199, available online May 19</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/newestversion.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/newestversion.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/newestversion.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/newestversion.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/newestversion.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/newestversion.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/newestversion.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/newestversion.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/newestversion.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/newestversion.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/newestversion.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/newestversion.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/newestversion.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/newestversion.wordpress.com/304/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=newestversion.wordpress.com&amp;blog=23243497&amp;post=304&amp;subd=newestversion&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://newestversion.wordpress.com/2011/05/18/official-motorola-droid-x2-launching-may-26-for-199-available-online-may-19/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/106e26e899ddafc93c334ce28a6501a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gottoon</media:title>
		</media:content>
	</item>
		<item>
		<title>The Root of it all</title>
		<link>http://newestversion.wordpress.com/2010/07/28/the-root-of-it-all/</link>
		<comments>http://newestversion.wordpress.com/2010/07/28/the-root-of-it-all/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 03:15:31 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Newest Version Computer Services]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[Droid]]></category>
		<category><![CDATA[Froyo]]></category>
		<category><![CDATA[Motorola]]></category>
		<category><![CDATA[Motorola Droid]]></category>
		<category><![CDATA[Nandroid]]></category>
		<category><![CDATA[rooting]]></category>

		<guid isPermaLink="false">http://gottoon.wordpress.com/?p=299</guid>
		<description><![CDATA[What a long and productive week so far. I know it is only Wednesday and I am already calling it long! I am going to write something a little different today. A blog about more how I do the tech geek stuff I do. This all started around noon on Tuesday, I got this idea <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=newestversion.wordpress.com&amp;blog=23243497&amp;post=299&amp;subd=newestversion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>What a long and productive week so far. I know it is only Wednesday and I am already calling it long! I am going to write something a little different today. A blog about more how I do the tech geek stuff I do. This all started around noon on Tuesday, I got this idea in my head to research Rooting my Motorola Droid Android phone. I wanted to install Android OS V2.2, aka Froyo, before the official release. So I dug through the forums and read a few of the guides. There were about 10 different ways of doing it according the the people on there. So I am here to tell you it isn&#8217;t that complicated and some of the ways really don&#8217;t work with the phone and it can be trial and error. After I was done with the root/update and I spent about 2 hours staring at the phone setting up all the accounts and configs, I decided to blog about my experience. I think doing so will give some insight in to how I go about the geek stuff I do, and maybe explain a little of the &#8216;why?&#8217; too.</p>
<p>FYI.. Rooting is the process of hacking an Android phone so you have access to the kernel files and can replace them with anything you want. Android is an open source OS. Everyone, even you, have access to the raw computer code that it is written in. There are many people in the Android community that create their own special versions of this code and publish it for general use. Many do these types of things in there free time and ask for donations. It is always good to donate some cash to these guys so they keep up the great work that they do. Think of it like tipping the bar tender, I tip my software providers.</p>
<p>Getting started&#8230;<br />
Everyone knows you have to prepare for any project you take on. It may be as simple as closing the door of your office but you have to do it. In this case, I was doing this as an after work (starting at about 7pm) project. With this in mind there are some things that you have to do to prepare your body, mind and, as I like to believe, my soul. I took a shower and got in to comfortable, lay-around-the-house cloths grabbed some mind food. Most of the time I prefer a simple meat and vegie plate, like a grilled chicken breast and a side of broccoli. I didn&#8217;t have the time to pull off such a meal so I digressed to the more popular and overly effective bowl of fruit loops cereal. These little sugar coated multi color loops of joy may be the best brain food have used in my entire life. I use them a lot!!!</p>
<p>Action&#8230;<br />
Now I bring up the guide that I have decided to follow. It is a two part guide&#8230; an overview from a user that wanted to make sure he was doing it right, good links to more info from his post: <a href="http://www.droidforums.net/forum/droid-hacks/49671-stock-2-1-2-2-froyo-step-step-installation.html">HERE</a>&#8230; the actual step my step detailed guide I will be following (yes guys do read instructions and follow them): <a href="http://www.droidforums.net/forum/droid-hacks/49671-stock-2-1-2-2-froyo-step-step-installation-2.html#post528613">HERE</a>.</p>
<p>The first part of the guide is mainly downloading and installing software and drivers. RSD Lite and Motorola Flash Interface Drivers. I these items install without much issue. Suggestion&#8230; do this on a pre-Windows Vista system if possible. Issues with the new UAC (user account control) can keep it from working correctly. My Windows 7 Ultimate N 64 Bit didn&#8217;t like it much. Once I moved the setups to my Windows 2003 SB Server everything went smooth. Like I said the first attempts at rooting the phone failed, I tried it about 6 &#8211; 10 times for each of the methods with slight variations in the process that I came up with on my own. The two methods I tried are the Terminal Enumerator method (not explained in the linked guide) and the RSD Method. The Terminal Enumerator method entails moving some files to the SD Card and loading them using a command line app. This didn&#8217;t work all that well so I abandoned it for the RSD method as it seemed to be more well documented in the forum world and if there were problems I could find solutions. I spent the next two hours trying to get my Phone to detect on the RSD software on my Win 7 system. By the time these two hours were over and I had read about 20 different sites and forums trying to find anything that could cause the problem as I had almost nothing to go on besides it just didn&#8217;t work&#8230; I wanted to not only shoot my laptop&#8230; I wanted to hack it up in to little inch squares and burn it!!! We who love and live the world of technology have the times where we are just as frustrated, if not more because we are the geeks and should know how it all works already, as the average users out there. It just made me more mad when I installed the software in to my home server and the whole process of rooting using the RSD method was complete in less than 5 mins. The process after that was merely copying files to and from the phone so that part was all done on my laptop. Important note&#8230; Do the backup processes and data clearing as stated in the guide do it twice if you have any doubts. If you do not and you update and it doesn&#8217;t work&#8230; you may have a nice paperweight when you are all done. BACKUP EVERYTHING you want to keep. I didn&#8217;t care about a lot of it so I only did the Nandroid backup and made a copy of some of the files on my SD Card that I didn&#8217;t have saved anywhere else. I also have my contacts backed up in several other ways so I don&#8217;t loose them so I did&#8217;t need the backup off the phone.</p>
<p>Rooting is done, so it is time for loading the kernel of choice. I decided on the basic Froyo FRG01B release listed in the guide. This is just one that doesn&#8217;t have too many custom mods in the release. I only wanted to add flash and the new Froyo features to my droid. I can&#8217;t really afford downtime with my phone as it also is my business phone. If you want to go to the extreme mod side&#8230; Check out <a href="http://www.droidforums.net/forum/bugless/55598-rom-stable-bugless-beast-v0-4-android-2-2-frf84b-fully-deodexed.html">Bugless Beast V0.4 Android 2.2 FRF84B (Fully Deodexed)</a>. That is one of the most modded I have seen to date. The update process is easy from this point, follow the instructions and you are all set. If the update crashes your phone&#8230; see the <a href="http://www.droidforums.net/forum/rescue-squad/">Rescue Squad</a> forum. There are all kinds of info in there to help you out.</p>
<p>Flash Update and cleanup&#8230;<br />
There are several other things listed in the guide that you can mod to add features to your device. You are the only one to judge if you need them or not&#8230; Don&#8217;t do them unless you need them. The less you mess with your phone the less likely you are going to break something. I added the Flash Beta as that was one of the reasons I was doing this update. I also followed the Watch Hulu steps for the browser to make sure flash was working correctly and I love HULU. Everything worked awesome.</p>
<p>Be cautious with your data usage after the update. Froyo&#8217;s new features have more sync options that increase the amount of data you need to use, like Picasa web albums can now be synced to your phone gallery, and if you have multiple Google accounts it will now allow you to sync all your calendars from all accounts. Use a good WIFI connection to speed this update process up, my phone is still trying to complete the updates. I almost have 11 GB of pictures posted on my Picasa account so they are taking a while to sync to the phone. Based on the data usage it isn&#8217;t downloading the full copy of the files. What can I say like to take pictures.</p>
<p>After the fruit loops, shredded laptop, hours of research, and quick updates, I ended with a rooted and updated phone with so many new features and I found new ones every time I opened another app. At this point I am very happy with my choice to update this way. I not have the choice to change out versions fairly easy and might up my mod level if I find something I can&#8217;t live without. You can ask just about anyone I spoke with today&#8230; this root has made me like a kid geek again&#8230; and that feeling is why I test and run Beta and Alpha release software all the time. Finding a new version or new program that does better or something never done before makes me just ecstatic and I can&#8217;t hold myself back from yelling it to the world.</p>
<p>Until my next big breakthrough&#8230; the techy writer in me is signing off.</p>
<p>Andrew</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/newestversion.wordpress.com/299/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/newestversion.wordpress.com/299/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/newestversion.wordpress.com/299/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/newestversion.wordpress.com/299/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/newestversion.wordpress.com/299/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/newestversion.wordpress.com/299/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/newestversion.wordpress.com/299/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/newestversion.wordpress.com/299/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/newestversion.wordpress.com/299/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/newestversion.wordpress.com/299/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/newestversion.wordpress.com/299/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/newestversion.wordpress.com/299/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/newestversion.wordpress.com/299/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/newestversion.wordpress.com/299/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=newestversion.wordpress.com&amp;blog=23243497&amp;post=299&amp;subd=newestversion&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://newestversion.wordpress.com/2010/07/28/the-root-of-it-all/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/106e26e899ddafc93c334ce28a6501a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gottoon</media:title>
		</media:content>
	</item>
		<item>
		<title>Posting on the fly</title>
		<link>http://newestversion.wordpress.com/2010/03/11/posting-on-the-fly/</link>
		<comments>http://newestversion.wordpress.com/2010/03/11/posting-on-the-fly/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 06:06:20 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Newest Version Computer Services]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[touchdown]]></category>

		<guid isPermaLink="false">http://gottoon.wordpress.com/2010/03/11/posting-on-the-fly/</guid>
		<description><![CDATA[I have a new way to blog. With the wordpress android app I now have access to my blog and comments while sitting anywhere. This should help with my posting more often&#8230; I think I see a re-occouring theme here. This is just one more reason I love my android phone. Having the physical keyboard <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=newestversion.wordpress.com&amp;blog=23243497&amp;post=263&amp;subd=newestversion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have a new way to blog. With the wordpress android app I now have access to my blog and comments while sitting anywhere. This should help with my posting more often&#8230; I think I see a re-occouring theme here.</p>
<p>This is just one more reason I love my android phone. Having the physical keyboard is just nice when you are typing emails or blog posts, like this one. The software keyboards can slow me down a bit and there isn&#8217;t anything to feel when you are typing. Now for those that like the software keyboards that is availabe too. Nothing like having the choice of how you want to type each time you do.</p>
<p>I think that is the point of open source option of android. a hundred different hardware options with nearly all the same apps no matter what you choose. And there are some killer apps out there. Like Touchdown for MS Exchange access. Nothing I have found beats it on any phone.</p>
<p>So if you are looking for a smart phone in the near future. Take a look at the android line of phones. Available on nearly any service and in all the styles and colors you can think of. Who knows you might even comment on my blog from your android.</p>
<p>Until next time.</p>
<p>Andrew</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/newestversion.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/newestversion.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/newestversion.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/newestversion.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/newestversion.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/newestversion.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/newestversion.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/newestversion.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/newestversion.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/newestversion.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/newestversion.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/newestversion.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/newestversion.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/newestversion.wordpress.com/263/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=newestversion.wordpress.com&amp;blog=23243497&amp;post=263&amp;subd=newestversion&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://newestversion.wordpress.com/2010/03/11/posting-on-the-fly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/106e26e899ddafc93c334ce28a6501a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gottoon</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello from the long lost relem of endless winter</title>
		<link>http://newestversion.wordpress.com/2010/02/03/hello-from-the-long-lost-relem-of-endless-winter/</link>
		<comments>http://newestversion.wordpress.com/2010/02/03/hello-from-the-long-lost-relem-of-endless-winter/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 22:44:15 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Newest Version Computer Services]]></category>

		<guid isPermaLink="false">http://gottoon.wordpress.com/?p=257</guid>
		<description><![CDATA[The past: Ok I know it has been forever since I posted. It should have taken me so long to get back in the swing of things since the fall of my prior job and company and the promo to the new job and new company and such. But I am here now so that <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=newestversion.wordpress.com&amp;blog=23243497&amp;post=257&amp;subd=newestversion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The past: Ok I know it has been forever since I posted. It should have taken me so long to get back in the swing of things since the fall of my prior job and company and the promo to the new job and new company and such. But I am here now so that means I am getting back on my feet and running. I think the holidays had a lot to do with my general lack of will and could also be a huge reason for the 20+ lbs weight gain. I know I sound like a woman complaining about that&#8230; it is more about felling good then being skinny. The move to the new apartment didn&#8217;t help with anything either. For some reason I ended up with more unpacked boxes in this new place. I didn&#8217;t have much to pack to begin with and I am still trying to figure out what is in them without opening them.</p>
<p>The now: So what is going on here&#8230; a little of everything these days. I have had so much going on that I have all but dropped out of the MINI scene. I have been spending most of my time learing my new job and doing side work. NVCS has really picked up in 2010. I think more and more people are trying to my computer systems run longer to save money in these shaky times. That just means for a few dollars I can show up and clean and do some general work on your systems. I am even thinking about a flat rate on system cleanups. It can be time consuming but it is a low cost endevor for me and customer satisfaction is the best part of my job. There is just something about helping someone out and taking a system that is trashed and make it as clean and new as possible.</p>
<p>The future: I see a very bright future ahead of me. Work is good, home isn&#8217;t bad. There are always things that anoy you and in time you either get used to the fact that is how it is&#8230; or you work to change it. I have a bad habbit of just sitting back and waiting for it to change itself. I am working to change that habbit and start working hard to make everything better. Life just doesn&#8217;t fix itself and it isn&#8217;t complex just hard.</p>
<p>Lets see if I keep the posts flowing this time. Doing this makes working though issues in my head easier.</p>
<p>Andrew</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/newestversion.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/newestversion.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/newestversion.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/newestversion.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/newestversion.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/newestversion.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/newestversion.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/newestversion.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/newestversion.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/newestversion.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/newestversion.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/newestversion.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/newestversion.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/newestversion.wordpress.com/257/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=newestversion.wordpress.com&amp;blog=23243497&amp;post=257&amp;subd=newestversion&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://newestversion.wordpress.com/2010/02/03/hello-from-the-long-lost-relem-of-endless-winter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/106e26e899ddafc93c334ce28a6501a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gottoon</media:title>
		</media:content>
	</item>
		<item>
		<title>Tech Work is Happy Work!!</title>
		<link>http://newestversion.wordpress.com/2009/05/27/tech-work-is-happy-work/</link>
		<comments>http://newestversion.wordpress.com/2009/05/27/tech-work-is-happy-work/#comments</comments>
		<pubDate>Wed, 27 May 2009 15:34:15 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Newest Version Computer Services]]></category>
		<category><![CDATA[Success]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://gottoon.wordpress.com/?p=215</guid>
		<description><![CDATA[Ever been bored at work? It happens all the time in the technology world. Sometimes there just isn&#8217;t any problems to work on. For some this is a time of rejoicing and goofing off, not for me. These slow times just cause me to get tired of my job. With out the challenge of the <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=newestversion.wordpress.com&amp;blog=23243497&amp;post=215&amp;subd=newestversion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ever been bored at work? It happens all the time in the technology world. Sometimes there just isn&#8217;t any problems to work on. For some this is a time of rejoicing and goofing off, not for me. These slow times just cause me to get tired of my job. With out the challenge of the problems/issues that are brought to my attention work is just plain work. I consider myself extremely lucky in the fact that what I do for a living is what I love to do. My father always said if you love your work then it never seems like work. I do not believe he is entirely correct with this statement but it is a good start.</p>
<p>I believe liking what you do and doing well at what you do are two requirements to having a successful career. You don&#8217;t need both but it is easier to be good at your job when you like that job. I have been misjudged several times as liking my job because I work hard and do well. I guess work ethic isn&#8217;t something thought of when looking at employees. That is where those employers made the fault and I didn&#8217;t stay long after that in most cases. I have had my share of bad and good jobs. Many of the best jobs were with bad companies and the worst jobs were with good companies, but there were a few that were in the middle ground of both and I stayed a happy employee for much longer at these places. In the end, I am usually disappointed in the company and leave for greener pastures. This has worked well so for, with a few stumbles along the way. Nothing that a little hard work couldn&#8217;t fix.</p>
<p>That brings me to today. My work is a source of happiness in my life. I am not a workaholic but I like what I do and I am good at it. I work long hours and most of my time is dedicated to my work. It didn&#8217;t even take a year at my current job to earn a promotion and several raises in pay. I have done this because I learn quickly, I have practical experience in the application of software and hardware solutions, and I work with my team to solve problems. In a job like mine sharing the knowledge you have is a two way street. One way if you share everything you know then you may not be needed anymore. We all know the idea of working yourself out of a job! The other way is that by sharing you gain perspective on your ideas and experiences making you more effective in diagnostics and troubleshooting.</p>
<p>This all leads in to the most important piece of being a technical support person, personality. I think if you can get along with people you are more apt to share with them. You can be more empathetic to customer&#8217;s problems and that leads to being better at customer service. Dedicating yourself your self to your customers will get you far in tech support but rarely makes you friends in other departments and can hold you back from moving to other places in a company. Choose you battles wisely and be sure you make intelligent well planed moves.</p>
<p>The best part of being in the technical field is the option to work privately on the outside of your normal job. Many techs do this to make the extra money they spend on the tech products they buy for themselves. I do it for extra spending cash and to experience other parts of computer support I don&#8217;t see in my job. It is a way for me to keep my knowledge more current on what is happening to the individual user and what they use computers for. I also like the work because it reminds me of when I was young and still learning to interact with technology. It is fun to work with people and gain their respect and gratitude. I am not the best but the work makes me happy and I will always work hard to keep it that way. Tech work is happy work is successful work and makes a happy worker in my case!!</p>
<p>Andrew Birchler<br />
Newest Version Computer Services</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/newestversion.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/newestversion.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/newestversion.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/newestversion.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/newestversion.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/newestversion.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/newestversion.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/newestversion.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/newestversion.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/newestversion.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/newestversion.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/newestversion.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/newestversion.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/newestversion.wordpress.com/215/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=newestversion.wordpress.com&amp;blog=23243497&amp;post=215&amp;subd=newestversion&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://newestversion.wordpress.com/2009/05/27/tech-work-is-happy-work/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/106e26e899ddafc93c334ce28a6501a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gottoon</media:title>
		</media:content>
	</item>
		<item>
		<title>A Tool Named Twitter!</title>
		<link>http://newestversion.wordpress.com/2009/05/10/a-tool-named-twitter/</link>
		<comments>http://newestversion.wordpress.com/2009/05/10/a-tool-named-twitter/#comments</comments>
		<pubDate>Mon, 11 May 2009 00:18:05 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Newest Version Computer Services]]></category>
		<category><![CDATA[@Gottoon]]></category>
		<category><![CDATA[@NewestVersion]]></category>
		<category><![CDATA[A Tool Named Twitter]]></category>
		<category><![CDATA[news feed]]></category>
		<category><![CDATA[NVCS]]></category>
		<category><![CDATA[trends]]></category>
		<category><![CDATA[tweets]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://gottoon.wordpress.com/?p=185</guid>
		<description><![CDATA[Twitter is a great tool and I didn&#8217;t have to be a tweeter for long to find that out. I started my personal Twitter account (@Gottoon), as I assume many do, by adding the friends I knew to be using it. I then expanded that list using a contact list I have of everyone I <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=newestversion.wordpress.com&amp;blog=23243497&amp;post=185&amp;subd=newestversion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Twitter is a great tool and I didn&#8217;t have to be a tweeter for long to find that out. I started my personal Twitter account (<a href="http://twitter.com/Gottoon">@Gottoon</a>), as I assume many do, by adding the friends I knew to be using it. I then expanded that list using a contact list I have of everyone I know. This list has grown over the years because of social network sites. After I used Twitter for several weeks I started finding new uses for it. I found breaking news, tech articles, software version releases, direct company press releases, and an endless source of trending topics being tweeted about. My Twitter account is now my best source of information about the world as people observe it. It is a word of mouth reference tool like nothing I have seen before. With this tool I am no longer a slave to the big media sources and news feeds. All of which are controlled to a point by the people who run them. I follow topics on many subjects everyday by listening to podcasts, reading forums, blogs, press releases, and news articles. I have used a dozen different sites and tools to follow different topics through the years and have never been impressed by any one tool as I am with Twitter. In the last week started a second Twitter account. This one for my side business, Newest Version Computer Services (<a href="http://twitter.com/newestversion">@NewestVersion</a>). It is my tech feed to the world about reviews and blogs I have read or written and wish to share. Clients can view it and keep up with the software packages I recommend or if there is a version update they may need.</p>
<p>Twitter is now not only a tool for me to be notified and be informed&#8230; it is a tool I use to notify and inform others. This is my tiny contribution to the Twittersphere. Follow Me&#8230;.</p>
<p>Andrew Birchler<br />
Newest Version Computer Services<br />
<a href="http://www.nvcomputerservices.com">www.nvcomputerservices.com</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/newestversion.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/newestversion.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/newestversion.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/newestversion.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/newestversion.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/newestversion.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/newestversion.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/newestversion.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/newestversion.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/newestversion.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/newestversion.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/newestversion.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/newestversion.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/newestversion.wordpress.com/185/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=newestversion.wordpress.com&amp;blog=23243497&amp;post=185&amp;subd=newestversion&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://newestversion.wordpress.com/2009/05/10/a-tool-named-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/106e26e899ddafc93c334ce28a6501a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gottoon</media:title>
		</media:content>
	</item>
	</channel>
</rss>
