<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" 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:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>+dotNetTemplar+ - Writing</title>
    <link>http://dotnettemplar.net/</link>
    <description>Non nobis Domine non nobis sed nomini Tuo da gloriam.</description>
    <image>
      <url>http://dotnettemplar.net/images/dotnettemplar_96.jpg</url>
      <title>+dotNetTemplar+ - Writing</title>
      <link>http://dotnettemplar.net/</link>
    </image>
    <language>en-us</language>
    <copyright>J. Ambrose Little</copyright>
    <lastBuildDate>Sat, 22 Dec 2007 19:07:12 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.2.8279.16125</generator>
    <managingEditor>ambrogio@gmail.com</managingEditor>
    <webMaster>ambrogio@gmail.com</webMaster>
    <item>
      <trackback:ping>http://dotnettemplar.net/Trackback.aspx?guid=15df44a2-0733-4bc6-b6be-1ceab58b7976</trackback:ping>
      <pingback:server>http://dotnettemplar.net/pingback.aspx</pingback:server>
      <pingback:target>http://dotnettemplar.net/PermaLink,guid,15df44a2-0733-4bc6-b6be-1ceab58b7976.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <wfw:comment>http://dotnettemplar.net/CommentView,guid,15df44a2-0733-4bc6-b6be-1ceab58b7976.aspx</wfw:comment>
      <wfw:commentRss>http://dotnettemplar.net/SyndicationService.asmx/GetEntryCommentsRss?guid=15df44a2-0733-4bc6-b6be-1ceab58b7976</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I've been getting friendly with Windows Live lately, and after getting terribly tired
of having to switch to HTML view in Windows Live Writer in order to insert a note
(could be a footnote or endnote depending on how you look at it), I decided to see
if I could write a plug-in to make my life easier.
</p>
        <p>
So was born the Blog Notes plug-in.  Unfortunately, there is no extensibility
for just marking up existing text (e.g., adding a superscript button to the markup
toolbar), so I had to go with the option to insert some HTML using the  interface. 
I really was trying to keep it simple and lightweight (for my own sanity), so it is
pretty basic.
</p>
        <p>
The functionality is pretty straightforward.  Thanks to <a title="Mark James' Free Silk Icons" href="http://www.famfamfam.com/lab/icons/silk/" target="_blank">Mark
James</a> for the free icons.  Once the plug-in is installed, you should see
an "Insert Blog Notes..." option in the Insert pane on the right side as
shown below.
</p>
        <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="229" alt="Insert Blog Notes in Insert Pane" src="http://dotnettemplar.net/blogfiles/MyLiveWriterPlugin_BA1A/insert_pane.jpg" width="204" border="0" />
        <p>
Clicking on it brings up the Blog Notes dialog:
</p>
        <p>
          <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 5px 0px 0px; border-right-width: 0px" height="183" alt="Blog Notes Dialog" src="http://dotnettemplar.net/blogfiles/MyLiveWriterPlugin_BA1A/blog_notes.jpg" width="292" align="left" border="0" />
        </p>
        <p>
Clicking "New Note" will insert a new superscript number (the next one in
the sequence).
</p>
        <p>
Clicking "Reference Note" will insert the selected number as superscript. 
You can also just double-click the number to do that.
</p>
        <p>
The "Notes Section" button will insert a notes section.<sup>1</sup></p>
        <p>
Lastly, "Write Note" simply adds the selected note plus a period and couple
spaces.
</p>
        <p>
As you can see, it's pretty basic, but it saves a few seconds for each note (assuming
you bother to switch to HTML view, find the number, and put &lt;sup&gt;&lt;/sup&gt;
tags around it like I do [did]).  You can also tweak one option/setting. 
Go to Tools -&gt; Options, and select the Plug-ins tab:
</p>
        <p>
          <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 5px 0px 0px; border-right-width: 0px" height="547" alt="Live Writer Plug-ins Options" src="http://dotnettemplar.net/blogfiles/MyLiveWriterPlugin_BA1A/plugins_options.jpg" width="558" border="0" />
        </p>
        <p>
Clicking Options... on the Blog Notes plug-in brings up a tres simple dialog:
</p>
        <p>
          <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 5px 0px 0px; border-right-width: 0px" height="110" alt="Blog Notes Options" src="http://dotnettemplar.net/blogfiles/MyLiveWriterPlugin_BA1A/blog_notes_options.jpg" width="215" border="0" />
        </p>
        <p>
This one option will toggle whether or not the plug-in uses in-page anchor links for
the notes so that the superscript numbers would link down to the corresponding note
in the Notes section.  I originally added this feature without realizing the
implications.  Because blog posts are often aggregated and otherwise viewed in
unexpected places, using in-page anchors is iffy at best.  Community Server seems
to strip them out, and dasBlog keeps them, but since it emits a &lt;base /&gt; tag
to the site root, all of the anchor links are relative to the site homepage instead
of the current post, which effectively renders them useless.  I looked at the
dasBlog code where this happens, and it's in the core assembly.  I was concerned
what side effects changing it to use the current URL would have, so I didn't do that. 
But if you have blog software that will let you use this feature, by all means, enjoy!
</p>
        <p>
          <strong>
            <u>Caveats</u>
          </strong>
        </p>
        <ul>
          <li>
Because of the way the plug-in framework works, I use a static/shared collection to
keep track of the notes.  This means it acts a tad goofy if you close out of
Live Writer or write multiple posts while it is open.  If you close and come
back to a post, the notes count is reset.  To "fix" this, just re-add
however many notes you had (if you want to bother).  If you write multiple posts,
you just have to deal with it.  I don't know if there is post-local storage for
plug-ins, but I didn't have time to dig into it.</li>
          <li>
Your mileage may vary.  I wrote this mainly to save myself time and get familiar
with the Live Writer extensibility model, so it ain't a finished product to be sure.</li>
        </ul>
        <p>
          <strong>
            <u>Get It! 
<br /></u>
          </strong>Since there are numerous tutorials on the Web (that I learned from) to
write Live Writer plug-ins, I won't go into those details here, but you're welcome
to download my code and learn from it directly if you want.  I think I have comments
and such in there.
</p>
        <ul>
          <li>
            <a title="Download the Blog Notes Plug-in" href="http://dotnettemplar.net/blogfiles/Infragistics.Live.Writer.Notes.zip">Download
the Plug-in Only</a> - If you just want to use this plug-in, this is what you want. 
Drop the DLL into your plug-ins directory and go (typically C:\Program Files\Windows
Live\Writer\Plugins). 
</li>
          <li>
            <a title="Download the Blog Notes Plug-In Source Code" href="http://dotnettemplar.net/blogfiles/BlogNotesPlugIn.zip">Download
the Source Code</a> - This is a VS 2008 solution for those who want to learn, enhance,
extend, whatever.  The license is more or less the MIT license.  You'll
need Live Writer installed to reference its API. 
</li>
        </ul>
        <p>
          <span style="font-weight: bold; text-decoration: underline">Notes</span>
          <br />
1. This is the "Notes Section."  The button adds the "Notes"
header and writes out any existing note numbers.
</p>
        <img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=15df44a2-0733-4bc6-b6be-1ceab58b7976" />
      </body>
      <title>Blog Notes Live Writer Plug-in</title>
      <guid isPermaLink="false">http://dotnettemplar.net/PermaLink,guid,15df44a2-0733-4bc6-b6be-1ceab58b7976.aspx</guid>
      <link>http://dotNetTemplar.Net/Blog+Notes+Live+Writer+Plugin.aspx</link>
      <pubDate>Sat, 22 Dec 2007 19:07:12 GMT</pubDate>
      <description>&lt;p&gt;
