<?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>Mon, 06 Apr 2026 15:30:16 +0000</lastBuildDate>
    <item>
      <title>(C#) Array ConvertAll with Lambda - rengber</title>
      <link>https://snipplr.com/view/67054/array-convertall-with-lambda</link>
      <description>&lt;p&gt;Lambda expression to convert an array.&lt;/p&gt;</description>
      <pubDate>Wed, 05 Sep 2012 06:40:26 UTC</pubDate>
      <guid>https://snipplr.com/view/67054/array-convertall-with-lambda</guid>
    </item>
    <item>
      <title>(C#) Proxyless WCF Client Side - rengber</title>
      <link>https://snipplr.com/view/62990/proxyless-wcf-client-side</link>
      <description>&lt;p&gt;From page 70 or so of Juval Lowry's Programming WCF&lt;/p&gt;</description>
      <pubDate>Thu, 02 Feb 2012 04:11:33 UTC</pubDate>
      <guid>https://snipplr.com/view/62990/proxyless-wcf-client-side</guid>
    </item>
    <item>
      <title>(C#) Minimalist WCF Client-side Config File - rengber</title>
      <link>https://snipplr.com/view/62966/minimalist-wcf-clientside-config-file</link>
      <description>&lt;p&gt;Again, A-B-C.   All the Behaviour garbage that "Add Service Reference" inserts for the TCP binding is unnecessary, especially if the Operation Contract is only for simple value types.&lt;/p&gt;</description>
      <pubDate>Wed, 01 Feb 2012 09:17:14 UTC</pubDate>
      <guid>https://snipplr.com/view/62966/minimalist-wcf-clientside-config-file</guid>
    </item>
    <item>
      <title>(C#) Minimalist WCF Server-side Config File - rengber</title>
      <link>https://snipplr.com/view/62963/minimalist-wcf-serverside-config-file</link>
      <description>&lt;p&gt;ABC - Address Binding Contract&#13;
Note that the Service Name and Contract must match a real live type (case Sensitive)&#13;
Binding name is also case sensitive.&lt;/p&gt;</description>
      <pubDate>Wed, 01 Feb 2012 07:45:34 UTC</pubDate>
      <guid>https://snipplr.com/view/62963/minimalist-wcf-serverside-config-file</guid>
    </item>
    <item>
      <title>(C#) Simplest Possible Background Thread and Console App Lifetime Test - rengber</title>
      <link>https://snipplr.com/view/61315/simplest-possible-background-thread-and-console-app-lifetime-test</link>
      <description>&lt;p&gt;Saw some strange console app behavior while hosting quartz.net had to doublecheck that a console app will not exit while background threads are running.  In the example below, once the main method ends, the app stays alive for 10 seconds while the background thread finishes.&lt;/p&gt;</description>
      <pubDate>Wed, 30 Nov 2011 06:18:50 UTC</pubDate>
      <guid>https://snipplr.com/view/61315/simplest-possible-background-thread-and-console-app-lifetime-test</guid>
    </item>
    <item>
      <title>(C#) Command Line to Add Certificates to Certificate Stores (Including the Intermediate CA Store) - rengber</title>
      <link>https://snipplr.com/view/35174/command-line-to-add-certificates-to-certificate-stores-including-the-intermediate-ca-store</link>
      <description>&lt;p&gt;Certmgr is in the Windows 7 SDK&lt;/p&gt;</description>
      <pubDate>Mon, 24 May 2010 16:44:20 UTC</pubDate>
      <guid>https://snipplr.com/view/35174/command-line-to-add-certificates-to-certificate-stores-including-the-intermediate-ca-store</guid>
    </item>
    <item>
      <title>(Other) Command to Extract the Contents of an MSI File to a Folder - rengber</title>
      <link>https://snipplr.com/view/27182/command-to-extract-the-contents-of-an-msi-file-to-a-folder</link>
      <description>&lt;p&gt;note, MSIExec /? will launch a dialog box with switch documentation.&lt;/p&gt;</description>
      <pubDate>Wed, 27 Jan 2010 12:21:41 UTC</pubDate>
      <guid>https://snipplr.com/view/27182/command-to-extract-the-contents-of-an-msi-file-to-a-folder</guid>
    </item>
    <item>
      <title>(C#) Get the Namespace, Class Name, and Method Name of the Currently Executing Method Via Reflection - rengber</title>
      <link>https://snipplr.com/view/26471/get-the-namespace-class-name-and-method-name-of-the-currently-executing-method-via-reflection</link>
      <description>&lt;p&gt;GetFrame(1) to avoid the last method being this property accessor.  &#13;
Note that in a child class inherited member, the Class name will be the name of the type containing the implementation.&lt;/p&gt;</description>
      <pubDate>Thu, 14 Jan 2010 15:09:24 UTC</pubDate>
      <guid>https://snipplr.com/view/26471/get-the-namespace-class-name-and-method-name-of-the-currently-executing-method-via-reflection</guid>
    </item>
    <item>
      <title>(SQL) TSQL Convert DateTime - rengber</title>
      <link>https://snipplr.com/view/19237/tsql-convert-datetime</link>
      <description>&lt;p&gt;I am forever forgetting this.  Have to look up the 101 vs 103 in books online every time.   &#13;
Also forget which way around is US/NZ format.  :-)&lt;/p&gt;</description>
      <pubDate>Thu, 03 Sep 2009 21:48:26 UTC</pubDate>
      <guid>https://snipplr.com/view/19237/tsql-convert-datetime</guid>
    </item>
    <item>
      <title>(SQL) TSQL to Get the SQL Autonumber ID of the Row Just Inserted - rengber</title>
      <link>https://snipplr.com/view/19084/tsql-to-get-the-sql-autonumber-id-of-the-row-just-inserted</link>
      <description>&lt;p&gt;Dead simple, but often forgotten.&lt;/p&gt;</description>
      <pubDate>Mon, 31 Aug 2009 22:48:15 UTC</pubDate>
      <guid>https://snipplr.com/view/19084/tsql-to-get-the-sql-autonumber-id-of-the-row-just-inserted</guid>
    </item>
    <item>
      <title>(C#) Dump an Arbitrary Object to XML (Bypassing Default Serialization) - rengber</title>
      <link>https://snipplr.com/view/18836/dump-an-arbitrary-object-to-xml-bypassing-default-serialization</link>
      <description>&lt;p&gt;Useful in cases where the object author has specified their own serialization that doesn't work for you.&lt;/p&gt;</description>
      <pubDate>Tue, 25 Aug 2009 17:52:51 UTC</pubDate>
      <guid>https://snipplr.com/view/18836/dump-an-arbitrary-object-to-xml-bypassing-default-serialization</guid>
    </item>
    <item>
      <title>(C#) DataBinding an Arbitrary XML String to an ASP.Net GridViev - rengber</title>
      <link>https://snipplr.com/view/18374/databinding-an-arbitrary-xml-string-to-an-aspnet-gridviev</link>
      <description>&lt;p&gt;Definitely falls into the category of "simple thing I shoulda memorized years ago", but whatever:&lt;/p&gt;</description>
      <pubDate>Sun, 16 Aug 2009 18:45:04 UTC</pubDate>
      <guid>https://snipplr.com/view/18374/databinding-an-arbitrary-xml-string-to-an-aspnet-gridviev</guid>
    </item>
    <item>
      <title>(SQL) SQL Server String Split Function - rengber</title>
      <link>https://snipplr.com/view/17651/sql-server-string-split-function</link>
      <description>&lt;p&gt;From StackOverflow.  I'm still not quite happy with my understanding of it, but it looks an order of magnitude more elegant than most I've found.&lt;/p&gt;</description>
      <pubDate>Wed, 29 Jul 2009 23:37:26 UTC</pubDate>
      <guid>https://snipplr.com/view/17651/sql-server-string-split-function</guid>
    </item>
    <item>
      <title>(SQL) TSQL Function and Check Constraint to Ensure that a Parent Value is Present in the Table - rengber</title>
      <link>https://snipplr.com/view/17476/tsql-function-and-check-constraint-to-ensure-that-a-parent-value-is-present-in-the-table</link>
      <description>&lt;p&gt;If a "InReplyToID" is provided, it must be a valid MessageId&lt;/p&gt;</description>
      <pubDate>Sun, 26 Jul 2009 23:57:39 UTC</pubDate>
      <guid>https://snipplr.com/view/17476/tsql-function-and-check-constraint-to-ensure-that-a-parent-value-is-present-in-the-table</guid>
    </item>
    <item>
      <title>(C#) Minimalist XSLT Transform Using Two Strings - rengber</title>
      <link>https://snipplr.com/view/17050/minimalist-xslt-transform-using-two-strings</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 15 Jul 2009 21:24:03 UTC</pubDate>
      <guid>https://snipplr.com/view/17050/minimalist-xslt-transform-using-two-strings</guid>
    </item>
    <item>
      <title>(C#) DataGridView DataBind an Array of Arbitrary Objects - rengber</title>
      <link>https://snipplr.com/view/15786/datagridview-databind-an-array-of-arbitrary-objects</link>
      <description>&lt;p&gt;Stupidly simple -- just one pitfall: class to be bound must have Get/Set methods for reflection to discover.   Which is annoying when it comes to client side classes auto generated from WSDL.&lt;/p&gt;</description>
      <pubDate>Tue, 09 Jun 2009 18:50:51 UTC</pubDate>
      <guid>https://snipplr.com/view/15786/datagridview-databind-an-array-of-arbitrary-objects</guid>
    </item>
    <item>
      <title>(C#) Using Moq to Return a Mock Object from a Factory - rengber</title>
      <link>https://snipplr.com/view/15489/using-moq-to-return-a-mock-object-from-a-factory</link>
      <description>&lt;p&gt;Note that the interface member is mockVar.Object mockVar won't cast to your interface.&lt;/p&gt;</description>
      <pubDate>Wed, 03 Jun 2009 18:08:00 UTC</pubDate>
      <guid>https://snipplr.com/view/15489/using-moq-to-return-a-mock-object-from-a-factory</guid>
    </item>
    <item>
      <title>(C#) Copy All Object Values from Another Instance of the Same Type Using Reflection - rengber</title>
      <link>https://snipplr.com/view/14594/copy-all-object-values-from-another-instance-of-the-same-type-using-reflection</link>
      <description>&lt;p&gt;Say that you have a collection of objects empty but for IDs.  &#13;
You want to do a foreach loop through those objects and lookup detail one at a time.  &#13;
Unfortunately, in the foreach, you can't replace the references, you can only copy the new detail into the object.   &#13;
This technique will populate your current reference from an object instance returned by a lookup.&lt;/p&gt;</description>
      <pubDate>Thu, 30 Apr 2009 00:51:06 UTC</pubDate>
      <guid>https://snipplr.com/view/14594/copy-all-object-values-from-another-instance-of-the-same-type-using-reflection</guid>
    </item>
    <item>
      <title>(C#) LINQ Extension Methods - rengber</title>
      <link>https://snipplr.com/view/14217/linq-extension-methods</link>
      <description>&lt;p&gt;LINQ Extension method called with delegate, anonymous delegate, and lambda delegate.&#13;
&#13;
Note that this only returns a "default" in the sense that it does not throw an exception if no item in the source matches the selection criteria.  .First() does throw an exception in this case.&lt;/p&gt;</description>
      <pubDate>Mon, 20 Apr 2009 19:34:00 UTC</pubDate>
      <guid>https://snipplr.com/view/14217/linq-extension-methods</guid>
    </item>
    <item>
      <title>(C#) C# Call a Constructor Overload from the Default Constructor - rengber</title>
      <link>https://snipplr.com/view/14049/c-call-a-constructor-overload-from-the-default-constructor</link>
      <description>&lt;p&gt;This is stupidly simple, but I always forget it.&lt;/p&gt;</description>
      <pubDate>Tue, 14 Apr 2009 23:53:32 UTC</pubDate>
      <guid>https://snipplr.com/view/14049/c-call-a-constructor-overload-from-the-default-constructor</guid>
    </item>
    <item>
      <title>(SQL) TSQL Try Catch Error Handling - rengber</title>
      <link>https://snipplr.com/view/12518/tsql-try-catch-error-handling</link>
      <description>&lt;p&gt;This as it sits isn't an improvement on what happens by default.  It's only useful combined with a compensating transaction or sad path in the catch block, or in allowing a loop to continue.&lt;/p&gt;</description>
      <pubDate>Mon, 23 Feb 2009 21:05:08 UTC</pubDate>
      <guid>https://snipplr.com/view/12518/tsql-try-catch-error-handling</guid>
    </item>
    <item>
      <title>(SQL) TSQL to Start a Job Programatically - rengber</title>
      <link>https://snipplr.com/view/12475/tsql-to-start-a-job-programatically</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 22 Feb 2009 15:51:28 UTC</pubDate>
      <guid>https://snipplr.com/view/12475/tsql-to-start-a-job-programatically</guid>
    </item>
    <item>
      <title>(SQL) Basic TSQL Cursor Syntax - rengber</title>
      <link>https://snipplr.com/view/12366/basic-tsql-cursor-syntax</link>
      <description>&lt;p&gt;Minimal syntax for cursor use.  See URL for SQL 2005 options and improvements.&lt;/p&gt;</description>
      <pubDate>Wed, 18 Feb 2009 22:21:44 UTC</pubDate>
      <guid>https://snipplr.com/view/12366/basic-tsql-cursor-syntax</guid>
    </item>
    <item>
      <title>(C#) Extracting an Int from a Little Endian or Big Endian Byte Array - rengber</title>
      <link>https://snipplr.com/view/12050/extracting-an-int-from-a-little-endian-or-big-endian-byte-array</link>
      <description>&lt;p&gt;Found this in some code I've been maintaining/expanding.   Quite clever.  &#13;
&#13;
Picture an array of bytes in binary &#13;
&#13;
00000111 11100000 00000000 00000000&#13;
&#13;
Now picture an Int32 in Binary&#13;
00000000000000000000000000000000&#13;
&#13;
To grab a Little Endian Integer (16 bits) out of the array.  &#13;
&#13;
Take the second array element&#13;
11100000&#13;
&#13;
Assign it to the Int32 variable&#13;
00000000000000000000000011100000&#13;
&#13;
Bit shift it up by 8 &#13;
00000000000000001110000000000000&#13;
&#13;
Now OR it with the first Array element - could also just add.&#13;
&lt;pre&gt;&#13;
        00000000000000001110000000000000&#13;
or     00000000000000000000000000000111&#13;
=      00000000000000001110000000000111&#13;
&lt;/pre&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 09 Feb 2009 22:21:05 UTC</pubDate>
      <guid>https://snipplr.com/view/12050/extracting-an-int-from-a-little-endian-or-big-endian-byte-array</guid>
    </item>
    <item>
      <title>(C#) C# Attribute to Mark a Method as "Deprecated" - rengber</title>
      <link>https://snipplr.com/view/11413/c-attribute-to-mark-a-method-as-deprecated</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 21 Jan 2009 16:27:42 UTC</pubDate>
      <guid>https://snipplr.com/view/11413/c-attribute-to-mark-a-method-as-deprecated</guid>
    </item>
    <item>
      <title>(C#) Using NMock to Create an IDataReader for Testing Data Access Methods - rengber</title>
      <link>https://snipplr.com/view/9930/using-nmock-to-create-an-idatareader-for-testing-data-access-methods</link>
      <description>&lt;p&gt;Shows how to mock the Object["CollectionItemName"] syntax.&lt;/p&gt;</description>
      <pubDate>Wed, 19 Nov 2008 21:32:37 UTC</pubDate>
      <guid>https://snipplr.com/view/9930/using-nmock-to-create-an-idatareader-for-testing-data-access-methods</guid>
    </item>
    <item>
      <title>(C#) Using a Virtual Factory Method with NMock to help NUnit Testing - rengber</title>
      <link>https://snipplr.com/view/9724/using-a-virtual-factory-method-with-nmock-to-help-nunit-testing</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 13 Nov 2008 22:38:47 UTC</pubDate>
      <guid>https://snipplr.com/view/9724/using-a-virtual-factory-method-with-nmock-to-help-nunit-testing</guid>
    </item>
    <item>
      <title>(C#) Generic Convert - rengber</title>
      <link>https://snipplr.com/view/9615/generic-convert</link>
      <description>&lt;p&gt;This technique can convert a list of one type into a list of another in a single line given and instance to instance conversion method to be passed to the delegate constructor.&lt;/p&gt;</description>
      <pubDate>Mon, 10 Nov 2008 19:42:38 UTC</pubDate>
      <guid>https://snipplr.com/view/9615/generic-convert</guid>
    </item>
    <item>
      <title>(C#) Manually Send an SMTP Message from a Telnet Session. - rengber</title>
      <link>https://snipplr.com/view/7958/manually-send-an-smtp-message-from-a-telnet-session</link>
      <description>&lt;p&gt;Mail might not send from user different from current domain or to user in ouside domain.   &#13;
Data section terminated by CRLF.CRLF&lt;/p&gt;</description>
      <pubDate>Thu, 21 Aug 2008 00:19:41 UTC</pubDate>
      <guid>https://snipplr.com/view/7958/manually-send-an-smtp-message-from-a-telnet-session</guid>
    </item>
    <item>
      <title>(C#) Using a BackgroundWorker Object from a Winform - rengber</title>
      <link>https://snipplr.com/view/7541/using-a-backgroundworker-object-from-a-winform</link>
      <description>&lt;p&gt;I didn't like the way ReportProgress events backed up, so I ran a Timer object to update the progress meter instead.&lt;/p&gt;</description>
      <pubDate>Sun, 27 Jul 2008 23:18:51 UTC</pubDate>
      <guid>https://snipplr.com/view/7541/using-a-backgroundworker-object-from-a-winform</guid>
    </item>
    <item>
      <title>(HTML) Using a Data URL to Embed an Image in an HTML Page - rengber</title>
      <link>https://snipplr.com/view/7055/using-a-data-url-to-embed-an-image-in-an-html-page</link>
      <description>&lt;p&gt;Should work for image/gif as well.  Allegedly not supported by IE&lt;/p&gt;</description>
      <pubDate>Tue, 01 Jul 2008 18:59:33 UTC</pubDate>
      <guid>https://snipplr.com/view/7055/using-a-data-url-to-embed-an-image-in-an-html-page</guid>
    </item>
    <item>
      <title>(Perl) Markov Chain Generator - rengber</title>
      <link>https://snipplr.com/view/7040/markov-chain-generator</link>
      <description>&lt;p&gt;My PERL isn't strong enough to get this yet, but I plan on porting to C#. &#13;
&#13;
Read this: http://en.wikipedia.org/wiki/Markov_chain&lt;/p&gt;</description>
      <pubDate>Mon, 30 Jun 2008 23:16:39 UTC</pubDate>
      <guid>https://snipplr.com/view/7040/markov-chain-generator</guid>
    </item>
    <item>
      <title>(PHP) PHP to Delete a Cookie - rengber</title>
      <link>https://snipplr.com/view/6387/php-to-delete-a-cookie</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 21 May 2008 16:28:14 UTC</pubDate>
      <guid>https://snipplr.com/view/6387/php-to-delete-a-cookie</guid>
    </item>
    <item>
      <title>(C#) Base64 Encode or Decode a File - rengber</title>
      <link>https://snipplr.com/view/6034/base64-encode-or-decode-a-file</link>
      <description>&lt;p&gt;Useful for sending files past filters via email.&lt;/p&gt;</description>
      <pubDate>Mon, 28 Apr 2008 19:45:24 UTC</pubDate>
      <guid>https://snipplr.com/view/6034/base64-encode-or-decode-a-file</guid>
    </item>
    <item>
      <title>(C#) ASP.Net Page to Return an Image from an SQL Blob Query - rengber</title>
      <link>https://snipplr.com/view/5549/aspnet-page-to-return-an-image-from-an-sql-blob-query</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 24 Mar 2008 21:36:37 UTC</pubDate>
      <guid>https://snipplr.com/view/5549/aspnet-page-to-return-an-image-from-an-sql-blob-query</guid>
    </item>
    <item>
      <title>(SQL) TSQL for Recursive Select Using Common Table Expressions - rengber</title>
      <link>https://snipplr.com/view/5547/tsql-for-recursive-select-using-common-table-expressions</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 24 Mar 2008 18:00:18 UTC</pubDate>
      <guid>https://snipplr.com/view/5547/tsql-for-recursive-select-using-common-table-expressions</guid>
    </item>
    <item>
      <title>(SQL) SQL To Show WaitTime and other Process Stats - rengber</title>
      <link>https://snipplr.com/view/5498/sql-to-show-waittime-and-other-process-stats</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 19 Mar 2008 22:55:37 UTC</pubDate>
      <guid>https://snipplr.com/view/5498/sql-to-show-waittime-and-other-process-stats</guid>
    </item>
    <item>
      <title>(SQL) TSQL to Concatenate Subquery Row Values into a Column Value - rengber</title>
      <link>https://snipplr.com/view/5497/tsql-to-concatenate-subquery-row-values-into-a-column-value</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 19 Mar 2008 22:54:33 UTC</pubDate>
      <guid>https://snipplr.com/view/5497/tsql-to-concatenate-subquery-row-values-into-a-column-value</guid>
    </item>
    <item>
      <title>(HTML) TiddlyWiki Macro to Create a New Tiddler from a Template Tiddler - rengber</title>
      <link>https://snipplr.com/view/5244/tiddlywiki-macro-to-create-a-new-tiddler-from-a-template-tiddler</link>
      <description>&lt;p&gt;Note that this is formatted for clarity, may need to be all one line for TiddlyWiki.&lt;/p&gt;</description>
      <pubDate>Thu, 28 Feb 2008 21:34:51 UTC</pubDate>
      <guid>https://snipplr.com/view/5244/tiddlywiki-macro-to-create-a-new-tiddler-from-a-template-tiddler</guid>
    </item>
    <item>
      <title>(XML) XSLT to Pull Data out of an Excel XML Spreadsheet - rengber</title>
      <link>https://snipplr.com/view/5126/xslt-to-pull-data-out-of-an-excel-xml-spreadsheet</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 19 Feb 2008 20:22:00 UTC</pubDate>
      <guid>https://snipplr.com/view/5126/xslt-to-pull-data-out-of-an-excel-xml-spreadsheet</guid>
    </item>
    <item>
      <title>(SQL) TSQL to Reset a Tables Primary Key Autonumber - rengber</title>
      <link>https://snipplr.com/view/5102/tsql-to-reset-a-tables-primary-key-autonumber</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 17 Feb 2008 20:42:49 UTC</pubDate>
      <guid>https://snipplr.com/view/5102/tsql-to-reset-a-tables-primary-key-autonumber</guid>
    </item>
    <item>
      <title>(HTML) Starting Point XHTML with DTD - rengber</title>
      <link>https://snipplr.com/view/5070/starting-point-xhtml-with-dtd</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 14 Feb 2008 19:39:32 UTC</pubDate>
      <guid>https://snipplr.com/view/5070/starting-point-xhtml-with-dtd</guid>
    </item>
    <item>
      <title>(XML) Baseline RSS XML - rengber</title>
      <link>https://snipplr.com/view/5053/baseline-rss-xml</link>
      <description>&lt;p&gt;From 4 Guys from Rolla&lt;/p&gt;</description>
      <pubDate>Wed, 13 Feb 2008 22:11:19 UTC</pubDate>
      <guid>https://snipplr.com/view/5053/baseline-rss-xml</guid>
    </item>
    <item>
      <title>(HTML) RSS Pointer for IE7 and/or Firefox - rengber</title>
      <link>https://snipplr.com/view/5052/rss-pointer-for-ie7-andor-firefox</link>
      <description>&lt;p&gt;Shows the browser that an RSS feed is available for a page.&lt;/p&gt;</description>
      <pubDate>Wed, 13 Feb 2008 21:53:33 UTC</pubDate>
      <guid>https://snipplr.com/view/5052/rss-pointer-for-ie7-andor-firefox</guid>
    </item>
    <item>
      <title>(C#) Adding Eventhandlers to DataGrid Rows - rengber</title>
      <link>https://snipplr.com/view/4887/adding-eventhandlers-to-datagrid-rows</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 03 Feb 2008 19:17:48 UTC</pubDate>
      <guid>https://snipplr.com/view/4887/adding-eventhandlers-to-datagrid-rows</guid>
    </item>
    <item>
      <title>(C#) Filter Expression for a DataTable - rengber</title>
      <link>https://snipplr.com/view/4868/filter-expression-for-a-datatable</link>
      <description>&lt;p&gt;Pretty intuitive, might be an easier/simpler way.&lt;/p&gt;</description>
      <pubDate>Thu, 31 Jan 2008 20:01:11 UTC</pubDate>
      <guid>https://snipplr.com/view/4868/filter-expression-for-a-datatable</guid>
    </item>
    <item>
      <title>(C#) Adding another item to a databound drop-down list. - rengber</title>
      <link>https://snipplr.com/view/4852/adding-another-item-to-a-databound-dropdown-list</link>
      <description>&lt;p&gt;Stupidly simple, but I keep forgetting it.&lt;/p&gt;</description>
      <pubDate>Wed, 30 Jan 2008 22:13:55 UTC</pubDate>
      <guid>https://snipplr.com/view/4852/adding-another-item-to-a-databound-dropdown-list</guid>
    </item>
    <item>
      <title>(C#) ASP.Net Code to Get an Active Directory User Name from the Integrated Authentication Principal Name - rengber</title>
      <link>https://snipplr.com/view/4811/aspnet-code-to-get-an-active-directory-user-name-from-the-integrated-authentication-principal-name</link>
      <description>&lt;p&gt;Typically won't work if the ASP.Net service identity (in the machine.config ProcessModel section) is a local account.&lt;/p&gt;</description>
      <pubDate>Mon, 28 Jan 2008 17:04:03 UTC</pubDate>
      <guid>https://snipplr.com/view/4811/aspnet-code-to-get-an-active-directory-user-name-from-the-integrated-authentication-principal-name</guid>
    </item>
    <item>
      <title>(C#) Declarative Code for ASP.Net Repeater to Access CodeBehind Method. - rengber</title>
      <link>https://snipplr.com/view/4734/declarative-code-for-aspnet-repeater-to-access-codebehind-method</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 22 Jan 2008 19:20:29 UTC</pubDate>
      <guid>https://snipplr.com/view/4734/declarative-code-for-aspnet-repeater-to-access-codebehind-method</guid>
    </item>
    <item>
      <title>(SQL) Add a Constant Value to a RecordSet - rengber</title>
      <link>https://snipplr.com/view/4683/add-a-constant-value-to-a-recordset</link>
      <description>&lt;p&gt;Noob stuff, but I always end up looking this up.&lt;/p&gt;</description>
      <pubDate>Sun, 20 Jan 2008 19:46:57 UTC</pubDate>
      <guid>https://snipplr.com/view/4683/add-a-constant-value-to-a-recordset</guid>
    </item>
  </channel>
</rss>
