<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Nerdy Dork &#187; Technology</title>
	<atom:link href="http://www.nerdydork.com/category/technology/feed" rel="self" type="application/rss+xml" />
	<link>http://www.nerdydork.com</link>
	<description>Dustin Davis reviews... the internet.</description>
	<lastBuildDate>Fri, 27 Jan 2012 19:32:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Setting Up a ZNC IRC Bouncer</title>
		<link>http://www.nerdydork.com/setting-up-a-znc-irc-bouncer.html</link>
		<comments>http://www.nerdydork.com/setting-up-a-znc-irc-bouncer.html#comments</comments>
		<pubDate>Fri, 20 Jan 2012 17:22:37 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[irc]]></category>
		<category><![CDATA[irssi]]></category>
		<category><![CDATA[linode]]></category>
		<category><![CDATA[tmux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[znc]]></category>

		<guid isPermaLink="false">http://www.nerdydork.com/?p=908</guid>
		<description><![CDATA[First of all, I&#8217;ll skip the discussion on what ZNC and IRC are, as you likely know if you are reading this post. I use IRC with my development team at work. It&#8217;s helpful to stay logged in 24/7 to keep up on pertinent discussions. I could stay logged in 24/7 with any IRC client [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class='wb_fb_top'><div style="float:right;"></div></div><p>First of all, I&#8217;ll skip the discussion on what <a href="http://wiki.znc.in/ZNC">ZNC</a> and <a href="http://en.wikipedia.org/wiki/Internet_Relay_Chat">IRC</a> are, as you likely know if you are reading this post. I use IRC with my development team at work. It&#8217;s helpful to stay logged in 24/7 to keep up on pertinent discussions. I could stay logged in 24/7 with any IRC client at work, but some days (and perhaps some evenings) I may be working and chatting from home. To solve this problem I was using <a href="http://tmux.sourceforge.net/">tmux</a> and <a href="http://irssi.org/">irssi</a> running on my work computer. If I ever needed to log in from home, I would just ssh into my work computer and connect to tmux.</p>
<p>Since switching jobs, I got a laptop. Obviously it is not connect 24/7. So I switched to using my home computer. In this process of changing, I decided to try out ZNC. The main benefit to ZNC over IRC to me is that I can use other IRC clients that have more features. So I&#8217;m going to explain how I set up ZNC and Limechat (OS X).</p>
<p>I was running ZNC on my home computer &#8211; currently a Mac Pro. But I find either my 1 yr old or 4 yr old keeps getting into my office and turning off my computer. So, just to try it out, I set up a Linode running Ubuntu. Here are the step by step instructions that took me all of 10 minutes to get set up.</p>
<p>If you don&#8217;t have a <a href="http://www.linode.com/?r=0e672eb6d53973f0ac51b6d8e95a067f55a676bb">Linode</a> account, create one. Please feel free to use my <a href="http://www.linode.com/?r=0e672eb6d53973f0ac51b6d8e95a067f55a676bb">affiliate link</a>.</p>
<ol>
<li>Add a Linode. I selected the cheapest one, which is a Linode 512 for $19.95 per month. (I understand that paying $20 is likely a waste of money just for an IRC bouncer, but I&#8217;ll talk about this later&#8230;)</li>
<li>Create an instance of Ubuntu on your Linode. I used Ubuntu 11.10. Make note of your new IP address for your server. You may want to create an entry in your hosts file so you can reference it by name instead of remembering the IP address.</li>
<li>Boot your Linode</li>
<li>ssh into your Linode</li>
<li>Create a new user:</li>
<ul>
<li>adduser &lt;username&gt;</li>
</ul>
<li>Create an admin group</li>
<ul>
<li>addgroup admin</li>
</ul>
<li>Add yourself to the admin group (so you can use sudo)</li>
<ul>
<li>adduser &lt;username&gt; admin</li>
</ul>
<li>Log in to your user account</li>
<ul>
<li>su &lt;username&gt;</li>
</ul>
<li>Install ZNC</li>
<ul>
<li>sudo apt-get install znc</li>
</ul>
<li>Make a ZNC config file</li>
<ul>
<li>znc &#8211;makeconf</li>
<li>Here are the options I selected:</li>
<ul>
<li>listen on port 6667</li>
<li>SSL? no</li>
<li>ipv6? no</li>
<li>Listen host &#8211; left blank for all</li>
<li>No global modules</li>
<li>Username and password &#8211; I used the same as my IRC nick &amp; password so it is easy to remember</li>
<li>Blind host &#8211; left blank</li>
<li>Number of lines to buffer per channel &#8211; 5000 (why not?)</li>
<li>Keep buffers after replay? no</li>
<li>Default channel modes &#8211; went with default [+stn]</li>
<li>yes on on modules</li>
<li>IRC server: irc.freenode.net, port 6667, no password</li>
<li>I added one IRC channel (#utahdjango), I&#8217;ll join the others later</li>
<li>I added my IRC user and password.</li>
<li>Then I started IRC at the end of the script. (If you don&#8217;t, just type &#8216;znc&#8217; to start the znc server)</li>
</ul>
</ul>
<li>Connect to your new server. I used Limechat with the following settings:</li>
<ul>
<li>Network name: Linode ZNC</li>
<li>Server: Name I mapped to my linode IP address in my hosts file. You could just enter your IP address.</li>
<li>Port: 6667</li>
<li>Server Password: passoword I entered on my IRC makeconf script</li>
<li>Nickname: irc nick</li>
<li>Login name: irc nick (remember I used the same nick &amp; password for znc that I use for freenode)</li>
<li>Real Name: Dustin Davis <img src='http://www.nerdydork.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
<li>Nickserv Passoword: same as above</li>
</ul>
</ol>
<p>That was it! I was connected and up and running just like that. Now, I&#8217;m bar far an expert on this stuff, but if you have any questions on what I did, leave a comment below.</p>
<p>Now, as I mentioned, paying $20 per month for an IRC bouncer doesn&#8217;t seem like a great idea. So here are some things to consider&#8230;</p>
<ul>
<li>Use your home computer. If you keep your computer on 24/7 and basically have a static IP this shouldn&#8217;t be a problem. If you have a router, you will have to set up port forwarding as well.</li>
<li>If you don&#8217;t want to leave your main computer or, or use you main computer in this manner, consider buying another computer. I have a friend that uses a plug computer for this purpose. This is actually very tempting for me. Paying for a linode for 5 months is about the same as buying a <a href="http://www.globalscaletechnologies.com/p-22-sheevaplug-dev-kit-us.aspx">$99 plug computer</a>. You would then have a small server running 24/7 on minimal power and it could also be used for a media server by plugging in an external hard drive among other uses. Another options is <a href="http://www.tonidoplug.com/">Tonido Plug</a>, but these always seem to sell out so fast.</li>
<li>User your work computer. This may not be easy. At my old job I was given a static IP and subdomain to connect to my computer.</li>
<li>If you are paying for hosting elsewhere, consider moving your hosting to your new Linode server. This would save you money from hosting elsewhere, but you should be comfortable managing your own hosting server.</li>
</ul>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.nerdydork.com/setting-up-a-znc-irc-bouncer.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Audio Books!</title>
		<link>http://www.nerdydork.com/audio-books.html</link>
		<comments>http://www.nerdydork.com/audio-books.html#comments</comments>
		<pubDate>Thu, 17 Nov 2011 16:07:07 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Finance]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Sites]]></category>

		<guid isPermaLink="false">http://www.nerdydork.com/?p=897</guid>
		<description><![CDATA[Commuting is a drag. There was a point in time that I had a 5 minute commute to work, then I decided to move and my company said I could just work from home. When it came time to switch jobs my walk down the stairs turned into a 45 minute (one-way) commute &#8211; and [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class='wb_fb_top'><div style="float:right;"></div></div><p>Commuting is a drag. There was a point in time that I had a 5 minute commute to work, then I decided to move and my company said I could just work from home. When it came time to switch jobs my walk down the stairs turned into a 45 minute (one-way) commute &#8211; and that was on a good day. So for the past two years I&#8217;ve found myself in the car for a minimum if an hour and a half each day. It seems insane at first thought, but I am a bit surprised how I have gotten used to it.</p>
<p>How do I pass the time? There are two main things I do that keep me sane: 1) Eat Sunflower seeds &#8211; this is mainly to keep me awake. I find I don&#8217;t get drowsy if I am constantly eating something and Spitz BBQ sunflower seeds are my addiction. 2) Listen to audio books.</p>
<p>Why audio books? A few reasons. First, I&#8217;m not much of a music person. I never have been. I will listen to music on occasion, but it gets old fast to me. I know, I&#8217;m strange in this regard. Second, I like learning new things. I don&#8217;t really get that from music. Third, there are lots of books I would like to read, but I just don&#8217;t have the time. My average weekday looks something like this:</p>
<p>4:00 AM &#8211; 6:30 AM: Freelance or independent work<br />
6:30 AM &#8211; 7:15 AM: Shower &amp; get dressed<br />
7:15 AM &#8211; 8:00 AM: Commute to work<br />
8:00 AM &#8211; 5:00 PM: Work my butt off!<br />
5:00 PM &#8211; 5:45 PM: Commute home<br />
5:45 PM &#8211; 8:00 PM: Family time (dinner, play with kids, etc)<br />
8:00 PM &#8211; 10:00 PM: Time with my wife (watch TV, talk, eat ice-cream)<br />
10:00 PM &#8211; 10:30 PM: Ready for bed, read, pray</p>
<p>So that is an average day, I wouldn&#8217;t say I stick to this schedule religiously, but it is somewhat predictable if nothing is on the schedule. So you can see I don&#8217;t really take the time to read. Dave Ramsey often says that the average millionaire reads one non-fiction book per month. So the best way for me to get in all the books I would like to read, is by listening to audio books.</p>
<p>Here are some of my favorite sources for audio books:</p>
<ol>
<li><a href="http://www.jdoqocy.com/click-1639684-10400420?sid=nerdydork">Audible.com</a>: this like the Amazon of audio books. (In fact, they are now owned by Amazon). I have a monthly subscription that I pay $14.95 per month for. This gives me 1 credit per month. Each audio book is 1 credit. Also, as a subscription member, you get discounted pricing on all books. If a discounted price of a book is less than $14.95 I will likely purchase it without using a credit and save my credits for more expensive books. I&#8217;ve learned that credits will expire if you don&#8217;t use them, so this encourages me to continue to find new interesting books to read. I do find that my favorite are self-help type books like Zig Ziglar stuff. It energizes me. I look at the membership price as an investment in me.</li>
<li><a href="http://www.booksshouldbefree.com/">BooksShouldBeFree.com</a>: This is a very easy to navigate site with all kinds of audio books created from public domain sources. Check out the <a href="http://www.booksshouldbefree.com/Top_100">top 100</a> to see some of the great classics available. Sometime is is nice to step away from non-fiction books and just be entertained.</li>
<li><a href="http://librivox.org/">LibriVox.org</a>: This may be a duplicate listing because it seems to me that all the listings in BooksShouldBeFree.com are essentially taken from LibriVox. It appears LibriVox is build on top of WordPress, so I mention them mainly because they are the source we can all thank for these free audio books, but their user interface will not be as nice as the custom interface of BooksShouldBeFree.com.</li>
<li>iTunes: While this integrates well with my iPhone, there are a few reasons I don&#8217;t use iTunes much. I have purchased AudioBooks on iTunes in the past and after switching computers and iPhones, I don&#8217;t have those books available and I can&#8217;t find them in my account history. I&#8217;m sure this has improved since the invention of iCloud. Second, they tend to be more expensive. Generally a book selling for $29.95 on iTunes I&#8217;ll just find on Audible.com and use 1 ($14.95) credit.</li>
<li>Podcasts: So I know they are not audio books per say, but if you run out of books you want to listen to, check out some podcasts that are in your interest area. The best place to find these are on iTunes, and most of them are free.</li>
</ol>
<div>So how do I play these audiobooks? I have an iPhone. I found it works great with Audio books. If I have audiobooks in MP3, I can tell iTunes to treat it as an audiobook. This gives me the ability to have all the audiobook features such as 30 second rewind, remembering position, skip when shuffling, playing at half the speed or playing at two times the speed.</div>
<div>I currently use an FM transmitter because I still have the factory stereo in my 2000 Maxima. But I have found that I can&#8217;t seem to find a station that is totally clear and I&#8217;ve tried a few FM transmitters. Soon I will be installing a new stereo that integrates better with iPhone. I went in to Best Buy last week and found a good stereo can be purchased for $100 and their geek squad will install it for $50 plus parts needed for integration. I believe they said parts for my car will run around $100. It is a bit more expensive because I have the Bose stereo system. So I&#8217;m looking at around $250 to get a new stereo installed. I&#8217;d say it is a good investment since I&#8217;ll be using it 7.5+ hours per week.</div>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.nerdydork.com/audio-books.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>iOS5 Install Unknown Error Occurred</title>
		<link>http://www.nerdydork.com/ios5-install-unknown-error-occurred.html</link>
		<comments>http://www.nerdydork.com/ios5-install-unknown-error-occurred.html#comments</comments>
		<pubDate>Wed, 12 Oct 2011 20:12:11 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.nerdydork.com/?p=884</guid>
		<description><![CDATA[While trying to install iOS5 today I kept getting an error message something to the effect of: The iPhone &#8220;Dustin&#8217;s iPhone&#8221; could not be restored. An unknown error occurred. After 4 attempts I could see I was getting nowhere. So I clicked the Restore button. After doing a factory restore, iOS5 was installed. Everything seems [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class='wb_fb_top'><div style="float:right;"></div></div><p>While trying to install iOS5 today I kept getting an error message something to the effect of:</p>
<blockquote><p>The iPhone &#8220;Dustin&#8217;s iPhone&#8221; could not be restored.<br />
An unknown error occurred.</p></blockquote>
<p>After 4 attempts I could see I was getting nowhere. So I clicked the Restore button. After doing a factory restore, iOS5 was installed. Everything seems to be working now.</p>
<p>Hope this helps!</p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.nerdydork.com/ios5-install-unknown-error-occurred.html/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>SVN to Git</title>
		<link>http://www.nerdydork.com/svn-to-git.html</link>
		<comments>http://www.nerdydork.com/svn-to-git.html#comments</comments>
		<pubDate>Mon, 07 Mar 2011 23:01:42 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[Programming & Internet]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[unfuddle]]></category>

		<guid isPermaLink="false">http://www.nerdydork.com/?p=818</guid>
		<description><![CDATA[I&#8217;ve been using Git now for over two years. Previously, all my source control was handled with subversion (SVN). To be honest, I can&#8217;t even remember how to use SVN. To be more honest, I cheated and used TortoiseSVN most of the time anyway. Every so often I want to update an old website, but [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class='wb_fb_top'><div style="float:right;"></div></div><p>I&#8217;ve been using Git now for over two years. Previously, all my source control was handled with subversion (SVN). To be honest, I can&#8217;t even remember how to use SVN. To be more honest, I cheated and used TortoiseSVN most of the time anyway.</p>
<p>Every so often I want to update an old website, but my repo is in SVN. I don&#8217;t even have it installed anymore. So what do I do. I quickly convert it to Git.</p>
<p>Most of my important repos are stored on my <a href="http://unfuddle.com">Unfuddle</a> account. Fortunately, they support both SVN &amp; Git. I recently converted an SVN repo to Git. Here were the steps I took (I&#8217;m using Ubuntu).</p>
<pre class="brush: bash; title: ; notranslate">mkdir svntemp
cd svntemp
git svn init http://myusername.unfuddle.com/svn/myusername_myrepo/ --no-metadata
git svn fetch</pre>
<p>&#8230; wait for fetching &#8230;</p>
<pre class="brush: bash; title: ; notranslate">cd ..
mkdir newgitrepo
cd newgitrepo 
git init
git remote add origin git@myusername.unfuddle.com:myusername/myrepo.git
cp -R ../svntemp/trunk/* .
git add *
git commit -am &quot;initial commit&quot;
git push origin master</pre>
<p>And I think we&#8217;re done here. Now, back to coding!</p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.nerdydork.com/svn-to-git.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speeding Up Online Videos</title>
		<link>http://www.nerdydork.com/speeding-up-online-videos.html</link>
		<comments>http://www.nerdydork.com/speeding-up-online-videos.html#comments</comments>
		<pubDate>Wed, 15 Sep 2010 20:32:57 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[Programming & Internet]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.nerdydork.com/speeding-up-online-videos.html</guid>
		<description><![CDATA[One of my favorite tools on Windows is Enounce MySpeed. It basically allows you to incread the playback speed of online videos &#8211; or any flash content really. This is great for watching long instuctional type vidoes. Unfortunately MySpeed is not available on Ubuntu Linux. I&#8217;ve had to come up with a work-around process to [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class='wb_fb_top'><div style="float:right;"></div></div><p>One of my favorite tools on Windows is <a href="http://www.enounce.com/myspeed">Enounce MySpeed</a>. It basically allows you to incread the playback speed of online videos &#8211; or any flash content really. This is great for watching long instuctional type vidoes.</p>
<p>Unfortunately MySpeed is not available on Ubuntu Linux. I&#8217;ve had to come up with a work-around process to speed up videos. That work-around is what I&#8217;m going to share here.</p>
<p>The first think I do is download the video that I want to speed up. This is made easy with the <a href="http://www.downloadhelper.net/">Video DownloadHelper</a> <a href="https://addons.mozilla.org/en-US/firefox/addon/3006/">plugin for Firefox</a>.</p>
<p>After downloading the video, I play it with the <a href="http://www.videolan.org/vlc/">VLC media player</a>, which you can easily download in the Ubuntu Software Center.</p>
<p><img height="127" style="margin: 5px; float: right" width="349" alt="" src="http://www.nerdydork.com/wp-content/uploads/2010/09/Selection_001.png" />In the lower right hand corder of VLC you will see 1.00x. Click this and you will then have a slider to adjust the playback speed.</p></p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.nerdydork.com/speeding-up-online-videos.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Fixing IE Issues</title>
		<link>http://www.nerdydork.com/fixing-ie-issues.html</link>
		<comments>http://www.nerdydork.com/fixing-ie-issues.html#comments</comments>
		<pubDate>Tue, 15 Dec 2009 18:28:44 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[Programming & Internet]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://www.nerdydork.com/fixing-ie-issues.html</guid>
		<description><![CDATA[This morning for whatever reason I was loathing IE. I hadn’t done any development work all weekend so I don’t even know why it was on my mind. In any case I had an epiphany of sorts. Despite being totally proprietary, IE seems to be the most easily exploited browser due to its support of [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class='wb_fb_top'><div style="float:right;"></div></div><p>This morning for whatever reason I was loathing IE. I hadn’t done any development work all weekend so I don’t even know why it was on my mind. In any case I had an epiphany of sorts.</p>
<p>Despite being totally proprietary, IE seems to be the most easily exploited browser due to its support of active x. (It’s no coincidence that IE users suffer from the most viruses, but that is neither here nor there). What if someone were to hack IE and make use of the popular open source rendering engine <a href="http://webkit.org/">webkit</a>?</p>
<p>So instead of the ugly display because IE still can’t do CSS rounded corners and other goodies, and instead of lame javascript errors, IE could finally work!</p>
<p>Surely I’m not the smartest guy on the planet. Someone had to have thought of this already. But would that person spend the time to make it happen?</p>
<p>Sure they would… if they worked for Google.</p>
<p>I was delighted to find <a href="http://code.google.com/chrome/chromeframe/">Google Chrome Frame</a>. It</p>
<p>I tried it out on a particular site I was working on. I have never seen IE render so beautifully!</p>
<p>Thanks Google for making IE suck less!</p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.nerdydork.com/fixing-ie-issues.html/feed</wfw:commentRss>
		<slash:comments>38</slash:comments>
		</item>
		<item>
		<title>Use Google Earth to Track Your Mileage</title>
		<link>http://www.nerdydork.com/use-google-earth-to-track-your-mileage.html</link>
		<comments>http://www.nerdydork.com/use-google-earth-to-track-your-mileage.html#comments</comments>
		<pubDate>Wed, 08 Jul 2009 15:59:49 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[google earth]]></category>

		<guid isPermaLink="false">http://www.nerdydork.com/use-google-earth-to-track-your-mileage.html</guid>
		<description><![CDATA[Recently I&#8217;ve taken up hiking during lunch. There is a nice mountain trail behind my house the I really enjoy. There are a few landmarks that I generally try to make it to with the time I have available. I was curious exactly how far those landmarks were so I used Google Earth to find [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class='wb_fb_top'><div style="float:right;"></div></div><p>Recently I&#8217;ve taken up hiking during lunch. There is a nice mountain trail behind my house the I really enjoy. There are a few landmarks that I generally try to make it to with the time I have available. I was curious exactly how far those landmarks were so I used Google Earth to find out. Curious to know just how accurate Google Earth was, I decided to test it out. I found a local high school track and measured the path around it. .25 miles looks accurate to me!</p>
<p><a href="http://www.nerdydork.com/wp-content/uploads/2009/07/image.png"><img style="display: inline; border: 0px;" title="image" src="http://www.nerdydork.com/wp-content/uploads/2009/07/image_thumb.png" border="0" alt="image" width="244" height="208" /></a></p>
<p>To use this tool, click the ruler icon and use the path tab to draw polygon shapes.</p>
<p><a href="http://www.nerdydork.com/wp-content/uploads/2009/07/image1.png"><img style="display: inline; border: 0px;" title="image" src="http://www.nerdydork.com/wp-content/uploads/2009/07/image_thumb1.png" border="0" alt="image" width="244" height="103" /></a></p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.nerdydork.com/use-google-earth-to-track-your-mileage.html/feed</wfw:commentRss>
		<slash:comments>52</slash:comments>
		</item>
		<item>
		<title>Windows 7 Releases October 22nd 2009</title>
		<link>http://www.nerdydork.com/windows-7-releases-october-22nd-2009.html</link>
		<comments>http://www.nerdydork.com/windows-7-releases-october-22nd-2009.html#comments</comments>
		<pubDate>Fri, 26 Jun 2009 11:27:10 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[Products]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.nerdydork.com/windows-7-releases-october-22nd-2009.html</guid>
		<description><![CDATA[This morning was the first time I heard an official release date for Windows 7. I&#8217;ve been running Windows 7 betas for the past 3 months and it has been far more stable and responsive than Vista was for me. I will definitely be upgrading this one on release day! I have just put in [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class='wb_fb_top'><div style="float:right;"></div></div><p><iframe style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: left; border-left-style: none; margin-right: 10px" height="125" border="0" src="http://rcm.amazon.com/e/cm?t=ldspdacom-20&amp;o=1&amp;p=21&amp;l=ur1&amp;category=software&amp;banner=1FNG04A5PNRC23F35MR2&amp;f=ifr" frameborder="0" width="125" marginwidth="0" scrolling="no"></iframe>
<p>This morning was the first time I heard an official release date for Windows 7. I&#8217;ve been running Windows 7 betas for the past 3 months and it has been far more stable and responsive than Vista was for me. I will definitely be upgrading this one on release day! I have just put in my pre-order <a href="http://rcm.amazon.com/e/cm?t=ldspdacom-20&amp;amp;o=1&amp;amp;p=21&amp;amp;l=ur1&amp;amp;category=software&amp;amp;banner=1FNG04A5PNRC23F35MR2&amp;amp;f=ifr">at Amazon</a>. I&#8217;ll be going with the Ultimate version ($219) since I have a <a href="http://byomc.com" class="broken_link">media center PC</a> and I want all the bells and whistles. Really, this is the first time EVER I&#8217;ve been excited for a Microsoft launch. Crazy.</p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.nerdydork.com/windows-7-releases-october-22nd-2009.html/feed</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>Pidgin Crashing on Windows 7 64-bit &#8211; Fixed</title>
		<link>http://www.nerdydork.com/pidgin-crashing-on-windows-7-64-bit-fixed.html</link>
		<comments>http://www.nerdydork.com/pidgin-crashing-on-windows-7-64-bit-fixed.html#comments</comments>
		<pubDate>Wed, 17 Jun 2009 16:28:26 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[pidgin]]></category>
		<category><![CDATA[windows 7]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://www.nerdydork.com/pidgin-crashing-on-windows-7-64-bit-fixed.html</guid>
		<description><![CDATA[Ever since installing Windows 7 RC, I have not been able to run Pidgin. It would put an icon in the tray, then disappear. Finally after searching the net high and low and found this comment on an open pidgin ticket that seemed to resolve the problem. I have XAMPP installed and the PHP subdirectory [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class='wb_fb_top'><div style="float:right;"></div></div><p>Ever since installing Windows 7 RC, I have not been able to run <a href="http://www.pidgin.im">Pidgin</a>. It would put an icon in the tray, then disappear. Finally after searching the net high and low and found <a href="http://finicity.uservoice.com/pages/general/suggestions/11731">this comment</a> on an open pidgin ticket that seemed to resolve the problem.</p>
<blockquote><p>I have XAMPP installed and the PHP subdirectory is in the path. I renamed the aspell-15.dll in this directory and the crash went away. Renaming the file back caused the crash. Seems to be a conflict between these two files.</p>
</blockquote>
<p>I also had the same issue with XAMPP installed. Thanks Chowarmaan, whoever you are!</p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.nerdydork.com/pidgin-crashing-on-windows-7-64-bit-fixed.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>My Applications</title>
		<link>http://www.nerdydork.com/my-applications.html</link>
		<comments>http://www.nerdydork.com/my-applications.html#comments</comments>
		<pubDate>Tue, 05 May 2009 16:25:14 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[Products]]></category>
		<category><![CDATA[Programming & Internet]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.nerdydork.com/my-applications.html</guid>
		<description><![CDATA[Windows 7 Release Candidate is now available. I&#8217;ve been using the beta of Windows 7 quite happily for a couple of months now after frustrating ordeals with Vista. The only problem I&#8217;ve had with the beta version of Windows 7 is having Windows Explorer crash 3-5 times a day. It hasn&#8217;t been a huge deal [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class='wb_fb_top'><div style="float:right;"></div></div><p><iframe style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" height="125" border="0" src="http://rcm.amazon.com/e/cm?t=ldspdacom-20&amp;o=1&amp;p=21&amp;l=ur1&amp;category=software&amp;banner=1FNG04A5PNRC23F35MR2&amp;f=ifr" frameborder="0" width="125" marginwidth="0" scrolling="no"></iframe>
<p><a href="http://www.microsoft.com/windows/windows-7/">Windows 7</a> Release Candidate is now available. I&#8217;ve been using the beta of Windows 7 quite happily for a couple of months now after frustrating ordeals with Vista. The only problem I&#8217;ve had with the beta version of Windows 7 is having Windows Explorer crash 3-5 times a day. It hasn&#8217;t been a huge deal because it restarts automatically after about 10 seconds. Still, it is enough to consider getting the RC.</p>
<p>So as I generally do before installing a new OS, I took inventory of my installed applications and began backing up documents to an external HD I recently bought. Files are simple enough to back up and restore, but applications are not so easy. They all have to be reinstalled to work right, then there is the issue of tracking down the license codes I&#8217;ve purchased for the commercial software. After compiling my list of applications I use, I&#8217;m starting to wonder if I really should install the RC, or just wait for the official release as I will likely have to do this all over again.</p>
<p>So here are my apps I currently have installed in alphabetical order (bold items I have commercial licenses for). Sorry, I&#8217;m not going to link to all of them. It would take forever.</p>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="138">Acrobat Reader</td>
<td width="175">Essential</td>
</tr>
<tr>
<td>Audacity</td>
<td>Audio editing tool of choice</td>
</tr>
<tr>
<td>avast! Antivirus</td>
<td>Free antivirus that keeps the Windows warnings away</td>
</tr>
<tr>
<td><strong>Beyond Compare</strong></td>
<td>File/Folder compare tool</td>
</tr>
<tr>
<td>Bubbles</td>
<td>Handy tool I use along with SlimTimer</td>
</tr>
<tr>
<td>CCleaner</td>
<td>For cleaning up my Windows Machine</td>
</tr>
<tr>
<td>Circle Dock</td>
<td>Cool new tool I found that is quite handy</td>
</tr>
<tr>
<td>Console 2</td>
<td>Better command line tool</td>
</tr>
<tr>
<td>Defraggler</td>
<td>Better defrag tool</td>
</tr>
<tr>
<td>Django</td>
<td>Web framework of choice</td>
</tr>
<tr>
<td>DVDFab</td>
<td>For backing up commonly used (exercise) DVDs for the media center PC</td>
</tr>
<tr>
<td><strong>E</strong></td>
<td>Favorite Text Editor</td>
</tr>
<tr>
<td>Family Search</td>
<td>Family history program</td>
</tr>
<tr>
<td>ffdshow</td>
<td>Good codecs to have</td>
</tr>
<tr>
<td>Firefox</td>
<td>Default Web Browser</td>
</tr>
<tr>
<td>Google Chrome</td>
<td>Second Favorite Browser</td>
</tr>
<tr>
<td>Google Earth</td>
<td>Just too cool not to have</td>
</tr>
<tr>
<td>GoToMeeting</td>
<td>Online meeting tool we use at work</td>
</tr>
<tr>
<td>iTunes</td>
<td>To keep my iPhone &amp; iPods synced</td>
</tr>
<tr>
<td>Jing</td>
<td>Nice free tool for creating quick tutorial videos</td>
</tr>
<tr>
<td>jZip</td>
<td>Free alternative to WinRAR</td>
</tr>
<tr>
<td><strong>Mozy</strong></td>
<td>Hasn&#8217;t worked yet on Windows 7, will likely use Jungle Disk instead.</td>
</tr>
<tr>
<td><strong>MS Office 2007</strong></td>
<td>Word, Excel, etc.</td>
</tr>
<tr>
<td><strong>MySpeed Plugin</strong></td>
<td>Allows me to speed up online videos to watch them faster</td>
</tr>
<tr>
<td><strong>MySQL-Front</strong></td>
<td>Another MySQL admin client</td>
</tr>
<tr>
<td>pgAdmin</td>
<td>PostgreSQL admin client</td>
</tr>
<tr>
<td><strong>Photoshop</strong></td>
<td>Image editing tool of choice</td>
</tr>
<tr>
<td>Picasa 3</td>
<td>Family photo tool of choice</td>
</tr>
<tr>
<td>Pidgin</td>
<td>Multiple IM client and IRC client</td>
</tr>
<tr>
<td>Plink</td>
<td>Command line putty for scripting</td>
</tr>
<tr>
<td>Printer Driver</td>
<td>My sweet brother MFC-885C All in one</td>
</tr>
<tr>
<td>Putty</td>
<td>SSH client</td>
</tr>
<tr>
<td>Python</td>
<td>Scripting language</td>
</tr>
<tr>
<td><strong>QuickBooks</strong></td>
<td>My business accounting software</td>
</tr>
<tr>
<td>Safari</td>
<td>Yet another browser</td>
</tr>
<tr>
<td>Skype</td>
<td>Online phone</td>
</tr>
<tr>
<td><strong>SmartDraw</strong></td>
<td>Tool I use for process mapping</td>
</tr>
<tr>
<td><strong>Snagit</strong></td>
<td>Another commonly used tools for sending screenshots</td>
</tr>
<tr>
<td>SQLite Administrator</td>
<td>Just as it says it is</td>
</tr>
<tr>
<td><strong>SQLyog Enterprise</strong></td>
<td>MySQL admin client</td>
</tr>
<tr>
<td>TeamViewer</td>
<td>Essential tool as the family IT guy</td>
</tr>
<tr>
<td>Thunderbird</td>
<td>Email client</td>
</tr>
<tr>
<td>TortoiseSVN</td>
<td>Subversion client</td>
</tr>
<tr>
<td>TweetDeck</td>
<td>Twitter client</td>
</tr>
<tr>
<td>uTorrent</td>
<td>Torrent client</td>
</tr>
<tr>
<td><strong>Visual Studio</strong></td>
<td>For .NET programming</td>
</tr>
<tr>
<td>Windows Live Writer</td>
<td>Favorite Blog Editor</td>
</tr>
<tr>
<td>Windows Live/MSN Messenger</td>
<td>The IM we use at work</td>
</tr>
<tr>
<td>Xampp</td>
<td>Apache, PHP, MySQL, etc. bundle</td>
</tr>
</tbody>
</table>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.nerdydork.com/my-applications.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.nerdydork.com/category/technology/feed ) in 1.49553 seconds, on Feb 4th, 2012 at 11:13 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 5th, 2012 at 12:13 am UTC -->
