Flooding back home.

July 28, 2008 14:27 by rclarkson

Here you can see my grandma being interviewed.  I called in the tip last night when I found out that the Army Corps. of Engineers decided that they had to release so much water from Mark Twain Dam that it would create a man made flooding of homes and farm land.  The dam was built, in part, to keep floods from happening.  Maybe, they should have moved a little faster and sooner.

 


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Thoughts of a Zen master on success

April 8, 2008 02:48 by rclarkson

The need for success drains the energy necessary to succeed.


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Prayer request for Nancy McMullin

April 5, 2008 08:18 by rclarkson

If you come across this post for the next day, week, or month I have friend who needs some affirmative prayers.  She had a heart attack recently and we have been doing prayers for her.  She is in my practitioner class and has been a great class mate and volunteers as the book store manager in my church.  I know she is perfection and there is no her, me or you.  There is only us.

Peace and Health.


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Lake Taneycomo - Lilley's Landing

March 4, 2008 00:39 by rclarkson

Check out this story about Lake Taneycomo.  I went but didn't see any this big.

http://www.taneycomotrout.com/storyoftheyear2007.html


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Business Objects in .Net - Part One

January 15, 2008 13:00 by rclarkson

There is a lot out there about business objects and lot that is not.  What is out there are endless combinations of code and ideologies.  When you are an business and you have to begin to rely on outside coders to enforce the integrity of your data, business rules, and workflow, you have to begin to wonder if it is worth it.  There is a likelihood that your developers have chosen a third party to help them do their business objects.  That puts you in a conundrum.  What happens if they leave?  What is the learning curve and how will you continue to support it if you pick an in-depth business object framework like CSLA.Net or nBusiness? 

Microsoft seems to be addressing this concern in a circular, almost arbitrary manner.  They give you new technologies like LINQ, ASP.Net MVC, Dynamic Data Web Site, Enterprise Library, etc.  But none of them answer the question or business need - a simple, manageable business object framework.  What is a developer to do?

A business object has to do the following (more could be added):

  • Support fields,
  • Allow for validation; a.k.a. business rules,
  • Have a way to get data,
  • Create collections of objects,
  • Trap errors,
  • Be aware of it's state; dirty, new, old.
  • etc.

Why is there no simple way to make this happen?

I am an avid fan of CSLA.Net and highly recommend it.  I just discovered nBusiness on codeplex.com/nbusiness.

You can take a look at them and take the time to learn them.  There is a lot to be learned and will probably help you solve some of your existing coding problems and give you some new insights to coding.

I have been thinking about this for a long time and I have some initial thoughts about business objects. 

I think you should be able to create a class with properties and fields, simple enough.  You should be able to decorate your class and properties with attributes that tell a business object framework how to handle them.

An example would be

[Fetch("sp_GetById", "Id")]
[Delete("sp_DeleteById", "Id")]
public class MyObject
{
    private int _Id;

    [Validation(NotNullable)]
    [InitialValue(InFromDatabase)]
    [WriteRoles("Admin")]
    [ChangeRoles("Admin, Editor")]
    [ReadOnlyRoles("?")]
    public int Id
    {
        get { return _Id; }
        set { _Id = value; }
    }
}

Where is my hero for a business object framework?  I think this can be done with less than a dozen custom class files, a data provider framework, and the core .Net framework.


Currently rated 1.0 by 1 people

  • Currently 1/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Cannot use a leading .. to exit above the top directory

September 13, 2007 11:09 by rclarkson

The fix so far is to use this

 Change to this to your web.config

[code:html] <forms timeout="129600" name=".AUXBLOGENGINE" protection="All" slidingExpiration="true" loginUrl="~/login.aspx" cookieless="UseCookies" /> [/code]

Remove the app_browser files

Then run against http://www.seoconsultants.com/tools/headers/

 

Give it a try.


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Cannot use a leading .. to exit above the top directory in BlogEngine.Net

September 12, 2007 11:27 by rclarkson

Here is a fix for the Cannot use a leading .. to exit above the top directory issue on Codeplex.  Just add the folder and contents to the root of your BE installation.  I ran it for a full day and had no errors with GoogleBot or Slurp.  However, as soon as I removed it, error after error after error.  We worked a couple of coding overrides in the default.aspx, which is still there in the download as of this post, but it did not take care of the issue.  We will do something different.  This is not going to be the long view fix.

App_Browser.zip


Currently rated 1.0 by 1 people

  • Currently 1/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Fly Fishing at the Meramac Springs

September 11, 2007 11:33 by rclarkson

I went fishing about a week ago and had a little bit of luck.  I caught one and my buddy limited out early.  He was using a Prince Nymph.  He easily caught a dozen fish before he found his last one.

Technorati Tags:

Currently rated 2.0 by 1 people

  • Currently 2/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

New member to the BlogEngine.Net - HTML Textbox Editor

July 31, 2007 10:55 by rclarkson

I was serious when I said I liked this blog software.  I got accepted onto the team!  I am working on the html text editor portion of the project.  I spent some time reviewing the exiting code and how it all works together.  There are several opportunities to improve.  Isn't there always?  I have had a lot of experience with DotNetNuke and I hope to port some of that experience over. 

Initally, I am trying to determine how to make the html editor, now TinyMCE, to be a interchangable with other html editors.  Then existing html editor needs so many improvements, image gallery, file manager, upload, etc.  I know that I don't want to spend much of my time customizing an editor that works for some of us and not all of us.  I like to use RADEditor, and I have used others, because there is little I need to configure. 

Anyone else like to see an interchangable html editor in BlogEngine.Net?  Let me know.


Currently rated 5.0 by 1 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Finaly a blog engine I can deal with

July 19, 2007 15:00 by rclarkson

Here's the deal.  I have been looking for a blog engine that I could finally make my own.  I have explored many of the blogs out there and found that all of them lacked something.  I needed to have a variety of features.  I needed tagging, categories, MetablogAPI, additional pages, tracking, mulitple users, themes, and the ability to add additional modules if necessary.  I finally found BlogEngine.Net on CodePlex.  There are many reasons for the choice, one is that it meets all of my needs.  From a developers point of view it has a temendous potential.

I have been wanting to use DotNetNuke for the longest time since I host it and advocate it.  However, I could not use third party tools to blog.  Many blog applications do not allow you create additional pages, eg. dasBlog, but BlogEngine.Net does. 

I am going to be doing software tutorials that deal with CSLA.Net and the implementation of them.  The additional pages will allow for a psudeo article type functionality.  I may even find time to contribute to it.

I have been wanting to give back to the open source community that has given me many of the tools that I need to succeed in bussiness.  I cannot give to them all but I can give to some.

I look forward to publishing more now that I finally found a blog home. 


Currently rated 1.0 by 1 people

  • Currently 1/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5