<?xml version="1.0" encoding="utf-8"?>
<feed xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en-us" xmlns="http://www.w3.org/2005/Atom">
  <title>Rich Reuter</title>
  <link rel="alternate" type="text/html" href="http://www.richreuter.com/" />
  <link rel="self" href="http://www.richreuter.com/SyndicationService.asmx/GetAtom" />
  <icon>favicon.ico</icon>
  <updated>2008-11-13T19:27:49.3907283-08:00</updated>
  <author>
    <name>Rich Reuter</name>
  </author>
  <subtitle>Music and Code from the Gem City</subtitle>
  <id>http://www.richreuter.com/</id>
  <generator uri="http://dasblog.info/" version="2.1.8102.813">DasBlog</generator>
  <entry>
    <title>Tremolo</title>
    <link rel="alternate" type="text/html" href="http://www.richreuter.com/2008/11/14/Tremolo.aspx" />
    <id>http://www.richreuter.com/PermaLink,guid,b0084a41-26fe-4d84-8188-409d22b75e4d.aspx</id>
    <published>2008-11-13T19:25:54.108-08:00</published>
    <updated>2008-11-13T19:27:49.3907283-08:00</updated>
    <category term="coding" label="coding" scheme="http://www.richreuter.com/CategoryView,category,coding.aspx" />
    <category term="tremolo" label="tremolo" scheme="http://www.richreuter.com/CategoryView,category,tremolo.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
For years now, I've been talking about creating some sort of project centered around
music. The main idea was to create a website engine that could be used to easily build
websites for musicians. It would contain all of the basic functionality needed by
musicians. A few months back, I came up with the name Tremolo and started working
on it. I put it on <a href="http://www.codeplex.com">CodePlex</a>, but never published
it because I didn't have a lot of time to devote to it.
</p>
        <p>
Recently, I decided to start work on it again and re-created the project on CodePlex.
CodePlex has a policy where you have to publish a project after 30 days. After 30
days, I hadn't completed a lot of it but didn't want to restart the project. I figured
that no one would find it so it probably wouldn't matter if I didn't have it done.
</p>
        <p>
I checked on the stats today and found that a few people had found it. Apparently,
the ASP.NET page on MSDN shows the most recent ASP.NET projects added to CodePlex,
including mine.
</p>
        <p>
          <img border="0" src="http://www.richreuter.com/content/binary/msdn.jpg" alt="Tremolo listed on MSDN" />
        </p>
        <p>
I wasn't too pleased to see it since I haven't really got anything working yet. I've
mostly been concentrating on creating the basic structure of the project and making
sure that the build and setup scripts are running. One of the main goals of the project
is to make it very easy to setup and build, and that part of it is done. There are
build tasks to setup and migrate the database, run the unit tests and there will eventually
be one for deployment as well. Apart from a couple minor issues, I've got NHibernate
setup as well.
</p>
        <p>
So, for anyone who may be interested in the project, I'll be posting updates here.
I'm hoping to have the business layer completed after this weekend and the UI soon
after that. If you've downloaded the project, sorry there's not much there yet :)
</p>
        <p>
If you want to check the project out it's here - <a href="http://www.codeplex.com/tremolo"> http://www.codeplex.com/tremolo</a>.
</p>
        <img width="0" height="0" src="http://www.richreuter.com/aggbug.ashx?id=b0084a41-26fe-4d84-8188-409d22b75e4d" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Good Web Design Practices for ASP.NET Developers</title>
    <link rel="alternate" type="text/html" href="http://www.richreuter.com/2008/10/09/GoodWebDesignPracticesForASPNETDevelopers.aspx" />
    <id>http://www.richreuter.com/PermaLink,guid,7a8c9161-78f0-4aab-a5cd-80f44a14fe81.aspx</id>
    <published>2008-10-09T16:15:19.397-07:00</published>
    <updated>2008-10-10T18:53:15.1685978-07:00</updated>
    <category term="html" label="html" scheme="http://www.richreuter.com/CategoryView,category,html.aspx" />
    <category term="css" label="css" scheme="http://www.richreuter.com/CategoryView,category,css.aspx" />
    <category term="webdesign" label="webdesign" scheme="http://www.richreuter.com/CategoryView,category,webdesign.aspx" />
    <content type="html">&lt;p&gt;
