Thursday, June 19, 2008

Okay, so my memory is probably better than the average person as far as being able to recall things manually.  My internal alarm clock and internal todo list is HORRIBLE.  So to complement that (the todo list), I'm trying to embrace GTD, by David Allen and I'm a premium paying member of Remember the Milk.  That's working out well, except for the fact that I'm pretty bad about the weekly cleanup of my tasklist.  I think this habit is definitely a keeper and I will be able to refine it with time.  For my job, I use this ToDoList

Now, to address my normal memory.  Remembering all the details of something, like researching a big purchase, is impossible.  So for that I am trying out Evernote.  So far it seems like it a keeper.  Its still in beta, but its ability to sync between computers combined with its ability to capture things WELL from almost any source (computer clipboard, cell phone picture message that gets OCRed, etc) is awesome!  I'll keep you posted on how it goes as it progresses.  FYI, if you need an invite to the beta, post in the comments here and I'll get one to you.

Thursday, June 19, 2008 5:18:31 PM (GMT Standard Time, UTC+00:00)

After reading this post I decided its time to get started on my habit changing activities.  I posted my answer in the comments on that site and I'll post it here as well

  1. The habit:  not following my normal workout schedule
  2. The why:  I need to get in shape to be more competitive for outdoor volleyball season, to prep for indoor volleyball season, to make myself more attractive to my girlfriend and to improve my self confidence.
  3. The difference: The deadline.  Its not the most enjoyable, but I work well with deadlines and pressure.  I'm going to find a volleyball tournament just over 30 days from now, sign up for it at one or two levels higher than I normally play.  For me to have a prayer of doing respectably, I need to definitely be in better shape than I am now.

Update:  Here's the tournament I think I'll put as my deadline:

http://www.mavolleyball.org/t06.html

Thursday, June 19, 2008 5:08:02 PM (GMT Standard Time, UTC+00:00)
 Monday, June 16, 2008

I've probably lost all of my loyal readers (both of them) from my severe lack of posting anything on here.  Anywho, I just wanted to state for the record that I will start publishing frequently on here again.  Expect to see several posts over the next couple of days, as I boldly pretend to try to bring my pet projects and interests to fruition here at work.

Monday, June 16, 2008 8:35:56 PM (GMT Standard Time, UTC+00:00)
 Wednesday, February 06, 2008

I recently got this error mucking with SQL.  It wouldn't connect worth a darn.  So I managed to find this simple concise blog entry that fixed it and so I feel I should mention it here.

http://blogs.msdn.com/sql_protocols/archive/2007/05/13/sql-network-interfaces-error-26-error-locating-server-instance-specified.aspx

For me, I just has to start the sql browser service.  Woooo.....

SQL
Wednesday, February 06, 2008 2:23:06 PM (GMT Standard Time, UTC+00:00)
 Thursday, August 23, 2007

Just a quick note, if you happen to be running a service that will call automated tests like WatiN or IEUnit that need to open a browser or interact with the desktop in some way, you need to go into Computer Management, open the properties for that service and check the box that says "Allow this service to interact with the desktop."

Wednesday, August 22, 2007 11:57:30 PM (GMT Standard Time, UTC+00:00)
 Friday, August 03, 2007
 #
 

This is just a minor thing, but there were some assemblies I needed in the GAC and wanted to reference them with minimum hasslehoff, so I just copied them out of the C:\windows\assembly\gac folder using the command prompt.  I got the solution from this post

Friday, August 03, 2007 2:00:11 PM (GMT Standard Time, UTC+00:00)
 Wednesday, August 01, 2007

Strategy

Notes:
shove dynamic behavior into interfaces.  have the main base compose the behavior interfaces.  Then you can dynamically assign the behavior interface instances in the child classes of the main base class.

Decorator:

Basically think of an abstract class like a vehicle.  Then you have a couple of classes inherited directly off of it: truck, bike broken down Chevy, etc.  Then u have a base decoration class, which inherits off of vehicle and also contains a member instance of vehicle, so it both "has a" and "is a" vehicle, and has a constructor that takes a vehicle type.  Next, you've got a bunch of decorations, each of which inherits off of the root decoration class, such as pimped out, racing striped, washed, waxed, painted pink, etc. 

So in code, you can create any of these decorations and pass them in a vehicle or a decorated vehicle.  This way you can have pink truck just as easily as you can have a pimped out-washed-waxed-racing striped broken down Chevy, without having to create a complicated inheritance tree for each possible combination.

  • Some Notes:
    sort of define your own inheritance tree on the fly
  • defines an "is a"/"has a" relationship between the decorations and the object they're decorating
  • one possible use:  to dynamically aggregate functionality of semi-heterogenous items
  • composition + inheritance
Wednesday, August 01, 2007 6:08:40 PM (GMT Standard Time, UTC+00:00)
 Wednesday, July 18, 2007

As good of a computer science education that I think I received, when I was an IROC (Idiot Right out of College) I was definitely lacking huge in certain areas.  Chief among these were software engineering (which I think I'm a lot better at now) and beyond basic OO, the fine art of Design Patterns.  I've managed to read about half of Head First Design Patterns and actually implement a few at work.  However, I still feel way behind on them overall, so I started a study group with some coworkers.  We'll attack 2 patterns a week.  I'll post notes about them and links to examples in my svn repository.

Enjoy!

Wednesday, July 18, 2007 7:14:34 PM (GMT Standard Time, UTC+00:00)
I just wanted to thank this guy for providing an easy way to import my old blog posts from blogger.

Wednesday, July 18, 2007 5:47:31 PM (GMT Standard Time, UTC+00:00)

Okay, so I've finally setup my blog!  This is a simple plain install of dasBlog.  I reserved the domain back in April and now in late July I FINALLY get it up and running.  It took me a whopping 10 minutes to setup, too.  Phew!!  I almost went with Subtext, based on a friend's recommendation, but I didn't want to pay the extra money for a sql instance, so here I am.  That's it for now.  Check back soon for updates on my digital exploits (or attempts thereof).

Wednesday, July 18, 2007 4:46:03 PM (GMT Standard Time, UTC+00:00)