I've been getting friendly with Windows Live lately, and after getting terribly tired
of having to switch to HTML view in Windows Live Writer in order to insert a note
(could be a footnote or endnote depending on how you look at it), I decided to see
if I could write a plug-in to make my life easier.
&lt;/p&gt;
&lt;p&gt;
So was born the Blog Notes plug-in.&amp;#160; Unfortunately, there is no extensibility
for just marking up existing text (e.g., adding a superscript button to the markup
toolbar), so I had to go with the option to insert some HTML using the&amp;#160; interface.&amp;#160;
I really was trying to keep it simple and lightweight (for my own sanity), so it is
pretty basic.
&lt;/p&gt;
&lt;p&gt;
The functionality is pretty straightforward.&amp;#160; Thanks to &lt;a title="Mark James&amp;#39; Free Silk Icons" href="http://www.famfamfam.com/lab/icons/silk/" target="_blank"&gt;Mark
James&lt;/a&gt; for the free icons.&amp;#160; Once the plug-in is installed, you should see
an &amp;quot;Insert Blog Notes...&amp;quot; option in the Insert pane on the right side as
shown below.
&lt;/p&gt;
&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="229" alt="Insert Blog Notes in Insert Pane" src="http://dotnettemplar.net/blogfiles/MyLiveWriterPlugin_BA1A/insert_pane.jpg" width="204" border="0" /&gt; 
&lt;p&gt;
Clicking on it brings up the Blog Notes dialog:
&lt;/p&gt;
&lt;p&gt;
&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 5px 0px 0px; border-right-width: 0px" height="183" alt="Blog Notes Dialog" src="http://dotnettemplar.net/blogfiles/MyLiveWriterPlugin_BA1A/blog_notes.jpg" width="292" align="left" border="0" /&gt; 
&lt;/p&gt;
&lt;p&gt;
Clicking &amp;quot;New Note&amp;quot; will insert a new superscript number (the next one in
the sequence).
&lt;/p&gt;
&lt;p&gt;
Clicking &amp;quot;Reference Note&amp;quot; will insert the selected number as superscript.&amp;#160;
You can also just double-click the number to do that.
&lt;/p&gt;
&lt;p&gt;
The &amp;quot;Notes Section&amp;quot; button will insert a notes section.&lt;sup&gt;1&lt;/sup&gt;
&lt;/p&gt;
&lt;p&gt;
Lastly, &amp;quot;Write Note&amp;quot; simply adds the selected note plus a period and couple
spaces.
&lt;/p&gt;
&lt;p&gt;
As you can see, it's pretty basic, but it saves a few seconds for each note (assuming
you bother to switch to HTML view, find the number, and put &amp;lt;sup&amp;gt;&amp;lt;/sup&amp;gt;
tags around it like I do [did]).&amp;#160; You can also tweak one option/setting.&amp;#160;
Go to Tools -&amp;gt; Options, and select the Plug-ins tab:
&lt;/p&gt;
&lt;p&gt;
&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 5px 0px 0px; border-right-width: 0px" height="547" alt="Live Writer Plug-ins Options" src="http://dotnettemplar.net/blogfiles/MyLiveWriterPlugin_BA1A/plugins_options.jpg" width="558" border="0" /&gt; 
&lt;/p&gt;
&lt;p&gt;
Clicking Options... on the Blog Notes plug-in brings up a tres simple dialog:
&lt;/p&gt;
&lt;p&gt;
&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 5px 0px 0px; border-right-width: 0px" height="110" alt="Blog Notes Options" src="http://dotnettemplar.net/blogfiles/MyLiveWriterPlugin_BA1A/blog_notes_options.jpg" width="215" border="0" /&gt; 
&lt;/p&gt;
&lt;p&gt;
This one option will toggle whether or not the plug-in uses in-page anchor links for
the notes so that the superscript numbers would link down to the corresponding note
in the Notes section.&amp;#160; I originally added this feature without realizing the
implications.&amp;#160; Because blog posts are often aggregated and otherwise viewed in
unexpected places, using in-page anchors is iffy at best.&amp;#160; Community Server seems
to strip them out, and dasBlog keeps them, but since it emits a &amp;lt;base /&amp;gt; tag
to the site root, all of the anchor links are relative to the site homepage instead
of the current post, which effectively renders them useless.&amp;#160; I looked at the
dasBlog code where this happens, and it's in the core assembly.&amp;#160; I was concerned
what side effects changing it to use the current URL would have, so I didn't do that.&amp;#160;
But if you have blog software that will let you use this feature, by all means, enjoy!
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;&lt;u&gt;Caveats&lt;/u&gt;&lt;/strong&gt;
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
Because of the way the plug-in framework works, I use a static/shared collection to
keep track of the notes.&amp;#160; This means it acts a tad goofy if you close out of
Live Writer or write multiple posts while it is open.&amp;#160; If you close and come
back to a post, the notes count is reset.&amp;#160; To &amp;quot;fix&amp;quot; this, just re-add
however many notes you had (if you want to bother).&amp;#160; If you write multiple posts,
you just have to deal with it.&amp;#160; I don't know if there is post-local storage for
plug-ins, but I didn't have time to dig into it.&lt;/li&gt;
&lt;li&gt;
Your mileage may vary.&amp;#160; I wrote this mainly to save myself time and get familiar
with the Live Writer extensibility model, so it ain't a finished product to be sure.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
&lt;strong&gt;&lt;u&gt;Get It! 
&lt;br /&gt;
&lt;/u&gt;&lt;/strong&gt;Since there are numerous tutorials on the Web (that I learned from) to
write Live Writer plug-ins, I won't go into those details here, but you're welcome
to download my code and learn from it directly if you want.&amp;#160; I think I have comments
and such in there.
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a title="Download the Blog Notes Plug-in" href="http://dotnettemplar.net/blogfiles/Infragistics.Live.Writer.Notes.zip"&gt;Download
the Plug-in Only&lt;/a&gt; - If you just want to use this plug-in, this is what you want.&amp;#160;
Drop the DLL into your plug-ins directory and go (typically C:\Program Files\Windows
Live\Writer\Plugins). 
&lt;/li&gt;
&lt;li&gt;
&lt;a title="Download the Blog Notes Plug-In Source Code" href="http://dotnettemplar.net/blogfiles/BlogNotesPlugIn.zip"&gt;Download
the Source Code&lt;/a&gt; - This is a VS 2008 solution for those who want to learn, enhance,
extend, whatever.&amp;#160; The license is more or less the MIT license.&amp;#160; You'll
need Live Writer installed to reference its API. 
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
&lt;span style="font-weight: bold; text-decoration: underline"&gt;Notes&lt;/span&gt; 
&lt;br /&gt;
1. This is the &amp;quot;Notes Section.&amp;quot;&amp;#160; The button adds the &amp;quot;Notes&amp;quot;
header and writes out any existing note numbers.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=15df44a2-0733-4bc6-b6be-1ceab58b7976" /&gt;</description>
      <comments>http://dotnettemplar.net/CommentView,guid,15df44a2-0733-4bc6-b6be-1ceab58b7976.aspx</comments>
      <category>dotNet</category>
      <category>General Computing</category>
      <category>Technical</category>
      <category>Writing</category>
    </item>
    <item>
      <trackback:ping>http://dotnettemplar.net/Trackback.aspx?guid=28789957-6156-4c16-ba85-fc43aaf7f783</trackback:ping>
      <pingback:server>http://dotnettemplar.net/pingback.aspx</pingback:server>
      <pingback:target>http://dotnettemplar.net/PermaLink,guid,28789957-6156-4c16-ba85-fc43aaf7f783.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <wfw:comment>http://dotnettemplar.net/CommentView,guid,28789957-6156-4c16-ba85-fc43aaf7f783.aspx</wfw:comment>
      <wfw:commentRss>http://dotnettemplar.net/SyndicationService.asmx/GetEntryCommentsRss?guid=28789957-6156-4c16-ba85-fc43aaf7f783</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
It's that time again.  Time for the SYS-CON Readers' Choice Awards voting. 
Actually, it's been that time for a little while now; I'm just slow.
</p>
        <p>
Infragistics has been nominated for several categories in several publications, so
if you like Infragistics or even if you're looking for a way to kill a few minutes
at the airport, go vote for us.
</p>
        <p>
Here's your friendly voter's guide to make your life easier (note that if you
don't know or prefer any choice in a particular category, you can just click Continue
to move on):
</p>
        <p>
          <a href="http://java.sys-con.com/general/readerschoice.htm">http://java.sys-con.com/general/readerschoice.htm</a>
        </p>
        <p>
#11 - NetAdvantage for JSF 
</p>
        <p>
#12 - NetAdvantage for JSF 
</p>
        <p>
#20 - JSuite 
</p>
        <p>
#24 - NetAdvantage for JSF 
</p>
        <p>
#28 - NetAdvantage for JSF 
</p>
        <p>
          <a href="http://soa.sys-con.com/general/readerschoice.htm">http://soa.sys-con.com/general/readerschoice.htm</a>
        </p>
        <p>
#4 – NetAdvantage for .NET 
</p>
        <p>
#14 – NetAdvantage for .NET 
</p>
        <p>
          <a href="http://webddj.sys-con.com/general/readerschoice.htm">http://webddj.sys-con.com/general/readerschoice.htm</a>
        </p>
        <p>
#3 – NetAdvantage for ASP.NET 
</p>
        <p>
#6 – Infragistics Training and Consulting 
</p>
        <p>
#7 – Infragistics Training and Consulting 
</p>
        <p>
#8 – NetAdvantage for ASP.NET 
</p>
        <p>
          <a href="http://dotnet.sys-con.com/general/readerschoice.htm">http://dotnet.sys-con.com/general/readerschoice.htm</a>
        </p>
        <p>
#3 – NetAdvantage AppStylist 
</p>
        <p>
#4 – Infragistics Training and Consulting 
</p>
        <p>
#5 – Infragistics NetAdvantage for .NET 
</p>
        <p>
#10 – TestAdvantage for Windows Forms
</p>
        <img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=28789957-6156-4c16-ba85-fc43aaf7f783" />
      </body>
      <title>SYS-CON Readers' Choice Voting Guide</title>
      <guid isPermaLink="false">http://dotnettemplar.net/PermaLink,guid,28789957-6156-4c16-ba85-fc43aaf7f783.aspx</guid>
      <link>http://dotNetTemplar.Net/SYSCON+Readers+Choice+Voting+Guide.aspx</link>
      <pubDate>Tue, 19 Dec 2006 23:28:11 GMT</pubDate>
      <description>&lt;p&gt;
It's that time again.&amp;nbsp; Time for the SYS-CON Readers' Choice Awards voting.&amp;nbsp;
Actually, it's been that time for a little while now; I'm just slow.
&lt;/p&gt;
&lt;p&gt;
Infragistics has been nominated for several categories in several publications, so
if you like Infragistics or even if you're looking for a way to kill a few minutes
at the airport, go vote for us.
&lt;/p&gt;
&lt;p&gt;
Here's your friendly voter's guide to make your life easier&amp;nbsp;(note that if you
don't know or prefer any choice in a particular category, you can just click Continue
to move on):
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://java.sys-con.com/general/readerschoice.htm"&gt;http://java.sys-con.com/general/readerschoice.htm&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
#11 - NetAdvantage for JSF 
&lt;p&gt;
#12 - NetAdvantage for JSF 
&lt;p&gt;
#20 - JSuite 
&lt;p&gt;
#24 - NetAdvantage for JSF 
&lt;p&gt;
#28 - NetAdvantage for JSF 
&lt;p&gt;
&lt;a href="http://soa.sys-con.com/general/readerschoice.htm"&gt;http://soa.sys-con.com/general/readerschoice.htm&lt;/a&gt; 
&lt;p&gt;
#4 – NetAdvantage for .NET 
&lt;p&gt;
#14 – NetAdvantage for .NET 
&lt;p&gt;
&lt;a href="http://webddj.sys-con.com/general/readerschoice.htm"&gt;http://webddj.sys-con.com/general/readerschoice.htm&lt;/a&gt; 
&lt;p&gt;
#3 – NetAdvantage for ASP.NET 
&lt;p&gt;
#6 – Infragistics Training and Consulting 
&lt;p&gt;
#7 – Infragistics Training and Consulting 
&lt;p&gt;
#8 – NetAdvantage for ASP.NET 
&lt;p&gt;
&lt;a href="http://dotnet.sys-con.com/general/readerschoice.htm"&gt;http://dotnet.sys-con.com/general/readerschoice.htm&lt;/a&gt; 
&lt;p&gt;
#3 – NetAdvantage AppStylist 
&lt;p&gt;
#4 – Infragistics Training and Consulting 
&lt;p&gt;
#5 – Infragistics NetAdvantage for .NET 
&lt;p&gt;
#10 – TestAdvantage for Windows Forms
&lt;/p&gt;
&lt;img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=28789957-6156-4c16-ba85-fc43aaf7f783" /&gt;</description>
      <comments>http://dotnettemplar.net/CommentView,guid,28789957-6156-4c16-ba85-fc43aaf7f783.aspx</comments>
      <category>dotNet</category>
      <category>General Computing</category>
      <category>Writing</category>
    </item>
    <item>
      <trackback:ping>http://dotnettemplar.net/Trackback.aspx?guid=9e5e759e-67fc-4806-b1a7-14e99d9735c1</trackback:ping>
      <pingback:server>http://dotnettemplar.net/pingback.aspx</pingback:server>
      <pingback:target>http://dotnettemplar.net/PermaLink,guid,9e5e759e-67fc-4806-b1a7-14e99d9735c1.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <wfw:comment>http://dotnettemplar.net/CommentView,guid,9e5e759e-67fc-4806-b1a7-14e99d9735c1.aspx</wfw:comment>
      <wfw:commentRss>http://dotnettemplar.net/SyndicationService.asmx/GetEntryCommentsRss?guid=9e5e759e-67fc-4806-b1a7-14e99d9735c1</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I just updated this site to the latest version of dasBlog.  Many, many thanks
to <a href="http://www.hanselman.com/blog/">Scott</a> for helping me out with getting
it (given that I am a total noob to CVS and, apparently, picked a bad time to start
since SF was having issues).  Most notably (that I know of), this version incorporates
using Feedburner, which I guess is the latest and greatest for distributing your feed
and lowering bandwidth usage, though I'm sure there are some other goodies in there.
</p>
        <p>
Anyhoo, let me know if you suddenly start running into any problems with my blog. 
Have a good un!
</p>
        <img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=9e5e759e-67fc-4806-b1a7-14e99d9735c1" />
      </body>
      <title>Updated DasBlog</title>
      <guid isPermaLink="false">http://dotnettemplar.net/PermaLink,guid,9e5e759e-67fc-4806-b1a7-14e99d9735c1.aspx</guid>
      <link>http://dotNetTemplar.Net/Updated+DasBlog.aspx</link>
      <pubDate>Sat, 29 Apr 2006 18:19:18 GMT</pubDate>
      <description>&lt;p&gt;
