<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>Home of: The Big Sadowski</title>
        <link>http://joesadowski.com/Default.aspx</link>
        <description>Another Subtext Powered Blog</description>
        <language>en-US</language>
        <copyright>Joe Sadowski</copyright>
        <managingEditor>joe.sadowski@gmail.com</managingEditor>
        <generator>Subtext Version 1.9.5.176</generator>
        <image>
            <title>Home of: The Big Sadowski</title>
            <url>http://joesadowski.com/images/RSS2Image.gif</url>
            <link>http://joesadowski.com/Default.aspx</link>
            <width>77</width>
            <height>60</height>
        </image>
        <item>
            <title>Are you an f5 addict?</title>
            <link>http://joesadowski.com/archive/2008/03/16/are-you-an-f5-addict.aspx</link>
            <description>I never run with the debugger attached. It's for finding out what is happening in the code and I don't need that 90% of the time when I am developing. It's only when something very odd happens that I hook up the debugger and dig into the depths of what is happening.&lt;br /&gt;
&lt;br /&gt;
If you're addicted to F5 here are a few shortcuts that can make kicking the habit easier:&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-weight: bold;"&gt;ctrl - shift - B : Build Everything&lt;/span&gt;&lt;br style="font-weight: bold;" /&gt;
Compiles all projects in your solution that have changed&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-weight: bold;"&gt;alt - B - U : Build Current Stack&lt;/span&gt;&lt;br style="font-weight: bold;" /&gt;
Checks all the projects that are referenced by the current project and builds any that have changes or that reference a project that has changes, even if it's indirectly referenced.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-weight: bold;"&gt;alt - D - P - W enter : Attach debugger to w3wp (win2003+)&lt;/span&gt;&lt;br style="font-weight: bold;" /&gt;
I use this a lot. It pulls up the "Attach to Process" dialog box and selects the fist thing in the list that starts with W. Since the list is sorted alphabetically, w3wp should be the first thing that starts with W. I usually tell people to think "&lt;span style="font-weight: bold;"&gt;D&lt;/span&gt;epartment of &lt;span style="font-weight: bold;"&gt;P&lt;/span&gt;ublic &lt;span style="font-weight: bold;"&gt;W&lt;/span&gt;orks" to remember this. It's odd enough that it's easy to remember.&lt;br /&gt;
&lt;span style="font-weight: bold;"&gt;ctrl - F5 : Run without debugger&lt;/span&gt;&lt;br style="font-weight: bold;" /&gt;
I use this mostly for small command line apps where I am just trying stuff out. It takes a few less seconds that having the debugger fire up and the code usually runs faster too.&lt;img src="http://joesadowski.com/aggbug/9.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Joe Sadowski</dc:creator>
            <guid>http://joesadowski.com/archive/2008/03/16/are-you-an-f5-addict.aspx</guid>
            <pubDate>Sun, 16 Mar 2008 20:33:15 GMT</pubDate>
            <wfw:comment>http://joesadowski.com/comments/9.aspx</wfw:comment>
            <comments>http://joesadowski.com/archive/2008/03/16/are-you-an-f5-addict.aspx#feedback</comments>
            <wfw:commentRss>http://joesadowski.com/comments/commentRss/9.aspx</wfw:commentRss>
        </item>
        <item>
            <title>After much work...</title>
            <link>http://joesadowski.com/archive/2007/11/11/after-much-work.aspx</link>
            <description>&lt;a href="http://cityvoter.com"&gt;It's live!&lt;/a&gt;&lt;img src="http://joesadowski.com/aggbug/6.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Joe Sadowski</dc:creator>
            <guid>http://joesadowski.com/archive/2007/11/11/after-much-work.aspx</guid>
            <pubDate>Sun, 11 Nov 2007 17:12:33 GMT</pubDate>
            <wfw:comment>http://joesadowski.com/comments/6.aspx</wfw:comment>
            <comments>http://joesadowski.com/archive/2007/11/11/after-much-work.aspx#feedback</comments>
            <wfw:commentRss>http://joesadowski.com/comments/commentRss/6.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Internet Explorer goes into Quirks mode</title>
            <link>http://joesadowski.com/archive/2007/07/26/internet-explorer-goes-into-quirks-mode.aspx</link>
            <description>I just spent the better part of a day trying to figure out why internet explorer (all versions) was reverting back to quirks mode on our site that had been working fine for weeks. I checked the usual places made sure the doctype was correct, even validated the page.&lt;br /&gt;
