What is wrong with the world?

August 28, 2008 06:51 by rclarkson

Seriously, WTF, over?  I cannot believe that we are on the brink of a more global disasters with Russia, North Korea, Iran.  As if Darfur, Iraq, Afghanistan, Pakistan and India aren’t enough?  Seriously, is there anyone out there who is giving a crap?  I don’t see anyone raising a stink about our response over Georgia and Russia.  Were we that blinded for two weeks by the Olympics?  China is arresting protesters and adjudicating “reeducation” but lets get all teary eyed about the cause for peace?  It seems to me that with the Olympics all we got was the truth about China and an invasion from Georgia into Ossetia?

 

Are you feeling me? Anybody?  Maybe somebody on Mars?  Maybe the maker of all things?


Currently rated 4.0 by 1 people

  • Currently 4/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

Just because a news article was titled: US supports death of ....

February 14, 2008 08:46 by rclarkson

I saw a title of a news article that said the US supports the death of some person in another country.  This article obviously confused George Bush with the US people.  

This article complelled me to make it known that I do not in anyway support:

  • the death penalty,
  • the deaths of civilians,
  • cheering for the death of anyone,
  • the belief that someone should be killed,
  • my money supporting the death penalty.

Oh, yeah.  If John McCain gets elected I am moving to another country or California.  Does anyone have a place where my family and I can stay?


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

From the war machine to peace?

October 12, 2007 16:13 by rclarkson

This has to be the best conversation I have heard in all of my listening to KWMU.  This may even include most of what I hear on NPR. 

If you have ever given a thought to what we unknowingly participate in every day you may feel new thoughts arise of hope.  There are people out there who are shifting the conscience of people.  The show culmunates all of my research and education about the subject.  You do not have to be affiliated with any party or anything organization to appreciate it.

Hope you find something useful in the conversation.

http://www.kwmu.org/Programs/Slota/archivedetail.php?showid=2826


Be the first to rate this post

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