I just updated this site to the latest version of dasBlog.&amp;nbsp; Many, many thanks
to &lt;a href="http://www.hanselman.com/blog/"&gt;Scott&lt;/a&gt; for helping me out with getting
it (given that I am a total noob to CVS and, apparently, picked a bad time to start
since SF was having issues).&amp;nbsp; Most notably (that I know of), this version incorporates
using Feedburner, which I guess is the latest and greatest for distributing your feed
and lowering bandwidth usage, though I'm sure there are some other goodies in there.
&lt;/p&gt;
&lt;p&gt;
Anyhoo, let me know if you suddenly start running into any problems with my blog.&amp;nbsp;
Have a good un!
&lt;/p&gt;
&lt;img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=9e5e759e-67fc-4806-b1a7-14e99d9735c1" /&gt;</description>
      <comments>http://dotnettemplar.net/CommentView,guid,9e5e759e-67fc-4806-b1a7-14e99d9735c1.aspx</comments>
      <category>dotNet</category>
      <category>General Computing</category>
      <category>History</category>
      <category>Miscellaneous</category>
      <category>Non-Technical</category>
      <category>Philosophy</category>
      <category>Presentations</category>
      <category>Religion</category>
      <category>Software Architecture</category>
      <category>Technical</category>
      <category>Writing</category>
    </item>
    <item>
      <trackback:ping>http://dotnettemplar.net/Trackback.aspx?guid=88ff7d2d-0956-4a0a-a030-01be41786def</trackback:ping>
      <pingback:server>http://dotnettemplar.net/pingback.aspx</pingback:server>
      <pingback:target>http://dotnettemplar.net/PermaLink,guid,88ff7d2d-0956-4a0a-a030-01be41786def.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <wfw:comment>http://dotnettemplar.net/CommentView,guid,88ff7d2d-0956-4a0a-a030-01be41786def.aspx</wfw:comment>
      <wfw:commentRss>http://dotnettemplar.net/SyndicationService.asmx/GetEntryCommentsRss?guid=88ff7d2d-0956-4a0a-a030-01be41786def</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Not long ago, I polled subscribers as to what they're interested in.  There seemed
