<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>The Kitchen Sync</title>
	<atom:link href="http://dkitchen.net/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://dkitchen.net/blog</link>
	<description>my brain is a sieve</description>
	<pubDate>Wed, 09 May 2012 15:40:36 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Walter Bagehot</title>
		<link>http://dkitchen.net/blog/?p=263</link>
		<comments>http://dkitchen.net/blog/?p=263#comments</comments>
		<pubDate>Wed, 09 May 2012 15:40:36 +0000</pubDate>
		<dc:creator>dkitchen</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[quotes]]></category>

		<guid isPermaLink="false">http://dkitchen.net/blog/?p=263</guid>
		<description><![CDATA[I work in a bank. I was struggling to offer a pithy quote to a boss who is retiring soon. I came across this English chap, Walter Bagehot from the 1800s, whose ideas about banking endure to this day. He was also the editor for The Economist. Good stuff!
The greatest mistake is trying to be more agreeable [...]]]></description>
		<wfw:commentRss>http://dkitchen.net/blog/?feed=rss2&amp;p=263</wfw:commentRss>
		</item>
		<item>
		<title>My new favorite line of JQuery</title>
		<link>http://dkitchen.net/blog/?p=261</link>
		<comments>http://dkitchen.net/blog/?p=261#comments</comments>
		<pubDate>Tue, 24 Apr 2012 19:47:38 +0000</pubDate>
		<dc:creator>dkitchen</dc:creator>
		
		<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://dkitchen.net/blog/?p=261</guid>
		<description><![CDATA[//alternate row appearance
$(&#8221;table &#62; tbody tr:odd&#8221;).addClass(&#8221;odd&#8221;);
A close runner-up is this:
//bump up the contents of cells by removing first BR
$(&#8221;td.list-of-stuff-delimited-with-br&#8221;).find(&#8221;br:first&#8221;).remove();
I normally would handle stuff like this on the server side, but these save me the trouble, and considering it&#8217;s a presentation layer thing, doing it on the client just feels right.
]]></description>
		<wfw:commentRss>http://dkitchen.net/blog/?feed=rss2&amp;p=261</wfw:commentRss>
		</item>
		<item>
		<title>Add Deployable Dependencies</title>
		<link>http://dkitchen.net/blog/?p=251</link>
		<comments>http://dkitchen.net/blog/?p=251#comments</comments>
		<pubDate>Tue, 31 Jan 2012 15:50:32 +0000</pubDate>
		<dc:creator>dkitchen</dc:creator>
		
		<category><![CDATA[Code]]></category>

		<category><![CDATA[mvc]]></category>

		<guid isPermaLink="false">http://dkitchen.net/blog/?p=251</guid>
		<description><![CDATA[Had a devil of a time getting my MVC app to run on a new server.
Until I ran across this handy tip:
 http://www.britishdeveloper.co.uk/2011/06/adding-mvc-dependencies-to-project-for.html
Just right click the project and choose, &#8220;Add Deployable Dependencies&#8221;
Nice.
]]></description>
		<wfw:commentRss>http://dkitchen.net/blog/?feed=rss2&amp;p=251</wfw:commentRss>
		</item>
		<item>
		<title>PetaPoco, MvcContrib Grid and Pagination</title>
		<link>http://dkitchen.net/blog/?p=238</link>
		<comments>http://dkitchen.net/blog/?p=238#comments</comments>
		<pubDate>Fri, 06 Jan 2012 22:21:41 +0000</pubDate>
		<dc:creator>dkitchen</dc:creator>
		
		<category><![CDATA[Code]]></category>

		<category><![CDATA[mvc]]></category>

		<category><![CDATA[grid]]></category>

		<category><![CDATA[mvcContrib]]></category>

		<category><![CDATA[pagination]]></category>

		<category><![CDATA[petaPoco]]></category>

		<guid isPermaLink="false">http://dkitchen.net/blog/?p=238</guid>
		<description><![CDATA[I&#8217;m using PetaPoco and MvcContrib in my current project.
I had a devil of a time finding a decent example of paging a grid in an efficient manner.
Here&#8217;s what I&#8217;ve got so far.
The Action should look like this:

&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;  public ActionResult Index(int? page)  {  //Normally, with a big ORM, using AsPagination to lazy Paginate [...]]]></description>
		<wfw:commentRss>http://dkitchen.net/blog/?feed=rss2&amp;p=238</wfw:commentRss>
		</item>
		<item>
		<title>Weird.</title>
		<link>http://dkitchen.net/blog/?p=236</link>
		<comments>http://dkitchen.net/blog/?p=236#comments</comments>
		<pubDate>Tue, 03 Jan 2012 05:58:16 +0000</pubDate>
		<dc:creator>dkitchen</dc:creator>
		
		<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://dkitchen.net/blog/?p=236</guid>
		<description><![CDATA[For a while there all my requests to google were going to various pages at microsoft. Yipes. Smelled like a nasty virus. Didn&#8217;t expect to see anything like that on my MAC! All browsers behaved the same. I opened my hosts file. Nothing odd there. After reading the hosts file it stopped doing it.
Very strange.
]]></description>
		<wfw:commentRss>http://dkitchen.net/blog/?feed=rss2&amp;p=236</wfw:commentRss>
		</item>
		<item>
		<title>Button type=&#8217;button&#8217;</title>
		<link>http://dkitchen.net/blog/?p=232</link>
		<comments>http://dkitchen.net/blog/?p=232#comments</comments>
		<pubDate>Fri, 29 Jan 2010 20:21:44 +0000</pubDate>
		<dc:creator>dkitchen</dc:creator>
		
		<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://dkitchen.net/blog/?p=232</guid>
		<description><![CDATA[Do yourself a big favor&#8230; and by &#8216;yourself&#8217; I mean &#8216;myself&#8217;, and by favor I mean&#8230;
When you put a&#60;button&#62; tag on an html document. ALWAYS set the type attribute to &#8216;button&#8217;.
&#60;button type=&#8221;button&#8221;&#62;Click Me!&#60;/button&#62;
Seems redundant, but several browsers are known to treat ALL buttons as type=&#8217;submit&#8217;. Which can be frustrating when you&#8217;ve gone to the trouble [...]]]></description>
		<wfw:commentRss>http://dkitchen.net/blog/?feed=rss2&amp;p=232</wfw:commentRss>
		</item>
		<item>
		<title>Snipplr and Snipt</title>
		<link>http://dkitchen.net/blog/?p=226</link>
		<comments>http://dkitchen.net/blog/?p=226#comments</comments>
		<pubDate>Fri, 29 Jan 2010 00:31:51 +0000</pubDate>
		<dc:creator>dkitchen</dc:creator>
		
		<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://dkitchen.net/blog/?p=226</guid>
		<description><![CDATA[I ran across a couple interesting sites that host code snippets.
Here are some code samples:
First, Snipplr:
Code snippet - Extension method to get SPUser object from SPListItem person field on Snipplr

And here is Snipt:

Wow, they both do a nice job and it&#8217;s stupid-easy to paste their &#8216;embed&#8217; scripts into the page. I&#8217;m leaning towards Snipt. Looks [...]]]></description>
		<wfw:commentRss>http://dkitchen.net/blog/?feed=rss2&amp;p=226</wfw:commentRss>
		</item>
		<item>
		<title>When will Microsoft provide the next WSS Developer VPC Image?</title>
		<link>http://dkitchen.net/blog/?p=212</link>
		<comments>http://dkitchen.net/blog/?p=212#comments</comments>
		<pubDate>Wed, 30 Sep 2009 14:42:43 +0000</pubDate>
		<dc:creator>dkitchen</dc:creator>
		
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://dkitchen.net/blog/?p=212</guid>
		<description><![CDATA[I&#8217;ve been worrying about when and if Microsoft is going to update their WSS Developer VPC image. The one they published last year is still available here:
http://www.microsoft.com/downloads/details.aspx?FamilyID=1beeac6f-2ea1-4769-9948-74a74bd604fa&#38;displaylang=en
&#8230;and yet it just expired.
Unfortunately I recommended to a lot of folks (at a dnug presentation, and here: http://dkitchen.net/blog/?p=166) that they would do well to develop on this image. [...]]]></description>
		<wfw:commentRss>http://dkitchen.net/blog/?feed=rss2&amp;p=212</wfw:commentRss>
		</item>
		<item>
		<title>Great SharePoint Reality Check Article</title>
		<link>http://dkitchen.net/blog/?p=210</link>
		<comments>http://dkitchen.net/blog/?p=210#comments</comments>
		<pubDate>Wed, 30 Sep 2009 14:41:36 +0000</pubDate>
		<dc:creator>dkitchen</dc:creator>
		
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://dkitchen.net/blog/?p=210</guid>
		<description><![CDATA[Best post I&#8217;ve ever read regarding the reality of SharePoint:
http://weblogs.asp.net/bsimser/archive/2009/09/29/sharepoint-fud-spreading-far-wide-and-fast.aspx
My favorite quote (not specifically about SharePoint, but a good jab at developers):
&#8220;Would you code SQL statements and database connections in the code-behind page of an ASP.NET form?&#8221;
&#8230;um, er, *cough* no, uh, who does THAT? uh, excuse me, gotta go somewhere else and check with a [...]]]></description>
		<wfw:commentRss>http://dkitchen.net/blog/?feed=rss2&amp;p=210</wfw:commentRss>
		</item>
		<item>
		<title>Stop saying that Linq To SQL has no future!!!</title>
		<link>http://dkitchen.net/blog/?p=203</link>
		<comments>http://dkitchen.net/blog/?p=203#comments</comments>
		<pubDate>Sat, 15 Aug 2009 21:26:58 +0000</pubDate>
		<dc:creator>dkitchen</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[LINQ]]></category>

		<guid isPermaLink="false">http://dkitchen.net/blog/?p=203</guid>
		<description><![CDATA[Every so often I run into an article like this: http://reddevnews.com/Articles/2009/01/01/Is-LINQ-to-SQL-Dead.aspx?Page=3&#38;p=1
&#8230;or I&#8217;ll hear a colleague complain or wonder out loud about the future of Linq to Sql.
First. Can we agree that LINQ (not specifically LINQ To SQL, but the Language Integrated Query feature built into .net) will be around a loooooong time (more than a decade)? I, [...]]]></description>
		<wfw:commentRss>http://dkitchen.net/blog/?feed=rss2&amp;p=203</wfw:commentRss>
		</item>
	</channel>
</rss>

