<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>WorldLee</title>
	
	<link>http://www.worldlee.com</link>
	<description>Personal Website of Lee Vaughn</description>
	<lastBuildDate>Fri, 19 Feb 2010 01:02:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/worldlee" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="worldlee" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Adventuers in Wix: checkbox</title>
		<link>http://www.worldlee.com/?p=452</link>
		<comments>http://www.worldlee.com/?p=452#comments</comments>
		<pubDate>Fri, 19 Feb 2010 01:02:10 +0000</pubDate>
		<dc:creator>Lee Vaughn</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[wix]]></category>

		<guid isPermaLink="false">http://www.worldlee.com/?p=452</guid>
		<description><![CDATA[In case anyone is wondering a checkbox in wix is checked if it has ANY value (even zero). If it has no value it will be unchecked. So look at your property and make sure it has no value set if you want it to work properly.
]]></description>
			<content:encoded><![CDATA[<p>In case anyone is wondering a checkbox in wix is checked if it has ANY value (even zero). If it has no value it will be unchecked. So look at your property and make sure it has no value set if you want it to work properly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.worldlee.com/?feed=rss2&amp;p=452</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flashing Browser Title</title>
		<link>http://www.worldlee.com/?p=449</link>
		<comments>http://www.worldlee.com/?p=449#comments</comments>
		<pubDate>Mon, 20 Jul 2009 17:40:18 +0000</pubDate>
		<dc:creator>Lee Vaughn</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.worldlee.com/blog/2009/07/20/flashing-browser-title/</guid>
		<description><![CDATA[So as part of this chat application I&#8217;m writing, I was told that I needed to alert the user that a new message had arrived, even if the window was minimized. So I decided to flash the document title with different text. This seemed pretty straight forward, but I thought I would post what I [...]]]></description>
			<content:encoded><![CDATA[<p><font face="sans-serif">So as part of this chat application I&#8217;m writing, I was told that I needed to alert the user that a new message had arrived, even if the window was minimized. So I decided to flash the document title with different text. This seemed pretty straight forward, but I thought I would post what I did, in case someone else needed to solve the same problem. Keep in mind that the <b>originalMsg </b>and <b>changeMsg </b>in my application are set on the server side because they are dynamically generated, but if you don&#8217;t have that requirement, you can just enter the static text in the JavaScript directly.</p>
<p>Enjoy!</p>
<p></font><font face="Courier New">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // Create the variables<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var timer1 = null;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var timer2 = null;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var originalMsg = &#8220;&#8221;;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var changeMsg = &#8220;&#8221;;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; function changeTitle() {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if (document.title == originalMsg)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; document.title = changeMsg;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; else<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; document.title = originalMsg;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; function delayChange() {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; timer2 = setInterval(&#8221;changeTitle()&#8221;, 2000);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; function startFlashTitle() {</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if (timer1 == null &amp;&amp; timer2 == null) {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; timer1 = setInterval(&#8221;changeTitle()&#8221;, 2000);</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; setTimeout(&#8221;delayChange()&#8221;, 1000);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; function stopFlashTitle() {<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if(timer1 != null) clearInterval(timer1);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if(timer2 != null) clearInterval(timer2);</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; document.title = originalMsg;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; timer1 = null;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; timer2 = null;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p></font></p>
]]></content:encoded>
			<wfw:commentRss>http://www.worldlee.com/?feed=rss2&amp;p=449</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Buffers: The Chat Application Savior</title>
		<link>http://www.worldlee.com/?p=447</link>
		<comments>http://www.worldlee.com/?p=447#comments</comments>
		<pubDate>Fri, 10 Jul 2009 20:10:10 +0000</pubDate>
		<dc:creator>Lee Vaughn</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.worldlee.com/blog/2009/07/10/buffers-the-chat-application-savior/</guid>
		<description><![CDATA[I never realized how important buffers were until today. I mean, you really don&#8217;t see them much when programming in languages like C# where most of that stuff happens behind the scenes. Basically, what was happening was that I was working on a Chat application in Silverlight, when one of my co-workers came up with [...]]]></description>
			<content:encoded><![CDATA[<p>I never realized how important buffers were until today. I mean, you really don&#8217;t see them much when programming in languages like C# where most of that stuff happens behind the scenes. Basically, what was happening was that I was working on a Chat application in Silverlight, when one of my co-workers came up with a scenario of multiple private messages coming through before the private message window has fully opened.</p>
<p>Hmm&#8230; I thought to myself, that&#8217;s a tough one. I&#8217;ve never come across that problem before. And sure enough when I tested it, it broke my application all sorts of ways. But then something another co-worker said to me that got me thinking was that it was sort of like writing to a disk. You don&#8217;t just write all your information straight to the disk. The disk is waaaaay slower than the computer&#8217;s RAM at reading and writing, so there has to be something to hold that information. Now when you&#8217;re writing in C# you almost never see this because it&#8217;s handled for you, but adding some sort of cache to hold the information and checking to see if the receiver is ready for it made the application work correctly and as expected.</p>
<p>Way to go for buffers!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.worldlee.com/?feed=rss2&amp;p=447</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HACKED… AGAIN!!!</title>
		<link>http://www.worldlee.com/?p=395</link>
		<comments>http://www.worldlee.com/?p=395#comments</comments>
		<pubDate>Tue, 05 Aug 2008 02:11:49 +0000</pubDate>
		<dc:creator>Lee Vaughn</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[attack]]></category>
		<category><![CDATA[hacked]]></category>
		<category><![CDATA[privacy]]></category>

		<guid isPermaLink="false">http://www.worldlee.com/blog/2008/08/04/hacked-again/</guid>
		<description><![CDATA[It appears that while I was gone over the weekend, having a very very dramatic Friday and re-self-discovery on Saturday and Sunday, my website WorldLee.com was hacked!

I spent the better part of Sunday evening and some time at work today going through and cleaning up the mess, and there&#8217;s still no guarantee that things are [...]]]></description>
			<content:encoded><![CDATA[<p>It appears that while I was gone over the weekend, having a very very dramatic Friday and re-self-discovery on Saturday and Sunday, my website WorldLee.com was hacked!</p>
<p><img style="max-width: 800px;" src="http://www.worldlee.com/wp-content/uploads/2008/08/hacked.jpg" alt="" width="456" height="227" /></p>
<p>I spent the better part of Sunday evening and some time at work today going through and cleaning up the mess, and there&#8217;s still no guarantee that things are as they were (I did everything short of reinstalling everything from protected backups.)</p>
<p>The long and the short of it is, several months ago I was naive enough to have one password for all my internet sites. I thought, like most, that if I had a secure password I shouldn&#8217;t have to memorize dozens of different passwords. Unfortunately, I was tricked into putting my MySpace information onto a bogus page, and from there the hackers got into my Yahoo! mail account and started spamming people. Worse, they got into my PayPal account and tried to transfer several hundreds of dollars into their own personal bank account.</p>
<p>I don&#8217;t suppose the law ever got up with them, I thought the issue had been resolved and I had, like a good boy, changed all my passwords to a new, constantly changing and very random password choice. No one should have been able to hack my passwords again. But guess which password I forgot to change? That&#8217;s right, because I never actually type in a password for my FTP account, I forgot to change it. Welp, I guess those people took their revenge by using that password to compromise my site. Hopefully they didn&#8217;t get a hold of any of my other passwords, because if they did, they&#8217;d have access to&#8230;. well, just my site&#8230; since I&#8217;ve changed everything else to something different.</p>
<p>Let this be a warning to you! Password theft is real&#8230; be careful where you put it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.worldlee.com/?feed=rss2&amp;p=395</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Trouble with Size</title>
		<link>http://www.worldlee.com/?p=391</link>
		<comments>http://www.worldlee.com/?p=391#comments</comments>
		<pubDate>Thu, 31 Jul 2008 03:49:05 +0000</pubDate>
		<dc:creator>Lee Vaughn</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[screen size]]></category>

		<guid isPermaLink="false">http://www.worldlee.com/blog/2008/07/30/the-trouble-with-size/</guid>
		<description><![CDATA[No, this isn&#8217;t going to be a perverted posting, not that I wouldn&#8217;t post perverted, just&#8230; well this isn&#8217;t going to be one of them. This post is about the trouble with screen resolution size and website design. As with most Web Developers, I have to decide how big I want my site to appear [...]]]></description>
			<content:encoded><![CDATA[<p>No, this isn&#8217;t going to be a perverted posting, not that I wouldn&#8217;t post perverted, just&#8230; well this isn&#8217;t going to be one of them. This post is about the trouble with screen resolution size and website design. As with most Web Developers, I have to decide how big I want my site to appear on the computer screen.</p>
<p>To big, the user has to scroll back and forth to read content, too small and the user sees way too much space around the edges of the site. And monitors are so many different sizes now. We know that users can use Blackberry&#8217;s and iPhones all the way to 30-inch monitors (I would love one of those by the way).</p>
<p>Recently I was working on a website prototype for a student run radio show, and was forced to give up my long held belief that you should always design for the smallest commonly used monitor size, which is 8 x 6. But after going around to different sites, including Apple, Microsoft and dozens of others, it&#8217;s become clear that they are all choosing a website based on a 10 x 7 site. They don&#8217;t even collapse all the way if the site is smaller. So if you don&#8217;t have a high resolution monitor, your S.O.L. and will have to scroll back and forth.</p>
<p>I realize that monitors will continue to grow in size, but I suspect that 10 x 7 is the last standard that people will live with for browser sizes. That&#8217;s because anything else puts way to much information for any person to read.</p>
<p>After looking at dozens of sites, I&#8217;m convinced that most sites have too much information coming at you or flying at you, or blinking at you. They don&#8217;t make it clear how to find content and everything ranks as being too important.</p>
<p>In my new design, I made a site that was very simple and elegant and classical while keeping a solid professional feel to it. I even added a few bits of fun to keep it interesting.</p>
<p>I really hope my client likes it as much as I do&#8230; but of course, that&#8217;s part of the game. He might hate it every bit as much as I love it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.worldlee.com/?feed=rss2&amp;p=391</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.Net or .Not?</title>
		<link>http://www.worldlee.com/?p=382</link>
		<comments>http://www.worldlee.com/?p=382#comments</comments>
		<pubDate>Tue, 22 Jul 2008 00:39:25 +0000</pubDate>
		<dc:creator>Lee Vaughn</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[.Net]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://www.worldlee.com/blog/2008/07/21/net-or-not-2/</guid>
		<description><![CDATA[I have been working for the last two weeks on a project for FedEx where I am building a proof of concept for a utility that goes out to a server, downloads a file, parses that file, and then based on what it finds, determines what other files need to be downloaded. Its a very [...]]]></description>
			<content:encoded><![CDATA[<p>I have been working for the last two weeks on a project for FedEx where I am building a proof of concept for a utility that goes out to a server, downloads a file, parses that file, and then based on what it finds, determines what other files need to be downloaded. Its a very simple, system and should not be that complicated to implement&#8230; at least&#8230; you would think. But after scratching my head in confusion and surprise, I am left with only one conclusion. Microsoft&#8217;s .Net framework has very little in the way of Network architecture. </p>
<p>For instance, while there are things you can do with HTTP, the support there is lacking. You don&#8217;t have nearly as much control as you need to make things work. I can&#8217;t, for example, get the file size, or pick out just the header information from my documents. There is no support for partial downloads, or even the ability to recursively download or upload a directory worth of files. Their FTP support is even more lacking in depth. If I want to get the sizes of a batch of files, I have to recursively go through and get the file size of each and every file on the list. There is no way to resume or suspend downloads. There is absolutely nothing beyond a partial implementation (and a very convoluted implementation) of the interface.</p>
<p>After spending almost a week working on the system, I am left with the impression that the best way to work on this system would be to write my own FTP client library! Of course, I am loathe to do that, especially when anything I do will be copywritten and owned by FedEx right now, and there&#8217;s no guarantee that I&#8217;d be hired back. I don&#8217;t like doing work I&#8217;m not going to A) profit from or B) at least be used for shameless self promotion. Of course, writing this from scratch would take up a lot of my time at work. In fact, it would be horribly silly for me to do this, since there are doubtlessly other projects for which I would be better suited to writing. </p>
<p>But, since now I have convinced myself that writing the library wouldn&#8217;t be a complete waste of my time, and since I *might* even get some credit from my supervisor for writing such a library, I think I&#8217;ll go ahead and take on this responsibility until someone comes up and asks me if there&#8217;s something else I&#8217;m supposed to be doing.</p>
<p>After all, what&#8217;s the point of being an intern if not to A) not make a profit and B) be slave labor with no promised future?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.worldlee.com/?feed=rss2&amp;p=382</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How I feel about my last relationship…</title>
		<link>http://www.worldlee.com/?p=355</link>
		<comments>http://www.worldlee.com/?p=355#comments</comments>
		<pubDate>Thu, 17 Jul 2008 17:19:44 +0000</pubDate>
		<dc:creator>Lee Vaughn</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.worldlee.com/?p=355</guid>
		<description><![CDATA[Sometimes, only a music video can say it best.

]]></description>
			<content:encoded><![CDATA[<p>Sometimes, only a music video can say it best.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/FcuS7Ce4q9I&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/FcuS7Ce4q9I&amp;hl=en&amp;fs=1" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.worldlee.com/?feed=rss2&amp;p=355</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FedEx Internship: A month in review…</title>
		<link>http://www.worldlee.com/?p=335</link>
		<comments>http://www.worldlee.com/?p=335#comments</comments>
		<pubDate>Sun, 13 Jul 2008 19:46:16 +0000</pubDate>
		<dc:creator>Lee Vaughn</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.worldlee.com/blog/2008/07/13/fedex-internship-a-month-in-review/</guid>
		<description><![CDATA[So this marks the end of my 5th week at FedEx and I have to say that it has been a resounding success so far. I&#8217;ve made important contacts, proved my capabilities at my work, and for the most part shown that I would make a good addition to their team someday. Unfortunately, I feel [...]]]></description>
			<content:encoded><![CDATA[<p>So this marks the end of my 5th week at FedEx and I have to say that it has been a resounding success so far. I&#8217;ve made important contacts, proved my capabilities at my work, and for the most part shown that I would make a good addition to their team someday. Unfortunately, I feel like I haven&#8217;t done nearly as much as I could have to make higher level contacts. I know *of* the Vice-Presidents, but I haven&#8217;t gotten a chance to show my potential to them one-on-one. </p>
<p>This is sorta hard for me to do, I&#8217;m not the kind of person who just wants to walk up to someone really important and talk about my life. God, if my boss&#8217;s knew what I did on the weekends, they&#8217;d probably never want to be seen in public with me, much less hire me. So I can&#8217;t talk about my personal life (especially in a conservative company environment) and I don&#8217;t like playing sports, so that&#8217;s out too. I mean, if you don&#8217;t know how to play golf in this town, it&#8217;s like you don&#8217;t even exist. I know how to play sports&#8230; like softball, tennis, even golf&#8230; i just find absolutely no enjoyment out of them.</p>
<p>So here I am, with no way to converse with someone without making an ass out of myself. So I must resort to talking about my work. Well I have all these great ideas, but corporate life doesn&#8217;t lend itself well to new ideas. If I said &#8220;hey, let&#8217;s do everything in Java&#8221; they&#8217;d immediately point out that department A or B wouldn&#8217;t like it because they have their own pet projects. So I guess talking about new work ideas are out, though showing that I know about their existence is probably a good thing. Maybe I could talk about the work I&#8217;m doing? That seems the safest bet for making good conversation that&#8217;s relevant, but then I appear too one dimensional&#8230; it&#8217;s so hard to make a good impression overall I don&#8217;t know how people ever succeed.</p>
<p>So in other news, I found out that I&#8217;m really really special. Most of the other interns got their positions by who they knew in the organization. Someone&#8217;s aunt, or friend of the CIO or someone high up helped them get the position. I got the position strictly on my own merits and achievements. That makes me feel really really good, and at the same time makes me want to kick myself for not taking the inititive sooner and getting my computer science degree when I had the chance.</p>
<p>Speaking of chances, let&#8217;s talk about that. I&#8217;m about to get unceremoniously dropped from school for taking too many credit hours and not having a degree to show for it. How sucky is that? All those times I had to drop classes for one reason or another have finally caught up with me. Now I have to face the music. The reality is, I&#8217;m amazed I&#8217;ve made it this far in school. I really am. I have one degree and am on the verge of getting a second one. I don&#8217;t doubt that I will succeed in anything I do, but given all the obstacles I have had to overcome, both mentally and physically, I should give myself much more credit than I actually do.</p>
<p>Alright, so to sum up this month&#8230; life is good, things going well, can&#8217;t really ask for more from FedEx than what they&#8217;ve given me, and I really hope this leads to a job opprotunity, if not with them, than with another company.</p>
<p>I really don&#8217;t know what to expect or what to do </p>
]]></content:encoded>
			<wfw:commentRss>http://www.worldlee.com/?feed=rss2&amp;p=335</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FedEx Internship: My First Week at FedEx</title>
		<link>http://www.worldlee.com/?p=316</link>
		<comments>http://www.worldlee.com/?p=316#comments</comments>
		<pubDate>Tue, 17 Jun 2008 02:55:11 +0000</pubDate>
		<dc:creator>Lee Vaughn</dc:creator>
				<category><![CDATA[Introspection]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.worldlee.com/blog/2008/06/16/fedex-internship-my-first-week-at-fedex/</guid>
		<description><![CDATA[Despite all my fears, despite all my self-handicapping and doomsday predictions, I actually survived my first week at FedEx and did relatively well in the process. There&#8217;s not a whole lot to say. My first day I was really nervous about being able to program in C#, and was even more surprised to find out [...]]]></description>
			<content:encoded><![CDATA[<p>Despite all my fears, despite all my self-handicapping and doomsday predictions, I actually survived my first week at FedEx and did relatively well in the process. There&#8217;s not a whole lot to say. My first day I was really nervous about being able to program in C#, and was even more surprised to find out that I&#8217;d be developing desktop applications instead of web applications. Which, of course, meant that I would have virtually no experience to draw from. At least, that&#8217;s what I thought. But it turns out that either designing an application isn&#8217;t as hard as it looks, or the work I did tinkering around with ResEditor with the Mac helped me out a lot&#8230; course that was almost 10 years ago. I managed to finish my first assigned project today, despite all my ravings about not knowing how I was going to do it. I even managed to throw in some extra, but helpful, features. My manager seems impressed with my work and my co-workers, I think, are warming up to me.</p>
<p>&nbsp;</p>
<p>I thought you guys might be interested in seeing where I work, so I am posting some pics as well!</p>
<p>&nbsp;</p>
<p><a href="http://www.worldlee.com/wp-content/uploads/2008/06/img-2847-320x200.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="IMG_2847 [320x200]" src="http://www.worldlee.com/wp-content/uploads/2008/06/img-2847-320x200-thumb.jpg" width="244" border="0"/></a>&nbsp;</p>
<p>&nbsp;</p>
<p>This is the outside of the building</p>
<p>&nbsp;</p>
<p>&nbsp;<a href="http://www.worldlee.com/wp-content/uploads/2008/06/img-2848-320x200.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="IMG_2848 [320x200]" src="http://www.worldlee.com/wp-content/uploads/2008/06/img-2848-320x200-thumb.jpg" width="244" border="0"/></a></p>
<p>&nbsp;</p>
<p>This is the World Technology Center for FedEx</p>
<p>&nbsp;</p>
<p>&nbsp; <a href="http://www.worldlee.com/wp-content/uploads/2008/06/img-2849-320x200.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="IMG_2849 [320x200]" src="http://www.worldlee.com/wp-content/uploads/2008/06/img-2849-320x200-thumb.jpg" width="244" border="0"/></a> </p>
<p>This is my little corner of the world&#8230; a cubical.. isn&#8217;t life almost perfect?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.worldlee.com/?feed=rss2&amp;p=316</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FEDEX Internship: Day 2</title>
		<link>http://www.worldlee.com/?p=308</link>
		<comments>http://www.worldlee.com/?p=308#comments</comments>
		<pubDate>Tue, 10 Jun 2008 17:30:10 +0000</pubDate>
		<dc:creator>Lee Vaughn</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.worldlee.com/blog/2008/06/10/fedex-internship-day-2/</guid>
		<description><![CDATA[Today was much better than yesterday&#8230; yesterday all I did was do all the pithy stuff that you have to get done like read the company policies and get all the paperwork done. It felt like i was in the way yesterday. Today I felt like I was productive. They gave me an assignment to [...]]]></description>
			<content:encoded><![CDATA[<p>Today was much better than yesterday&#8230; yesterday all I did was do all the pithy stuff that you have to get done like read the company policies and get all the paperwork done. It felt like i was in the way yesterday. Today I felt like I was productive. They gave me an assignment to complete work on a configuration file editor. But it&#8217;s be a VERY long time since I&#8217;ve done real application development and I&#8217;m nervous that I won&#8217;t get it right the first dozen or so times&#8230; oh well, at least I won&#8217;t be in meetings all day tomorrow so I will have a chance to really pull out the show stoppers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.worldlee.com/?feed=rss2&amp;p=308</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
