Blog Introductions are silly stupid

This website shall showcase things that both are worth the time to write and occur to me when I have the time to invest. Most likely it will consist of annoyances, but hopefully there will be plenty of wonderful things to see. For now, I’m simply testing the website. You can, if you desire, stop reading this post and wait till the next one. If not, enjoy:

Let’s see what happens when I use this code snippet plugin. It should show this code snippet in a nicely styled box. Here goes nothing:

[/code]
internal void Construct()
{
    try
    {
        WordPressApp instance = Host.CreateWordPress(false); // too bad
        instance.Theme = com.wordpress.theme.retrieve("Something Different");
        instance.Persist(Host.CurrentHostingContext);
    }
    catch (Exception ex)
    {
        Google.This.Error("Construct", ex);
    }
}

That seemed to work out fine. Now, let’s see here..
..
Yup, that title is too large, I’ll have to change it. There. Changed. That’s better, I’ve always liked the domain name in lower case. That header seems too large for my taste as well. I think I’ll make it a little smaller. I don’t imagine I’ll be writing credible titles anyway.

Ok, now let’s see what else this code snippet thing can do, I need to adjust it anyway. This is the updated constructor:

        internal void Construct()
        {
            try
            {
                WordPressApp instance = Host.CreateWordPress(false); // too bad
                instance.Theme = com.wordpress.theme.retrieve("Something Different");
                instance.Styles["Header H1"].FontTransformation = Transformations.None;
                instance.Styles["H2"].FontSize = 2.0;
                instance.Styles["H2"].FontUnit = FontUnit.Em;
                instance.Persist(Host.CurrentHostingContext);
            }
            catch (Exception ex)
            {
                Google.This.Error("Construct", ex);
            }
        }

I just noticed that silly “Keep Reading” bit. I think I’ll keep it for now, if I end up writing, it’ll make it easier to scan recent posts for things of value. So far I like this theme. Great job guys. (gals?)

Ok, now to configure those links and meta data about me. BRB.

Submit a Comment

Your email address will not be published. Required fields are marked *