<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>MattVanAndel.com &#187; @Complexity: Intermediate</title>
	<atom:link href="http://www.mattvanandel.com/tag/complexity-intermediate/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mattvanandel.com</link>
	<description>Web Development for the Developmentally Challenged</description>
	<lastBuildDate>Thu, 29 Jul 2010 22:33:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>(jQuery) Make Vimeo Embeds iPhone-friendly&#8230; Automagically!</title>
		<link>http://www.mattvanandel.com/958/jquery-make-vimeo-embeds-iphone-friendly-automagically/</link>
		<comments>http://www.mattvanandel.com/958/jquery-make-vimeo-embeds-iphone-friendly-automagically/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 19:50:43 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Toolbox]]></category>
		<category><![CDATA[@Complexity: Intermediate]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.mattvanandel.com/?p=958</guid>
		<description><![CDATA[This article demonstrates the use of a neat bit of jQuery that will automagically make your Vimeo embeds work on an iPhone or iPad.

If you're a Vimeo user you may have noticed that the service recently added mobile compatibility to their already-respectable list of features. There is a caveat, though. This new mobile compatibility does NOT extend to videos that you embed on your site - only videos that you watch on the Vimeo website. But what if you use Vimeo primarily for embedding videos on your own site, and you want those videos to be watchable on an iPhone or iPad? Vimeos official stance is... add a link. This is *not* ideal.

Fortunately, with a creative bit of jQuery and HTML 5, we can detect mobile browsers and automatically replace Vimeo's flash player on a webpage with an HTML 5 one when appropriate.]]></description>
		<wfw:commentRss>http://www.mattvanandel.com/958/jquery-make-vimeo-embeds-iphone-friendly-automagically/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(C#) Sending an Email with an Attachment (via Form)</title>
		<link>http://www.mattvanandel.com/842/c-sending-an-email-with-an-attachment-via-form/</link>
		<comments>http://www.mattvanandel.com/842/c-sending-an-email-with-an-attachment-via-form/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 17:58:31 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Toolbox]]></category>
		<category><![CDATA[@Complexity: Intermediate]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Email]]></category>

		<guid isPermaLink="false">http://www.mattvanandel.com/?p=842</guid>
		<description><![CDATA[This article explains how to send an email that includes an attachment from a web form. This is particularly useful if you need to create a web form that allows users to upload their own file attachments. The examples in this article assume that you already have a form with a FileUpload element in it, named "fuAttachment". This particular method is especially useful since it does not require you to save any files to the server before sending the email. The posted data is instead handled directly. 

You should already by familiar with sending emails from ASP.NET before reading this article.]]></description>
		<wfw:commentRss>http://www.mattvanandel.com/842/c-sending-an-email-with-an-attachment-via-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(C#) Sending an Email (Plain-Text &amp; HTML)</title>
		<link>http://www.mattvanandel.com/771/c-sending-an-email/</link>
		<comments>http://www.mattvanandel.com/771/c-sending-an-email/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 18:57:11 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Toolbox]]></category>
		<category><![CDATA[@Complexity: Intermediate]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Email]]></category>

		<guid isPermaLink="false">http://www.mattvanandel.com/?p=771</guid>
		<description><![CDATA[This article covers the various methods of sending an email using C#, either in plain text or HTML.]]></description>
		<wfw:commentRss>http://www.mattvanandel.com/771/c-sending-an-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(C#) DateTimes: Finding the last day of a month</title>
		<link>http://www.mattvanandel.com/355/csharp-datetimes-finding-the-last-day-of-a-month/</link>
		<comments>http://www.mattvanandel.com/355/csharp-datetimes-finding-the-last-day-of-a-month/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 00:14:23 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Toolbox]]></category>
		<category><![CDATA[@Complexity: Intermediate]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[DateTime]]></category>

		<guid isPermaLink="false">http://www.mattvanandel.com/?p=355</guid>
		<description><![CDATA[Since we know that all months have at least one day, setting an existing DateTime to the first day of a month is a cinch... but finding the <em>last</em> day of a month is a wee bit more complicated since months tend to have a variable number of days from year to year.

Fortunately, there is a relatively simple (if roundabout) way to calculate the last day in a month.]]></description>
		<wfw:commentRss>http://www.mattvanandel.com/355/csharp-datetimes-finding-the-last-day-of-a-month/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