to be a fairly even divide between what I'll roughly call Technical posts and Non-Technical
posts.  In fact, my goal with this blog is to be a blend of those two general
categories.  At the same time, as much as it hurts to admit it, I know that some
folks <em>really don't care</em> about my opinions on non-technical matters. 
So it struck me (some time ago, actually; I've just been lazy) to create two general
categories using the creative taxonomy of Technical and Non-Technical.  
</p>
        <p>
Why?  This is because dasBlog (and most other blog systems, I imagine) allow
you to subscribe to category-based RSS feeds as well as view posts by category. 
So from this day forward, in addition to the more specific categories, I'll be marking
all posts as either Technical or Non-Technical.  If all you care about is one
or the other, you can just subscribe to one or the other and never be bothered with
the stuff you don't care about.
</p>
        <p>
You can view/subscribe to the feeds using the feed icon next to each category
in the list (of categories).  Here are direct links as well:
</p>
        <p>
          <a href="http://dotnettemplar.net/SyndicationService.asmx/GetRssCategory?categoryName=Technical">Technical</a>
        </p>
        <p>
          <a href="http://dotnettemplar.net/SyndicationService.asmx/GetRssCategory?categoryName=Non-Technical">Non-Technical</a>
        </p>
        <p>
I hope this helps!
</p>
        <img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=88ff7d2d-0956-4a0a-a030-01be41786def" />
      </body>
      <title>Launching New Convenience Categories</title>
      <guid isPermaLink="false">http://dotnettemplar.net/PermaLink,guid,88ff7d2d-0956-4a0a-a030-01be41786def.aspx</guid>
      <link>http://dotNetTemplar.Net/Launching+New+Convenience+Categories.aspx</link>
      <pubDate>Mon, 24 Apr 2006 14:28:33 GMT</pubDate>
      <description>&lt;p&gt;
Not long ago, I polled subscribers as to what they're interested in.&amp;nbsp; There seemed
to be a fairly even divide between what I'll roughly call Technical posts and Non-Technical
posts.&amp;nbsp; In fact, my goal with this blog is to be a blend of those two general
categories.&amp;nbsp; At the same time, as much as it hurts to admit it, I know that some
folks &lt;em&gt;really don't care&lt;/em&gt; about my opinions on non-technical matters.&amp;nbsp;
So it struck me (some time ago, actually; I've just been lazy) to create two general
categories using the creative taxonomy of Technical and Non-Technical.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
Why?&amp;nbsp; This is because dasBlog (and most other blog systems, I imagine) allow
you to subscribe to category-based RSS feeds as well as view posts by category.&amp;nbsp;
So from this day forward, in addition to the more specific categories, I'll be marking
all posts as either Technical or Non-Technical.&amp;nbsp; If all you care about is one
or the other, you can just subscribe to one or the other and never be bothered with
the stuff you don't care about.
&lt;/p&gt;
&lt;p&gt;
You can view/subscribe to the feeds using the feed&amp;nbsp;icon next to each category
in the list (of categories).&amp;nbsp; Here are direct links as well:
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://dotnettemplar.net/SyndicationService.asmx/GetRssCategory?categoryName=Technical"&gt;Technical&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://dotnettemplar.net/SyndicationService.asmx/GetRssCategory?categoryName=Non-Technical"&gt;Non-Technical&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
I hope this helps!
&lt;/p&gt;
&lt;img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=88ff7d2d-0956-4a0a-a030-01be41786def" /&gt;</description>
      <comments>http://dotnettemplar.net/CommentView,guid,88ff7d2d-0956-4a0a-a030-01be41786def.aspx</comments>
      <category>dotNet</category>
      <category>General Computing</category>
      <category>History</category>
      <category>Miscellaneous</category>
      <category>Philosophy</category>
      <category>Presentations</category>
      <category>Religion</category>
      <category>Software Architecture</category>
      <category>Technical</category>
      <category>Writing</category>
      <category>Non-Technical</category>
    </item>
    <item>
      <trackback:ping>http://dotnettemplar.net/Trackback.aspx?guid=a0739fc1-85d6-4fb6-af64-1dded4526fcf</trackback:ping>
      <pingback:server>http://dotnettemplar.net/pingback.aspx</pingback:server>
      <pingback:target>http://dotnettemplar.net/PermaLink,guid,a0739fc1-85d6-4fb6-af64-1dded4526fcf.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <wfw:comment>http://dotnettemplar.net/CommentView,guid,a0739fc1-85d6-4fb6-af64-1dded4526fcf.aspx</wfw:comment>
      <wfw:commentRss>http://dotnettemplar.net/SyndicationService.asmx/GetEntryCommentsRss?guid=a0739fc1-85d6-4fb6-af64-1dded4526fcf</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
It's been a while since my last writing tip, and I just have been doing more editing
lately, so I thought I'd toss one more out there.
</p>
        <p>
          <font color="#ff0000">
            <strong>Vary your sentences!</strong>
          </font>
        </p>
        <p>
Okay, I'm just in a yelling mood.  But to elaborate, when writing,
you need to think about the feel and flow of your piece as a whole.  This is
a somewhat more advanced tip than the tips thus far on this blog (most of the others
are just syntactical), but this is stylistic and is, therefore, subject to more interpretation. 
That is, it is somewhat subjective.
</p>
        <p>
However, I can assure you that it is still a valid tip to keep in mind.  When
you are assembling your sentences, think about how they sound in relation to the surrounding
sentences.  Do they all have the same length?  Do they all have the
same basic structure?  Do they all have the same pronouns repeatedly? 
Do you feel assaulted when reading them together?
</p>
        <p>
Take the last paragraph (just before this one) as an example.  I asked four questions
in a row.  Each of them has more or less the same structure and length, and had
I asked just a few more, I imagine you would feel somewhat assaulted by the repetition. 
As it is, I was hoping to do two things: illustrate the effect you can get by using
repetition and actually give you some meaningful questions to ask yourself.
</p>
        <p>
It does illustrate that repetition, when used strategically, can be advantageous to
not only get your point across but to do it in such a way that leaves the reader feeling
a certain way about your text.  Maybe you do want to assault the reader in classic
tommy-gun style.  But my guess is that most of the time you don't; you don't
want to assault and therefore isolate your reader because then you lose rapport and
they stop listening to what you are saying.
</p>
        <p>
Repetition can also just be dulling.  If you have the same sentence structure
over and over again, your reader can become bored and lose interest.  You don't
want that, right?  After all, what's the point of writing if you do it in such
a way that readers lose interest and just ignore you?
</p>
        <p>
So now for a fun example of repetition.
</p>
        <p>
I got up.  I walked my dog.  I ate some breakfast.  I took my daughter
to school.  I drove to work.  I worked a lot.  I came home.  I
ate dinner.  I watched the TV.  I went to sleep.
</p>
        <p>
This is of course an extreme example, but we are all guilty of it to varying degrees. 
Now I will communicate the same information by varying my sentences.
</p>
        <p>
This morning, I got up.  I walked my dog and decided to eat some breakfast. 
After breakfast, I took my daughter to school, and then I drove to work.  I worked
a lot.  Later in the day, I returned home, ate dinner, and watched some TV. 
And finally, at the end of this full day, I went to sleep.
</p>
        <p>
As you can see (I hope), with a little work you can vary your sentences and make your
text more interesting and appealing to your readers.  You can do this by adding
adverbs here and there, using dependent clauses, using coordinating conjunctions,
eliminating pronoun repetition by combining actions by the same subject into one sentence,
etc.  
</p>
        <p>
As an aside, note that I left "I worked a lot" alone.  I did this intentionally
to give an effect, to make the reader pause.  The sentence is short and terse
amidst longer more complex sentences, and it makes it stand out by stopping the general
flow.  You can do this when you want to draw attention to a particular thought.
</p>
        <p>
I'm sure that I haven't done this subject justice, but I hope you will think about
it more when writing if you don't already.  And as you incorporate this tip into
your writing, you can take it a step further and apply the same rules to paragraphs:
vary your paragraphs!  This means not using the same transitional phrases repeatedly,
varying their length, etc.  
</p>
        <p>
Forget the "every paragraph must have three sentences" rule if you were taught it. 
It's garbage.  The more important thing is that paragraphs communicate a complete
thought, so if you can do that and add variation along with it, you're on the road
to writing better!
</p>
        <img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=a0739fc1-85d6-4fb6-af64-1dded4526fcf" />
      </body>
      <title>Quick Hit: Sentence Variation</title>
      <guid isPermaLink="false">http://dotnettemplar.net/PermaLink,guid,a0739fc1-85d6-4fb6-af64-1dded4526fcf.aspx</guid>
      <link>http://dotNetTemplar.Net/Quick+Hit+Sentence+Variation.aspx</link>
      <pubDate>Wed, 26 Oct 2005 17:28:33 GMT</pubDate>
      <description>&lt;p&gt;
It's been a while since my last writing tip, and I just have been doing more editing
lately, so I thought I'd toss one more out there.
&lt;/p&gt;
&lt;p&gt;
&lt;font color=#ff0000&gt;&lt;strong&gt;Vary your sentences!&lt;/strong&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
Okay, I'm just in&amp;nbsp;a yelling&amp;nbsp;mood.&amp;nbsp; But to elaborate, when writing,
you need to think about the feel and flow of your piece as a whole.&amp;nbsp; This is
a somewhat more advanced tip than the tips thus far on this blog (most of the others
are just syntactical), but this is stylistic and is, therefore, subject to more interpretation.&amp;nbsp;
That is, it is somewhat subjective.
&lt;/p&gt;
&lt;p&gt;
However, I can assure you that it is still a valid tip to keep in mind.&amp;nbsp; When
you are assembling your sentences, think about how they sound in relation to the surrounding
sentences.&amp;nbsp; Do they all have&amp;nbsp;the same length?&amp;nbsp; Do they all have the
same basic structure?&amp;nbsp; Do&amp;nbsp;they all have the&amp;nbsp;same pronouns repeatedly?&amp;nbsp;
Do you feel assaulted when reading them together?
&lt;/p&gt;
&lt;p&gt;
Take the last paragraph (just before this one) as an example.&amp;nbsp; I asked four questions
in a row.&amp;nbsp; Each of them has more or less the same structure and length, and had
I asked just a few more, I imagine you would feel somewhat assaulted by the repetition.&amp;nbsp;
As it is, I was hoping to do two things: illustrate the effect you can get by using
repetition and actually give you some meaningful questions to ask yourself.
&lt;/p&gt;
&lt;p&gt;
It does illustrate that repetition, when used strategically, can be advantageous to
not only get your point across but to do it in such a way that leaves the reader feeling
a certain way about your text.&amp;nbsp; Maybe you do want to assault the reader in classic
tommy-gun style.&amp;nbsp; But my guess is that most of the time you don't; you don't
want to assault and therefore isolate your reader because then you lose rapport and
they stop listening to what you are saying.
&lt;/p&gt;
&lt;p&gt;
Repetition can also just be dulling.&amp;nbsp; If you have the same sentence structure
over and over again, your reader can become bored and lose interest.&amp;nbsp; You don't
want that, right?&amp;nbsp; After all, what's the point of writing if you do it in such
a way that readers lose interest and just ignore you?
&lt;/p&gt;
&lt;p&gt;
So now for a fun example of repetition.
&lt;/p&gt;
&lt;p&gt;
I got up.&amp;nbsp; I walked my dog.&amp;nbsp; I ate some breakfast.&amp;nbsp; I took my daughter
to school.&amp;nbsp; I drove to work.&amp;nbsp; I worked a lot.&amp;nbsp; I came home.&amp;nbsp; I
ate dinner.&amp;nbsp; I watched the TV.&amp;nbsp; I went to sleep.
&lt;/p&gt;
&lt;p&gt;
This is of course an extreme example, but we are all guilty of it to varying degrees.&amp;nbsp;
Now I will communicate the same information by varying my sentences.
&lt;/p&gt;
&lt;p&gt;
This morning, I got up.&amp;nbsp; I walked my dog and decided to eat some breakfast.&amp;nbsp;
After breakfast, I took my daughter to school, and then I drove to work.&amp;nbsp; I worked
a lot.&amp;nbsp; Later in the day, I returned home, ate dinner, and watched some TV.&amp;nbsp;
And finally, at the end of this full day, I went to sleep.
&lt;/p&gt;
&lt;p&gt;
As you can see (I hope), with a little work you can vary your sentences and make your
text more interesting and appealing to your readers.&amp;nbsp; You can do this by adding
adverbs here and there, using dependent clauses, using coordinating conjunctions,
eliminating pronoun repetition by combining actions by the same subject into one sentence,
etc.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
As an aside, note that I left "I worked a lot" alone.&amp;nbsp; I did this intentionally
to give an effect, to make the reader pause.&amp;nbsp; The sentence is short and terse
amidst longer more complex sentences, and it makes it stand out by stopping the general
flow.&amp;nbsp; You can do this when you want to draw attention to a particular thought.
&lt;/p&gt;
&lt;p&gt;
I'm sure that I haven't done this subject justice, but I hope you will think about
it more when writing if you don't already.&amp;nbsp; And as you incorporate this tip into
your writing, you can take it a step further and apply the same rules to paragraphs:
vary your paragraphs!&amp;nbsp; This means not using the same transitional phrases repeatedly,
varying their length, etc.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
Forget the "every paragraph must have three sentences" rule if you were taught it.&amp;nbsp;
It's garbage.&amp;nbsp; The more important thing is that paragraphs communicate a complete
thought, so if you can do that and add variation along with it, you're on the road
to writing better!
&lt;/p&gt;
&lt;img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=a0739fc1-85d6-4fb6-af64-1dded4526fcf" /&gt;</description>
      <comments>http://dotnettemplar.net/CommentView,guid,a0739fc1-85d6-4fb6-af64-1dded4526fcf.aspx</comments>
      <category>Writing</category>
    </item>
    <item>
      <trackback:ping>http://dotnettemplar.net/Trackback.aspx?guid=a21153cd-deb1-41d9-933b-d7cf9c7b12a1</trackback:ping>
      <pingback:server>http://dotnettemplar.net/pingback.aspx</pingback:server>
      <pingback:target>http://dotnettemplar.net/PermaLink,guid,a21153cd-deb1-41d9-933b-d7cf9c7b12a1.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <wfw:comment>http://dotnettemplar.net/CommentView,guid,a21153cd-deb1-41d9-933b-d7cf9c7b12a1.aspx</wfw:comment>
      <wfw:commentRss>http://dotnettemplar.net/SyndicationService.asmx/GetEntryCommentsRss?guid=a21153cd-deb1-41d9-933b-d7cf9c7b12a1</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I was just surfing around, looking for a decent grammar guide for a friend, when I
ran across <a href="http://www.wsu.edu/~brians/errors/index.html">this site</a>. 
The fella there has an impressively long list of common English errors, but what I
found most interesting is his list of <a href="http://www.wsu.edu/~brians/errors/nonerrors.html">non-errors</a>. 
Non-errors are caused by pedants who are so eager to show off their superior knowledge
of the language that they will go too far and actually show their ignorance.
</p>
        <p>
I chuckle inside when I hear someone saying "I feel well" or "between you
and I."  I don't fault them for trying to speak proper English; heck, I've often
laughed at myself for saying such things, and I immediately correct myself (often
under my breath) to remind myself.
</p>
        <p>
You'd be surprised at the number of bad habits I've had to break, things like "coulda
went," "less calories," and one that I still have trouble with: "I'm gonna go lay
down for a bit."  What can I say?  I was raised in Arkansas and Oklahoma,
neither of which are particularly known for proper English. :)
</p>
        <p>
For the record, the proper way to say the above things are:<br />
1. "I feel well" should be "I feel good," unless of course you are talking about your
health and not your state of mind.  If you are thinking "I feel good" (like the
song), then you should say that and not overcorrect yourself.<br />
2. "Between you and I" should be "between you and me."  This is a case where
folks have been told that saying "you and me" is incorrect, usually in the context
of using it as the subject (nominative case) in a sentence such as "you and me are
going to dinner."  In that case, you should use "you and I" because "I" is the
nominative case for the singular, first-person personal pronoun; however, nouns
that follow prepositions (which is what "between" is) should be in the accusative
or dative case, and that case for the aforementioned personal pronoun is "me."<br />
3. "Coulda went" should be "coulda gone" if you're intending to be colloquial. 
Of course, the more proper way would be "could've gone."<br />
4. "Less calories" should be "fewer calories."  This is a toughie, at least for
us Americans.  "Less" should be used when referring to a single thing, such as
"less water" or "less sand."  "Fewer" should be used when talking about multiple
things, such as "fewer items" or "fewer calories."  Even Wal-Mart gets this one
wrong, or at least they intentionally use it because it is more common to be incorrect. 
Let me know if you find a store whose express lane says "10 or fewer items" rather
than "10 or less items."<br />
5. The last one that still causes me trouble is "lay" versus "lie."  The difference
is in whether or not the verb takes an object, that is, whether or not it is transitive
or intransitive.  If you are putting something down, you would "lay" it down;
however, if you are describing what something is doing, you would say it is "lying"
down.  So I should say "I'm gonna go lie down for a bit" unless I'm going to
go take something and lay it down for a while.  
</p>
        <p>
Anyways, for the time being, these are still shibboleths, but I wouldn't be surprised
if in a few decades these become the new non-errors because common usage has made
them correct.  
</p>
        <p>
The main thing to keep in mind is that there are plenty of folks who use the way you
speak or write as a means to determine your level of education or, worse, intellect. 
It's not so much that these little errors really matter in getting your
point across (which is, after all, the point of language) but that you don't
want to be discounted a priori for what is considered by many others to be incorrect.
</p>
        <img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=a21153cd-deb1-41d9-933b-d7cf9c7b12a1" />
      </body>
      <title>Spitten Image</title>
      <guid isPermaLink="false">http://dotnettemplar.net/PermaLink,guid,a21153cd-deb1-41d9-933b-d7cf9c7b12a1.aspx</guid>
      <link>http://dotNetTemplar.Net/Spitten+Image.aspx</link>
      <pubDate>Sat, 14 May 2005 21:32:35 GMT</pubDate>
      <description>&lt;p&gt;
I was just surfing around, looking for a decent grammar guide for a friend, when I
ran across &lt;a href="http://www.wsu.edu/~brians/errors/index.html"&gt;this site&lt;/a&gt;.&amp;nbsp;
The fella there has an impressively long list of common English errors, but what I
found most interesting is his list of &lt;a href="http://www.wsu.edu/~brians/errors/nonerrors.html"&gt;non-errors&lt;/a&gt;.&amp;nbsp;
Non-errors are caused by pedants who are so eager to show off their superior knowledge
of the language that they will go too far and actually show their ignorance.
&lt;/p&gt;
&lt;p&gt;
I&amp;nbsp;chuckle inside&amp;nbsp;when I hear someone saying "I feel well" or "between you
and I."&amp;nbsp; I don't fault them for trying to speak proper English; heck, I've often
laughed at myself for saying such things, and I immediately correct myself (often
under my breath) to remind myself.
&lt;/p&gt;
&lt;p&gt;
You'd be surprised at the number of bad habits I've had to break, things like "coulda
went," "less calories," and one that I still have trouble with: "I'm gonna go lay
down for a bit."&amp;nbsp; What can I say?&amp;nbsp; I was raised in Arkansas and Oklahoma,
neither of which are particularly known for proper English. :)
&lt;/p&gt;
&lt;p&gt;
For the record, the proper way to say the above things are:&lt;br&gt;
1. "I feel well" should be "I feel good," unless of course you are talking about your
health and not your state of mind.&amp;nbsp; If you are thinking "I feel good" (like the
song), then you should say that and not overcorrect yourself.&lt;br&gt;
2. "Between you and I" should be "between you and me."&amp;nbsp; This is a case where
folks have been told that saying "you and me" is incorrect, usually in the context
of using it as the subject (nominative case) in a sentence such as "you and me are
going to dinner."&amp;nbsp; In that case, you should use "you and I" because "I" is the
nominative case for the singular, first-person&amp;nbsp;personal pronoun; however, nouns
that follow prepositions (which is what "between" is) should be in the accusative
or dative case, and that case for the aforementioned&amp;nbsp;personal pronoun is "me."&lt;br&gt;
3. "Coulda went" should be "coulda gone" if you're intending to be colloquial.&amp;nbsp;
Of course, the more proper way would be "could've gone."&lt;br&gt;
4. "Less calories" should be "fewer calories."&amp;nbsp; This is a toughie, at least for
us Americans.&amp;nbsp; "Less" should be used when referring to a single thing, such as
"less water" or "less sand."&amp;nbsp; "Fewer" should be used when talking about multiple
things, such as "fewer items" or "fewer calories."&amp;nbsp; Even Wal-Mart gets this one
wrong, or at least they intentionally use it because it is more common to be incorrect.&amp;nbsp;
Let me know if you find a store whose express lane says "10 or fewer items" rather
than "10 or less items."&lt;br&gt;
5. The last one that still causes me trouble is "lay" versus "lie."&amp;nbsp; The difference
is in whether or not the verb takes an object, that is, whether or not it is transitive
or intransitive.&amp;nbsp; If you are putting something down, you would "lay" it down;
however, if you are describing what something is doing, you would say it is "lying"
down.&amp;nbsp; So I should say "I'm gonna go lie down for a bit" unless I'm going to
go take something and lay it down for a while.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
Anyways, for the time being, these are still shibboleths, but I wouldn't be surprised
if in a few decades these become the new non-errors because common usage has made
them correct.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
The main thing to keep in mind is that there are plenty of folks who use the way you
speak or write as a means to determine your level of education or, worse, intellect.&amp;nbsp;
It's not so much that&amp;nbsp;these little errors really matter&amp;nbsp;in getting your
point across (which is, after all, the point of language)&amp;nbsp;but that you don't
want to be discounted a priori&amp;nbsp;for what is considered by many others to be incorrect.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=a21153cd-deb1-41d9-933b-d7cf9c7b12a1" /&gt;</description>
      <comments>http://dotnettemplar.net/CommentView,guid,a21153cd-deb1-41d9-933b-d7cf9c7b12a1.aspx</comments>
      <category>Writing</category>
    </item>
    <item>
      <trackback:ping>http://dotnettemplar.net/Trackback.aspx?guid=1a7a6f68-2e99-43e5-97f3-b72a47e632c5</trackback:ping>
      <pingback:server>http://dotnettemplar.net/pingback.aspx</pingback:server>
      <pingback:target>http://dotnettemplar.net/PermaLink,guid,1a7a6f68-2e99-43e5-97f3-b72a47e632c5.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <wfw:comment>http://dotnettemplar.net/CommentView,guid,1a7a6f68-2e99-43e5-97f3-b72a47e632c5.aspx</wfw:comment>
      <wfw:commentRss>http://dotnettemplar.net/SyndicationService.asmx/GetEntryCommentsRss?guid=1a7a6f68-2e99-43e5-97f3-b72a47e632c5</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <a href="http://dotnettemplar.net/CommentView.aspx?guid=06d16086-c4f8-4700-ae83-0a38efc22c2d">Someone
