The Johnson Blog

Ramblings of a Computer Geek and his Wife…

The Johnson Blog Header Image

Chef 1.3.20

May 9th, 2008 · No Comments

I just released the latest version, 1.3.20, tonight.  A few new things include: recipe rating; cooking times; preparation times; better search capability; ingredient preparations; bug fixes; and more bug fixes.
If you’re a user, go upgrade!  If you aren’t a user, give it a try!
www.ejichef.com
And now it’s midnight, time for bed.

[Read more →]

Tags: General

Visual Studio 2008 Setup Projects

February 4th, 2008 · 3 Comments

This is going to be fairly heavy on the tech side, so you’ve been warned…
A couple weeks ago I converted the Chef code to Visual Studio 2008 - not a new .net version, just upgraded the solution and project files to the new format so I could start using the new IDE. I ran [...]

[Read more →]

Tags: General

Recipe Slideshows

December 10th, 2007 · No Comments

Chef has a feature called Recipe Slideshows which allow you to view a recipe fullscreen in a PowerPoint-like format that’s much easier to read while you’re cooking than the small text of a cookbook, or the regular view of a recipe in Chef for that matter. I’ve had that feature around for a while, [...]

[Read more →]

Tags: General

C# operator== overloading

October 26th, 2007 · 4 Comments

I recently came to a situation where operator overloading C# (specifically the == operator) would really be beneficial. Since I’ve typically steered away from this technique, for readability and maintainability, I hadn’t had much experience with it.
My overloaded operator looks something like this:

static bool operator==(Id<T> a, Id<T> b)
{
return a.Value == [...]

[Read more →]

Tags: General

Note to self: Another Software Idea

September 6th, 2007 · No Comments

In the same vain as another post, I or someone needs to write a Visual Studio 2005 add-in for managing the Break on Exception feature.  Specifically, be able to create profiles that can easily be switched between during debugging sessions that would enable/disable breaking into the deubber on certain types of exceptions but not other.
As [...]

[Read more →]

Tags: Uncategorized

Chef and Vista

April 2nd, 2007 · 1 Comment

As I mentioned last night, I made the 1.0.0 build of Chef and started doing some installation testing on Vista.
It’s official - Vista’s UAC is kicking my ass.   It’s during the database setup that I’m having the problem.  Sql Server gets installed OK, it’s for some reason the database restore that times out.
Kinda tired of [...]

[Read more →]

Tags: Uncategorized

Visual Studio on Vista

March 5th, 2007 · No Comments

As mentioned I installed Vista on my new desktop, since I have been running it on my laptop with Visual Studio for a month now without any real problems. Go figure, I ran into an issue that has been bugging me for the past couple days.
The symptoms are as follows:

Every time I start VS, [...]

[Read more →]

Tags: General

Visual Studio followup

February 10th, 2007 · No Comments

Just a little follow-up regarding my issue with Visual Studio 2005 and Vista - I was able to make the problem go away by installing a hotfix for KB912019.

[Read more →]

Tags: Uncategorized