<?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>Ed The Dev .com &#187; Solutions</title>
	<atom:link href="http://www.edthedev.com/topics/solutions/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.edthedev.com</link>
	<description>Edward Delaporte&#039;s Technical Journal</description>
	<lastBuildDate>Sun, 05 Feb 2012 00:30:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Finding the MAC address on Android</title>
		<link>http://www.edthedev.com/2011/finding-the-mac-address-on-android/</link>
		<comments>http://www.edthedev.com/2011/finding-the-mac-address-on-android/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 02:30:13 +0000</pubDate>
		<dc:creator>Edward Delaporte</dc:creator>
				<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[MAC address]]></category>
		<category><![CDATA[phone]]></category>

		<guid isPermaLink="false">http://www.edthedev.com/?p=11155</guid>
		<description><![CDATA[I needed to find the MAC address on my Motorola Droid phone in order to register with the U of I Computer Registration anti-theft system. I didn&#8217;t really find specific instructions, so I&#8217;m posting some. I&#8217;m assuming that other Android phones will be similar. Go to the home screen. Hit the menu key. Choose &#8216;settings&#8217; [...]]]></description>
			<content:encoded><![CDATA[<p>I needed to find the MAC address on my Motorola Droid phone in order to register with the <a href="https://compreg.cites.illinois.edu">U of I Computer Registration anti-theft system</a>.</p>

<p>I didn&#8217;t really find specific instructions, so I&#8217;m posting some. I&#8217;m assuming that other Android phones will be similar.</p>

<ol>
<li>Go to the home screen.</li>
<li>Hit the menu key.</li>
<li>Choose &#8216;settings&#8217; on the menu that pops up.</li>
<li>Scroll all the way down and select &#8216;About phone&#8217;.</li>
<li>Select &#8216;status&#8217;.</li>
<li>You&#8217;ll have to scroll down a bit again, but you should see &#8216;Wi-Fi MAC address&#8217; in the list; along with other identifying information.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.edthedev.com/2011/finding-the-mac-address-on-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sash Catanzanzarite talks about washing the dishes</title>
		<link>http://www.edthedev.com/2011/sash-catanzanzarite-talks-about-washing-the-dishes/</link>
		<comments>http://www.edthedev.com/2011/sash-catanzanzarite-talks-about-washing-the-dishes/#comments</comments>
		<pubDate>Wed, 23 Feb 2011 02:09:36 +0000</pubDate>
		<dc:creator>Edward Delaporte</dc:creator>
				<category><![CDATA[Solutions]]></category>

		<guid isPermaLink="false">http://www.edthedev.com/?p=11153</guid>
		<description><![CDATA[Very cool article about leadership and detergent.]]></description>
			<content:encoded><![CDATA[<p>Very cool article about <a href="http://thesash.me/wash-the-dishes-when-nobody-else-will">leadership and detergent</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.edthedev.com/2011/sash-catanzanzarite-talks-about-washing-the-dishes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Isolating python installations with virtualenv</title>
		<link>http://www.edthedev.com/2010/isolating-python-installations-with-virtualenv/</link>
		<comments>http://www.edthedev.com/2010/isolating-python-installations-with-virtualenv/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 14:47:51 +0000</pubDate>
		<dc:creator>Edward Delaporte</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Solutions]]></category>

		<guid isPermaLink="false">http://www.edthedev.com/?p=11130</guid>
		<description><![CDATA[I write code for linux servers with diverse packages. Python2.5 is no longer available in Ubuntu Lucid. Thankfully, Felix Krull is maintaining a repository:]]></description>
			<content:encoded><![CDATA[<p>I write code for linux servers with diverse packages. </p>

<p>Python2.5 is no longer available in Ubuntu Lucid.</p>

<p>Thankfully, Felix Krull is maintaining a repository:

<a href="https://launchpad.net/~fkrull/+archive/deadsnakes</p>&#8221; title=&#8221;https://launchpad.net/~fkrull/+archive/deadsnakes</p>&#8221; target=&#8221;_blank&#8221;>launchpad.net/~fkrull/+archive/deadsnakes</p></a>

<pre># Setuptools make installing VirtualEnv easier, so let's install it from the Debian package:
sudo apt-get install python-setuptools

#Next, grab VirtualEnv: <a href="http://pypi.python.org/pypi/virtualenv" title="http://pypi.python.org/pypi/virtualenv" target="_blank">pypi.python.org/pypi/virtualenv</a>
sudo easy_install virtualenv

#Now for some irony - we'll use setuptools to install 'pip', which is a nicer tool that does the same thing, but works better with virtualenv:
sudo easy_install pip

#Now we setup a project (named edthedev for example):
mkdir ~/projects
mkdir ~/virtualenv

# Create a Python2.5 virtual environment for the edthedev project
virtualenv --python=/usr/bin/python2.5 ~/virtualenv/edthedev

# Check out the project:
cd ~/projects
svn co <a href="http://svn.edthedev.com/projects/edthedev" title="http://svn.edthedev.com/projects/edthedev" target="_blank">svn.edthedev.com/projects/edthedev</a>

# Activate the virutalenv that we created for this project.
source ~/virtualenv/edthedev/bin/activate

# Try running the project
~/edthedev/bin/addJiraTicket --debug

# Look at that, we're missing some required packages... 
# so use pip to install it into our virtual environment.
pip install fpconst

# But one of our packages isn't available on pypi, 
# so we will install it directly from the online source tarball
pip install <a href="http://sourceforge.net/projects/pywebsvcs/files/SOAP.py/SOAPpy%200.11.0/SOAPpy-0.11.0.tar.gz/download" title="http://sourceforge.net/projects/pywebsvcs/files/SOAP.py/SOAPpy%200.11.0/SOAPpy-0.11.0.tar.gz/download" target="_blank">sourceforge.net/projects/pywebsvcs/files/SOAP.py/SOAPpy%200.11.0/SOAPpy-0.11.0.tar.gz/download</a>

# Repeat the previous few steps until your program runs properly inside the virtual environment.
~/edthedev/bin/addJiraTicket --debug

# We will save a REQUIREMENTS.txt file to include with our project to make things easier for the next user.
pip freeze > REQUIREMENTS.txt</pre>

<p>Check out the contents of REQUIREMENTS.txt, and notice that it includes every package we&#8217;ve installed to get our virtual environment working, inluding the exact package version. You may want to change the &#8216;==&#8217; signs to &#8216;>=&#8217; if you trust your dependencies to maintain backward compatibility.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.edthedev.com/2010/isolating-python-installations-with-virtualenv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Or how loud is your green dot?</title>
		<link>http://www.edthedev.com/2010/or-how-big-is-your-green-dot/</link>
		<comments>http://www.edthedev.com/2010/or-how-big-is-your-green-dot/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 15:25:42 +0000</pubDate>
		<dc:creator>Edward Delaporte</dc:creator>
				<category><![CDATA[Solutions]]></category>

		<guid isPermaLink="false">http://www.edthedev.com/?p=11105</guid>
		<description><![CDATA[Seth Godin asks How big is your red zone? I like this article, because one of my passions in life is striving to be a really loud green dot.* Yea, I had to wait a quarter of a lifetime to say that; and yea, it was worth the wait.]]></description>
			<content:encoded><![CDATA[<p>Seth Godin asks <a href="http://sethgodin.typepad.com/seths_blog/2010/08/how-big-is-your-red-zone.html">How big is your red zone?</a></p>

<p>I like this article, because one of my passions in life is striving to be a really loud green dot.*</p>

<ul>
<li>Yea, I had to wait a quarter of a lifetime to say that; and yea, it was worth the wait.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.edthedev.com/2010/or-how-big-is-your-green-dot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deployment first development</title>
		<link>http://www.edthedev.com/2010/deployment-first-development/</link>
		<comments>http://www.edthedev.com/2010/deployment-first-development/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 16:52:13 +0000</pubDate>
		<dc:creator>Edward Delaporte</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Solutions]]></category>

		<guid isPermaLink="false">http://www.edthedev.com/?p=11100</guid>
		<description><![CDATA[This is a very cool article that encourages us to face our worst fears: packaging and deploying]]></description>
			<content:encoded><![CDATA[<p>This is <a href="http://jaybill.com/2010/08/17/deployment-first-development/">a very cool article that encourages us to face our worst fears</a>: packaging and deploying</p>
]]></content:encoded>
			<wfw:commentRss>http://www.edthedev.com/2010/deployment-first-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Live long and code well</title>
		<link>http://www.edthedev.com/2010/live-long-and-code-well/</link>
		<comments>http://www.edthedev.com/2010/live-long-and-code-well/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 14:53:03 +0000</pubDate>
		<dc:creator>Edward Delaporte</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Solutions]]></category>

		<guid isPermaLink="false">http://www.edthedev.com/?p=11098</guid>
		<description><![CDATA[Zed Shaw gives advice on staying healthy as a programmer.]]></description>
			<content:encoded><![CDATA[<p>Zed Shaw gives advice on <a href="http://sheddingbikes.com/posts/1281257293.html">staying healthy as a programmer</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.edthedev.com/2010/live-long-and-code-well/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freeing up space on Windows hard drives</title>
		<link>http://www.edthedev.com/2010/freeing-up-space-on-windows-hard-drives/</link>
		<comments>http://www.edthedev.com/2010/freeing-up-space-on-windows-hard-drives/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 02:14:49 +0000</pubDate>
		<dc:creator>Edward Delaporte</dc:creator>
				<category><![CDATA[Solutions]]></category>

		<guid isPermaLink="false">http://www.edthedev.com/2010/freeing-up-space-on-windows-hard-drives/</guid>
		<description><![CDATA[WinDirStat is freeware for Windows that creates a visualization of the largest files on your hard drives. It&#8217;s priceless for freeing up that extra gigabyte that you need to install that new game. It found that my World of Warcraft installer files were wasting 8GB of space, even though I had removed World of Warcraft, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://windirstat.info/">WinDirStat</a> is freeware for Windows that creates a visualization of the largest files on your hard drives. It&#8217;s priceless for freeing up that extra gigabyte that you need to install that new game.</p>

<p>It found that my World of Warcraft installer files were wasting 8GB of
space, even though I had removed World of Warcraft, itself.</p>

<p>Also, there&#8217;s a MAC version called <a href="http://windirstat.info/">Disk Inventory X</a>, which is also quite awesome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.edthedev.com/2010/freeing-up-space-on-windows-hard-drives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My vimrc file</title>
		<link>http://www.edthedev.com/2010/my-vimrc-file/</link>
		<comments>http://www.edthedev.com/2010/my-vimrc-file/#comments</comments>
		<pubDate>Sat, 29 May 2010 20:40:40 +0000</pubDate>
		<dc:creator>Edward Delaporte</dc:creator>
				<category><![CDATA[Solutions]]></category>

		<guid isPermaLink="false">http://www.edthedev.com/2010/my-vimrc-file/</guid>
		<description><![CDATA[map! ^[OA ^[ka "For Solaris map! ^[OB ^[ja map! ^[OD ^[i map! ^[OC ^[la set nocompatible "Don't emulate old vi bugs. set autoindent " Yay! set smartindent set tabstop=4 set shiftwidth=4 set expandtab set showmatch "Parenthesis matching. set vb t_vb= "Flash instead of beep. set ruler set nohls "Do not highlight search matches. set incsearch [...]]]></description>
			<content:encoded><![CDATA[<p><pre><code>
map! ^[OA ^[ka "For Solaris
map! ^[OB ^[ja
map! ^[OD ^[i
map! ^[OC ^[la
set nocompatible "Don't emulate old vi bugs.
set autoindent " Yay!
set smartindent
set tabstop=4
set shiftwidth=4
set expandtab
set showmatch "Parenthesis matching.
set vb t_vb= "Flash instead of beep.
set ruler
set nohls "Do not highlight search matches.
set incsearch "Search as I type
" Type :help options within vim to get a complete list of options.

set nowrap "Do not wrap long lines of code.
set textwidth=120
set foldmethod=marker

"Place all vim backup files into the user home directory.
set backupdir=~/.vimbackup
</code></pre></p>
]]></content:encoded>
			<wfw:commentRss>http://www.edthedev.com/2010/my-vimrc-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The new best way to make sure that your browser is safe.</title>
		<link>http://www.edthedev.com/2010/the-new-best-way-to-make-sure-that-your-browser-is-safe/</link>
		<comments>http://www.edthedev.com/2010/the-new-best-way-to-make-sure-that-your-browser-is-safe/#comments</comments>
		<pubDate>Fri, 21 May 2010 03:42:51 +0000</pubDate>
		<dc:creator>Edward Delaporte</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Solutions]]></category>

		<guid isPermaLink="false">http://www.edthedev.com/?p=10979</guid>
		<description><![CDATA[Browser plugins are rapidly becoming the most common way to get a computer virus infection. Normally I lecture people about switching to Firefox, installing NoScript and checking at least monthly that Java and Adobe are up to date. The folks at Mozilla seem to be on a quest to save me from forever repeating those [...]]]></description>
			<content:encoded><![CDATA[<p>Browser plugins are rapidly becoming the most common way to get a computer virus infection.</p>

<p>Normally I lecture people about switching to Firefox, installing NoScript and checking at least monthly that Java and Adobe are up to date. The folks at Mozilla seem to be on a quest to save me from forever repeating those instructions, and I thank them kindly.</p>

<p>My instructions are now a bit simpler:</p>

<ol>
<li><p>Switch to Firefox</p></li>
<li><p>Use this website to make sure that you are safe.
<a href="https://www.mozilla.com/en-US/plugincheck/" target="_blank">https://www.mozilla.com/en-US/plugincheck/</a></p></li>
<li><p>Check back with the website weekly.</p></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.edthedev.com/2010/the-new-best-way-to-make-sure-that-your-browser-is-safe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Background noise for programming</title>
		<link>http://www.edthedev.com/2010/background-noise-for-programming/</link>
		<comments>http://www.edthedev.com/2010/background-noise-for-programming/#comments</comments>
		<pubDate>Sat, 15 May 2010 07:01:33 +0000</pubDate>
		<dc:creator>Edward Delaporte</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Solutions]]></category>

		<guid isPermaLink="false">http://www.edthedev.com/?p=10964</guid>
		<description><![CDATA[It&#8217;s a lot easier to write software in a noise-free environment, or predictable consistent background noise. A good set of headphones is a must, and an iPod application or two can be really handy. White Noise by TMSoft is currently my favorite. Their boat rocking, railroad tracks bumps and various types of rain are great [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a lot easier to write software in a noise-free environment, or predictable consistent background noise. A good set of headphones is a must, and an iPod application or two can be really handy.</p>

<p><a href="http://www.tmsoft.com/iphone-whitenoise.html">White Noise</a> by TMSoft is currently my favorite. Their boat rocking, railroad tracks bumps and various types of rain are great for relaxing just the right amount.</p>

<p>I also highly recommend the &#8216;Pirates of the Caribbean&#8217; movie sound track, and just about anything composed by John Williams.</p>

<p>Update: My friend Rob pointed me to the incredibly awesome <a href="http://www.trancearoundtheworld.com/">Trance Around the World Podcast</a>. Highly recommended.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.edthedev.com/2010/background-noise-for-programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