recently</a> asked about the usage of hyphens in response to my post about semicolons. 
First of all, I'd say that technically speaking, I think the question revolves around
dashes, not hyphens, although depending on the word processor, dashes are created
by using hyphens (two, to be exact).  Now the question posed was how they differ
from semicolons.  Simply put, dashes are used to interject additional information
into the text with <strong>emphasis</strong>.  In fact, text set off with dashes
doesn't even have to be an independent clause--you can put whatever you want here,
almost!  
</p>
        <p>
Semicolons, on the other hand, are not necessarily used for emphasis or even the
addition of information, and they always, unless used in a list, require
a complete, independent clause.  The semicolon is used to stress the relation
of the current clause with what went before.  A dash is used to offer additional
information, much like commas or parentheses can be used.  But the idea
is that a dash means you want to emphasize what you're saying while commas or parentheses
are used to offer additional information that can be ignored.
</p>
        <p>
When I use or read a dash, I imagine the person to be speaking that bit emphatically--with
emotion.  If I read something in parentheses, I imagine the speaker to be sneaking
that bit in a hurried and low voice, almost as if the speaker didn't want you to lose
sight of what is being said but thought it worth mentioning all the same.  
</p>
        <p>
Recently, I've seen the use of the word orthagonal in various technical discussions
when I think the meaning desired by the writer is more along the lines of tangential
or peripheral.  The reason I bring it up is that this is what the parentheses
are good for--mentioning information that is tangential.  Conversely, if one
uses dashes, one wants the reader to pay attention--it is integral that this be read. 
So I'd say the key associations are:
</p>
        <p>
parentheses - tangential and hurried
</p>
        <p>
dashes - integral and emphasized
</p>
        <p>
(Oh, and by the way, a hyphen is used to connect multi-word terms and, in the past,
for line continuation.  It's not the same thing as a dash, which introduces a
phrase, although, as mentioned, you can use two hyphens to indicate a dash.)
</p>
        <img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=1a7a6f68-2e99-43e5-97f3-b72a47e632c5" />
      </body>
      <title>Dashes, a.k.a., Hyphens (and Parentheses)</title>
      <guid isPermaLink="false">http://dotnettemplar.net/PermaLink,guid,1a7a6f68-2e99-43e5-97f3-b72a47e632c5.aspx</guid>
      <link>http://dotNetTemplar.Net/Dashes+Aka+Hyphens+And+Parentheses.aspx</link>
      <pubDate>Tue, 22 Feb 2005 04:05:53 GMT</pubDate>
      <description>&lt;p&gt;
&lt;a href="http://dotnettemplar.net/CommentView.aspx?guid=06d16086-c4f8-4700-ae83-0a38efc22c2d"&gt;Someone
recently&lt;/a&gt; asked about the usage of hyphens in response to my post about semicolons.&amp;nbsp;
First of all, I'd say that technically speaking, I think the question revolves around
dashes, not hyphens, although depending on the word processor, dashes are created
by using hyphens (two, to be exact).&amp;nbsp; Now the question posed was how they differ
from semicolons.&amp;nbsp; Simply put, dashes are used to interject additional information
into the text with &lt;strong&gt;emphasis&lt;/strong&gt;.&amp;nbsp; In fact, text set off with dashes
doesn't even have to be an independent clause--you can put whatever you want here,
almost!&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
Semicolons, on the other hand, are not necessarily used for emphasis or even&amp;nbsp;the
addition of information,&amp;nbsp;and they&amp;nbsp;always, unless used in&amp;nbsp;a list, require
a complete, independent clause.&amp;nbsp; The semicolon is used to stress the relation
of the current clause with what went before.&amp;nbsp; A dash is used to offer additional
information, much like&amp;nbsp;commas or parentheses can be used.&amp;nbsp; But the idea
is that a dash means you want to emphasize what you're saying while commas or parentheses
are used to offer additional information that can be ignored.
&lt;/p&gt;
&lt;p&gt;
When I use or read a dash, I imagine the person to be speaking that bit emphatically--with
emotion.&amp;nbsp; If I read something in parentheses, I imagine the speaker to be sneaking
that bit in a hurried and low voice, almost as if the speaker didn't want you to lose
sight of what is being said but thought it worth mentioning all the same.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
Recently, I've seen the use of the word orthagonal in various technical discussions
when I think the meaning desired by the writer is more along the lines of tangential
or peripheral.&amp;nbsp; The reason I bring it up is that this is what the parentheses
are good for--mentioning information that is tangential.&amp;nbsp; Conversely, if one
uses dashes, one wants the reader to pay attention--it is integral that this be read.&amp;nbsp;
So I'd say the key associations are:
&lt;/p&gt;
&lt;p&gt;
parentheses - tangential and hurried
&lt;/p&gt;
&lt;p&gt;
dashes - integral and emphasized
&lt;/p&gt;
&lt;p&gt;
(Oh, and by the way, a hyphen is used to connect multi-word terms and, in the past,
for line continuation.&amp;nbsp; It's not the same thing as a dash, which introduces a
phrase, although, as mentioned, you can use two hyphens to indicate a dash.)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=1a7a6f68-2e99-43e5-97f3-b72a47e632c5" /&gt;</description>
      <comments>http://dotnettemplar.net/CommentView,guid,1a7a6f68-2e99-43e5-97f3-b72a47e632c5.aspx</comments>
      <category>Writing</category>
    </item>
    <item>
      <trackback:ping>http://dotnettemplar.net/Trackback.aspx?guid=06d16086-c4f8-4700-ae83-0a38efc22c2d</trackback:ping>
      <pingback:server>http://dotnettemplar.net/pingback.aspx</pingback:server>
      <pingback:target>http://dotnettemplar.net/PermaLink,guid,06d16086-c4f8-4700-ae83-0a38efc22c2d.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <wfw:comment>http://dotnettemplar.net/CommentView,guid,06d16086-c4f8-4700-ae83-0a38efc22c2d.aspx</wfw:comment>
      <wfw:commentRss>http://dotnettemplar.net/SyndicationService.asmx/GetEntryCommentsRss?guid=06d16086-c4f8-4700-ae83-0a38efc22c2d</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I just thought I'd blog briefly about the semicolon; I've been wanting to do it for
some time; it was in fact the first thing I intended to blog about in this category,
but I just haven't gotten around to it until now.  The nice thing about the semicolon
is that it is actually quite simple; there are no long lists of exceptions to rules,
and there are really only two basic uses for it.
</p>
        <p>
In college, I was known for my excruciatingly long and difficult sentences; I suppose
I did this in order to seem more intellectual; that is, I figured if my sentences
were difficult to read, yet grammatically correct, my professors might be more inclined
to give me good grades--perhaps even comment on how impressive my sentence structures
were--because I managed to use almost every (but not necessarily every) grammatical
structure and punctuation within one sentence so that it would become as long as a
relatively long paragraph and still be one, single, grammatically correct sentence,
assuming you consider the period to be the end of a sentence.
</p>
        <p>
In case you didn't notice, I just did that.  Were you getting tired towards the
end of it?  In fact, I did have some professors comment on it, but really it
was just more of an intellectual exercise for me.  The point I want to illustrate
is that if you add the semicolon to your grammatical repository, you can immediately
and easily add new and interesting variations to your sentence structures.  
</p>
        <p>
The semicolon can be used in place of a comma in large lists where you might otherwise
confuse a reader because, for instance, you have a list of lists (all of which use
commas themselves).  It can also be used--and this is the usage I find most valuable--to
separate two independent clauses that are closely related.  If you find that
confusing or too vague, just try using a semicolon the next time you go to use “,
and.”  
</p>
        <p>
To illustrate, the following sentence could be written like so:
</p>
        <p>
          <em>I went to the doctor yesterday, and the nurse was very nice.</em>
        </p>
        <p>
But you could also write it like this:
</p>
        <p>
          <em>I went to the doctor yesterday; the nurse was very nice.</em>
        </p>
        <p>
You can also scan some of the paragraphs above for other examples.  You may be
wondering, then, what the difference between a semicolon and a period (a.k.a., a full
stop) is.  The key thing to keep in mind is that a semicolon implies a closer
relationship between the two clauses than a period does, and as you read it, you should
pause for a shorter amount of time than you would with a full stop.
</p>
        <p>
I think you'll find that the semicolon does in fact help you to vary your sentence
structure more and even helps you to better express yourself; I know I have. 
Enjoy!
</p>
        <img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=06d16086-c4f8-4700-ae83-0a38efc22c2d" />
      </body>
      <title>The Much Misunderstood Semicolon</title>
      <guid isPermaLink="false">http://dotnettemplar.net/PermaLink,guid,06d16086-c4f8-4700-ae83-0a38efc22c2d.aspx</guid>
      <link>http://dotNetTemplar.Net/The+Much+Misunderstood+Semicolon.aspx</link>
      <pubDate>Tue, 07 Dec 2004 15:37:49 GMT</pubDate>
      <description>&lt;p&gt;