&lt;br /&gt;
The doctype was perfect in the master page and everything looked fine. It's just that IE was clearly in quirks mode with a broken box model.&lt;br /&gt;
&lt;br /&gt;
Well finally I happened to view source when it popped out at me that there was a comment above the doctype. Another developer had added some code to spit out debug info in a comment and had it hooked up in the code-behind. Something like this:&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;protected void Page_Load(object sender, EventArgs e)&lt;br /&gt;{&lt;br /&gt;    Response.Write("&amp;lt;!-- some comment --&amp;gt;");&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;
This very much pissed IE off and caused the site to look like crap for a while.&lt;br /&gt;
&lt;br /&gt;
The moral of the story is that any content should be rendered out during the render cycle in ASP.NET, even if it's a comment.&lt;img src="http://joesadowski.com/aggbug/4.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Joe Sadowski</dc:creator>
            <guid>http://joesadowski.com/archive/2007/07/26/internet-explorer-goes-into-quirks-mode.aspx</guid>
            <pubDate>Fri, 27 Jul 2007 00:48:21 GMT</pubDate>
            <wfw:comment>http://joesadowski.com/comments/4.aspx</wfw:comment>
            <comments>http://joesadowski.com/archive/2007/07/26/internet-explorer-goes-into-quirks-mode.aspx#feedback</comments>
            <wfw:commentRss>http://joesadowski.com/comments/commentRss/4.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Setting up Tortise SVN to be more VS Friendly</title>
            <link>http://joesadowski.com/archive/2007/06/27/setting-up-tortise-svn-to-be-more-vs-friendly.aspx</link>
            <description>&lt;p&gt;If you go under the settings tab you can specify a few wild card patterns that if files or folder names match any of these they will be ignored. If you drop this handy little piece of text in there "*.sou *.user bin obj" it will happily ignore most of the user specific Visual Studio junk files.&lt;/p&gt;&lt;img src="http://joesadowski.com/aggbug/3.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Joe Sadowski</dc:creator>
            <guid>http://joesadowski.com/archive/2007/06/27/setting-up-tortise-svn-to-be-more-vs-friendly.aspx</guid>
            <pubDate>Wed, 27 Jun 2007 16:32:27 GMT</pubDate>
            <wfw:comment>http://joesadowski.com/comments/3.aspx</wfw:comment>
            <comments>http://joesadowski.com/archive/2007/06/27/setting-up-tortise-svn-to-be-more-vs-friendly.aspx#feedback</comments>
            <wfw:commentRss>http://joesadowski.com/comments/commentRss/3.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Internet Radio Day of Silence</title>
            <link>http://joesadowski.com/archive/2007/06/26/internet-radio-day-of-silence.aspx</link>
            <description>&lt;p&gt;Today many internet radio stations have gone silent in order to raise awareness of the impending bill to raise the royalty rates they need to pay. Check out the &lt;a href="http://www.savenetradio.org/press_room/press_releases/070625-snr_dos.pdf"&gt;whole list of stations&lt;/a&gt; (pdf) and then head over to &lt;a href="http://savenetradio.org"&gt;savenetradio.org&lt;/a&gt; to find out how you can help.&lt;/p&gt;&lt;img src="http://joesadowski.com/aggbug/2.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Joe Sadowski</dc:creator>
            <guid>http://joesadowski.com/archive/2007/06/26/internet-radio-day-of-silence.aspx</guid>
            <pubDate>Tue, 26 Jun 2007 13:57:20 GMT</pubDate>
            <wfw:comment>http://joesadowski.com/comments/2.aspx</wfw:comment>
            <comments>http://joesadowski.com/archive/2007/06/26/internet-radio-day-of-silence.aspx#feedback</comments>
            <wfw:commentRss>http://joesadowski.com/comments/commentRss/2.aspx</wfw:commentRss>
        </item>
    </channel>
</rss>