<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
	<channel>
		<title>Mikmorg&#039;s Tech Blog</title>
		<link>http://blog.mdmsolutions.org/index.php</link>
		<description><![CDATA[MDM Solutions]]></description>
		<copyright>Copyright 2010, Michael Morgan</copyright>
		<managingEditor>Michael Morgan</managingEditor>
		<language>en-US</language>
		<generator>SPHPBLOG 0.4.8</generator>
		<item>
			<title>Shorewall Local Device Address List</title>
			<link>http://blog.mdmsolutions.org/index.php?entry=entry080602-185714</link>
			<description><![CDATA[If anyone uses shorewall for their firewall needs, and uses a dynamic IP, then this is definitely the most useful tidbit ever. This grabs a list of addresses bound to the local host with ipv4 devices (ipv6 can be added by replacing inet with inet6). This comma-separated list is then stored in the $SELF variable which can be used in rule columns such as Original Destination. All you have to do is add this line to the <i>params</i> file.<br /><br /><code><br />SELF=$(ifconfig | sed -n &#039;s/.*inet addr:\\([^ ]*\\).*/\\1/gp&#039; | sed &#039;:a;N;s/\\n/,/;ta&#039;)<br /></code><br /><br />Simply restarting shorewall will rerun this... so you can cue a re-parse by adding &#039;service shorewall restart&#039; to your network init, or your dhcp renewal script.<br /><br />Really, it is useful for more than shorewall... but it is why I use it :).]]></description>
			<category>Technology</category>
			<guid isPermaLink="true">http://blog.mdmsolutions.org/index.php?entry=entry080602-185714</guid>
			<author>Michael Morgan</author>
			<pubDate>Mon, 02 Jun 2008 23:57:14 GMT</pubDate>
			<comments>http://blog.mdmsolutions.org/comments.php?y=08&amp;m=06&amp;entry=entry080602-185714</comments>
		</item>
		<item>
			<title>RedHat/Fedora/CentOS: Display Running Services</title>
			<link>http://blog.mdmsolutions.org/index.php?entry=entry080601-174943</link>
			<description><![CDATA[This is a quick lil one-liner to display which services are running currently versus which are running by default. It is helpful when you have a server running for a while, and you need to restart but you forgot which services you&#039;ve manually started.<br /><br /><code><br />vimdiff &lt;(for i in /etc/init.d/*; do echo -n &quot;$i &quot;; $i status 2&gt;/dev/null | grep -c running; done | egrep -v &#039;0$&#039; | cut -d&#039; &#039; -f1 | cut -d/ -f4) &lt;(chkconfig --list | awk &#039;{ print $1, $7}&#039; | sed -n &#039;/5:on/p&#039; | cut -d&#039; &#039; -f1)<br /></code><br /><br />It takes a while to come up with the report, but it isn&#039;t something you&#039;d run often anyway... The right side of the screen shows the default services, and the left side shows the currently running services.]]></description>
			<category>Technology</category>
			<guid isPermaLink="true">http://blog.mdmsolutions.org/index.php?entry=entry080601-174943</guid>
			<author>Michael Morgan</author>
			<pubDate>Sun, 01 Jun 2008 22:49:43 GMT</pubDate>
			<comments>http://blog.mdmsolutions.org/comments.php?y=08&amp;m=06&amp;entry=entry080601-174943</comments>
		</item>
		<item>
			<title>Using mercurial&#039;s hgweb.cgi and hgwebdir.cgi with thttpd</title>
			<link>http://blog.mdmsolutions.org/index.php?entry=entry080508-091813</link>
			<description><![CDATA[I figured I&#039;d share this gem to get hgwebdir.cgi working with thttpd, as I needed this for a light user-space server for a while. I don&#039;t use it anymore, but people are more than welcome to try this out to get hgwebdir.cgi working with thttpd. Just stick the following lines of python in the cgi file, before the call to WSGIServer, making sure that SCRIPT_NAME points to the appropriate location of the file itself.<br /><br /><code><br />import os<br />os.environ[&quot;SCRIPT_NAME&quot;] = &#039;/cgi-bin/hgwebdir.cgi&#039;<br />os.environ[&quot;REQUEST_URI&quot;] = os.environ[&quot;SCRIPT_NAME&quot;]<br />if os.environ.has_key(&quot;PATH_INFO&quot;):<br />   os.environ[&quot;REQUEST_URI&quot;] += os.environ[&quot;PATH_INFO&quot;]<br />if os.environ.has_key(&quot;QUERY_STRING&quot;):<br />   os.environ[&quot;REQUEST_URI&quot;] += &quot;?&quot; + os.environ[&quot;QUERY_STRING&quot;]<br /></code>]]></description>
			<category>Technology</category>
			<guid isPermaLink="true">http://blog.mdmsolutions.org/index.php?entry=entry080508-091813</guid>
			<author>Michael Morgan</author>
			<pubDate>Thu, 08 May 2008 14:18:13 GMT</pubDate>
			<comments>http://blog.mdmsolutions.org/comments.php?y=08&amp;m=05&amp;entry=entry080508-091813</comments>
		</item>
		<item>
			<title>Settling down in my new home</title>
			<link>http://blog.mdmsolutions.org/index.php?entry=entry080312-171401</link>
			<description><![CDATA[<br />I have time to write today, as I&#039;m home sick :(. Anyway, I&#039;m very excited to have finally made the big move to Chicago. I purchased a condo in Lakeview at the very end of my last semester in college, and have been moved in since January. It has been a long time since I&#039;ve posted, mainly because so many huge changes have been made, it has been impossible to keep up with.<br /><br />The Chicago area is great. I use public transportation every day and thank God for the fact that I don&#039;t rely on using a car; especially as this dollar keeps weakening, bringing gas prices up to unrealistic numbers. I&#039;m in a great area, within walking distance to nearly everything.<br /><br />My job is a half hour away, in the loop. The trip isn&#039;t nearly as bad as it sounds, however. I can almost always read or use my laptop on the way there and back; which really makes time fly.<br /><br />I finally have a roommate as of this month; although for a short period of time. I plan on getting another roommate in a few months; hopefully someone I know. I still need to rent out my parking spaces though!<br /><br />Anyway, things are looking up. My job is incredible, along with the people I work with and the perks. I actually feel like I&#039;m missing out being home sick.]]></description>
			<category>Personal</category>
			<guid isPermaLink="true">http://blog.mdmsolutions.org/index.php?entry=entry080312-171401</guid>
			<author>Michael Morgan</author>
			<pubDate>Wed, 12 Mar 2008 22:14:01 GMT</pubDate>
			<comments>http://blog.mdmsolutions.org/comments.php?y=08&amp;m=03&amp;entry=entry080312-171401</comments>
		</item>
		<item>
			<title>Downtime possibly justified...</title>
			<link>http://blog.mdmsolutions.org/index.php?entry=entry080302-221015</link>
			<description><![CDATA[For whom it may concern,<br /><br /> I have recently upgraded my server, including web, e-mail, etc. This action has been brought about due to a broken motherboard, and many other sever reasons for needing a new system.<br /><br /> The new machine is not completely set up yet, but e-mail and webspace should be working. If anyone finds any new problems using their services, please let me know!<br /><br /> I realize this is generally off-blog-topic, but it needs to be said somewhere. I have had _MANY_ things going on in my life that I would have loved to blog about, but honestly, I haven&#039;t had the time! I hope to start blogging again soon.<br /><br />Thanks,<br /> Mike]]></description>
			<category>News</category>
			<guid isPermaLink="true">http://blog.mdmsolutions.org/index.php?entry=entry080302-221015</guid>
			<author>Michael Morgan</author>
			<pubDate>Mon, 03 Mar 2008 04:10:15 GMT</pubDate>
			<comments>http://blog.mdmsolutions.org/comments.php?y=08&amp;m=03&amp;entry=entry080302-221015</comments>
		</item>
		<item>
			<title>AI Interest Piqued (yet again...)</title>
			<link>http://blog.mdmsolutions.org/index.php?entry=entry071114-060453</link>
			<description><![CDATA[I have had an off &amp; on interest in many, <i>many</i> different aspects of technology (most specifically electrical engineering and computer science), but I find myself coming back around to AI. I&#039;ve always been absolutely fascinated by the human mind, and the biomimetics derived from the mind in many technical fields. Therefore, I will most likely be re-scratching a long-lived itch of mine, regurgitating a bunch of information as I go on my blog.<br /><br />For now, I am finishing my CS degree and planning a very busy next two months. However, I will be taking some reading materials with me wherever I go (like I always do), except this time the topic will be artificial intelligence. I also find this area at the very least partially useful for my upcoming career in automated trading.<br /><br />Googling for &#039;artificial intelligence programming&#039; has already brought up some great resources I plan to browse through, especially to get book reviews. Please, if anyone has any tips, post comments! I read them greatfully :).]]></description>
			<category>Programming</category>
			<guid isPermaLink="true">http://blog.mdmsolutions.org/index.php?entry=entry071114-060453</guid>
			<author>Michael Morgan</author>
			<pubDate>Wed, 14 Nov 2007 11:04:53 GMT</pubDate>
			<comments>http://blog.mdmsolutions.org/comments.php?y=07&amp;m=11&amp;entry=entry071114-060453</comments>
		</item>
		<item>
			<title>National Adoption Awareness Month</title>
			<link>http://blog.mdmsolutions.org/index.php?entry=entry071107-175425</link>
			<description><![CDATA[<a href="javascript:openpopup('http://farm2.static.flickr.com/1039/1245799414_d1c5ea6272.jpg?v=0',500,375,false);"><img src="http://farm2.static.flickr.com/1039/1245799414_d1c5ea6272.jpg?v=0" width="450" height="338" border="0" alt="" /></a><br /><br />As a tribute to my sister Amy, and anyone else out there who has adopted, I am temporarily changing my site&#039;s color to purple. I have a &#039;thing&#039; for adoption, personally.. I&#039;d much rather see children in need being taken care of than more children not taken care of. I realize that not everyone can afford adoption, but in my humble opinion, if you can, you should :).<br /><br />OK, that ends my adoption rant. I just wanted to explain the new color. :)]]></description>
			<category>Family</category>
			<guid isPermaLink="true">http://blog.mdmsolutions.org/index.php?entry=entry071107-175425</guid>
			<author>Michael Morgan</author>
			<pubDate>Wed, 07 Nov 2007 22:54:25 GMT</pubDate>
			<comments>http://blog.mdmsolutions.org/comments.php?y=07&amp;m=11&amp;entry=entry071107-175425</comments>
		</item>
		<item>
			<title>D-Day: 12/13/2007 10:00:00 EST</title>
			<link>http://blog.mdmsolutions.org/index.php?entry=entry071104-183308</link>
			<description><![CDATA[<img src="http://www.cfs.purdue.edu/mft/purdue.gif" width="100" height="100" border="0" alt="" id="img_float_left" /><br /><br />Ever look at your calendar and say... &quot;Holy $&amp;*#&quot; ???<br /><br />This is my feeling as I stare at this approaching date. This is when my last final ends. I plan to move to Chicago, buy Christmas presents, go to Mexico, and start my job in 30-some days after this hour. Live will be BUSY! But.. I can&#039;t wait.<br /><br />There are so many good things about my plans, that I completely overlook the cold, windy Chicago weather which I face. Blech!<br /><br />The other major consideration I&#039;m making is whether or not to have a vehicle. The best plan would be to find groceries, etc. inside walking distance from my Condo, such that a car becomes completely unnecessary. This, and I don&#039;t wish to pay for parking!!! I&#039;d rather use that money to pay for my scary mortgage that I&#039;m planning for...<br /><br />So, if anyone has any experience living in Chicago, with or without a vehicle, I&#039;m up for hearing your stories :). I want advise before I find a place that doesn&#039;t have a parking spot :/.]]></description>
			<category>Personal</category>
			<guid isPermaLink="true">http://blog.mdmsolutions.org/index.php?entry=entry071104-183308</guid>
			<author>Michael Morgan</author>
			<pubDate>Sun, 04 Nov 2007 23:33:08 GMT</pubDate>
			<comments>http://blog.mdmsolutions.org/comments.php?y=07&amp;m=11&amp;entry=entry071104-183308</comments>
		</item>
		<item>
			<title>pNFS: What they beat me to...</title>
			<link>http://blog.mdmsolutions.org/index.php?entry=entry071031-170007</link>
			<description><![CDATA[<a href="javascript:openpopup('http://www.panasas.com/images/img_pnfs_standard.jpg',450,350,false);"><img src="http://www.panasas.com/images/img_pnfs_standard.jpg" width="200" height="156" border="0" alt="" id="img_float_right" /></a><br /><br />A few of you already know this, but I worked on a <a href="http://wiki.mdmsolutions.org/index.php/Projects/DMDR" target="_blank" >research project called DMDR</a> last year at Purdue, under <a href="http://www.cs.purdue.edu/homes/park/" target="_blank" >Dr. Kihong Park</a>. It was an awesome experience. I highly recommend doing some sort of research project if you&#039;re an undergrad.<br /><br />This story is about a project I discovered in the latest ACM Queue journal, which highlighted some &quot;futuristic&quot; technologies in distributed file systems. As I was reading about them, I found an article on <a href="http://www.pnfs.com/" target="_blank" >pNFS</a>. This made me cry. Tears of steel. Why? Because it turns out that they did what I wanted to do, and approached in my research!!!<br /><br />If anyone is interested in DFS technology, pNFS is definitely worth checking out. If not because I wanted to do it, then because it is potentially <b>extremely</b> useful for a corporation. I may join this project someday...<br /><br />If you&#039;re bored, check out <a href="http://mdmsolutions.org/users/mikmorg/dmdr_proposal.pdf" target="_blank" >my whitepaper</a>, and then read <a href="http://www.acmqueue.com/modules.php?name=Content&amp;pa=showpage&amp;pid=503" target="_blank" >the ACM article</a>. The best part is that I originally wanted to do my project as an extension of NFS (just like them), but determined the ramp-up would be way too much for a semester project... Ahhh!<br /><br />Oh well, maybe someday my project will be in the ACM journal instead ;).]]></description>
			<category>Cool</category>
			<guid isPermaLink="true">http://blog.mdmsolutions.org/index.php?entry=entry071031-170007</guid>
			<author>Michael Morgan</author>
			<pubDate>Wed, 31 Oct 2007 21:00:07 GMT</pubDate>
			<comments>http://blog.mdmsolutions.org/comments.php?y=07&amp;m=10&amp;entry=entry071031-170007</comments>
		</item>
		<item>
			<title>The Job Front - Fin</title>
			<link>http://blog.mdmsolutions.org/index.php?entry=entry071031-155328</link>
			<description><![CDATA[<a href="javascript:openpopup('http://www.allstontrading.com/assets/Allston%20Logo%20170%20wide.jpg',800,600,false);"><img src="http://www.allstontrading.com/assets/Allston%20Logo%20170%20wide.jpg" border="0" alt="" /></a><br /><br />As of a few hours ago, I have verbally accepted the offer from <a href="http://www.allstontrading.com/" target="_blank" >Allston</a>. Therefore, I am also planning to move to Chicago, and will being my job on Jan 21, 2008. I will be spending the week before that in Mexico, as a &#039;fair well&#039; party for collegiate life.<br /><br />I plan to investigate future opportunities outside of the financial business eventually, but at least for now, I go where the money is :). I can&#039;t deny that I&#039;d enjoy learning the financial business and being somewhat successful in it, either.. Plus, I can go to London in a few years; yay :).<br /><br />I apologize to anyone expecting technology info in this blog, lately. I plan to really start making interesting posts next year, after things calm down. For now, I&#039;m not even concerning myself with extra-curricular research, so my blog wouldn&#039;t be very exciting if I tried to update it accordingly.]]></description>
			<category>Personal</category>
			<guid isPermaLink="true">http://blog.mdmsolutions.org/index.php?entry=entry071031-155328</guid>
			<author>Michael Morgan</author>
			<pubDate>Wed, 31 Oct 2007 19:53:28 GMT</pubDate>
			<comments>http://blog.mdmsolutions.org/comments.php?y=07&amp;m=10&amp;entry=entry071031-155328</comments>
		</item>
		<item>
			<title>Welcoming Owen Gates</title>
			<link>http://blog.mdmsolutions.org/index.php?entry=entry071029-014426</link>
			<description><![CDATA[<a href="javascript:openpopup('http://gallery.mdmsolutions.org/index.php?download=Uploads%2FOwen.JPG',800,600,false);"><img src="http://gallery.mdmsolutions.org/index.php?download=Uploads%2FOwen.JPG" border="0" alt="" /></a><br /><br />I would officially like to welcome a new friend by redundant proxy into the world. Please give a warm welcome to Owen Gates :). This ultra-cute baby was recently birthed on Thursday, Oct. 25, 2007. The lucky newlywed (as of Sept. &#039;06) couple would happen to be my best friends, Brad and Theresa Gates (aka. Wud and Chri). <br /><br />So to all of you in the gaming world, your fate is sealed to doom in the next 12 years. And to all of you in the software engineering world, prepare to submit to your new leader. Bred and raised by two ultra-geniuses, this boy is destined for perfection. Bow down, n00bs; all your base are belong to him now.<br /><br /><b>Edit: Check out the new Owen </b><a href="http://picasaweb.google.com/jbaltz07/Owen02?authkey=JS7kk4TMqlE" target="_blank" >Photo Gallery</a> :).]]></description>
			<category>Family</category>
			<guid isPermaLink="true">http://blog.mdmsolutions.org/index.php?entry=entry071029-014426</guid>
			<author>Michael Morgan</author>
			<pubDate>Mon, 29 Oct 2007 05:44:26 GMT</pubDate>
			<comments>http://blog.mdmsolutions.org/comments.php?y=07&amp;m=10&amp;entry=entry071029-014426</comments>
		</item>
		<item>
			<title>The Job Front - Coming to a Conclusion...</title>
			<link>http://blog.mdmsolutions.org/index.php?entry=entry071029-011144</link>
			<description><![CDATA[<a href="javascript:openpopup('http://www.allstontrading.com/assets/Allston%20Logo%20170%20wide.jpg',800,600,false);"><img src="http://www.allstontrading.com/assets/Allston%20Logo%20170%20wide.jpg" border="0" alt="" /></a><br /><br />After my bout at FOSScamp, I realized my destiny. I have been presented with on offer from <a href="http://www.allstontrading.com/" target="_blank" >Allston Trading</a> as a software engineer, and have found it impossible not to accept. For at least the first few years following my elongated education, I currently plan to work in the finance industry in the field of automated trading. Why? Two reasons. One is obvious, the other is the vast experience and challenges which will inevitably present themselves.<br /><br />Ok, ok.. I&#039;ll give you a third reason. Google turned me down :(. After about 6-7 interviews, and even more e-mails and conversations, it was finally decided for me. And yes, I was slightly distraught (P155$ off). However.. I think there was a good reason that I might not be able to account for, as this turn of events has brought me geographically (MUCH) closer to my family. Plus, there is apparently a high chance that in a few years, Allston will request that I move to London; something I had given thought about (hi Mary ;) for a while now.<br /><br />P.S. A possible fourth reason is the free food and massages.. but I will not openly admit it off-line ;).<br /><br />P.P.S. Please do not ask me what question stumped me on the last Google interview. I will not say, as it is quite embarrassing for any CS major and makes me look like a n00b, as the l33t spell it.<br /><br />I loathe the thought of speaking with my former manager (from Dell) over dinner tomorrow to tell him the news. However, I do plan to make a move towards OSS in the future, after college. There is plenty of room for me to collaborate with my old teammates and newly-found cohorts from Dell and Canonical through this planned experience :).<br /><br />As far as my thoughts on OSS work, I now plan to investigate ACPI (another post-FOSScamp revelation, thanks to Ben Collins), and welcome any assistance as to getting started in that area. I consider it a great opportunity for some challenging and interesting low-level hobby work (excuse the dichotomy), which may also foster this collaboration.<br /><br />My only fear is that two &#039;challenging&#039; interests (a job and hobby) may overwhelm me... but for now, lets consider it my long-term plan.<br /><br />In summary, w00t for Allston!!! See you there, Luke :).<br /><br />P.S. Any tips from Chicago-dwellers or alums are now welcome ;).]]></description>
			<category>Personal</category>
			<guid isPermaLink="true">http://blog.mdmsolutions.org/index.php?entry=entry071029-011144</guid>
			<author>Michael Morgan</author>
			<pubDate>Mon, 29 Oct 2007 05:11:44 GMT</pubDate>
			<comments>http://blog.mdmsolutions.org/comments.php?y=07&amp;m=10&amp;entry=entry071029-011144</comments>
		</item>
		<item>
			<title>FOSScamp 2007</title>
			<link>http://blog.mdmsolutions.org/index.php?entry=entry071029-004244</link>
			<description><![CDATA[<a href="javascript:openpopup('http://gallery.mdmsolutions.org/index.php?download=Uploads%2F27102007_003_.jpg',800,600,false);"><img src="http://gallery.mdmsolutions.org/index.php?download=Uploads%2F27102007_003_.jpg" border="0" alt="" /></a><br /><br />I was invited to join the <a href="http://fosscamp.org" target="_blank" >FOSScamp</a> conference in Boston this weekend, which is hosted by <a href="http://canonical.com/" target="_blank" >Canonical</a> in support of their operating system, <a href="http://www.ubuntu.com/" target="_blank" >Ubuntu</a>. This meeting is directly prior to the <a href="https://wiki.ubuntu.com/UDS-Boston" target="_blank" >UDS</a> meetings, which go on during the entire week for the Ubuntu developers. The purpose of this meeting was to get developers of related projects talking with each other, and for a Q/A session, basically.<br /><br />I had a great time, myself. There were plenty of great projects presented, one of which just so happened to be <a href="http://linux.dell.com/dru/" target="_blank" >DRU</a>, my pet project from my Dell internship. You can see a news post about the event (including a blurb about my project :) at <a href="http://popey.com/FOSSCamp_2007_Day_One" target="_blank" >popey.com</a>. I have to admit, going up against a simultaneously scheduled event on VMs for standardized testing operations kinda left me in the dust ;). I felt quite dwarfed by other presenters (rightfully so), such as Samba, OpenLDAP, and other giants :).<br /><br />The best part of the whole day was the networking. This was my first OSS convention, and I made good use of it by formally introducing myself to some great people at Canonical, Red-Hat, and some other friendly co-presenters. It is always nice to put faces behind IRC names and phone calls :).<br /><br />My attempt at getting a kernel developer position at Canonical flopped pretty quickly though ;). Honestly, I didn&#039;t come near the reqs ;). Some other day, maybe...<br /><br />There is some other related news that I found out about DRU. Apparently, Dell has found a unified method for handling the process DRU was intended for (at Dell), so it is now officially an orphaned project. I will be taking up the slack most likely in January, by speaking with Colin Watson about merging DRU and their LiveCD generation system together. Lets hope that goes well...]]></description>
			<category>Cool</category>
			<guid isPermaLink="true">http://blog.mdmsolutions.org/index.php?entry=entry071029-004244</guid>
			<author>Michael Morgan</author>
			<pubDate>Mon, 29 Oct 2007 04:42:44 GMT</pubDate>
			<comments>http://blog.mdmsolutions.org/comments.php?y=07&amp;m=10&amp;entry=entry071029-004244</comments>
		</item>
		<item>
			<title>Norwalk CT: Factset Interview fun</title>
			<link>http://blog.mdmsolutions.org/index.php?entry=entry071007-212727</link>
			<description><![CDATA[<br />On a happier note than my last entry, I&#039;m <a href="http://maps.google.com/maps?f=l&amp;hl=en&amp;geocode=&amp;time=&amp;date=&amp;ttype=&amp;q=four+points+sheraton,&amp;sll=37.0625,-95.677068&amp;sspn=48.555061,82.265625&amp;ie=UTF8&amp;near=Norwalk,+CT" target="_blank" >right here</a> for tonight and tomorrow. Across the street is FactSet, my first second-phase interview. I find it entertaining that it is so close to Long Beach / New York. I&#039;m interested as to what people think about the location...<br /><br />Anyway, I&#039;m going to sleep; I have a long day ahead of me tomorrow. Wish me luck!]]></description>
			<category>Personal</category>
			<guid isPermaLink="true">http://blog.mdmsolutions.org/index.php?entry=entry071007-212727</guid>
			<author>Michael Morgan</author>
			<pubDate>Mon, 08 Oct 2007 01:27:27 GMT</pubDate>
			<comments>http://blog.mdmsolutions.org/comments.php?y=07&amp;m=10&amp;entry=entry071007-212727</comments>
		</item>
		<item>
			<title>A Solemn &#039;Goodbye,&#039; for Jim Hawkins</title>
			<link>http://blog.mdmsolutions.org/index.php?entry=entry070929-201751</link>
			<description><![CDATA[<a href="javascript:openpopup('http://gallery.mdmsolutions.org/index.php?download=Family%2FJimPhotos%2Fnewjim.jpg',800,600,false);"><img src="http://gallery.mdmsolutions.org/index.php?download=Family%2FJimPhotos%2Fnewjim.jpg" border="0" alt="" /></a><br /><br />Dear Jim,<br /><br /> Thanks for my first electronics kit. Turns out, I really got into electronics, and thanks to you, my career and goals got a jump-start. Thanks for being there for my Mother; eating lunch and dinner with her, and always lending her a hand. You were, after all, her favorite brother. Thank you for taking anyone skiing when they wanted, no matter what the weather. I won&#039;t forget learning to play pool with you when I was young. There are many other things I can thank you for, but most of all, thank you for taking good care of Josh. Your actions were not in vain.<br /><br /> We&#039;ll miss you, Jimbo, but we won&#039;t forget you. I&#039;ll keep working hard, and will not disappoint you. We will all take good care of your big sister for you - Amy, Christy, Mary and I. So just relax up there, and have a beer for me. You deserve to rest. Take care, and good bye for now, Uncle Jim.<br /><br />Sincerely,<br />  Mikey]]></description>
			<category>Family</category>
			<guid isPermaLink="true">http://blog.mdmsolutions.org/index.php?entry=entry070929-201751</guid>
			<author>Michael Morgan</author>
			<pubDate>Sun, 30 Sep 2007 00:17:51 GMT</pubDate>
			<comments>http://blog.mdmsolutions.org/comments.php?y=07&amp;m=09&amp;entry=entry070929-201751</comments>
		</item>
		<item>
			<title>The Job Front - Part 1</title>
			<link>http://blog.mdmsolutions.org/index.php?entry=entry070922-233701</link>
			<description><![CDATA[<br />This may be the most anxiety filled three months of my life. Searching for a job, trying to get a decent career path in line, I feel overwhelmed constantly. My current aspirations include linux kernel platform engineer at Google, software developer at Allston Trading, FactSet, and a few others. The above are my &#039;big three,&#039; which all coincidently include the lifestyle benefit of free lunch and breakfast every day. I obviously know what is most important in life.<br /><br />Looking towards places to live, I&#039;m searching for jobs outside of the midwest (with the exception of Allston in Chicago), including international. Wish me luck...<br /><br />P.S. If you are an employer, my interests are in embedded, networking and communications, and kernel/driver level development :). Don&#039;t forget to read my resume at <a href="http://mdmsolutions.org/users/mikmorg" target="_blank" >http://mdmsolutions.org/users/mikmorg</a> !]]></description>
			<category>Personal</category>
			<guid isPermaLink="true">http://blog.mdmsolutions.org/index.php?entry=entry070922-233701</guid>
			<author>Michael Morgan</author>
			<pubDate>Sun, 23 Sep 2007 03:37:01 GMT</pubDate>
			<comments>http://blog.mdmsolutions.org/comments.php?y=07&amp;m=09&amp;entry=entry070922-233701</comments>
		</item>
		<item>
			<title>OMG school 4 t3h win y0</title>
			<link>http://blog.mdmsolutions.org/index.php?entry=entry070820-145927</link>
			<description><![CDATA[<br />Ok, I&#039;m starting to feel desperation. Today begins the last and truly least semester of undergrad education for me, but yet I feel like I&#039;m done already. I&#039;m probably going to sit in on a CS class, thank God.. otherwise I&#039;d go mad. I&#039;m going to set off on my job search soon. Wish me luck!<br /><br />Anyway, I am waiting on my bus, and it seems that I don&#039;t have any time left to chat. Later!]]></description>
			<category>Personal</category>
			<guid isPermaLink="true">http://blog.mdmsolutions.org/index.php?entry=entry070820-145927</guid>
			<author>Michael Morgan</author>
			<pubDate>Mon, 20 Aug 2007 18:59:27 GMT</pubDate>
			<comments>http://blog.mdmsolutions.org/comments.php?y=07&amp;m=08&amp;entry=entry070820-145927</comments>
		</item>
		<item>
			<title>The Return to the Most Humble Abode</title>
			<link>http://blog.mdmsolutions.org/index.php?entry=entry070818-095050</link>
			<description><![CDATA[I&#039;m back. OK, I&#039;ve been back now for about a week. School starts in two days, and I&#039;m completely unprepared. The good news is that I have hired help cleaning my apartment right now. You would understand why this is such good news if you saw what I moved in to find!!!<br /><br />In other news, mother seems to be doing well. She had another treatment of chemotherapy a couple days ago. I&#039;m glad to be back so that I can keep an eye on her.<br /><br />Thanks, Amy and Ajay, for everything you guys did last week. It was very fun, and I&#039;m sure that mom &amp; dad loved that you were there.<br /><br />In summation, once my fridge gets cleaned by my roommate on Monday, I&#039;ll be happy to move the beer from my mother&#039;s fridge.]]></description>
			<category>Family</category>
			<guid isPermaLink="true">http://blog.mdmsolutions.org/index.php?entry=entry070818-095050</guid>
			<author>Michael Morgan</author>
			<pubDate>Sat, 18 Aug 2007 13:50:50 GMT</pubDate>
			<comments>http://blog.mdmsolutions.org/comments.php?y=07&amp;m=08&amp;entry=entry070818-095050</comments>
		</item>
		<item>
			<title></title>
			<link>http://blog.mdmsolutions.org/index.php?entry=entry070812-001840</link>
			<description><![CDATA[]]></description>
			<category></category>
			<guid isPermaLink="true">http://blog.mdmsolutions.org/index.php?entry=entry070812-001840</guid>
			<author>Michael Morgan</author>
			<pubDate>Thu, 01 Jan 1970 00:00:00 GMT</pubDate>
			<comments>http://blog.mdmsolutions.org/comments.php?y=07&amp;m=08&amp;entry=entry070812-001840</comments>
		</item>
		<item>
			<title></title>
			<link>http://blog.mdmsolutions.org/index.php?entry=entry070811-135416</link>
			<description><![CDATA[]]></description>
			<category></category>
			<guid isPermaLink="true">http://blog.mdmsolutions.org/index.php?entry=entry070811-135416</guid>
			<author>Michael Morgan</author>
			<pubDate>Thu, 01 Jan 1970 00:00:00 GMT</pubDate>
			<comments>http://blog.mdmsolutions.org/comments.php?y=07&amp;m=08&amp;entry=entry070811-135416</comments>
		</item>
	</channel>
</rss>