I just thought I'd blog briefly about the semicolon; I've been wanting to do it for
some time; it was in fact the first thing I intended to blog about in this category,
but I just haven't gotten around to it until now.&amp;nbsp; The nice thing about the semicolon
is that it is actually quite simple; there are no long lists of exceptions to rules,
and there are really only&amp;nbsp;two basic uses for it.
&lt;/p&gt;
&lt;p&gt;
In college, I was known for my excruciatingly long and difficult sentences; I suppose
I did this in order to seem more intellectual; that is, I figured if my sentences
were difficult to read, yet grammatically correct, my professors might be more inclined
to give me good grades--perhaps even comment on how impressive my sentence structures
were--because I managed to use almost every (but not necessarily every) grammatical
structure and punctuation within one sentence so that it would become as long as a
relatively long paragraph and still be one, single, grammatically correct&amp;nbsp;sentence,
assuming you consider the period to be the end of a sentence.
&lt;/p&gt;
&lt;p&gt;
In case you didn't notice, I just did that.&amp;nbsp; Were you getting tired towards the
end of it?&amp;nbsp; In fact, I did have some professors comment on it, but really it
was just more of an intellectual exercise for me.&amp;nbsp; The point I want to illustrate
is that if you add the semicolon to your grammatical repository, you can immediately
and easily add new and interesting variations to your sentence structures.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
The semicolon can be used in place of a comma in large lists where you might otherwise
confuse a reader because, for instance, you have a list of lists (all of which use
commas themselves).&amp;nbsp; It can also be used--and this is the usage I find most valuable--to
separate two independent clauses that are closely related.&amp;nbsp; If you find that
confusing or too vague, just try using a semicolon the next time you go to use &amp;#8220;,
and.&amp;#8221;&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
To illustrate, the following sentence could be written like so:
&lt;/p&gt;
&lt;p&gt;
&lt;em&gt;I went to the doctor yesterday, and the nurse was very nice.&lt;/em&gt;
&lt;/p&gt;
&lt;p&gt;
But you could also write it like this:
&lt;/p&gt;
&lt;p&gt;
&lt;em&gt;I went to the doctor yesterday; the nurse was very nice.&lt;/em&gt;
&lt;/p&gt;
&lt;p&gt;
You can also scan some of the paragraphs above for other examples.&amp;nbsp; You may be
wondering, then, what the difference between a semicolon and a period (a.k.a., a full
stop) is.&amp;nbsp; The key thing to keep in mind is that a semicolon implies a closer
relationship between the two clauses than a period does, and as you read it, you should
pause for a shorter amount of time than you would with a full stop.
&lt;/p&gt;
&lt;p&gt;
I think you'll find that the semicolon does in fact help you to vary your sentence
structure more and even helps you to better express yourself; I know I have.&amp;nbsp;
Enjoy!
&lt;/p&gt;
&lt;img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=06d16086-c4f8-4700-ae83-0a38efc22c2d" /&gt;</description>
      <comments>http://dotnettemplar.net/CommentView,guid,06d16086-c4f8-4700-ae83-0a38efc22c2d.aspx</comments>
      <category>Writing</category>
    </item>
    <item>
      <trackback:ping>http://dotnettemplar.net/Trackback.aspx?guid=ce1a770c-fc6d-495d-8685-22dd8eec134b</trackback:ping>
      <pingback:server>http://dotnettemplar.net/pingback.aspx</pingback:server>
      <pingback:target>http://dotnettemplar.net/PermaLink,guid,ce1a770c-fc6d-495d-8685-22dd8eec134b.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <wfw:comment>http://dotnettemplar.net/CommentView,guid,ce1a770c-fc6d-495d-8685-22dd8eec134b.aspx</wfw:comment>
      <wfw:commentRss>http://dotnettemplar.net/SyndicationService.asmx/GetEntryCommentsRss?guid=ce1a770c-fc6d-495d-8685-22dd8eec134b</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Okay, I just want to say this now, hopefully once and for all.  While I do try
to read through my blogs at least once, I hardly put them through any rigorous editing
process, so it is entirely possible that I'll let little grammar and possibly spelling
mistakes slip through the cracks.  Considering that these are more or less equivalents
of rough drafts, I don't really fault myself too much when this happens.  Because
this is a fairly informal medium, I don't feel compelled to edit them thoroughly either.
</p>
        <p>
Some may, in some weird way, construe my offering writing tips as an implication that
I personally never make a grammatical mistake.  Anyone who has written much knows
that this is never true of any writer.  So for all the smart alecs out there
who might notice these mistakes, please, for the sake of everyone, just overlook them
and don't bother commenting.  I'm writing in the hopes of helping people. 
If you already know everything there is to know about writing, you can just ignore
my blogging on the subject.  I know from experience that there are many
people who could benefit from the occasional tip or two on the subject.
</p>
        <img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=ce1a770c-fc6d-495d-8685-22dd8eec134b" />
      </body>
      <title>Blogging about Writing</title>
      <guid isPermaLink="false">http://dotnettemplar.net/PermaLink,guid,ce1a770c-fc6d-495d-8685-22dd8eec134b.aspx</guid>
      <link>http://dotNetTemplar.Net/Blogging+About+Writing.aspx</link>
      <pubDate>Wed, 24 Nov 2004 20:21:38 GMT</pubDate>
      <description>&lt;p&gt;
Okay, I just want to say this now, hopefully once and for all.&amp;nbsp; While I do try
to read through my blogs at least once, I hardly put them through any rigorous editing
process, so it is entirely possible that I'll let little grammar and possibly spelling
mistakes slip through the cracks.&amp;nbsp; Considering that these are more or less equivalents
of rough drafts, I don't really fault myself too much when this happens.&amp;nbsp; Because
this is a fairly informal medium, I don't feel compelled to edit them thoroughly either.
&lt;/p&gt;
&lt;p&gt;
Some may, in some weird way, construe my offering writing tips as an implication that
I personally never make a grammatical mistake.&amp;nbsp; Anyone who has written much knows
that this is never true of any writer.&amp;nbsp; So for all the smart alecs out there
who might notice these mistakes, please, for the sake of everyone, just overlook them
and don't bother commenting.&amp;nbsp; I'm writing in the hopes of helping people.&amp;nbsp;
If you already know everything there is to know about writing, you can just ignore
my blogging on the subject.&amp;nbsp; I know from experience that there are&amp;nbsp;many
people who could benefit from the occasional tip or two on the subject.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=ce1a770c-fc6d-495d-8685-22dd8eec134b" /&gt;</description>
      <comments>http://dotnettemplar.net/CommentView,guid,ce1a770c-fc6d-495d-8685-22dd8eec134b.aspx</comments>
      <category>Writing</category>
    </item>
    <item>
      <trackback:ping>http://dotnettemplar.net/Trackback.aspx?guid=ea8dfd0d-fb70-412e-97a5-ca48d48bce3d</trackback:ping>
      <pingback:server>http://dotnettemplar.net/pingback.aspx</pingback:server>
      <pingback:target>http://dotnettemplar.net/PermaLink,guid,ea8dfd0d-fb70-412e-97a5-ca48d48bce3d.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <wfw:comment>http://dotnettemplar.net/CommentView,guid,ea8dfd0d-fb70-412e-97a5-ca48d48bce3d.aspx</wfw:comment>
      <wfw:commentRss>http://dotnettemplar.net/SyndicationService.asmx/GetEntryCommentsRss?guid=ea8dfd0d-fb70-412e-97a5-ca48d48bce3d</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I'll endeavor to make this brief.  Per the suggestion of one of my readers, I
thought it might be a good idea to address the whole “you're“/“your”
issue.  Since he brought it up, I have to say that I have actually seen this
mistake fairly commonly in texts that I have edited, so it's probably good to mention
it.  And while I'm at it, I'll take out the “its“/“it's“
and “they're”/”their” issues as well, since they're the
same issues, more or less.  These are things that are sure to upset your editors
if you overlook them. 
</p>
        <p>
