<?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>Davids Code &#187; David Lundgren</title>
	<atom:link href="http://denierofports.com/author/dlundgren/feed/" rel="self" type="application/rss+xml" />
	<link>http://denierofports.com</link>
	<description>Code by David</description>
	<lastBuildDate>Thu, 12 Apr 2012 08:58:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>PHP5 cronjob in Debian packages</title>
		<link>http://denierofports.com/2012/04/php5-cronjob-in-debian-packages/</link>
		<comments>http://denierofports.com/2012/04/php5-cronjob-in-debian-packages/#comments</comments>
		<pubDate>Wed, 11 Apr 2012 06:00:46 +0000</pubDate>
		<dc:creator>David Lundgren</dc:creator>
				<category><![CDATA[dc]]></category>

		<guid isPermaLink="false">http://davidscode.com/?p=68</guid>
		<description><![CDATA[WTF! The /etc/cron.d/php5 should be optional and not forced upon you. This has bitten me twice, once at work, and now on my business machines. It isn&#8217;t funny, and there is really no need for it. If you are doing it &#8220;for the users&#8221;, then let the idiots have massive session caches. It is THEIR [...]]]></description>
			<content:encoded><![CDATA[<p>WTF! The /etc/cron.d/php5 should be optional and not forced upon you. This has bitten me twice, once at work, and now on my business machines. It isn&#8217;t funny, and there is really no need for it. If you are doing it &#8220;for the users&#8221;, then let the idiots have massive session caches. It is THEIR responsibility to tune the server.</p>
<p>&lt;/rant&gt;</p>
<p>FYI: you can safely delete /etc/cron.d/php5 without any issues. Don&#8217;t let stupidity on the part of package maintainers fool you.</p>
]]></content:encoded>
			<wfw:commentRss>http://denierofports.com/2012/04/php5-cronjob-in-debian-packages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery UI Datepicker Month only option</title>
		<link>http://denierofports.com/2012/04/jquery-ui-datepicker-month-only-option/</link>
		<comments>http://denierofports.com/2012/04/jquery-ui-datepicker-month-only-option/#comments</comments>
		<pubDate>Wed, 11 Apr 2012 04:40:07 +0000</pubDate>
		<dc:creator>David Lundgren</dc:creator>
				<category><![CDATA[dc]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://davidscode.com/?p=56</guid>
		<description><![CDATA[A client requested that we have the ability to choose only a month/year in the jQuery UI Datepicker module while retaining the ability to select a specific date. After searching the internet I determined that the best way to do this is just to modify the jQuery UI Datepicker and directly inject a button. jquery-ui-datepicker-monthonly-1.0.0 [...]]]></description>
			<content:encoded><![CDATA[<p>A client requested that we have the ability to choose only a month/year in the jQuery UI Datepicker module while retaining the ability to select a specific date. After searching the internet I determined that the best way to do this is just to modify the jQuery UI Datepicker and directly inject a button.</p>
<p><a style="text-decoration: line-through;" href="http://davidscode.com/wp-content/uploads/2012/04/jquery-ui-datepicker-monthonly-1.0.0.js">jquery-ui-datepicker-monthonly-1.0.0</a></p>
<p><strong>UPDATED:</strong> <a href="http://davidscode.com/wp-content/uploads/2012/04/jquery-ui-datepicker-monthonly-1.0.1.js">jquery-ui-datepicker-monthonly-1.0.1</a></p>
]]></content:encoded>
			<wfw:commentRss>http://denierofports.com/2012/04/jquery-ui-datepicker-month-only-option/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE7/8 .text() vs .html()</title>
		<link>http://denierofports.com/2012/04/ie78-text-vs-html/</link>
		<comments>http://denierofports.com/2012/04/ie78-text-vs-html/#comments</comments>
		<pubDate>Wed, 04 Apr 2012 05:41:36 +0000</pubDate>
		<dc:creator>David Lundgren</dc:creator>
				<category><![CDATA[dc]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://davidscode.com/?p=46</guid>
		<description><![CDATA[So .text() doesn&#8217;t work for retrieving the content. The solution use .html(). The problem with this is that in IE 7/8 you end up with extra white space in the content. The solution $.trim(), and now you have your content the same as modern browsers using .text(). This stumped me long enough while using a [...]]]></description>
			<content:encoded><![CDATA[<p>So .text() doesn&#8217;t work for retrieving the content. The solution use .html(). The problem with this is that in IE 7/8 you end up with extra white space in the content. The solution $.trim(), and now you have your content the same as modern browsers using .text().</p>
<p>This stumped me long enough while using a value in jQuery&#8217;s inArray function and it wasn&#8217;t finding the entry, even though I knew that the value existed in the array. Not the most friendly for modern browsers, but maintains backwards compatibility with older version of IE.</p>
]]></content:encoded>
			<wfw:commentRss>http://denierofports.com/2012/04/ie78-text-vs-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good News, Everyone!</title>
		<link>http://denierofports.com/2011/12/good-news-everyone/</link>
		<comments>http://denierofports.com/2011/12/good-news-everyone/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 14:54:56 +0000</pubDate>
		<dc:creator>David Lundgren</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://denierofports.com/?p=30</guid>
		<description><![CDATA[I have given everyone the day off. In light of the far off consequences of life, we celebrate life today.]]></description>
			<content:encoded><![CDATA[<p>I have given everyone the day off. In light of the far off consequences of life, we celebrate life today.</p>
]]></content:encoded>
			<wfw:commentRss>http://denierofports.com/2011/12/good-news-everyone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