This is something that's been floating around in my head for a while, so I thought
I'd write about it. Too often, I've seen a lot of good programmers indulging in really
bad web design practices. In this context, I'm mostly talking about how the HTML,
CSS, and JavaScript are structured and implemented. Not so much designing the look
and feel, but how that look and feel are implemented.
&lt;/p&gt;
&lt;p&gt;
I find that it's particularly bad in the realm of ASP.NET developers (a group of which
I am a member), and part of the blame lies with Microsoft. They tried to make web
development just like Windows application development and provide the same control-based
drag and drop UI experience. It doesn't work generally too well, but that doesn't
stop some developers I've seen from crying foul when they can't use the designer.
I certainly understand why - it's easy to use and generally works ok. But what the
controls generally output isn't optimal HTML. The designer generally output isn't
very clean or valid HTML. Good, cross-browser compatible CSS and HTML generally requires
manual intervention.
&lt;/p&gt;
&lt;p&gt;
So here's a few things that I that I find useful to keep in mind when working on HTML
and CSS.
&lt;/p&gt;
&lt;h4&gt;Don't open the designer
&lt;/h4&gt;
&lt;p&gt;
I know that designers are easy to use. I know that if you are doing Win Forms/WPF,
it's the way to go. But it's different for the web. Different browsers render out
different things and Microsoft has always been primarily concerned only with making
sure it works in IE. So it may look fine in Internet Explorer, but there's a distinct
possibility it's not going to look right in another browser. Plus, the markup that
the Web Controls often emit is less than ideal.
&lt;/p&gt;
&lt;h4&gt;Structure for meaning (don't use tables for layout)
&lt;/h4&gt;
&lt;p&gt;
There's been a &lt;a href='http://www.google.com/search?hl=en&amp;rlz=1C1GGLS_enUS291&amp;q=css+don't+use+tables+for+layouts&amp;btnG=Search'&gt;ton
of stuff written about not using tables for layouts&lt;/a&gt; (and a lot of disagreements
on it), so I won't go into it too much. But - for me - at the heart of the argument
is this - your HTML should reflect what it is. If it's a logical section of content,
use a div. If it's a title, use a header tag. If it's a paragraph, use paragraph tags.
And if it's tabular data, you know what to do...
&lt;/p&gt;
&lt;p&gt;
When it comes to uniquely identifying your elements, use IDs and classes that mean
something, that describe the elements that are being styled. It makes it more difficult
to track down an issue when you look at a CSS file and see an ID like '#p43234_131',
rather than 'header'. Some editors are especially bad about that - I'm looking at
you Dreamweaver.
&lt;/p&gt;
&lt;p&gt;
It's important for a few reasons. First, it's a lot easier to maintain when you can
quickly identify your elements. Also, it makes it easier to parse. Granted, that's
not something that's always done on a regular basis, but you'll be glad if you ever
have to screen scrape your own HTML.
&lt;/p&gt;
&lt;h4&gt;Don't repeat yourself
&lt;/h4&gt;
&lt;p&gt;
Understand how styles cascade and when to apply classes. Put your styles as high up
the tree as possible. If a font is going to be applied to every element on the page,
then apply that style to the body. Again, some tools are bad about this and will put
the same tags in again and again. You want to put the style into a place where it's
going to applied as widely as possible so that you don't have multiple places to manage
that style - so you don't repeat yourself when it's unnecessary. Focus on applying
as much of the styles as you can in the smallest amount of CSS possible. Just as you
group code together so that you can re-use it to in different components in your application,
put your CSS in external files that logically group your styles for reuse.
&lt;/p&gt;
&lt;p&gt;
&lt;a href='http://www.456bereastreet.com/archive/200605/writing_good_html_is_a_craft/'&gt;Writing
good HTML is a craft&lt;/a&gt;. You should structure your HTML as carefully as you would
your code, and you'll have a presentation layer that's maintainable and easier to
manage. You may never be a great graphic designer &lt;a href='http://www.csszengarden.com'&gt;like
some people are&lt;/a&gt;, but you can still create great HTML and CSS.
&lt;/p&gt;
&lt;p&gt;
To close it out, here's a few sites that are good to check out for HTML and CSS
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href='http://meyerweb.com/eric/css/'&gt;Eric Meyer: CSS&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href='http://www.456bereastreet.com/'&gt;456 Berea Street&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href='http://www.w3.org/Style/CSS/'&gt;W3C&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href='http://www.zeldman.com'&gt;Zeldman&lt;/a&gt; - &lt;a href='http://www.zeldman.com/externals/#cssmarkup'&gt;Also,
his list of CSS references&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href='http://www.mezzoblue.com/zengarden/resources/'&gt;Mezzoblue CSS Resources&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;img width="0" height="0" src="http://www.richreuter.com/aggbug.ashx?id=7a8c9161-78f0-4aab-a5cd-80f44a14fe81" /&gt;</content>
  </entry>
  <entry>
    <title>Who Killed that Bird on Your Windowsill?</title>
    <link rel="alternate" type="text/html" href="http://www.richreuter.com/2008/08/08/WhoKilledThatBirdOnYourWindowsill.aspx" />
    <id>http://www.richreuter.com/PermaLink,guid,0d332955-8a26-4635-b0da-edab56fe3d92.aspx</id>
    <published>2008-08-07T18:54:48.9853681-07:00</published>
    <updated>2008-08-07T18:54:48.9853681-07:00</updated>
    <category term="life" label="life" scheme="http://www.richreuter.com/CategoryView,category,life.aspx" />
    <category term="music" label="music" scheme="http://www.richreuter.com/CategoryView,category,music.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
After being a fan for many years - since their first album - I finally saw the <a href="http://www.theblackcrowes.com/">Black
Crowes</a> last night at the Madison Theatre in Kentucky.  It's a smallish theatre
and only holds maybe a few hundred people.  I was very surprised that they were
playing there since they usually play much larger places.
</p>
        <p>
The show was general admission and normally - given that I'm 6' 3" - I tend to hang
back as I try not to block people behind me.  Not this show. I was about 5 or
6 rows back the whole time. About 20 feet from Chris Robinson and 25 from Rich. 
I hate being packed into crowds, but it didn't matter.
</p>
        <p>
The show... best show I've ever seen. They started out playing 3 or 4 songs acoustically
(Rich and Chris) and then after a few numbers the whole band kicked in.  They
played for a little over 2 hours and did a great variety of material from their second
album to their current one, with a few covers thrown in.  There were some great
jams as well.  The jam they did at the end of <i>Wiser Time</i> made the hair
on my arms stand up.  
<br /></p>
        <p>
I was really stoked that they played <i>Thorn in My Pride, Remedy, Goodbye Daughters
of the Revolution </i>and so many other great songs.  I'm really excited to get
the recording.  The Crowes tape every show and put them up for sale on <a href="http://www.crowesbase.com">Crowesbase.com</a>.
</p>
        <p>
One of the reasons that I'm so enamored with them is that they're a band that really <i>plays.</i> They
interact with each other musically and really seem to enjoy it.  When another
band member would take a solo, the other band members would pay close attention and
play off of them. They're just a great group.
</p>
        <p>
I'm definitely not going to miss them again.  I know that I probably won't ever
be that close to the stage again or that I'll see a night like that again, but I'm
definitely looking forward to seeing them again.
</p>
        <img width="0" height="0" src="http://www.richreuter.com/aggbug.ashx?id=0d332955-8a26-4635-b0da-edab56fe3d92" />
      </div>
    </content>
  </entry>
  <entry>
    <title>2008 ALA Survey</title>
    <link rel="alternate" type="text/html" href="http://www.richreuter.com/2008/08/04/2008ALASurvey.aspx" />
    <id>http://www.richreuter.com/PermaLink,guid,4ab58990-3e8c-4288-8052-f14a5b303d9d.aspx</id>
    <published>2008-08-04T09:36:46.838-07:00</published>
    <updated>2008-08-04T18:43:57.2076823-07:00</updated>
    <category term="coding" label="coding" scheme="http://www.richreuter.com/CategoryView,category,coding.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
If you're a web designer or work on web-based applications, you should really take
the <a href="http://alistapart.com/articles/survey2008">A List Apart Survey for people
who make websites</a>.  
<br /></p>
        <p>
          <a href="http://alistapart.com/articles/survey2008">
            <img src="http://www.richreuter.com/content/binary/i-took-the-2008-survey.gif" border="0" />
          </a>
        </p>
        <img width="0" height="0" src="http://www.richreuter.com/aggbug.ashx?id=4ab58990-3e8c-4288-8052-f14a5b303d9d" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Using jQuery to Resize TextBoxes to MaxLength</title>
    <link rel="alternate" type="text/html" href="http://www.richreuter.com/2008/08/01/UsingJQueryToResizeTextBoxesToMaxLength.aspx" />
    <id>http://www.richreuter.com/PermaLink,guid,277f75d6-c407-42ad-81fd-608c46246d84.aspx</id>
    <published>2008-08-01T11:04:22.932-07:00</published>
    <updated>2008-08-01T16:21:48.5991758-07:00</updated>
    <category term="coding" label="coding" scheme="http://www.richreuter.com/CategoryView,category,coding.aspx" />
    <category term="jquery" label="jquery" scheme="http://www.richreuter.com/CategoryView,category,jquery.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
I've been spending a lot of time with <a href="http://jquery.com/">jQuery</a> lately
and have been really digging it. In fact, I'm doing a short grok talk on it for the <a href="http://daytondevgroup.net/">Dayton
.NET Developers Group</a> at the end of this month.
</p>
        <p>
Here's a short snippet I came up with to resize text boxes so that the width of the
textbox would be proportional to the maximum number of characters allowed by the maxlength
property on the textbox. It's not exact - through trial and error I figured out that
7.3 and 8 work as ratios for maxlength value to the corresponding width. That's based
on the font I'm using and the size of the textboxes (smaller ones seem to have a slightly
different ratio than larger ones). You'll probably have to tweak those values to get
what you need, but it's a start.
</p>
        <pre>
          <span style="color: Black; background-color: transparent; font-family: Courier New; font-size: 11px;">$('<span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;">input</span>[type=text]').each(<span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">function</span>()
{ <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">var</span> max_length <span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;">=</span> $(<span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">this</span>).attr('maxlength'); <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">var</span> multiplier <span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;">=</span> (max_length
&gt; 10) ? 7.3 : 8; <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">var</span> w <span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;">=</span> (max_length <span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;">*</span> multiplier) <span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;">+</span><span style="color: rgb(102, 102, 102); background-color: rgb(228, 228, 228); font-family: Courier New; font-size: 11px;">"px"</span>;
$(<span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">this</span>).width(w);
});</span>
        </pre>
        <br />
        <br />
        <img width="0" height="0" src="http://www.richreuter.com/aggbug.ashx?id=277f75d6-c407-42ad-81fd-608c46246d84" />
      </div>
    </content>
  </entry>
  <entry>
    <title>DotNetKicks Needs to Lay Off Kicking Everything</title>
    <link rel="alternate" type="text/html" href="http://www.richreuter.com/2008/07/30/DotNetKicksNeedsToLayOffKickingEverything.aspx" />
    <id>http://www.richreuter.com/PermaLink,guid,18fcdaf1-760f-483c-8bab-cd6143b1fa39.aspx</id>
    <published>2008-07-29T19:00:40.409-07:00</published>
    <updated>2008-07-29T19:12:47.9496089-07:00</updated>
    <category term="coding" label="coding" scheme="http://www.richreuter.com/CategoryView,category,coding.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Maybe I'm being a little picky here, but <a href="http://www.dotnetkicks.com">DotNetKicks</a> seems
like they have been pretty loose with their definition of what constitutes a .NET
story.  I like having a feed to the site that aggregates a lot of different .NET
topics, but it seems like there's been a lot of tangential sort of stories lately. 
I mean stories on JavaScript frameworks, HTML or Windows are ok, but they're really
not that focused on .NET. I wonder if it's just a case of people simply kicking stories
that they like, regardless of the relevance.<br /></p>
        <p>
It would be nice if there was a way to downvote some of the stories that weren't really
relevant but I realize that opens a whole other can of worms.  I'll continue
to support the site, but I may end up dropping it out of my feeds if the trend doesn't
change. 
</p>
        <p>
          <a href="stuff/images/dotnetkicks.jpg">
            <img src="http://www.richreuter.com/content/binary/dotnetkicks_sm.jpg" border="0" />
          </a>
        </p>
        <img width="0" height="0" src="http://www.richreuter.com/aggbug.ashx?id=18fcdaf1-760f-483c-8bab-cd6143b1fa39" />
      </div>
    </content>
  </entry>
  <entry>
    <title>How I got started programming</title>
    <link rel="alternate" type="text/html" href="http://www.richreuter.com/2008/07/29/HowIGotStartedProgramming.aspx" />
    <id>http://www.richreuter.com/PermaLink,guid,7e6791fa-71cc-4d40-bb1e-ff5f87e865d2.aspx</id>
    <published>2008-07-28T19:03:23.776-07:00</published>
    <updated>2008-07-28T19:05:28.7824661-07:00</updated>
    <category term="coding" label="coding" scheme="http://www.richreuter.com/CategoryView,category,coding.aspx" />
    <category term="life" label="life" scheme="http://www.richreuter.com/CategoryView,category,life.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Since I'm probably the last programmer on the web to write this post, I figured I'd
finally get around to doing it.
</p>
        <p style="font-weight: bold">
How old were you when you started programming?
</p>
        <p>
I dabbled a little bit when I was 10 or 11. My dad - a mechanical engineer - bought
an <a href="http://en.wikipedia.org/wiki/IBM_PCjr">IBM PC Jr</a>. He knew a little
C and Basic and I picked up on a few things. I also had some "Choose Your Own Adventure"
type books where you had to write little Basic programs in order to progress in the
book. For the life of me, I can't remember what they were called though. From there,
I remember creating a program called "Froo" (presciently close to foo?) which was
a series of ASCII art screens that told a story about an alien.
</p>
        <p style="font-weight: bold">
How did you get started in programming?
</p>
        <p>
I started doing some HTML in college, making a website for my band, <a href="http://www.redearthband.com">Red
Earth</a>. It was early enough that the first year I did it, I was viewing the site
through <a href="http://en.wikipedia.org/wiki/Lynx_browser">a text-based browser</a>.
By the time I had graduated college with a secondary education degree, I had decided
that it wasn't for me. I got a temp job doing data entry, which led to me a job doing
release management. In that context, I was assisting someone who asked if I wanted
to try some programming. I took to it pretty well.
</p>
        <p style="font-weight: bold">
What was your first language?
</p>
        <p>
Basic when I was a kid, then a little VBScript/ASP when I started as a job. <a href="http://www.perl.org">Perl</a> was
really where I cut my teeth though and was my first love.
</p>
        <p style="font-weight: bold">
What was the first real program you wrote?
</p>
        <p>
Some sort of ASP website to display information entered from a VB 6 application.
</p>
        <p style="font-weight: bold">
What languages have you used since you started programming?
</p>
        <p>
Basic, VBScript, Perl, Java, JavaScript, Bash, C#, VB.NET, Ruby, PowerShell
</p>
        <p style="font-weight: bold">
What was your first professional programming gig?
</p>
        <p>
I'd consider my first professional development gig to be when I got a few months into
release management, when I started to do a lot of Perl development.
</p>
        <p style="font-weight: bold">
If you knew then what you know now, would you have started programming?
</p>
        <p>
Yes. The major thing I would do different is that I would have gone to school for
computer science. I've always felt that I've missed out by not getting formal training.
There's no substitute for wanting to learn and taking it upon yourself to discover
new ideas, but I would definitely have changed my major if I knew now what I know
then.
</p>
        <p style="font-weight: bold">
If there is one thing you learned along the way that you would tell new developers,
what would it be?
</p>
        <p>
Don't ever stop learning and trying to improve. This field moves so fast that you
need to be aware of what's being discussed and what new ideas are being introduced.
You don't want to be a <a href="http://www.codinghorror.com/blog/archives/000916.html">magpie
developer</a>, but it's important to try out new things.
</p>
        <p style="font-weight: bold">
What’s the most fun you’ve ever had … programming?
</p>
        <p>
Any time that I can implement a new idea successfully and the HTML renders correctly
or the test goes green, I get a kick out of it. I still get a little bit of a thrill
when stuff works. It's still a little bit magic to me.
</p>
        <p>
I'd also say that working with <a href="http://www.fallenrogue.com">Leon</a> was always
great. It was easy to get better at programming when I was sitting across the aisle
from somebody who has as much passion about development as I do and wanted to learn
just as much.
</p>
        <img width="0" height="0" src="http://www.richreuter.com/aggbug.ashx?id=7e6791fa-71cc-4d40-bb1e-ff5f87e865d2" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Todd Snider is an Allright Guy</title>
    <link rel="alternate" type="text/html" href="http://www.richreuter.com/2008/07/18/ToddSniderIsAnAllrightGuy.aspx" />
    <id>http://www.richreuter.com/PermaLink,guid,905870dd-2c08-4dda-b774-22301cc9bb01.aspx</id>
    <published>2008-07-17T19:36:39.7262071-07:00</published>
    <updated>2008-07-17T19:36:39.7262071-07:00</updated>
    <category term="music" label="music" scheme="http://www.richreuter.com/CategoryView,category,music.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
I really like this quote from <a href="http://www.toddsnider.com">Todd Snider</a>.
It pretty well reflects how I feel about writing songs
</p>
        <blockquote> "Mostly, I just think I'm trying to open my heart and say what's in there,
and some days that's 'I love my wife' and some days it’s about the system," he said.
"I just try to think of it in terms of sharing my opinion and not that I am educating
anybody or trying to change their minds. It’s just an honest representation of where
my brain's at. I don’t get to share my opinion because people think I’m smart, I get
to share it with them because it rhymes and I know three chords." </blockquote>
        <p>
from <a href="http://marqueemag.com/todd-snider-gets-inducted-into-songwriter%E2%80%99s-hall-of-fame-and-keeps-on-touring/2008/02/01/"><em>Todd
Snider gets Inducted into Songwriter's Hall of Fame and Keeps on Touring</em></a></p>
        <p>
If you haven't checked out his music, you definitely should. He's especially great
live. He's one of those guys who spends half the set just talking and telling stories,
and it's always really entertaining. He comes around to <a href="http://www.canalstreettavern.com">Canal
Street Tavern</a> a lot, but it doesn't look like that's on the schedule any time
soon.
</p>
        <img width="0" height="0" src="http://www.richreuter.com/aggbug.ashx?id=905870dd-2c08-4dda-b774-22301cc9bb01" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Long Holiday Weekend</title>
    <link rel="alternate" type="text/html" href="http://www.richreuter.com/2008/07/07/LongHolidayWeekend.aspx" />
    <id>http://www.richreuter.com/PermaLink,guid,fa6bad56-0260-4008-bff0-714ceaddf7fc.aspx</id>
    <published>2008-07-06T21:21:27.8633384-07:00</published>
    <updated>2008-07-06T21:21:27.8633384-07:00</updated>
    <category term="life" label="life" scheme="http://www.richreuter.com/CategoryView,category,life.aspx" />
    <category term="music" label="music" scheme="http://www.richreuter.com/CategoryView,category,music.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
It's been a great weekend, but a really long one. My agenda:
</p>
        <ul>
          <li>
            <b>Thursday</b> - Work, Band Practice</li>
          <li>
            <b>Friday</b> - Barbecue at a friends, went to Citifolk for a couple of hours, went
out to dinner, went to a Friend's party, closed out the bar watching The Big Wazu
at the Oregon Express.</li>
          <li>
            <b>Saturday</b> - Made 2 dishes, went to my brother's birthday party and then went
and played with <a href="http://www.redearthband.com">Red Earth</a> at McGuffy's.</li>
          <li>
            <b>Sunday</b> - Mowed the lawn, painted some of the front of the house, went out with
friends for catering planning, then came home to hang out with Tracy.</li>
        </ul>
        <p>
I'm worn out but pretty happy with the way I spent my time. I had a great variety
of activities and really enjoyed hanging out with a lot of different people.
</p>
        <p>
The show last night at McGuffy's went really well. The only bad thing that happened
was that I broke a string halfway through the set. It really kind of threw me off.
My Samick - an old Tele copy - wasn't cooperating and shorted out. I borrowed Bobby's
Fender Strat for the last part of the show, but it always sucks when you've got gear
failure. It's just one of those things where you have a familiarity. When's that's
removed, it takes you out of your comfort zone. I know my guitar. I've been playing
it for about 10 years now. When you've got a different guitar, it's like driving somebody
else's car. You know how to operate it, but it's a little uncomfortable.
</p>
        <p>
Overall though, it was pretty good show. There was a decent size crowd who were into
at and everyone seemed to have fun.
</p>
        <p>
So... at the start of this weekend, I was not an amateur caterer. After this weekend,
I am. I've got a couple of friends getting married soon and they were having problems
with their caterer (some shady things happened...). So at a party on Friday, while
hanging out with the groom I made a comment about me doing the food. I thought about
it and realize that if I could get my friends Josh and Chris in on it, it could actually
be feasible.
</p>
        <p>
So, I made a couple of phone calls the next day, and everyone was in. So, I get to
barbecue for a few hundred people. We've largely worked out the details and I feel
suprisingly good about it. It's going to be a big challenge, but it's going to be
great. It's definitely going to be the most people I've ever cooked for, but it's
going to work. I'm happy that I'm going to be able to help out with my friends wedding,
but also to do something that I really enjoy on a larger scale.
</p>
        <img width="0" height="0" src="http://www.richreuter.com/aggbug.ashx?id=fa6bad56-0260-4008-bff0-714ceaddf7fc" />
      </div>
    </content>
  </entry>
  <entry>
    <title>dasBlog and IIS 7.0</title>
    <link rel="alternate" type="text/html" href="http://www.richreuter.com/2008/07/05/dasBlogAndIIS70.aspx" />
    <id>http://www.richreuter.com/PermaLink,guid,82d778ac-ae81-499a-a133-50f4fe5c4629.aspx</id>
    <published>2008-07-05T09:29:51.092-07:00</published>
    <updated>2008-07-05T10:08:12.0453775-07:00</updated>
    <category term="blog" label="blog" scheme="http://www.richreuter.com/CategoryView,category,blog.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
I ran into a few problems with <a href="http://www.dasblog.info">dasBlog</a> when
trying to get it set up.  Even though most of it worked, the HTTP Handlers weren't
working.  I kept getting a message that one of the handlers "has a bad module
"ManagedPipelineHandler" in its module list".<br /><br />
I moved some things around and tried to change up some things in the config 
based upon <a href="http://mvolo.com/blogs/serverside/archive/2007/12/08/IIS-7.0-Breaking-Changes-ASP.NET-2.0-applications-Integrated-mode.aspx">this
article</a>.  That helped get the site up and running, but the handlers still
work working.  Googling the error, I found that things could fix using some commands
against IIS, but I don't have that ability since this site is hosted.
</p>
        <p>
However, the good folks at DiscountASP did have an option that worked for me. 
I could change the application pool from integrated mode to "Classic Mode" and everything
worked smoothly.<br /><br />
Moral of the story, if you're trying to run dasBlog on IIS 7, try to do it in classic
mode until the team makes the changes to run it under IIS 7.<br /><br />
Now to do some hunting for some different themes. I found a good article on <a href="http://www.flux88.com/dasBlogThemeContest.aspx">creating
your own dasBlog themes</a>, so I may try to get to that eventually.
</p>
        <p>
On an unrelated note, does it seem like <a href="http://www.twitter.com">Twitter</a> is
working as it should lately? The last few times that I've been on there it's been
pretty good.  I don't want to jinx things but....
</p>
        <img width="0" height="0" src="http://www.richreuter.com/aggbug.ashx?id=82d778ac-ae81-499a-a133-50f4fe5c4629" />
      </div>
    </content>
  </entry>
</feed>