“You're” is a contraction of “you are.”  “It's”
is a contraction of “it is” or “it has.”  “They're”
is a contraction of “they are.”  The apostrophe (') indicates that
something's missing.  In the case of “you're” and “they're,” we're
cutting out the “a” in “are.”  In the case of “it's,”
we're either taking out the “i” in “is” or the “ha”
in “has.”  In all cases, you can see that we are squishing two
words together.  This is just a convenient way for us to represent how many English
speakers speak because we tend to slur things together to speak in a more fluid and
fast manner.  French is much worse about this sort of thing, but most of the
languages I've studied have their share of squished words. :)
</p>
        <p>
On the other hand, “your,” “their,” and “its”
are all <a href="http://webster.commnet.edu/grammar/possessives.htm">possessives</a>. 
Now if you go read that page, your head might hurt afterwards, but you should have
a fairly decent grip on the idea of what a possessive is if you don't already. 
The point here is not a lesson about possessives but rather to illustrate that these
three words are possessives, and you need to ensure you use them as such.  
</p>
        <p>
However, I don't think most people generally accidentally use “they're”
or “it's” when they mean to indicate the possessive.  Usually
the error is the opposite, i.e., they use “their” and “its”
to indicate their related contractions.  So, for instance, when they mean
to say “they are,” they might use “their”  or use “its”
when they really mean “it is.”  
</p>
        <p>
So if you have had this problem in the past, be sure to be extra careful when you
go to use the contracted forms of those verbs.  Remember, you are squishing two
words (to make a contracted verb), so you need the apostrophe to indicate that's what
you're up to, to tell us that you've taken something out.  If you don't remember
this, your editors will beg Zeus to strike you down in a flash of lightning. 
</p>
        <img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=ea8dfd0d-fb70-412e-97a5-ca48d48bce3d" />
      </body>
      <title>You're Going to Like Your Writing</title>
      <guid isPermaLink="false">http://dotnettemplar.net/PermaLink,guid,ea8dfd0d-fb70-412e-97a5-ca48d48bce3d.aspx</guid>
      <link>http://dotNetTemplar.Net/Youre+Going+To+Like+Your+Writing.aspx</link>
      <pubDate>Wed, 24 Nov 2004 13:29:40 GMT</pubDate>
      <description>&lt;p&gt;
I'll endeavor to make this brief.&amp;nbsp; Per the suggestion of one of my readers, I
thought it might be a good idea to address the whole &amp;#8220;you're&amp;#8220;/&amp;#8220;your&amp;#8221;
issue.&amp;nbsp; Since he brought it up, I have to say that I have actually seen this
mistake fairly commonly in texts that I have edited, so it's probably good to mention
it.&amp;nbsp; And while I'm at it, I'll take out the &amp;#8220;its&amp;#8220;/&amp;#8220;it's&amp;#8220;
and &amp;#8220;they're&amp;#8221;/&amp;#8221;their&amp;#8221;&amp;nbsp;issues as well, since they're the
same issues, more or less.&amp;nbsp; These are things that are sure to upset your editors
if you overlook them. 
&lt;/p&gt;
&lt;p&gt;
&amp;#8220;You're&amp;#8221; is a contraction of &amp;#8220;you are.&amp;#8221;&amp;nbsp; &amp;#8220;It's&amp;#8221;
is a contraction of &amp;#8220;it is&amp;#8221; or &amp;#8220;it has.&amp;#8221;&amp;nbsp; &amp;#8220;They're&amp;#8221;
is a contraction of &amp;#8220;they are.&amp;#8221;&amp;nbsp; The apostrophe (') indicates that
something's missing.&amp;nbsp; In the case of &amp;#8220;you're&amp;#8221; and &amp;#8220;they're,&amp;#8221;&amp;nbsp;we're
cutting out the &amp;#8220;a&amp;#8221; in &amp;#8220;are.&amp;#8221;&amp;nbsp; In the case of &amp;#8220;it's,&amp;#8221;
we're either taking out the &amp;#8220;i&amp;#8221; in &amp;#8220;is&amp;#8221; or the &amp;#8220;ha&amp;#8221;
in &amp;#8220;has.&amp;#8221;&amp;nbsp;&amp;nbsp;In all cases, you can see that we are squishing two
words together.&amp;nbsp; This is just a convenient way for us to represent how many English
speakers speak because we tend to slur things together to speak in a more fluid and
fast manner.&amp;nbsp; French is much worse about this sort of thing, but most of the
languages I've studied have their share of squished words. :)
&lt;/p&gt;
&lt;p&gt;
On the other hand, &amp;#8220;your,&amp;#8221; &amp;#8220;their,&amp;#8221; and &amp;#8220;its&amp;#8221;
are all &lt;a href="http://webster.commnet.edu/grammar/possessives.htm"&gt;possessives&lt;/a&gt;.&amp;nbsp;
Now if you go read that page, your head might hurt afterwards, but you should have
a fairly decent grip on the idea of what a possessive is if you don't already.&amp;nbsp;
The point here is not a lesson about possessives but rather to illustrate that these
three words are possessives, and you need to ensure you use them as such.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
However, I don't think most people generally accidentally use &amp;#8220;they're&amp;#8221;
or &amp;#8220;it's&amp;#8221;&amp;nbsp;when they mean to indicate the possessive.&amp;nbsp; Usually
the error is the opposite, i.e., they use &amp;#8220;their&amp;#8221; and &amp;#8220;its&amp;#8221;
to indicate their related&amp;nbsp;contractions.&amp;nbsp; So, for instance, when they mean
to say &amp;#8220;they are,&amp;#8221; they might use &amp;#8220;their&amp;#8221;&amp;nbsp; or use &amp;#8220;its&amp;#8221;
when they really mean &amp;#8220;it is.&amp;#8221;&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
So if you have had this problem in the past, be sure to be extra careful when you
go to use the contracted forms of those verbs.&amp;nbsp; Remember, you are squishing two
words (to make a contracted verb), so you need the apostrophe to indicate that's what
you're up to, to tell us that you've taken something out.&amp;nbsp; If you don't remember
this, your editors will beg Zeus to strike you down in a flash of lightning. 
&lt;/p&gt;
&lt;img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=ea8dfd0d-fb70-412e-97a5-ca48d48bce3d" /&gt;</description>
      <comments>http://dotnettemplar.net/CommentView,guid,ea8dfd0d-fb70-412e-97a5-ca48d48bce3d.aspx</comments>
      <category>Writing</category>
    </item>
    <item>
      <trackback:ping>http://dotnettemplar.net/Trackback.aspx?guid=40168f97-63cf-4af3-a274-323b07dad600</trackback:ping>
      <pingback:server>http://dotnettemplar.net/pingback.aspx</pingback:server>
      <pingback:target>http://dotnettemplar.net/PermaLink,guid,40168f97-63cf-4af3-a274-323b07dad600.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <wfw:comment>http://dotnettemplar.net/CommentView,guid,40168f97-63cf-4af3-a274-323b07dad600.aspx</wfw:comment>
      <wfw:commentRss>http://dotnettemplar.net/SyndicationService.asmx/GetEntryCommentsRss?guid=40168f97-63cf-4af3-a274-323b07dad600</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <title>When to Use "That," "Which" Can Help Understanding</title>
      <guid isPermaLink="false">http://dotnettemplar.net/PermaLink,guid,40168f97-63cf-4af3-a274-323b07dad600.aspx</guid>
      <link>http://dotNetTemplar.Net/When+To+Use+That+Which+Can+Help+Understanding.aspx</link>
      <pubDate>Thu, 18 Nov 2004 15:22:24 GMT</pubDate>
      <description>&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;font color=#000000&gt;Not long ago
I had a Finnish friend asking about what, if any, difference there is between &amp;#8220;that&amp;#8221;
and &amp;#8220;which.&amp;#8221;&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;Some people
think that the only difference is that &amp;#8220;which&amp;#8221; seems more formal, so when
they want to sound fancy, they use &amp;#8220;which&amp;#8221; but use &amp;#8220;that&amp;#8221;
in conversation.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;The truth is that most
native English speakers don't know and just assume they are perfectly interchangeable.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;Given
this fact alone, you can safely keep plodding along, using them interchangeably.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;
&lt;o:p&gt;
&lt;font color=#000000&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;font color=#000000&gt;However, if
you are a precise writer/speaker, you will want to know the difference.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;It
really is quite simple.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;In terms of basic
meaning, they are quite the same&amp;#8212;they both further qualify the idea being conveyed&amp;#8212;but
&amp;#8220;which,&amp;#8221; when properly used, implies that what follows is not integral
to the understanding of the idea being communicated.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;If
you use &amp;#8220;that,&amp;#8221; it means that you cannot really understand what is being
conveyed without that information.&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;
&lt;o:p&gt;
&lt;font color=#000000&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;font color=#000000&gt;For example:&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;i style="mso-bidi-font-style: normal"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;font color=#000000&gt;I
am typing on this keyboard, which just happens to be black.&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;&lt;/i&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;
&lt;o:p&gt;
&lt;font color=#000000&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;font color=#000000&gt;In this case,
you don&amp;#8217;t really need to know that the keyboard is black.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;It
is just supplemental information that I think you might want to know.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;The
critical information is that I am typing on the keyboard.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;
&lt;o:p&gt;
&lt;font color=#000000&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;font color=#000000&gt;On the other
hand, consider this:&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;
&lt;o:p&gt;
&lt;font color=#000000&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;i style="mso-bidi-font-style: normal"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;font color=#000000&gt;This
is the keyboard that I am typing on.&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;&lt;/i&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;
&lt;o:p&gt;
&lt;font color=#000000&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;font color=#000000&gt;In this case,
you really need to know the information &amp;#8220;that I am typing on&amp;#8221; because
otherwise I&amp;#8217;m not really conveying what I intend to convey, which is that I
am typing on this particular keyboard.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;If
I left off that clause, it would simply say &amp;#8220;This is the keyboard.&amp;#8221;&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;What
keyboard?&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;Why do you care?&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;You
need to know that it is the one I am typing on.&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;
&lt;o:p&gt;
&lt;font color=#000000&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;font color=#000000&gt;In grammatical
terms, we are talking about restrictive and non-restrictive subordinate clauses.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;Restrictive
clauses are those that convey information that is essential to understanding.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;Non-restrictive
clauses just supply extra information that is non-essential to the overall meaning
of the communication.&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;
&lt;o:p&gt;
&lt;font color=#000000&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;font color=#000000&gt;So the rule
of thumb is, if you can take out the subordinate clause and still get across what
you want to get across, use a comma followed by &amp;#8220;which.&amp;#8221;&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;If
your sentence loses essential meaning when you take the clause out, use &amp;#8220;that&amp;#8221;
without any commas.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;
&lt;o:p&gt;
&lt;font color=#000000&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;font color=#000000&gt;Having said
all that, there are times where I find that, for variation or for effect (because
people really do perceive &amp;#8220;which&amp;#8221; as more formal), I will choose to abuse
&amp;#8220;which&amp;#8221; in a restrictive clause.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;However,
I would never use &amp;#8220;that&amp;#8221; in a non-restrictive clause.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;See
the following example to get an idea of why this just doesn&amp;#8217;t do.&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;
&lt;o:p&gt;
&lt;font color=#000000&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;font color=#000000&gt;&lt;em&gt;This post
is about writing, that I like to talk about.&lt;o:p&gt;&lt;/o:p&gt;
&lt;/em&gt;&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;
&lt;o:p&gt;
&lt;font color=#000000&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;font color=#000000&gt;Now the alternative:&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;
&lt;o:p&gt;
&lt;font color=#000000&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;font color=#000000&gt;&lt;em&gt;This post
is about writing, which I like to talk about.&lt;o:p&gt;&lt;/o:p&gt;
&lt;/em&gt;&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;
&lt;o:p&gt;
&lt;font color=#000000&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;font color=#000000&gt;If you don&amp;#8217;t
see the difference, it&amp;#8217;s okay.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;I
just think that it sounds really strange, and heck, even Word&amp;#8217;s grammar checker
catches that one.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;If Word catches a grammar
error, it means that the error is really grievous or that Word is just confused.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;In
this case, I&amp;#8217;d go with that it is really bad.&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;
&lt;o:p&gt;
&lt;font color=#000000&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;
&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;font color=#000000&gt;Oh and I should
also note that we are only talking about the usage of &amp;#8220;that&amp;#8221; and &amp;#8220;which&amp;#8221;
where they introduce a subordinate clause.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;There
are of course other uses of these words not covered here.&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=40168f97-63cf-4af3-a274-323b07dad600" /&gt;</description>
      <comments>http://dotnettemplar.net/CommentView,guid,40168f97-63cf-4af3-a274-323b07dad600.aspx</comments>
      <category>Writing</category>
    </item>
    <item>
      <trackback:ping>http://dotnettemplar.net/Trackback.aspx?guid=7a56824a-7050-471a-80c2-fb8815d35bca</trackback:ping>
      <pingback:server>http://dotnettemplar.net/pingback.aspx</pingback:server>
      <pingback:target>http://dotnettemplar.net/PermaLink,guid,7a56824a-7050-471a-80c2-fb8815d35bca.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <wfw:comment>http://dotnettemplar.net/CommentView,guid,7a56824a-7050-471a-80c2-fb8815d35bca.aspx</wfw:comment>
      <wfw:commentRss>http://dotnettemplar.net/SyndicationService.asmx/GetEntryCommentsRss?guid=7a56824a-7050-471a-80c2-fb8815d35bca</wfw:commentRss>
      <slash:comments>3</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
This is the first in a series of tips that I've found to help me speak and write better
English over the years.  Simply put, learn another language.  Yep, that's
right.  Sounds a bit off the mark, but I have found that learning other languages
dramatically increases my understanding of my own language.  
</p>
        <p>
In fact, learning other languages helps to learn other languages, especially when
they're in the same language group (e.g., the so-called Romance langauges). 
Some people say learning German is hard, but I think it is one of the easiest languages
for an English-speaker to learn precisely because English has very strong Germanic
roots.  When speaking with and listening to my wife's family (who are native
German speakers), I can't tell you how many times I've been able to guess the right
word or understand the meaning of a word simply because it is so like English.
</p>
        <p>
So, if you've always wanted to pick up Spanish to watch Sabado Gigante, if you want
to learn Latin to read medieval philosophy, or if you want to learn Gaelic so you
can sing proper mouth music, just do it.  There are tons of self-teaching
resources to learn other languages, even dying ones like Scottish Gaelic.  
</p>
        <p>
Even if you never speak it fluently, or even if you don't pronounce it correctly,
learning another language will give you a stronger grasp over your own.  I'd
recommend Latin and German especially for this purpose, but French (thanks to the
Normans) will also help a lot in this respect.  But again, any language will
do because it will make you more aware of the structure and peculiarities of English.
</p>
        <img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=7a56824a-7050-471a-80c2-fb8815d35bca" />
      </body>
      <title>How to Write Better English</title>
      <guid isPermaLink="false">http://dotnettemplar.net/PermaLink,guid,7a56824a-7050-471a-80c2-fb8815d35bca.aspx</guid>
      <link>http://dotNetTemplar.Net/How+To+Write+Better+English.aspx</link>
      <pubDate>Sun, 07 Nov 2004 21:28:12 GMT</pubDate>
      <description>&lt;p&gt;
This is the first in a series of tips that I've found to help me speak and write better
English over the years.&amp;nbsp; Simply put, learn another language.&amp;nbsp; Yep, that's
right.&amp;nbsp; Sounds a bit off the mark, but I have found that learning other languages
dramatically increases my understanding of my own language.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
In fact, learning other languages helps to learn other languages, especially when
they're in the same language group (e.g., the so-called Romance langauges).&amp;nbsp;
Some people say learning German is hard, but I think it is one of the easiest languages
for an English-speaker to learn precisely because English has very strong Germanic
roots.&amp;nbsp; When speaking with and listening to my wife's family (who are native
German speakers), I can't tell you how many times I've been able to guess the right
word or understand the meaning of a word simply because it is so like English.
&lt;/p&gt;
&lt;p&gt;
So, if you've always wanted to pick up Spanish to watch Sabado Gigante, if you want
to learn Latin to read medieval philosophy, or if you want to learn Gaelic so you
can sing proper mouth music,&amp;nbsp;just do it.&amp;nbsp; There are tons of self-teaching
resources to learn other languages, even dying ones like Scottish Gaelic.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
Even if you never speak it fluently, or even if you don't pronounce it correctly,
learning another language will give you a stronger grasp over your own.&amp;nbsp; I'd
recommend Latin and German especially for this purpose, but French (thanks to the
Normans) will also help a lot in this respect.&amp;nbsp; But again, any language will
do because it will make you more aware of the structure and peculiarities of English.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=7a56824a-7050-471a-80c2-fb8815d35bca" /&gt;</description>
      <comments>http://dotnettemplar.net/CommentView,guid,7a56824a-7050-471a-80c2-fb8815d35bca.aspx</comments>
      <category>Writing</category>
    </item>
    <item>
      <trackback:ping>http://dotnettemplar.net/Trackback.aspx?guid=d98249f1-a16f-4cec-b40d-5882cad47c48</trackback:ping>
      <pingback:server>http://dotnettemplar.net/pingback.aspx</pingback:server>
      <pingback:target>http://dotnettemplar.net/PermaLink,guid,d98249f1-a16f-4cec-b40d-5882cad47c48.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <wfw:comment>http://dotnettemplar.net/CommentView,guid,d98249f1-a16f-4cec-b40d-5882cad47c48.aspx</wfw:comment>
      <wfw:commentRss>http://dotnettemplar.net/SyndicationService.asmx/GetEntryCommentsRss?guid=d98249f1-a16f-4cec-b40d-5882cad47c48</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
