<?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>Nephandus</title>
	<atom:link href="http://www.nephandus.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nephandus.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 02 Jul 2010 19:24:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Break On Through To The Other Side</title>
		<link>http://www.nephandus.com/2010/07/02/break-on-through-to-the-other-side/</link>
		<comments>http://www.nephandus.com/2010/07/02/break-on-through-to-the-other-side/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 19:23:23 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[user controls]]></category>
		<category><![CDATA[viewstate]]></category>

		<guid isPermaLink="false">http://www.nephandus.com/?p=26</guid>
		<description><![CDATA[User controls are the source of a lot of headaches in C#. They have two major issues that tend to drive programmers a little mad. The first is that they don&#8217;t play nicely with the ViewState. Particularly once users start to nest and reorder user controls, the ViewState model (much of which is based on [...]]]></description>
			<content:encoded><![CDATA[<p>User controls are the source of a lot of headaches in C#.  They have two major issues that tend to drive programmers a little mad.  The first is that they don&#8217;t play nicely with the ViewState.  Particularly once users start to nest and reorder user controls, the ViewState model (much of which is based on position within the page) starts to break down.  In many cases programmers circumvent this little nightmare by simply disabling the ViewState on some controls.</p>
<p>The second issue is that user controls are in their own scope and don&#8217;t have immediate access to the rest of the page.  That is both a blessing and a curse; good control design means that the controls should be fairly independent of each other but a more pragmatic developer will also note that user controls exist primarily so that numerous copies of the same thing can be easily created and that making entirely self contained controls leads to a lot of unnecessary duplication.</p>
<p>Fortunately there are workarounds for both of these issues.  <span id="more-26"></span></p>
<p>Regardless of view state, a user control can pass information and therefore trigger events properly using the ASP framework by means of some elaborate JavaScript trickery.  In this example, I am using JQuery and JavaScript to allow a click event inside a ViewStateless user control to set the value of a text box and click a button outside of the control, thereby triggering an event within the ASP framework.</p>
<pre class="brush: jscript;">
$(JQueryObjectForMyUserControl).find(&quot;.clickableElement&quot;)
.unbind(&quot;click&quot;).click(function() {
        var clickHandler = $(this).parents(&quot;.OuterBound&quot;).find(&quot;.ClickHandler&quot;);
        //I'm replacing the underscores with dollar signs here because that is what ASP expects to find internally
        var argument = $(this).find(&quot;a&quot;).attr(&quot;id&quot;).replace(/_/g, &quot;$&quot;);
        clickHandler.find(&quot;.ClickHandlerArgument&quot;).val(argument);
        clickHandler.find(&quot;.ClickHandlerLinkButton&quot;).click();
    });
</pre>
<p>Getting around the scope restriction requires a great deal less insanity.  For example, my user controls have to be able to activate a modal overlay and dialog box.  I could put the code for that inside each user control but that would be a lot of code bloat.  Instead, I have the dialog in one place on my page and allow the controls to set its values and activate it.</p>
<pre class="brush: csharp;">
Page page = this.Page;
ModalPopupExtender ModalPopupExtenderLockedDialog = (ModalPopupExtender)page.FindControl(&quot;ModalPopupExtenderLockedDialog&quot;);
Label LabelMessage = (Label)page.FindControl(&quot;LabelMessage&quot;);
ModalPopupExtenderLockedDialog.Show();
LabelMessage.Text = &quot;Hello World!&quot;;
</pre>
<p>Getting to properties is only a little harder.  If you need to get to the properties of your page you need only cast this.Page appropriately.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nephandus.com/2010/07/02/break-on-through-to-the-other-side/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wazza ListItemContainer?</title>
		<link>http://www.nephandus.com/2010/06/30/wazza-listitemcontainer/</link>
		<comments>http://www.nephandus.com/2010/06/30/wazza-listitemcontainer/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 13:57:42 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[documentation]]></category>
		<category><![CDATA[quirks]]></category>
		<category><![CDATA[serialization]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.nephandus.com/?p=24</guid>
		<description><![CDATA[VirPack has me working on an application that needs a user administered list of options for people to choose from. It&#8217;s a fairly simple thing that doesn&#8217;t require relational tables so I thought I&#8217;d toss it into XML. Now, C# deals with XML really well. Almost everything, if you just ask nicely, will be quickly [...]]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignleft" style="width: 250px"><a href="http://www.flickr.com/photos/scottpargettphoto/1838997549/"><img title="Springfield XD .40 XML" src="http://farm3.static.flickr.com/2172/1838997549_30246e88ef_m.jpg" alt="" width="240" height="160" /></a><p class="wp-caption-text">Not this kind of XML</p></div>
<p>VirPack has me working on an application that needs a user administered list of options for people to choose from.  It&#8217;s a fairly simple thing that doesn&#8217;t require relational tables so I thought I&#8217;d toss it into XML.</p>
<p>Now, C# deals with XML really well.  Almost everything, if you just ask nicely, will be quickly and easily packed off into XML the framework with just a few lines of code.</p>
<p><span id="more-24"></span><br />
<br/></p>
<pre class="brush: csharp;">
String path = Server.MapPath(&quot;~\\myfile.xml&quot;);
using (FileStream sourceFile = new FileStream(Server.MapPath(path), FileMode.Create, FileAccess.Write))
        {
            XmlSerializer serializer = new XmlSerializer(typeof(Foo));
            serializer.Serialize(sourceFile, bar);
        }
        bar = null;
        using (System.IO.FileStream sourceFile = new System.IO.FileStream(path, System.IO.FileMode.Open, System.IO.FileAccess.Read))
        {
            System.Xml.Serialization.XmlSerializer serializer = new System.Xml.Serialization.XmlSerializer(typeof(Foo));
            Foo bar= serializer.Deserialize(sourceFile) as Foo;
        }
</pre>
<p>As simple as that I&#8217;ve packed my class off to be serialized and then unserialized it.  Three lines of code is hard to beat for XML serialization and deserialization.  &#8220;Foo&#8221; is a user defined type, however, and my particular task being the population of a drop-down list, no such complexity was required.  Yet, when I tried to feed a List of ListItems into the Serializer everything broke.</p>
<pre class="brush: csharp;">
//This breaks
System.Xml.Serialization.XmlSerializer listSerializer = new System.Xml.Serialization.XmlSerializer(typeof(List));
//This too
System.Xml.Serialization.XmlSerializer typedListSerializer = new System.Xml.Serialization.XmlSerializer(typeof(List&lt;ListItem&gt;));
</pre>
<p>This has to do with how C# deals with collections.  Serialization requires a root level node and a collection, despite having an appearance of such, has no root level information.  It is a collection, not a collection bounded by something else and XML serialization requires that something else.</p>
<p>So C# has a hackish workaround.  The ListItemContainer class is a simple type that contains a List of ListItems.</p>
<pre class="brush: csharp;">
//This works
System.Xml.Serialization.XmlSerializer listSerializer = new System.Xml.Serialization.XmlSerializer(typeof(ListItemContainer));
</pre>
<p>Of course, not everything you&#8217;ll wish to serialize in a list will be a list item, but the fact that C# had to create it&#8217;s own little wrapper class should be a clue for developers.  Getting a collection into XML requires a wrapper class; it&#8217;s as simple as that.</p>
<p>Would it have killed them to document that though?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nephandus.com/2010/06/30/wazza-listitemcontainer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unit Testing C# Webpages</title>
		<link>http://www.nephandus.com/2010/05/06/unit-testing-c-webpages/</link>
		<comments>http://www.nephandus.com/2010/05/06/unit-testing-c-webpages/#comments</comments>
		<pubDate>Thu, 06 May 2010 14:04:57 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[tdd]]></category>
		<category><![CDATA[test driven development]]></category>
		<category><![CDATA[watir]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.nephandus.com/?p=21</guid>
		<description><![CDATA[Unit testing is good; test driven development is better.  As Knuth once famously quipped &#8220;Beware of the above code. I have only proven it correct, not tested it.&#8221; There really is no substitution for good, solid testing. Unfortunately, at least in C#, webpages don&#8217;t like to be unit tested.  I approach this post with an [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_22" class="wp-caption alignleft" style="width: 223px"><a href="http://www.flickr.com/photos/beatkueng/2680294816/"><img class="size-medium wp-image-22" title="2680294816_e710a43d3b" src="http://www.nephandus.com/wp-content/uploads/2010/05/2680294816_e710a43d3b-213x300.jpg" alt="" width="213" height="300" /></a><p class="wp-caption-text">Image Credit: PixelPlacebo via Flickr and Creative Commons</p></div>
<p>Unit testing is good; test driven development is better.  As Knuth once famously <a href="http://www-cs-faculty.stanford.edu/~knuth/faq">quipped</a> &#8220;<em>Beware of the above code. I have only proven it correct, not tested it.&#8221;</em> There really is no substitution for good, solid testing.</p>
<p>Unfortunately, at least in C#, webpages don&#8217;t like to be unit tested.  I approach this post with an uncomfortable realization that I am about to lay out the issues and problems I&#8217;ve had while the solution I am presently using is far from satisfactory.<span id="more-21"></span></p>
<p>There is a right way and a wrong way to undertake a lot of unit testing.  If you want to learn about that, I recommend <a href="http://www.ryanhagan.net/2009/10/test-driven-development/">this post by Ryan Hagan</a> as a great jumping off point.  My problem is not in writing good unit tests, however, so much as having a place to write them.</p>
<p>Axiomatic truth of Unit Testing: Your test code should exist in a different place than your production code.  This just makes good sense.  You don&#8217;t want to publish your tests every time you push code out the door and, since you want all of your published code to be tested you don&#8217;t want to have to write tests for your tests.  In C# the way one generally accomplishes this is the creation of a separate test project within the current solution.  That way the solution contains both your code and your tests.</p>
<p>Now generally, when you&#8217;re writing tests for C# this isn&#8217;t a big deal.  Since your project gets bundled up every time you build you can add a reference to the Test project that points at your main project; that way, the test harness knows what to make of all the custom types and whatnot that your various tests will have to evaluate.</p>
<p>This does not work for webpages.</p>
<p>When C# builds a webpage there&#8217;s no handy-dandy compiled thing at which to point your test code.  That means your test code has no idea what to make of any custom objects you&#8217;ve created and that makes any meaningful testing pretty much impossible.  Consider the following short example:</p>
<pre class="brush: csharp;">
public void CreateTest()
        {
            string WidgetName = string.Empty;
            Widget expected = null;
            Widget actual;
            actual = WidgetFactory_Accessor.Create(WidgetName);
            Assert.AreNotEqual(expected, actual);
       }
</pre>
<p>In this example, &#8220;Widget&#8221; and &#8220;WidgetFactory&#8221; are both custom types.  C# has conveniently generated an accessor for my Factory but it has no reference to my main project and thus doesn&#8217;t know what a Widget is.  Consequently, this test won&#8217;t compile and I can&#8217;t run it.</p>
<p>There is a work-around solution I&#8217;ve found wherein I publish the Main Project and then create a reference from the Test Project to the published AppCode.dll file.  This works but requires that I publish the DLL every time I wish to re-evaluate my source code which makes the entire testing process prohibitively time consuming.</p>
<p>My suspicion at this point is that what I am trying to do is in fact neither possible nor recommended and that unit testing of a C# webpage should be accomplished by creating a sharp distinction between the interface and presentation layers, testing the presentation layer traditionally and then using interface testing suites like <a href="http://watir.com/">Watir</a>.  This seems the sort of thing that should be verbosely stated somewhere if it is, indeed, the case.</p>
<h2>Update</h2>
<p>As per Ryan&#8217;s suggestion below and some other feedback I&#8217;ve gotten I am moving much of the logic code out of the project and creating a project-level distinction between the interface and the presentation layers of the application.  This should allow me to more sanely test the presentation layer and leverage Watin in to handle the interface testing.</p>
<p>It&#8217;s not the sort of separation recommended, but the architecture on this particular system is fairly dated and a full out re-factoring is out of the question (for now).</p>
<p>As it&#8217;s conspicuously missing from many other write-ups I&#8217;ve seen I&#8217;ll say it here.  You can not meaningfully test anything except the interface of a C# web project.  If you want to test your code, move it into a DLL project and allow your web project to call that DLL.  Ideally the Web project should be as thin as possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nephandus.com/2010/05/06/unit-testing-c-webpages/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Teaching An Old Dog New Tricks</title>
		<link>http://www.nephandus.com/2010/04/28/teaching-an-old-dog-new-tricks/</link>
		<comments>http://www.nephandus.com/2010/04/28/teaching-an-old-dog-new-tricks/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 19:23:18 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[syntax highlighter]]></category>
		<category><![CDATA[user testing]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.nephandus.com/?p=18</guid>
		<description><![CDATA[Most of the blogging I&#8217;ve done in the past has been political and thus I really haven&#8217;t had an opportunity to try to post much in the way of source code in a blog.  Once I got Nephandus up and running on WordPress, however, I thought I&#8217;d have a shot at it and thus posted [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_19" class="wp-caption alignleft" style="width: 206px"><a href="http://www.flickr.com/photos/dirkjankraan/4476149021/"><img class="size-medium wp-image-19" title="767 Cockpit" src="http://www.nephandus.com/wp-content/uploads/2010/04/4476149021_79176350b7-196x300.jpg" alt="" width="196" height="300" /></a><p class="wp-caption-text">How do you user test this?</p></div>
<p>Most of the blogging I&#8217;ve done in the past has been political and thus I really haven&#8217;t had an opportunity to try to post much in the way of source code in a blog.  Once I got Nephandus up and running on WordPress, however, I thought I&#8217;d have a shot at it and thus posted a short article on my experiences with C#&#8217;s serialization quirks.</p>
<p>To illustrate a specific point I included a brief snippet of C# code which WordPress promptly turned into an illegible mess.  The web is a notoriously difficult place to display source code and thus I set off in search of a WordPress plug-in that would allow me to do so without too much thought.  Several days, a dozen plug-ins, and a string of curse words that would make a sailor blush with shame, <a href="http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/">I have a solution</a>.</p>
<p>There is no shortage of syntax highlighting plug-ins available, but the support for their instantiation is practically non-existent.    Nephandus is running a number of plug-ins, none of which required much more than a few mouse-clicks to install and configure yet this particular task proved more difficult and involved than anything else I&#8217;ve done with WordPress.</p>
<p>The more I thought about this frustration the more I realized that this is an ongoing problem in the software development industry.<span id="more-18"></span></p>
<p>When developers buid a word processor or an email application they spend (or they should spend) a fair bit of time working out where users will intuitively look for certain basic functionality.  Tools, options, and commands should be where the user expects them to be; that saves time and cuts down on support costs.  We can test and evaluate that design by asking people who are totally unfamiliar with the product to find those sorts of functions and watching what they do.  It&#8217;s a system that works well because, familiar with the product or not, everyone has a basic grasp of certain tasks like writing or arithmetic.</p>
<p>But how do you do that kind of testing with an IDE?</p>
<p>The people who use IDEs are, pretty much by definition, super-users.  At the very least we can expect them to have a high level of familiarity, if not with the interface itself than with the thing the interface manipulates &#8211; code in a programming language they know.  These users have very specific ideas about where things ought to be which are based, not on intuition but where they were in some other IDE that they learned.  Because the population of knowledgeable coders is small and the number of IDEs they develop on is also small, it&#8217;s likely that they&#8217;ll bring some of their preconceived notions into user testing and that those notions will persist through the testing process.</p>
<p>Neophyte users aren&#8217;t terribly helpful because while they&#8217;re learning the interface they&#8217;re also learning the language and thus don&#8217;t know enough to evaluate the more powerful aspects of a product.</p>
<p>How then do you test the usability of a new interface when that interface&#8217;s intended users are a small, niche population often with preconceived, conflicting, and sometimes nearly religious notions of how the interface should look, feel, and act?</p>
<p>That isn&#8217;t a problem that WordPress plug-in authors really need to worry too much about &#8211; at least not if they&#8217;re giving their work away for free (beggars can&#8217;t be choosers) &#8211; but those of us who make specialty products for high-end niche professionals need to find a way to tackle the problem lest we find ourselves unable to change a 30 year old catastrophe of a design because it&#8217;s what everyone knows and expects.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nephandus.com/2010/04/28/teaching-an-old-dog-new-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# WebControl Behavior</title>
		<link>http://www.nephandus.com/2010/04/26/c-webcontrol-behavior/</link>
		<comments>http://www.nephandus.com/2010/04/26/c-webcontrol-behavior/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 18:52:36 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[serialization]]></category>
		<category><![CDATA[serialized]]></category>
		<category><![CDATA[session]]></category>
		<category><![CDATA[viewstate]]></category>
		<category><![CDATA[webcontrol]]></category>

		<guid isPermaLink="false">http://www.nephandus.com/?p=14</guid>
		<description><![CDATA[My &#8220;learn C# project&#8221; at work has centered around creating a drag-and-drop portlet style system for the display of custom widgets.  I&#8217;ve been using JQuery UI for the javascript functionality but the backend has been all custom C# work. People familiar with C# know that C# supports the inclusion of user defined controls called WebControls.  [...]]]></description>
			<content:encoded><![CDATA[<p>My &#8220;learn C# project&#8221; at work has centered around creating a drag-and-drop portlet style system for the display of custom widgets.  I&#8217;ve been using JQuery UI for the javascript functionality but the backend has been all custom C# work.</p>
<p>People familiar with C# know that C# supports the inclusion of user defined controls called WebControls.  These are more or less very simple C# programs which can be man-handled by another bit of C# code.  They&#8217;re handy for making your code modular: you might design a web-control that takes and validates a credit card number, for example.</p>
<p>But WebControls are notoriously tricky beasts and over the course of the last few weeks I&#8217;ve come to understand that one of the reasons for this is that they don&#8217;t behave quite the way you might expect them to when they are serialized and deserialized.<span id="more-14"></span></p>
<p>Most C# serialization occurs behind the scenes in something called the ViewState.  For those of you who have no idea what that means, ViewState is C#&#8217;s rather clever way of persisting the things on a webpage so that it feels a little more like a desktop application.  The long and the short of its behavior is that things get serialized into the ViewState just before rendering and de-serialized back out of ViewState on the next request as part of the load step.</p>
<p>Most controls go into the ViewState&#8230; but WebControls don&#8217;t.  At least, they don&#8217;t go in there by default.  Presumably you can create custom ViewState serialization for them; I have not tried this.  Instead, I serialized my WebControls very simply into Session and coded that storage into a property.  My code looked something like this</p>
<pre class="brush: csharp;">
private Widget InternalWidget
{
	get
	{
		Widget result;
		if (Session[&quot;Widget&quot; + this.UniqueID] != null)
		{
			result = Session[&quot;Widget&quot; + this.UniqueID] as Widget;
			if (result == null )
			{
				result = WidgetFactory.Create();
				result.Arguments = InternalActivePortlet.Arguments;
			}
		}
		return result;
	}
	set
	{
		Session[&quot;Widget&quot; + this.UniqueID] = value;
	}
}
</pre>
<p>Now, as expected, none of my EventHandlers persisted when the WebControl came back out of its session serialization.  The object that comes back from serialization is an entirely new object; the old one has been destroyed.  As a result, the event handlers in the deserialized object point to null function pointers.  C# doesn&#8217;t throw an error when you call a null function pointer, however; it just goes on its merry way and does nothing.</p>
<p>But the function pointers &#8211; even though they now point to null objects &#8211; remain.  C# remembers a great deal more about the session-serialized object than one might think including &#8211; and this is the part that really threw me &#8211; the fact that it&#8217;s already been through the ASP parser.</p>
<p>I had expected, since my event handlers weren&#8217;t working when the WebControl came back from Session, that the events themselves were gone and that therefore the object returned from session was new &#8212; as if it was programatically created for the first time.  This is not the case.  When you programatically create a WebControl for the first time it&#8217;s ASP file is parsed and event handlers are set up based upon the code there.  When you deserialize a WebControl from session, however, C# remembers that it has already dealt with its ASP code and does not do it a second time.</p>
<p>Consequently, none of the event handlers defined in the ASP work either.</p>
<p>I expect that all of this seems rudimentary to more experienced C# developers, but to me it was quite a mystery and it took me some time to work out the above logic.  Hopefully this will aid some neophyte coder working through the same issues I had.</p>
<p>On a totally unrelated note: I need to find a decent code display plugin for WordPress&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nephandus.com/2010/04/26/c-webcontrol-behavior/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile Experiments</title>
		<link>http://www.nephandus.com/2010/04/26/mobile-experiments/</link>
		<comments>http://www.nephandus.com/2010/04/26/mobile-experiments/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 12:37:12 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.nephandus.com/2010/04/26/mobile-experiments/</guid>
		<description><![CDATA[I am not sure why anyone would want to write a blog post from their phone but if that sounds fun to you there&#8217;s apparently an Android app for that. Just remember to enable the &#8220;WordPress, Moveable Type, MetaWeblog and Blogger XML-RPC publishing protocols&#8221; in WordPress&#8217; settings/writing section.]]></description>
			<content:encoded><![CDATA[<p>I am not sure why anyone would want to write a blog post from their phone but if that sounds fun to you there&#8217;s apparently an Android app for that. <span id="more-13"></span></p>
<p>Just remember to enable the &#8220;WordPress, Moveable Type, MetaWeblog and Blogger XML-RPC publishing protocols&#8221; in WordPress&#8217; settings/writing section.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nephandus.com/2010/04/26/mobile-experiments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://www.nephandus.com/2010/04/25/hello-world/</link>
		<comments>http://www.nephandus.com/2010/04/25/hello-world/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 16:48:47 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.nephandus.com/?p=1</guid>
		<description><![CDATA[It is time for Nephandus to change&#8230; again. I registered Nephandus.com when I was in college.  Since then it has been a flat HTML page, a Macromedia (now Adobe) Flash application, a custom PHP driven web-application, a PHP/Fusebox web application, and a Zend PHP web application.  In that time I&#8217;ve gone from being a student [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_10" class="wp-caption alignleft" style="width: 310px"><a href="http://www.flickr.com/photos/grdloizaga/447061508/"><img class="size-medium wp-image-10 " title="On" src="http://www.nephandus.com/wp-content/uploads/2010/04/447061508_cd5ec6ca93_b-300x225.jpg" alt="" width="300" height="225" /></a><p class="wp-caption-text">Image Credit: Guillermo (via flickr)</p></div>
<p>It is time for Nephandus to change&#8230; again.</p>
<p>I registered Nephandus.com when I was in college.  Since then it has been a flat HTML page, a Macromedia (now Adobe) Flash application, a custom PHP driven web-application, a PHP/Fusebox web application, and a Zend PHP web application.  In that time I&#8217;ve gone from being a student of History at the University of Virginia to a  software developer at VirPack in Blacksburg, VA with stops along the way at Radford University (it turns out no one will pay you to have just one degree in History), Fingertip Marketing, BearingPoint, Sitevision, and Coral Networks.<span id="more-1"></span></p>
<p>Each new job or university has brought a change to the site as I&#8217;ve learned or sought to learn new technologies and techniques.</p>
<p>Much as I enjoy tinkering with my own custom application, however, the technology that surrounds blogging on the web has long since outstripped both my ability to keep pace and the spare time I have to undertake such efforts.   They say that &#8220;good programmers write good code; great programmers steal  great code&#8221; and so, I&#8217;ve turned to WordPress to handle Nephandus.</p>
<p>Maybe I&#8217;ll have more time to write about code now that I&#8217;m writing less of it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nephandus.com/2010/04/25/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
