<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Snipplr</title>
    <description>Recent snippets posted on Snipplr.com</description>
    <link>https://snipplr.com/</link>
    <lastBuildDate>Tue, 09 Jun 2026 08:48:59 +0000</lastBuildDate>
    <item>
      <title>(C#) Simple CSV Writer - hoffstein</title>
      <link>https://snipplr.com/view/41517/simple-csv-writer</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 05 Oct 2010 07:19:51 UTC</pubDate>
      <guid>https://snipplr.com/view/41517/simple-csv-writer</guid>
    </item>
    <item>
      <title>(C#) C# Extension Method To Add ForEach To Any IEnumerable - hoffstein</title>
      <link>https://snipplr.com/view/10554/c-extension-method-to-add-foreach-to-any-ienumerable</link>
      <description>&lt;p&gt;This will allow you to use the LINQ ForEach method on any IEnumerable.&lt;/p&gt;</description>
      <pubDate>Wed, 17 Dec 2008 11:34:47 UTC</pubDate>
      <guid>https://snipplr.com/view/10554/c-extension-method-to-add-foreach-to-any-ienumerable</guid>
    </item>
    <item>
      <title>(Bash) Create patch file - hoffstein</title>
      <link>https://snipplr.com/view/10331/create-patch-file</link>
      <description>&lt;p&gt;Patches are created using the diff program. When making patches, please use the -u option, or if your diff doesn't support it, -c. Ordinary (context-free) diffs are notoriously prone to errors, since line numbers tend to change when others make changes to the same source file.&lt;/p&gt;</description>
      <pubDate>Mon, 08 Dec 2008 11:31:06 UTC</pubDate>
      <guid>https://snipplr.com/view/10331/create-patch-file</guid>
    </item>
    <item>
      <title>(C#) C# Get Enum Members - hoffstein</title>
      <link>https://snipplr.com/view/10188/c-get-enum-members</link>
      <description>&lt;p&gt;Retrieves an array of strings corresponding to members of the given enum.  Useful for looping through them at runtime.&lt;/p&gt;</description>
      <pubDate>Mon, 01 Dec 2008 16:34:59 UTC</pubDate>
      <guid>https://snipplr.com/view/10188/c-get-enum-members</guid>
    </item>
    <item>
      <title>(Other) Vim display all syntax highlighting groups - hoffstein</title>
      <link>https://snipplr.com/view/10186/vim-display-all-syntax-highlighting-groups</link>
      <description>&lt;p&gt;This will open a new window containing all highlight group names, displayed&#13;
in their own color.  It is very useful when developing a new color scheme.&lt;/p&gt;</description>
      <pubDate>Mon, 01 Dec 2008 09:48:53 UTC</pubDate>
      <guid>https://snipplr.com/view/10186/vim-display-all-syntax-highlighting-groups</guid>
    </item>
    <item>
      <title>(DOS Batch) SQL Server Find Differences Between Two Tables - hoffstein</title>
      <link>https://snipplr.com/view/10035/sql-server-find-differences-between-two-tables</link>
      <description>&lt;p&gt;The TableDiff utility comes with SQL Server 2005 and can report differences on schema and data. The most popular feature of TableDiff is the fact that it can generate a script that you can run on the destination that will reconcile differences between the tables.&#13;
&#13;
Original source was a TechNet article called [Top 10 Hidden Gems In SQL Server 2005][1].&#13;
&#13;
[1]: http://www.microsoft.com/technet/prodtechnol/sql/bestpractice/gems-top-10.mspx "Top 10 Hidden Gems in SQL Server 2005"&lt;/p&gt;</description>
      <pubDate>Tue, 25 Nov 2008 11:20:20 UTC</pubDate>
      <guid>https://snipplr.com/view/10035/sql-server-find-differences-between-two-tables</guid>
    </item>
    <item>
      <title>(Other) Vim Delete All Trailing Whitespace - hoffstein</title>
      <link>https://snipplr.com/view/9718/vim-delete-all-trailing-whitespace</link>
      <description>&lt;p&gt;This command will remove any trailing whitespace for all lines in the current buffer.&lt;/p&gt;</description>
      <pubDate>Thu, 13 Nov 2008 15:36:21 UTC</pubDate>
      <guid>https://snipplr.com/view/9718/vim-delete-all-trailing-whitespace</guid>
    </item>
    <item>
      <title>(DOS Batch) DOS command to run all SQL scripts in a path - hoffstein</title>
      <link>https://snipplr.com/view/9717/dos-command-to-run-all-sql-scripts-in-a-path</link>
      <description>&lt;p&gt;This assumes that you have sqlcmd (comes with SQL Server client tools) installed and wish to execute every file ending in .sql within the given directory against the specified server and database using Windows Authentication.&lt;/p&gt;</description>
      <pubDate>Thu, 13 Nov 2008 14:20:50 UTC</pubDate>
      <guid>https://snipplr.com/view/9717/dos-command-to-run-all-sql-scripts-in-a-path</guid>
    </item>
    <item>
      <title>(Regular Expression) Regex for matching floating point number - hoffstein</title>
      <link>https://snipplr.com/view/9606/regex-for-matching-floating-point-number</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 10 Nov 2008 13:19:55 UTC</pubDate>
      <guid>https://snipplr.com/view/9606/regex-for-matching-floating-point-number</guid>
    </item>
    <item>
      <title>(DOS Batch) Create symbolic link in Vista - hoffstein</title>
      <link>https://snipplr.com/view/9512/create-symbolic-link-in-vista</link>
      <description>&lt;p&gt;The mklink command is used to create a symbolic link. It has the following command line syntax:&#13;
&#13;
    mklink [[/D] | [/H] | [/J]] link target&#13;
&#13;
* /D â€“ Creates a directory symbolic link. Default is a file symbolic link.&#13;
* /H â€“ Creates a hard link instead of a symbolic link.&#13;
* /J â€“ Creates a Directory Junction.&#13;
* link â€“ Specifies the new symbolic link name.&#13;
* target â€“ Specifies the path (relative or absolute) that the new link refers to.&lt;/p&gt;</description>
      <pubDate>Wed, 05 Nov 2008 22:58:19 UTC</pubDate>
      <guid>https://snipplr.com/view/9512/create-symbolic-link-in-vista</guid>
    </item>
    <item>
      <title>(DOS Batch) Open Windows Explorer in current directory - hoffstein</title>
      <link>https://snipplr.com/view/9501/open-windows-explorer-in-current-directory</link>
      <description>&lt;p&gt;When executed from a DOS prompt, this command will launch a new Windows Explorer window in the current directory.&lt;/p&gt;</description>
      <pubDate>Wed, 05 Nov 2008 10:02:10 UTC</pubDate>
      <guid>https://snipplr.com/view/9501/open-windows-explorer-in-current-directory</guid>
    </item>
    <item>
      <title>(Other) SQL Server 2005 data types - hoffstein</title>
      <link>https://snipplr.com/view/9487/sql-server-2005-data-types</link>
      <description>&lt;p&gt;## Exact numerics&#13;
&#13;
&lt;table&gt;&#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      &lt;b&gt;Type &lt;/b&gt;&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      &lt;b&gt;From &lt;/b&gt;&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      &lt;b&gt;To &lt;/b&gt;&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      bigint &#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      -9,223,372,036,854,775,808 &#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      9,223,372,036,854,775,807 &#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      int &#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      -2,147,483,648 &#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      2,147,483,647 &#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      smallint &#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      -32,768 &#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      32,767 &#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      tinyint &#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      255 &#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      bit &#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      1 &#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      decimal &#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      -10^38 +1 &#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      10^38 â€“1 &#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      numeric &#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      -10^38 +1 &#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      10^38 â€“1 &#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      money &#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      -922,337,203,685,477.5808 &#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      +922,337,203,685,477.5807 &#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      smallmoney &#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      -214,748.3648 &#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      +214,748.3647 &#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
&lt;/table&gt;&#13;
&#13;
numeric&lt;span&gt; and &lt;/span&gt; decimal&lt;span&gt; are Fixed precision and scale data types and are functionally equivalent.&lt;/span&gt;&#13;
## Approximate numerics&#13;
&#13;
&lt;table&gt;&#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      &lt;b&gt;Type&lt;/b&gt;&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      &lt;b&gt;From&lt;/b&gt;&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      &lt;b&gt;To&lt;/b&gt;&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      float&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      -1.79E + 308&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      1.79E + 308&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      real&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      -3.40E + 38&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      3.40E + 38&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
&lt;/table&gt;&#13;
&#13;
 &#13;
&#13;
## datetime and smalldatetime&#13;
&#13;
&lt;table&gt;&#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      &lt;b&gt;Type&lt;/b&gt;&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      &lt;b&gt; From&lt;/b&gt;&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      &lt;b&gt;To&lt;/b&gt;&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      datetime (3.33 milliseconds accuracy)&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      Jan 1, 1753&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      Dec 31, 9999&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      smalldatetime (1 minute accuracy)&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      Jan 1, 1900&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      Jun 6, 2079&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
&lt;/table&gt;&#13;
&#13;
 &#13;
## Character Strings&#13;
&#13;
&lt;table&gt;&#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      &lt;b&gt;Type&lt;/b&gt;&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      &lt;b&gt;Description&lt;/b&gt;&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      char&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      Fixed-length non-Unicode character data with a maximum length of 8,000 characters.&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      varchar&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      Variable-length non-Unicode data with a maximum of 8,000 characters.&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      varchar(max)&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      Variable-length non-Unicode data with a maximum length of 2&lt;sup&gt;31&lt;/sup&gt; characters (&lt;b&gt;SQL Server 2005 only&lt;/b&gt;).&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      text&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      Variable-length non-Unicode data with a maximum length of 2,147,483,647 characters.&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
&lt;/table&gt;&#13;
&#13;
 &#13;
## Unicode Character Strings&#13;
&#13;
&lt;table&gt;&#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      &lt;b&gt;Type&lt;/b&gt;&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      &lt;b&gt;Description&lt;/b&gt;&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      nchar&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      Fixed-length Unicode data with a maximum length of 4,000 characters.&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      nvarchar&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      Variable-length Unicode data with a maximum length of 4,000 characters.&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      nvarchar(max)&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      Variable-length Unicode data with a maximum length of 2&lt;sup&gt;30&lt;/sup&gt; characters (&lt;b&gt;SQL Server 2005 only&lt;/b&gt;).&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      ntext&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      Variable-length Unicode data with a maximum length of 1,073,741,823 characters.&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
&lt;/table&gt;&#13;
&#13;
 &#13;
## Binary Strings&#13;
&#13;
&#13;
&lt;table&gt;&#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      &lt;b&gt;Type&lt;/b&gt;&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      &lt;b&gt;Description&lt;/b&gt;&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      binary&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      Fixed-length binary data with a maximum length of 8,000 bytes.&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      varbinary&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      Variable-length binary data with a maximum length of 8,000 bytes.&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      varbinary(max)&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      Variable-length binary data with a maximum length of 2&lt;sup&gt;31&lt;/sup&gt; bytes (&lt;b&gt;SQL Server 2005 only&lt;/b&gt;).&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
  &#13;
  &lt;tr&gt;&#13;
    &lt;td&gt;&#13;
      image&#13;
    &lt;/td&gt;&#13;
    &#13;
    &lt;td&gt;&#13;
      Variable-length binary data with a maximum length of 2,147,483,647 bytes.&#13;
    &lt;/td&gt;&#13;
  &lt;/tr&gt;&#13;
&lt;/table&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 04 Nov 2008 15:07:09 UTC</pubDate>
      <guid>https://snipplr.com/view/9487/sql-server-2005-data-types</guid>
    </item>
    <item>
      <title>(Bash) Grep to find files in a path containing a pattern - hoffstein</title>
      <link>https://snipplr.com/view/9484/grep-to-find-files-in-a-path-containing-a-pattern</link>
      <description>&lt;p&gt;This will return all files in the current directory (and all subdirectories) containing "MyPattern" (replace with any regex), ignoring case-sensitivity.&lt;/p&gt;</description>
      <pubDate>Tue, 04 Nov 2008 10:31:55 UTC</pubDate>
      <guid>https://snipplr.com/view/9484/grep-to-find-files-in-a-path-containing-a-pattern</guid>
    </item>
    <item>
      <title>(Visual Basic) SSRS Color Every Other Row In Table - hoffstein</title>
      <link>https://snipplr.com/view/9468/ssrs-color-every-other-row-in-table</link>
      <description>&lt;p&gt;Set the BackgroundColor property to the following expression.&lt;/p&gt;</description>
      <pubDate>Mon, 03 Nov 2008 17:20:00 UTC</pubDate>
      <guid>https://snipplr.com/view/9468/ssrs-color-every-other-row-in-table</guid>
    </item>
    <item>
      <title>(DOS Batch) Remove Seapine Surround SCM bindings - hoffstein</title>
      <link>https://snipplr.com/view/9407/remove-seapine-surround-scm-bindings</link>
      <description>&lt;p&gt;These commands will remove Seapine Surround bindings from a directory (and all its subdirectories).  It will also remove the read-only property from all files as well as bindings to Visual Studio source control integration.&lt;/p&gt;</description>
      <pubDate>Fri, 31 Oct 2008 12:55:04 UTC</pubDate>
      <guid>https://snipplr.com/view/9407/remove-seapine-surround-scm-bindings</guid>
    </item>
    <item>
      <title>(DOS Batch) Recursively delete files in a directory - hoffstein</title>
      <link>https://snipplr.com/view/9405/recursively-delete-files-in-a-directory</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 31 Oct 2008 11:52:04 UTC</pubDate>
      <guid>https://snipplr.com/view/9405/recursively-delete-files-in-a-directory</guid>
    </item>
    <item>
      <title>(Other) Vim Delete All Blank Lines - hoffstein</title>
      <link>https://snipplr.com/view/9383/vim-delete-all-blank-lines</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 30 Oct 2008 14:23:14 UTC</pubDate>
      <guid>https://snipplr.com/view/9383/vim-delete-all-blank-lines</guid>
    </item>
    <item>
      <title>(Other) TSQL snippets for snippetsEmu - hoffstein</title>
      <link>https://snipplr.com/view/9377/tsql-snippets-for-snippetsemu</link>
      <description>&lt;p&gt;These snippets can be used with TSQL files (assuming .sql extension) by saving the below code to vimfiles/after/ftplugin/sql_snippets.vim.&#13;
&#13;
* **$proc** - creates the skeleton for a TSQL stored procedure, including dropping the old procedure if it already exists.&#13;
* **$func** - creates the skeleton for a TSQL user-defined function (scalar), including dropping the old function if it already exists.&#13;
* **$view** - creates the skeleton for a TSQL view, including dropping the old view if it already exists.&#13;
* **$table** - creates the skeleton for a TSQL table, including dropping the old table if it already exists.&#13;
* **$sum** - creates a TSQL SUM statement using the specified field and creates an alias to preserve the field name.&#13;
* **$vc** - creates a varchar definition using the specified size.&#13;
* **$c** - creates a char definition using the specified size.&#13;
* **$d** - creates a decimal definition using the specified size and precision.&#13;
* **$tv** - creates a table variable definition.&#13;
* **$tt** - creates a temp table definition.&lt;/p&gt;</description>
      <pubDate>Thu, 30 Oct 2008 09:47:52 UTC</pubDate>
      <guid>https://snipplr.com/view/9377/tsql-snippets-for-snippetsemu</guid>
    </item>
    <item>
      <title>(Other) Vim convert tabs to spaces - hoffstein</title>
      <link>https://snipplr.com/view/9218/vim-convert-tabs-to-spaces</link>
      <description>&lt;p&gt;This will force all tabs in the current buffer to be converted to spaces.&lt;/p&gt;</description>
      <pubDate>Thu, 23 Oct 2008 16:18:02 UTC</pubDate>
      <guid>https://snipplr.com/view/9218/vim-convert-tabs-to-spaces</guid>
    </item>
    <item>
      <title>(C#) LINQ Conditional Sum - hoffstein</title>
      <link>https://snipplr.com/view/9216/linq-conditional-sum</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 23 Oct 2008 14:43:40 UTC</pubDate>
      <guid>https://snipplr.com/view/9216/linq-conditional-sum</guid>
    </item>
    <item>
      <title>(C#) LINQ Conditional Count - hoffstein</title>
      <link>https://snipplr.com/view/9215/linq-conditional-count</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 23 Oct 2008 14:38:17 UTC</pubDate>
      <guid>https://snipplr.com/view/9215/linq-conditional-count</guid>
    </item>
    <item>
      <title>(DOS Batch) Enable FullTrust on a network share - hoffstein</title>
      <link>https://snipplr.com/view/9010/enable-fulltrust-on-a-network-share</link>
      <description>&lt;p&gt;Since network shares by default only get LocalIntranet permissions, it's relatively common to want to use CasPol to fully trust some shares that you control and know are safe.  &#13;
&#13;
To trust everything on the share \\ShawnFa-Srv\Tools, use the command below.&lt;/p&gt;</description>
      <pubDate>Tue, 14 Oct 2008 16:15:02 UTC</pubDate>
      <guid>https://snipplr.com/view/9010/enable-fulltrust-on-a-network-share</guid>
    </item>
    <item>
      <title>(SQL) TSQL keyword search - hoffstein</title>
      <link>https://snipplr.com/view/9009/tsql-keyword-search</link>
      <description>&lt;p&gt;Searches all stored procedures and functions for a given keyword.&lt;/p&gt;</description>
      <pubDate>Tue, 14 Oct 2008 15:59:59 UTC</pubDate>
      <guid>https://snipplr.com/view/9009/tsql-keyword-search</guid>
    </item>
    <item>
      <title>(SQL) TSQL last second of day - hoffstein</title>
      <link>https://snipplr.com/view/9008/tsql-last-second-of-day</link>
      <description>&lt;p&gt;Returns the last second of the day for a given datetime value (@date).&lt;/p&gt;</description>
      <pubDate>Tue, 14 Oct 2008 15:57:06 UTC</pubDate>
      <guid>https://snipplr.com/view/9008/tsql-last-second-of-day</guid>
    </item>
    <item>
      <title>(SQL) TSQL truncate time - hoffstein</title>
      <link>https://snipplr.com/view/9007/tsql-truncate-time</link>
      <description>&lt;p&gt;Returns the date associated with a given datetime value (@date).&lt;/p&gt;</description>
      <pubDate>Tue, 14 Oct 2008 15:54:26 UTC</pubDate>
      <guid>https://snipplr.com/view/9007/tsql-truncate-time</guid>
    </item>
    <item>
      <title>(SQL) TSQL delete function if it already exists - hoffstein</title>
      <link>https://snipplr.com/view/9006/tsql-delete-function-if-it-already-exists</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 14 Oct 2008 13:56:22 UTC</pubDate>
      <guid>https://snipplr.com/view/9006/tsql-delete-function-if-it-already-exists</guid>
    </item>
    <item>
      <title>(SQL) TSQL delete proc if it already exists - hoffstein</title>
      <link>https://snipplr.com/view/9005/tsql-delete-proc-if-it-already-exists</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 14 Oct 2008 13:55:21 UTC</pubDate>
      <guid>https://snipplr.com/view/9005/tsql-delete-proc-if-it-already-exists</guid>
    </item>
    <item>
      <title>(SQL) TSQL delete table if it already exists - hoffstein</title>
      <link>https://snipplr.com/view/9004/tsql-delete-table-if-it-already-exists</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 14 Oct 2008 13:52:30 UTC</pubDate>
      <guid>https://snipplr.com/view/9004/tsql-delete-table-if-it-already-exists</guid>
    </item>
    <item>
      <title>(SQL) TSQL delete view if it already exists - hoffstein</title>
      <link>https://snipplr.com/view/9003/tsql-delete-view-if-it-already-exists</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 14 Oct 2008 13:49:12 UTC</pubDate>
      <guid>https://snipplr.com/view/9003/tsql-delete-view-if-it-already-exists</guid>
    </item>
    <item>
      <title>(Other) Vim command line history - hoffstein</title>
      <link>https://snipplr.com/view/9001/vim-command-line-history</link>
      <description>&lt;p&gt;Want to see the ex commands you've executed as of late? Easy, just type q: from normal mode to open your command-line history. From the command-line history window, you can yank commands or execute them as needed. To go back to normal mode type :q. You can also enter command-line history mode from ex mode by typing ctrl-f.&lt;/p&gt;</description>
      <pubDate>Tue, 14 Oct 2008 13:17:49 UTC</pubDate>
      <guid>https://snipplr.com/view/9001/vim-command-line-history</guid>
    </item>
    <item>
      <title>(Other) Repeat last visual selection - hoffstein</title>
      <link>https://snipplr.com/view/7762/repeat-last-visual-selection</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 07 Aug 2008 13:45:44 UTC</pubDate>
      <guid>https://snipplr.com/view/7762/repeat-last-visual-selection</guid>
    </item>
    <item>
      <title>(Other) Repeat last Ex command - hoffstein</title>
      <link>https://snipplr.com/view/7607/repeat-last-ex-command</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 30 Jul 2008 15:01:36 UTC</pubDate>
      <guid>https://snipplr.com/view/7607/repeat-last-ex-command</guid>
    </item>
    <item>
      <title>(Regular Expression) Regex for keeping first word in line - hoffstein</title>
      <link>https://snipplr.com/view/7605/regex-for-keeping-first-word-in-line</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 30 Jul 2008 14:08:54 UTC</pubDate>
      <guid>https://snipplr.com/view/7605/regex-for-keeping-first-word-in-line</guid>
    </item>
  </channel>
</rss>