For the last few months, since I was appointed to be the editor in chief of <a href="http://aspalliance.com/">ASPAlliance</a>,
I have been tasked with increasing the quality of content for that company. 
The editing team is, at this point, voluntary, so striking a balance between publishing
in a timely manner and ensuring quality has been difficult.  My academic experience
and general detailed-oriented nature equips me for a job like this, and even though
I've been exposed to all manner of writing (as a regular “user,”
i.e., reader), I'd not until then been tasked with editing as a job.  I mention
this to give some background as to where these tips are coming from.  I've also
written a fair amount, academically, dialectically, and technically, so take my tips
within that context.
</p>
        <p>
First off, if you were one of those people who never cared about spelling or grammar
in school, you are more than likely not suited to be a writer.  In my opinion,
a good writer needs to be concerned with these things.  This is not to say there
are no exceptions or that a writer must be perfect (Lord knows I'm not), but I think
we all are aware that some people just don't care.
</p>
        <p>
Ultimately, there is nothing inherently good about a particular grammar or spelling
specification.  They are simply conventions that have been worked out over, especially,
the last five hundred years or so to make written communication more effective. 
Yet that is precisely why they're important.  
</p>
        <p>
If you want to write well, you should like to write.  You should be fascinated
by the various combinations of words and the various meanings the same combinations
of words can have given different punctuation and word order.  In order to be
fascinated by these, you have to be familiar with them, so ultimately, you need to
care about grammar and spelling because these facilitate written communication.
</p>
        <p>
I can tell you that, as an editor, if someone clearly does not care about these things,
that is, if the text is wrought with errors, which can be seen rather quickly, I will
not bother editing it and will reject it (for publication).  While I try to be
understanding, especially of those for whom English is not their native tongue, there
is a point at which editing becomes a process of rewriting, and I am not interested
in doing that.  So if you want to write, you need to be able to write with relatively
few errors.  If you don't know the difference, you probably shouldn't write until
you read a book or take a class or two on writing composition (as the classes are
commonly referred to).
</p>
        <p>
As a technical editor, I also expect my authors to have virtually error-free code. 
If there's a sample project, I expect it to compile with no problems.  If there
are code snippets, I expect to be able to drop them into, e.g., Visual Studio, (with
perhaps a few additions) and get them to compile.  I recently withdrew from editing
a book because the author's code samples were so poor that editing became far too
time-consuming to justify.
</p>
        <p>
These two things--taking the time to learn to write English with few errors and taking
the time to ensure your code is accurate--go a very, very long with me (as I imagine
they would with any editor).  If you want to get started (and succeed) in
the technical writing industry, take these to heart.
</p>
        <p>
If you feel that you can do these things and want to publish something soon, feel
free to <a href="mailto:ambrose@aspalliance.com">contact me</a> with a writing sample. 
We are always looking for new authors at the <a href="http://aspalliance.com/">ASPAlliance</a>, and
we are actively working to improve both the content and general user experience of
the site.  Even if you don't want to write but have useful suggestions about
the site, feel free to send that feedback to me.
</p>
        <p>
With this post, I'm inaugurating a new “Writing” category on my blog. 
I plan to post little grammar and stylistic tips to help anyone who is interested. 
Certainly, on some of these points, there are differing opinions in the academic and
professional fields, based on the style used and even the lack of clear consensus,
but I can assure you that the tips won't hurt you any.  Just be sure, if you
are writing in the academic arena, to double-check your style guide, as these finer
points are often used as pedantic shibboleths.
</p>
        <img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=d98249f1-a16f-4cec-b40d-5882cad47c48" />
      </body>
      <title>How to Get Into Technical Writing</title>
      <guid isPermaLink="false">http://dotnettemplar.net/PermaLink,guid,d98249f1-a16f-4cec-b40d-5882cad47c48.aspx</guid>
      <link>http://dotNetTemplar.Net/How+To+Get+Into+Technical+Writing.aspx</link>
      <pubDate>Tue, 02 Nov 2004 18:58:49 GMT</pubDate>
      <description>&lt;p&gt;
For the last few months, since I was appointed to be&amp;nbsp;the editor in chief of &lt;a href="http://aspalliance.com/"&gt;ASPAlliance&lt;/a&gt;,
I have been tasked with increasing the quality of content for that company.&amp;nbsp;
The editing team is, at this point, voluntary, so striking a balance between publishing
in a timely manner and ensuring quality has been difficult.&amp;nbsp; My academic experience
and general detailed-oriented nature equips me for a job like this, and even though
I've been exposed to all manner of&amp;nbsp;writing (as a regular &amp;#8220;user,&amp;#8221;
i.e., reader), I'd not until then been tasked with editing as a job.&amp;nbsp; I mention
this to give some background as to where these tips are coming from.&amp;nbsp; I've also
written a fair amount, academically, dialectically, and technically, so take my tips
within that context.
&lt;/p&gt;
&lt;p&gt;
First off, if you were one of those people who never cared about spelling or grammar
in school, you are more than likely not suited to be a writer.&amp;nbsp; In my opinion,
a good writer needs to be concerned with these things.&amp;nbsp; This is not to say there
are no exceptions or that a writer must be perfect (Lord knows I'm not), but I think
we all are aware that some people just don't care.
&lt;/p&gt;
&lt;p&gt;
Ultimately, there is nothing inherently good about a particular grammar or spelling
specification.&amp;nbsp; They are simply conventions that have been worked out over, especially,
the last five hundred years or so to make written communication more effective.&amp;nbsp;
Yet that is precisely why they're important.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
If you want to write well, you should like to write.&amp;nbsp; You should be fascinated
by the various combinations of words and the various meanings the same combinations
of words can have given different punctuation and word order.&amp;nbsp; In order to be
fascinated by these, you have to be familiar with them, so ultimately, you need to
care about grammar and spelling because these facilitate written communication.
&lt;/p&gt;
&lt;p&gt;
I can tell you that, as an editor, if someone clearly does not care about these things,
that is, if the text is wrought with errors, which can be seen rather quickly, I will
not bother editing it and will reject it (for publication).&amp;nbsp; While I try to be
understanding, especially of those for whom English is not their native tongue, there
is a point at which editing becomes a process of rewriting, and I am not interested
in doing that.&amp;nbsp; So if you want to write, you need to be able to write with relatively
few errors.&amp;nbsp; If you don't know the difference, you probably shouldn't write until
you read a book or take a class or two on writing composition (as the classes are
commonly referred to).
&lt;/p&gt;
&lt;p&gt;
As a technical editor, I also expect my authors to have virtually error-free code.&amp;nbsp;
If there's a sample project, I expect it to compile with no problems.&amp;nbsp; If there
are code snippets, I expect to be able to drop them into,&amp;nbsp;e.g., Visual Studio,&amp;nbsp;(with
perhaps a few additions) and get them to compile.&amp;nbsp; I recently withdrew from editing
a book because the author's code samples were so poor that editing became far too
time-consuming to justify.
&lt;/p&gt;
&lt;p&gt;
These two things--taking the time to learn to write English with few errors and taking
the time to ensure your code is accurate--go a very, very long with me (as I imagine
they would with any editor).&amp;nbsp; If you want to get started (and succeed)&amp;nbsp;in
the technical writing industry, take these to heart.
&lt;/p&gt;
&lt;p&gt;
If you feel that you can do these things and want to publish something soon, feel
free to &lt;a href="mailto:ambrose@aspalliance.com"&gt;contact me&lt;/a&gt; with a writing sample.&amp;nbsp;
We are always looking for new authors at the &lt;a href="http://aspalliance.com/"&gt;ASPAlliance&lt;/a&gt;,&amp;nbsp;and
we are actively working to improve both the content and general user experience of
the site.&amp;nbsp;&amp;nbsp;Even if you don't want to write but have useful suggestions about
the site, feel free to send that feedback to me.
&lt;/p&gt;
&lt;p&gt;
With this post, I'm inaugurating a new &amp;#8220;Writing&amp;#8221;&amp;nbsp;category on my blog.&amp;nbsp;
I plan to post little grammar and stylistic&amp;nbsp;tips to help anyone who is interested.&amp;nbsp;
Certainly, on some of these points, there are differing opinions in the academic and
professional fields, based on the style used and even the lack of clear consensus,
but I can assure you that the tips won't hurt you any.&amp;nbsp; Just be sure, if you
are writing in the academic arena, to double-check your style guide, as these finer
points are often used as pedantic shibboleths.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://dotnettemplar.net/aggbug.ashx?id=d98249f1-a16f-4cec-b40d-5882cad47c48" /&gt;</description>
      <comments>http://dotnettemplar.net/CommentView,guid,d98249f1-a16f-4cec-b40d-5882cad47c48.aspx</comments>
      <category>Writing</category>
    </item>
  </channel>
</rss>