<?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>Safe from the Losing Fight &#187; Writing</title>
	<atom:link href="http://losingfight.com/blog/category/writing/feed/" rel="self" type="application/rss+xml" />
	<link>http://losingfight.com/blog</link>
	<description>because i don&#039;t write software for windows</description>
	<lastBuildDate>Mon, 21 May 2012 20:37:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<atom:link rel='hub' href='http://losingfight.com/blog/?pushpress=hub'/>
		<item>
		<title>Distributed Version Control and Other Religions</title>
		<link>http://losingfight.com/blog/2010/03/22/distributed-version-control-and-other-religions/</link>
		<comments>http://losingfight.com/blog/2010/03/22/distributed-version-control-and-other-religions/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 07:07:30 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://losingfight.com/blog/?p=371</guid>
		<description><![CDATA[Lately it seems there&#8217;s been a lot of talk about distributed version control systems &#8212; especially git and Mercurial &#8212; and how they&#8217;re the bee&#8217;s knees or possibly even the cat&#8217;s pajamas. But at the risk of having my programmer&#8217;s license revoked, I have to confess I don&#8217;t really care about version control systems. I [...]]]></description>
			<content:encoded><![CDATA[<p>Lately it seems there&#8217;s been a lot of talk about distributed version control systems &mdash; especially <a href="http://git-scm.com/">git</a> and <a href="http://mercurial.selenic.com/">Mercurial</a> &mdash; and how they&#8217;re the bee&#8217;s knees or possibly even the cat&#8217;s pajamas.</p>
<p>But at the risk of having my programmer&#8217;s license revoked, I have to confess I don&#8217;t really care about version control systems. I mean, I think it&#8217;s important to use version control, but I don&#8217;t get all excited about the latest ideas in version control technology or the newest VCS on the block. It&#8217;s just a tool. It keeps versions of all my code, and allows me to revert to previous versions, see when and how things changed, and collaborate with other programmers working in the same codebase. Beyond that I don&#8217;t much care.</p>
<p>The tools don&#8217;t make the programmer.</p>
<p>What&#8217;s new with DVCS is the proponents seem to think they need to evangelize their system. Unfortunately they rather suck at it, and their arguments usually leave me feeling that I don&#8217;t want to use software used by such jerks, on account that it might make me into a jerk. Or at least a bigger one.</p>
<p>However, I do think that a DVCS can be a really useful tool so I&#8217;ve come up with some suggestions for those wanting to effectively evangelize their favorite version control system, or at least annoy me less when they talk.</p>
<ol>
<li>
<h2>Don&#8217;t be condescending or insulting</h2>
<p>I think it&#8217;s part of human nature &mdash; or at least programmer nature &mdash; to assume you&#8217;re the smartest guy in the room, and think that anyone who disagrees with you is a real buffon. Programmers seem to take great pleasure in showing that the other person is an idiot, or didn&#8217;t know something they did, or is at least not as clever as they are. A lot of arguments for git or Mercurial seem to revolve around explaining how git or Mercurial are so clearly superior that only morons would use something else.</p>
<p>While this works great for rallying the troops, it&#8217;s counterproductive when trying to win someone over to your side.</p>
<p>Think of it this way: suppose someone comes to your door to tell you about their religion. During the discussion they are self righteous and condescending; they don&#8217;t listen to your arguments, but are only interested in proving that they&#8217;re right. Are you likely to be swayed to believe in their religion? If you&#8217;re like the other hairless bipedal mammals inhabiting this planet you won&#8217;t be, even if they had some valid points.</p>
<p>As soon as you become insulting or condescending, your arguments will be rejected out of hand. I know this will upset some programmers because they believe if you show your argument is superior, everyone will accept it. But that&#8217;s not the way people work.</p>
</li>
<li>
<h2>Try to be helpful</h2>
<p>The best way to introduce someone to your DVCS is by trying to help them. Not in the &#8220;I have all the answers&#8221; way, but in the &#8220;I&#8217;ve dealt with that before, and here&#8217;s what I did&#8221; kind of way. People <em>will</em> run into the kinds of problems that DVCS are good at solving. When they do, you can helpfully suggest a solution.
<p>However, some care should be taken so the suggestion doesn&#8217;t come off the wrong way.</p>
<table>
<tr>
<th>Wrong</th>
<th>Right</th>
</tr>
<tr>
<td>Dude, why are you using subversion?</td>
<td>I&#8217;ve run into that problem before. I solved it by using feature X of git/hg in this way.</td>
<tr>
<td>Dude, just use git/hg.</td>
<td>You smell nice.</td>
</tr>
</table>
<p>Be aware that people may not know where their pain points are. I&#8217;ve seen customers jump through some excruciating hoops to get a piece of software to do something when there was an easier way. People get used to pain and begin to assume it&#8217;s normal. If you notice something like that, even if they&#8217;re not complaining about it, you can politely suggest a better way.</p>
<p>Instead of a list of features that a DVCS provides or abstract arguments as to why they should be using it, people respond better to concrete examples of how a piece of software can make their lives better. People are also more responsive when they know you&#8217;re on their side, trying to help them, even if they don&#8217;t &mdash; or currently can&#8217;t &mdash; take your suggestion. Keep in mind switching VCS in the middle of product cycle is likely something most people can&#8217;t do.</p>
<p>The right attitude is that of trying to help a friend, not conquer an enemy.</p>
</li>
<li>
<h2>Be willing to answer questions, even dumb ones</h2>
<p>Distributed version control works differently from centralized version control, and it does require a different way of thinking. I know I was confused by it when I first started looking into it. A lot of tutorials jump into the mechanics of how to perform certain tasks, but rarely talk about the philosophy of the system or why things are the way they are. If you want to successfully persuade people that your DVCS is the best then you need to be willing to do a lot of patient education.</p>
<p>I say &#8220;patient&#8221; because after using centralized version control they might have difficulty switching over to a new mental model. Or they might have heard a lot of <a href="http://en.wikipedia.org/wiki/Fear,_uncertainty_and_doubt">FUD</a> about your DVCS that you need to put to rest. It&#8217;s important to do this patiently, respectfully, and not insultingly because they&#8217;ve picked up misinformation or don&#8217;t immediately &#8220;get it&#8221; like you do. Otherwise they might ignore your DVCS so they don&#8217;t have to deal with people who look down on them because they don&#8217;t &#8220;get it.&#8221;</p>
</li>
<li>
<h2>Make it trivial to install and use</h2>
<p>This seems like a no brainer, but it is an important part of any software. If it&#8217;s hard to try out and use your DVCS, it simply won&#8217;t get used. I think that for the most part both git and Mercurial succeed in this respect. My only complaint is neither has a good Mac GUI client. Contrast that with Subversion which has both <a href="http://versionsapp.com/">Versions</a> and <a href="http://www.zennaware.com/cornerstone/">Cornerstone</a> on the Mac. You shouldn&#8217;t underestimate the draw of an easy to use, beautiful GUI.</p>
</li>
</ol>
<p>I think <a href="http://www.joelonsoftware.com/">Joel Spolsky</a> has given the best example of how to properly promote and evangelize a DVCS. He wrote a blog post &mdash; <a href="http://www.joelonsoftware.com/items/2010/03/17.html">Distributed Version Control is here to stay, baby</a> &mdash; about how he came to learn and use DVCS. It&#8217;s well written, and instead of condescending, he&#8217;s actually humble and admits he was wrong about DVCS to begin with. Joel also created a site called <a href="http://hginit.com">HgInit</a> that does an amazing job of explaining the philosophy behind Mercurial and gives a solid introduction to right way to use it. It&#8217;s actually the site that convinced me to start using Mercurial for real.</p>
]]></content:encoded>
			<wfw:commentRss>http://losingfight.com/blog/2010/03/22/distributed-version-control-and-other-religions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Induced Silence</title>
		<link>http://losingfight.com/blog/2008/03/04/twitter-induced-silence/</link>
		<comments>http://losingfight.com/blog/2008/03/04/twitter-induced-silence/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 20:42:32 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://www.losingfight.com/blog/2008/03/04/twitter-induced-silence/</guid>
		<description><![CDATA[I just realized I hadn&#8217;t posted to my blog in a few months. The lack of content has been caused both me just being busy, and me being on Twitter. If you would like to follow me, I&#8217;m macgeek02. I&#8217;ll update my contact page to contain my handle as well. I still definitely have plans [...]]]></description>
			<content:encoded><![CDATA[<p>I just realized I hadn&#8217;t posted to my blog in a few months. The lack of content has been caused both me just being busy, and me being on <a href="http://twitter.com">Twitter</a>.</p>
<p>If you would like to follow me, I&#8217;m <a href="http://twitter.com/macgeek02">macgeek02</a>. I&#8217;ll update my contact page to contain my handle as well.</p>
<p>I still definitely have plans for more graphics articles, it will just take me a while to write and post them.</p>
]]></content:encoded>
			<wfw:commentRss>http://losingfight.com/blog/2008/03/04/twitter-induced-silence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Formatting Objective-C code with the HTML code tag</title>
		<link>http://losingfight.com/blog/2007/08/18/formatting-objective-c-code-with-the-html-code-tag/</link>
		<comments>http://losingfight.com/blog/2007/08/18/formatting-objective-c-code-with-the-html-code-tag/#comments</comments>
		<pubDate>Sun, 19 Aug 2007 06:45:16 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://www.losingfight.com/blog/2007/08/18/formatting-objective-c-code-with-the-html-code-tag/</guid>
		<description><![CDATA[You might have noticed, especially given the last post, that the code formatting on this blog leaves much to be desired. I&#8217;m trying to rectify that, but I&#8217;m not quite sure how to do it. I&#8217;ve always assumed that when presenting code, I should use the the &#60;code&#62; tag. Unfortunately, the default formatting of this [...]]]></description>
			<content:encoded><![CDATA[<p>You might have noticed, especially given the last post, that the code formatting on this blog leaves much to be desired. I&#8217;m trying to rectify that, but I&#8217;m not quite sure how to do it.</p>
<p>I&#8217;ve always assumed that when presenting code, I should use the the &lt;code&gt; tag. Unfortunately, the default formatting of this tag is indeterminate at best. From trial and error I&#8217;ve determined that it&#8217;s usually best to put each line of code in its own set of &lt;code&gt;&lt;/code&gt; tags, otherwise formatting gets really wonked. I&#8217;ve also found, depending on the CSS, I might have to put a &lt;br&gt; after each line of code, otherwise my nice, pretty function all ends up on one line.</p>
<p>And this completely ignores indented code. There seem to be a couple of ways to making indentation work. The first is to use the white-space: pre; CSS rule and make sure the tab characters are in the &lt;code&gt; tags. The second is to use the text-indent CSS attribute for each line of code I want to indent.</p>
<p>None of these options are easy or simple, which makes me think I&#8217;m doing something wrong. Are there are any web designers/HTML coders in the audience that know the proper way of doing this? Surely it&#8217;s not intended to be this painful.</p>
<p>The problem with formatting code on this blog has led me to the conclusion that I&#8217;m probably going to have to ditch my current WordPress theme. Sure it&#8217;s pretty, but it does float: right on my images with a rule that has high specificity, making it very difficult to <em>not</em> float my images to the right, which is  what I usually want. It also has a fixed width, which doesn&#8217;t really mix well with my code examples, not to mention it doesn&#8217;t style the &lt;code&gt; tags well.</p>
<p>Unfortunately I haven&#8217;t been able to to find an appropriate WordPress theme that will fit my needs. I&#8217;d really like a two column layout, with a fluid width, and, if it&#8217;s not too much to ask, decent &lt;code&gt; tag handling.</p>
]]></content:encoded>
			<wfw:commentRss>http://losingfight.com/blog/2007/08/18/formatting-objective-c-code-with-the-html-code-tag/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Not dead (yet)</title>
		<link>http://losingfight.com/blog/2007/03/13/not-dead-yet/</link>
		<comments>http://losingfight.com/blog/2007/03/13/not-dead-yet/#comments</comments>
		<pubDate>Wed, 14 Mar 2007 03:11:54 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://www.losingfight.com/blog/2007/03/13/not-dead-yet/</guid>
		<description><![CDATA[I just noticed that I haven&#8217;t posted in a very long time. I blame the move. I had to visit the Bay Area twice before I found any place that was worth having. Not a great place, but I was really pressed for time and it had the least number of things wrong with it. [...]]]></description>
			<content:encoded><![CDATA[<p>I just noticed that I haven&#8217;t posted in a very long time. I blame the move.</p>
<p>I had to visit the Bay Area twice before I found any place that was worth having. Not a great place, but I was really pressed for time and it had the least number of things wrong with it. I get to pay over twice what the same apartment would cost in Dallas for the privilege of being in great state of California. For a place that&#8217;s famous for people claiming you can&#8217;t own property, property sure does cost a lot there.</p>
<p>Anyway, with all the running around and whatnot, there hasn&#8217;t been that much time to blog. Now that I&#8217;m back in Dallas I have to finalize all the move details within the next two weeks, after which the movers arrive and move all my junk to an undisclosed, but highly expensive, location. It is doing wonders for my stress level. It&#8217;s a good thing I only move across the country every two years.</p>
<p>This is coupled with a new contract that <em>finally</em> started after literally two months of negotiation. The problem was the client&#8217;s lawyers got involved. In small companies, the client&#8217;s lawyers are on the same side as their client, because they&#8217;re not in-house and can be let go easily. In large companies, the lawyers are on neither our side nor the side of the client. Their side is the side in which nothing happens, therefore they cannot be blamed for it. Anyway, the contract is a week old and already a month behind. It&#8217;s gonna be fun, I can tell.</p>
<p>All this is to say I&#8217;m not going to posting for a while. At least until all this stupid move stuff calms down, which will probably won&#8217;t be until mid-April or so.</p>
<p>P.S. Is there anyone in the Dallas area who would like to buy a full size washer and dryer? I&#8217;ll sell them on cheap. It is apparently illegal in California to own such things. Some people smuggle in those stackable mini washer-dryer units that have the capacity of a small salad bowl, which is what the owner of the &#8220;condo&#8221; I&#8217;m renting has done.</p>
]]></content:encoded>
			<wfw:commentRss>http://losingfight.com/blog/2007/03/13/not-dead-yet/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Links from the other side</title>
		<link>http://losingfight.com/blog/2006/10/10/links-from-the-other-side/</link>
		<comments>http://losingfight.com/blog/2006/10/10/links-from-the-other-side/#comments</comments>
		<pubDate>Tue, 10 Oct 2006 20:13:39 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://www.losingfight.com/blog/2006/10/10/links-from-the-other-side/</guid>
		<description><![CDATA[This past Sunday night I decided that I should check to see how traffic to the &#8216;ol site was doing. I had been neglecting monitoring the site for a while because, well, I was busy on Wombat, and because traffic was predictable. I knew pretty much who had already linked to me, and how much [...]]]></description>
			<content:encoded><![CDATA[<p>This past Sunday night I decided that I should check to see how traffic to the &#8216;ol site was doing. I had been neglecting monitoring the site for a while because, well, I was busy on Wombat, and because traffic was predictable. I knew pretty much who had already linked to me, and how much traffic that typically brought in.</p>
<p>Sunday nights are usually slow. But not this one. There was definitely a growth in traffic, and it appeared to be coming from <a href="http://cocoadevcentral.com/">Cocoa Dev Central</a>. hmmm&#8230; that&#8217;s odd. Why would anyone over there link to me? Using my powerful investigative and deductive skills, I uncovered this (it <em>was</em> on the front page):</p>
<p><img id="image83" src="http://www.losingfight.com/blog/wp-content/uploads/2006/10/Picture 6.png" alt="Cocoa Dev Central" /></p>
<p>Oh my.</p>
<p>I have to admit my first reaction was: Why did they link to <em>me</em>? I mean, they should be linking to <a href="http://www.wilshipley.com/blog/">Wil Shipley</a> or <a href="http://red-sweater.com/blog/">Daniel Jalkut</a>, who actually write about Cocoa regularly, and have a great deal more experience with it than me. Don&#8217;t get me wrong, I was happy to see the link, but I was worried that people would assume I was some sort of Cocoa master, or that I only wrote about Cocoa.</p>
<p>After a while I began to relax and realize that all the other blogs cover somewhat diverse topics as well, and that I had been covering Cocoa recently, in the form of Core Data. So I calmed down. Calm. Calm is good.</p>
<p>Then came today. I&#8217;m not sure if it was because <a href="http://theocacao.com/">Scott Stevenson</a> announced the redesign of Cocoa Dev Central on his site or what, but I got an even bigger spike in traffic. Scott&#8217;s post also confirmed my suspicion that he was the one running Cocoa Dev Central. So, thank you Scott. I really appreciate the link.</p>
<p>&#8230;</p>
<p>I&#8217;m still in shock that I&#8217;m on the same list that includes Wil Shipley and John &#8220;Wolf&#8221; Rentzsch. Hopefully they&#8217;re not too offended about the whole thing.</p>
<p>I should also point out the other new addition to the Cocoa Dev Central blog roll: <a href="http://cocoasamurai.blogspot.com/">Cocoa Samurai</a> by Colin Wheeler. He appears to be just as surprised as I am, albeit a bit more on topic with the whole Cocoa thing.</p>
]]></content:encoded>
			<wfw:commentRss>http://losingfight.com/blog/2006/10/10/links-from-the-other-side/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ten ways to increase traffic to your blog</title>
		<link>http://losingfight.com/blog/2006/08/04/ten-ways-to-increase-traffic-to-your-blog/</link>
		<comments>http://losingfight.com/blog/2006/08/04/ten-ways-to-increase-traffic-to-your-blog/#comments</comments>
		<pubDate>Sat, 05 Aug 2006 03:13:17 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Amusing]]></category>
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://www.losingfight.com/blog/2006/08/04/ten-ways-to-increase-traffic-to-your-blog/</guid>
		<description><![CDATA[Looking for an easy way to increase traffic to your website? Simply follow one or more of these steps to see a dramatic change in your hits! Pretend that you are expert of some kind, and write a blog entry on how to increase traffic to your blog. The fact that your girlfriend is the [...]]]></description>
			<content:encoded><![CDATA[<p>Looking for an easy way to increase traffic to your website? Simply follow one or more of these steps to see a dramatic change in your hits!</p>
<ol>
<li>Pretend that you are expert of some kind, and write a blog entry on how to increase traffic to your blog. The fact that your girlfriend is the only one who reads your blog is immaterial.</li>
<li>Find a colorful, festive way to off yourself. In your will, nominate yourself for a <a href="http://www.darwinawards.com/">Darwin Award</a>. Be sure to include the URL to your blog in your nomination (you won&#8217;t believe how many people forget that part).</li>
<li>Attempt some sort of criminal activity in which you are embarrassingly foiled by someone who wears diapers. For example, being beaten senseless with dentures wielded by a 93 year old man in a wheelchair, whom you were trying to mug. When being put into the police car, yell out the URL for your blog. <a href="http://www.fark.com">Fark</a> will pick the story up immediately.</li>
<li><a href="http://wilshipley.com/blog/2006/07/dude-kyles-not-here.html">Per Wil Shipley</a>, simply add the phrase &#8220;Kyle orton drunk&#8221;, and you will be rolling in hits.</li>
<li>In the late 90&#8242;s start a blog with an obscure, technical name. Post links to technical news, anime, and other geekery. Later, the unemployed and/or students who love Linux and not paying for stuff you might be advertising, will flock to your site and remove any value it might have had.</li>
<li>Create a blog with a name that&#8217;s a derivative of a curse word. Until you have actual content to put up, use a placeholder that is a picture of a squirrel with a peculiar glandular problem. Later, post links about criminals getting beaten up by 93 year olds in wheelchairs.</li>
<li>Read the hundreds of posts on how to increase traffic to your site, and determine that that&#8217;s too much work. Instead, write about what your cat, Mittens, threw up this morning. Despite the odds, cat lovers will flock to your site, eager to tell you how cute that is, and what their cat just left in the litter-box.</li>
<li>Browse over to <a href="http://blogs.herald.com/dave_barrys_blog/">Dave Barry&#8217;s blog</a> to get ideas. Think, &#8220;I could have a <em>much</em> better haircut than that!&#8221; Scoff at his writing since he retired. Pretend that its your blog.</li>
<li>Find a way to insult Muslims and/or the Koran, such as <a href="http://en.wikipedia.org/wiki/Jyllands-Posten_Muhammad_cartoons_controversy">drawing a cartoon</a>. Have a well-known cleric declare a jihad on you. In a press release, mention your exact location will be posted daily on your blog. Watch the death threats, erm traffic, roll in.</li>
<li>Write an article on how this will be &#8220;The Year of Linux&#8221; and how much better it will be than Windows. Be sure to abbreviate Microsoft as M$ a lot. Post it where the unemployed and/or students can find it. Prepare to be <a href="http://slashdot.org">slashdotted</a>.</li>
</ol>
<p>Some of these might even be legal in your state!</p>
]]></content:encoded>
			<wfw:commentRss>http://losingfight.com/blog/2006/08/04/ten-ways-to-increase-traffic-to-your-blog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Witnessing God</title>
		<link>http://losingfight.com/blog/2006/07/25/witnessing-god/</link>
		<comments>http://losingfight.com/blog/2006/07/25/witnessing-god/#comments</comments>
		<pubDate>Tue, 25 Jul 2006 20:43:02 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Christianity]]></category>
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://www.losingfight.com/blog/2006/07/25/witnessing-god/</guid>
		<description><![CDATA[In the quagmire that is my brain, I recently went down a couple of paths of thought that led me to one conclusion about what else I should be writing in this blog. The first train of thought was actually pretty short. I was simply noticing the categories that I have in this blog, and [...]]]></description>
			<content:encoded><![CDATA[<p>In the quagmire that is my brain, I recently went down a couple of paths of thought that led me to one conclusion about what else I should be writing in this blog.</p>
<p>The first train of thought was actually pretty short. I was simply noticing the categories that I have in this blog, and how many posts of each kind I have. (Yes, I know I have a lot of spare time.) Even though I have several in the Christianity category, they&#8217;re all about the recent missions trip I was on. There&#8217;s nothing wrong with that, but it sent me down the path of &#8220;is that all God has done in my life recently?&#8221; I don&#8217;t think those few posts are very representative of what God has done for me. I began musing about what I could possibly write about. The problem is: I&#8217;m not a teacher, I&#8217;m not a pastor or even a deacon, I&#8217;ve never been to seminary or been ordained. I definitely don&#8217;t feel comfortable or qualified for writing essays about theology or philosophy. Not being a teacher or inspirational speaker, I don&#8217;t think I could write posts about uplifting stories or Bible studies or devotions. So what is it that I could do?</p>
<p>The second train of thought got started during one of my quiet times. I was thinking about evangelism, and how I could grow in that area. The missions trip was the only conscious effort I&#8217;ve had recently towards evangelism, and I wanted to change that. But being an introverted self-employed software engineer, I spend most of my time at home. Regular social activities usually involve Christian friends or people from church. I don&#8217;t meet that many non-Christian people because of this, so who am I to be a witness to?</p>
<p>That&#8217;s where these two trains bumped into each other. The easiest way to evangelize to people is to tell them what God has done for you. All I need to do is tell about how I&#8217;ve seen God working in my life. I can leave the teaching up to the experts. As far as to whom do I be a witness to, I can be witness to whomever reads this blog. I honestly don&#8217;t think there&#8217;s all that many people that ready this blog, but it is an audience, and its still probably larger than the number of people I talk to daily.</p>
<p>So from time to time I&#8217;m going to post about what God has done in my life. The first step is to post my testimony, which I&#8217;ve already done. I&#8217;m not sure how frequently I&#8217;ll end up posting, but I&#8217;m hoping with a certain regularity. If I&#8217;m feeling frisky, I&#8217;ll not only post what God has done for me, but what I learned from the experience and how I think it applies to my life. I&#8217;m hoping this forces me to be more aware and conscious of how God is moving in my life.</p>
]]></content:encoded>
			<wfw:commentRss>http://losingfight.com/blog/2006/07/25/witnessing-god/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Quest for the Wholly New Toy</title>
		<link>http://losingfight.com/blog/2006/07/20/quest-for-the-wholly-new-toy/</link>
		<comments>http://losingfight.com/blog/2006/07/20/quest-for-the-wholly-new-toy/#comments</comments>
		<pubDate>Thu, 20 Jul 2006 22:04:58 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Toys]]></category>
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://www.losingfight.com/blog/2006/07/20/quest-for-the-wholly-new-toy/</guid>
		<description><![CDATA[I&#8217;m trying out WordPress on a hosted server for the first time, after creating a couple of blogs over at Blogger. While Blogger is a great place to start, I&#8217;m starting to want some more features than what they provide. Or maybe its my engineering side wanting more toys. I&#8217;ve also found that my &#8220;professional [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m trying out WordPress on a hosted server for the first time, after creating a <a href="http://losingfight.blogspot.com">couple</a> of <a href="http://type11error.blogspot.com">blogs</a> over at Blogger. While <a href="http://blogger.com">Blogger</a> is a great place to start, I&#8217;m starting to want some more features than what they provide.</p>
<p>Or maybe its my engineering side wanting more toys.</p>
<p>I&#8217;ve also found that my <a href="http://losingfight.blogspot.com">&#8220;professional blog&#8221;</a> isn&#8217;t being updated regularly. That&#8217;s why I started the <a href="http://type11error.blogspot.com">second blog</a>. The idea was I would keep &#8220;professional&#8221; ideas separate from my personal ones. But the more I&#8217;ve thought about it, the less sense that really makes. &#8220;Professional&#8221; posts will probably continue to be scarce, but that&#8217;s no reason to continue to isolate them in their own blog.</p>
<p>Whatever the reason, I&#8217;m going to playing around with this blog to see if it lives up to my expectations. I&#8217;ll probably start migrating the old entries over to this blog to see how they look.</p>
]]></content:encoded>
			<wfw:commentRss>http://losingfight.com/blog/2006/07/20/quest-for-the-wholly-new-toy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The iWeb Experiment</title>
		<link>http://losingfight.com/blog/2006/03/14/the-iweb-experiment/</link>
		<comments>http://losingfight.com/blog/2006/03/14/the-iweb-experiment/#comments</comments>
		<pubDate>Wed, 15 Mar 2006 00:09:00 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://www.losingfight.com/blog/?p=9</guid>
		<description><![CDATA[Well, that didn&#8217;t take long. The iWeb experiment is officially a failure. It has a nice GUI and all, but it won&#8217;t let you do comments or anything remotely interesting. Oh well.]]></description>
			<content:encoded><![CDATA[<p>Well, that didn&#8217;t take long.</p>
<p>The iWeb experiment is officially a failure.</p>
<p>It has a nice GUI and all, but it won&#8217;t let you do comments or anything remotely interesting.</p>
<p>Oh well.</p>
]]></content:encoded>
			<wfw:commentRss>http://losingfight.com/blog/2006/03/14/the-iweb-experiment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In the Beginning&#8230;</title>
		<link>http://losingfight.com/blog/2006/03/14/in-the-beginning/</link>
		<comments>http://losingfight.com/blog/2006/03/14/in-the-beginning/#comments</comments>
		<pubDate>Wed, 15 Mar 2006 00:05:00 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://www.losingfight.com/blog/?p=8</guid>
		<description><![CDATA[[Note: This was the first post of my personal blog, Type 11 Error. The idea was have a blog that wasn't restricted to professional endeavors. If you can't bore them with code, bore them with your personal life, I always say.] Its all Elaine&#8217;s fault, as usual. I was going about my merry way when [...]]]></description>
			<content:encoded><![CDATA[<p><em>[Note: This was the first post of my personal blog, Type 11 Error. The idea was have a blog that wasn't restricted to professional endeavors. If you can't bore them with code, bore them with your personal life, I always say.]</em></p>
<p>Its all Elaine&#8217;s fault, as usual. I was going about my merry way when she starts pestering me that I haven&#8217;t posted to my blog recently. That&#8217;s why this atrocity was born.</p>
<p>I actually have another blog, <a href="http://losingfight.blogspot.com">Safe from the Losing Fight</a>, but I haven&#8217;t posted to it in a while. Its mainly about professional endeavors and thoughts, and I&#8217;d like to keep it that way. I haven&#8217;t updated it recently because of various NDAs and just simple lack of time. Since I&#8217;d like it to be professional the posts there take longer to compose and edit than the simple &#8220;what I had for breakfast this morning&#8230;&#8221; posts.</p>
<p>I&#8217;m starting this blog for several reasons:</p>
<ol>
<li>I have a new toy to play with (i.e. iWeb. A hint to those with engineers in their lives: If want something done, buy the engineer a toy that does said job. They still might not finish the job, but at least they&#8217;ll be happy for a while. And really, isn’t that the point? To make your engineer happy?)</li>
<li>A place to log thoughts that aren&#8217;t necessarily professional, well composed, logical, or human.</li>
<li>For the proud llamas. You know who you are.</li>
</ol>
<p>As you might note, with some dismay no doubt, the name of this blog is even geekier than that of my &#8220;professional&#8221; geek blog. I&#8217;m quite proud of that. It just goes to show I&#8217;m even more of a dork in my personal life than in my professional. I try not to disappoint.</p>
]]></content:encoded>
			<wfw:commentRss>http://losingfight.com/blog/2006/03/14/in-the-beginning/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

