<?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>Code-Fly</title>
	<atom:link href="http://www.code-fly.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.code-fly.com</link>
	<description>Technology Rantings</description>
	<lastBuildDate>Thu, 15 Jan 2009 13:55:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Shrinking SQL Server logs</title>
		<link>http://www.code-fly.com/2009/01/15/shrinking-sql-server-logs/</link>
		<comments>http://www.code-fly.com/2009/01/15/shrinking-sql-server-logs/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 13:55:20 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[SQLServer]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.code-fly.com/2009/01/15/shrinking-sql-server-logs/</guid>
		<description><![CDATA[Here is a great little script that comes in handy when you need to shrink your transaction logs.Not really meant for production systems though! USE MyDatabase GO Backup Log MyDatabase WITH TRUNCATE_ONLY GO DBCC SHRINKFILE (MyDatabase_Log, 1) GO]]></description>
			<content:encoded><![CDATA[<p>Here is a great little script that comes in handy when you need to shrink your transaction logs.Not really meant for production systems though!</p>
<p><code><br />
USE MyDatabase<br />
GO<br />
Backup Log MyDatabase WITH TRUNCATE_ONLY<br />
GO<br />
DBCC SHRINKFILE (MyDatabase_Log, 1)<br />
GO<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.code-fly.com/2009/01/15/shrinking-sql-server-logs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making the switch to Dvorak</title>
		<link>http://www.code-fly.com/2008/01/25/making-the-switch-to-dvorak/</link>
		<comments>http://www.code-fly.com/2008/01/25/making-the-switch-to-dvorak/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 12:40:57 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dvorak]]></category>

		<guid isPermaLink="false">http://www.code-fly.com/2008/01/25/making-the-switch-to-dvorak/</guid>
		<description><![CDATA[I recently decided to switch over to the Dvorak keyboard layout. For those of you not familiar with it, this is an alternative to the standard qwerty layout which was designed for efficiency and ease of use. This is my second day, so this is short and sweet. I&#8217;ll keep you updated&#8230;]]></description>
			<content:encoded><![CDATA[<p>I recently decided to switch over to the <a href="http://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard" target="_blank">Dvorak keyboard layout</a>. For those of you not familiar with it, this is an alternative to the standard qwerty layout which was designed for efficiency and ease of use. This is my second day, so this is short and sweet. I&#8217;ll keep you updated&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.code-fly.com/2008/01/25/making-the-switch-to-dvorak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE  making server requests when changing cursor styles</title>
		<link>http://www.code-fly.com/2007/02/02/ie-making-server-requests-when-changing-cursor-styles/</link>
		<comments>http://www.code-fly.com/2007/02/02/ie-making-server-requests-when-changing-cursor-styles/#comments</comments>
		<pubDate>Fri, 02 Feb 2007 12:06:38 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ie css]]></category>

		<guid isPermaLink="false">http://www.code-fly.com/?p=11</guid>
		<description><![CDATA[I found a really interesting (annoying) behavior the other day with the way internet explorer handles cursor styles. We had just launched the website for a major metropolitan airport, and noticed an astonishing number of 404 requests to a non existent page entitled /somepath/normal . Searching the code for &#8220;normal&#8221; only returned a couple of [...]]]></description>
			<content:encoded><![CDATA[<p>I found a really interesting (annoying) behavior the other day with the way internet explorer handles cursor styles.</p>
<p>We had just launched the website for a major metropolitan airport, and noticed an astonishing number of 404 requests to a non existent page entitled /somepath/normal .</p>
<p>Searching the code for &#8220;normal&#8221; only returned a couple of css hits&#8230; As it turns out, we had a table with the following code:</p>
<p><code>&lt;tr onmouseover="this.cursor.style='pointer'"<br />
onmouseout="this.cursor.style='normal'"  &gt;</code><br />
The first thing you may notice about the  code above is that there is no css cursor style called &#8216;normal&#8217;, it should be &#8216;default&#8217; or simply &#8221;.</p>
<p>How would this result in a wackload of webhits you ask? It turns out that when Internet Explorer does not recognize the style name of a cursor style, it assumes that you are providing a url to an image to use.</p>
<p>Therefore, whenever a user waved their mouse over their flight search results on our search page, we had multiple requests sent to the server&#8230; one for each row in the table. You can imagine what this would mean for a busy site&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.code-fly.com/2007/02/02/ie-making-server-requests-when-changing-cursor-styles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cron on Windows using Cygwin</title>
		<link>http://www.code-fly.com/2006/10/15/cron-on-windows-using-cygwin/</link>
		<comments>http://www.code-fly.com/2006/10/15/cron-on-windows-using-cygwin/#comments</comments>
		<pubDate>Sun, 15 Oct 2006 16:43:23 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.code-fly.com/?p=9</guid>
		<description><![CDATA[One of the things I hate about Windows is their crappy Schedules Tasks utililty. It is really quite akward to set up a recurring task that runs more often than every day. Also, if you are in a corporate environment that makes you change your password monthly, all your schedules tasks stop working&#8230; Crap!What to [...]]]></description>
			<content:encoded><![CDATA[<p>One of the things I hate about Windows is their crappy Schedules Tasks utililty. It is really quite akward to set up a recurring task that runs more often than every day. Also, if you are in a corporate environment that makes you change your password monthly, all your schedules tasks stop working&#8230; Crap!What to do? Cygwin to the rescue!For those of you not familiar with Cygwin, it is a unix like environment for Windows which provides most of the GNU utilities running from a familiar bash shell (Familiar to *nix fans anyway).To set up Cron as a windows nt service, you need to have a cygwin installation with cron and cygrunsrv installed.
<p style="font: normal normal normal 12px/normal Helvetica; margin: 0px">To install as a service:</p>
<p style="font: normal normal normal 12px/normal Helvetica; min-height: 14px; margin: 0px">&nbsp;</p>
<p style="font: normal normal normal 12px/normal Helvetica; margin: 0px">cygrunsrv -I cron -p /usr/sbin/cron -a -D</p>
<p style="font: normal normal normal 12px/normal Helvetica; min-height: 14px; margin: 0px">&nbsp;</p>
<p style="font: normal normal normal 12px/normal Helvetica; margin: 0px">To start the service:</p>
<p style="font: normal normal normal 12px/normal Helvetica; min-height: 14px; margin: 0px">&nbsp;</p>
<p style="font: normal normal normal 12px/normal Helvetica; margin: 0px">net start cron</p>
<p style="font: normal normal normal 12px/normal Helvetica; min-height: 14px; margin: 0px">&nbsp;</p>
<p style="font: normal normal normal 12px/normal Helvetica; margin: 0px">You may then edit your crontab with:</p>
<p style="font: normal normal normal 12px/normal Helvetica; min-height: 14px; margin: 0px">&nbsp;</p>
<p style="font: normal normal normal 12px/normal Helvetica; margin: 0px">crontab -e</p>
<p style="font: normal normal normal 12px/normal Helvetica; min-height: 14px; margin: 0px">&nbsp;</p>
<p style="font: normal normal normal 12px/normal Helvetica; margin: 0px">Happy Cronning!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.code-fly.com/2006/10/15/cron-on-windows-using-cygwin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Site</title>
		<link>http://www.code-fly.com/2006/10/12/new-site/</link>
		<comments>http://www.code-fly.com/2006/10/12/new-site/#comments</comments>
		<pubDate>Fri, 13 Oct 2006 00:42:10 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.code-fly.com/?p=8</guid>
		<description><![CDATA[I&#039;m creating a new site for my sister BuyBuyBonnies.com. She is opening a Gift Basket business in Bolton, Ontario. Go check it out.]]></description>
			<content:encoded><![CDATA[<p>I&#039;m creating a new site for my sister <a href="http://www.buybuybonnies.com">BuyBuyBonnies.com</a>. She is opening a Gift Basket business in Bolton, Ontario. Go check it out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.code-fly.com/2006/10/12/new-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Radiant</title>
		<link>http://www.code-fly.com/2006/10/03/radiant/</link>
		<comments>http://www.code-fly.com/2006/10/03/radiant/#comments</comments>
		<pubDate>Tue, 03 Oct 2006 11:00:28 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.code-fly.com/?p=7</guid>
		<description><![CDATA[I discovered a new rails based content management system today called Radiant. It is a simple cms with basic features and a nice simple and elegant admin interface. I&#039;m thinking of moving this site over to Radiant since I think it would be much more fun to hack around on that. Also, in my search [...]]]></description>
			<content:encoded><![CDATA[<p>I discovered a new rails based content management system today called <a href="http://radiantcms.org/">Radiant.</a><br />
It is a simple cms with basic features and a nice simple and elegant admin interface. I&#039;m thinking of moving this site over to Radiant since I think it would be much more fun to hack around on that.<br />
Also, in my search for an e-commerce platform&#8230; I am leaning towards rolling my own. Winter is coming on, so I will be spending more time indoors (read: more time to hack) and I would much prefer to hack on rails than php.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.code-fly.com/2006/10/03/radiant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zen Cart!</title>
		<link>http://www.code-fly.com/2006/09/27/zen-cart/</link>
		<comments>http://www.code-fly.com/2006/09/27/zen-cart/#comments</comments>
		<pubDate>Wed, 27 Sep 2006 09:50:51 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.code-fly.com/?p=6</guid>
		<description><![CDATA[I&#039;m on the lookout for an e-commerce platform. This site is build upon Drupal, which has some nice e-commerce plugins and I have just created a test installation of Zen Cart to test that out. My first impression of Zen Cart is that there are far too many options. The configuration page is a little [...]]]></description>
			<content:encoded><![CDATA[<p>I&#039;m on the lookout for an e-commerce platform. This site is build upon Drupal, which has some nice e-commerce plugins and I have just created a test installation of Zen Cart to test that out.<br />
My first impression of Zen Cart is that there are far too many options. The configuration page is a little intimidating, even for a techie such as myself. I think a non-technical person would be lost in the page.<br />
I think I will keep looking, perhaps investigate drupal some more&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.code-fly.com/2006/09/27/zen-cart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a website</title>
		<link>http://www.code-fly.com/2006/09/13/creating-a-website/</link>
		<comments>http://www.code-fly.com/2006/09/13/creating-a-website/#comments</comments>
		<pubDate>Thu, 14 Sep 2006 02:14:43 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.code-fly.com/?p=4</guid>
		<description><![CDATA[I create websites for a living, yet I don&#039;t have a personal website of my own. So this site is here to remedy that. I&#039;m also evaluating a framework for developing websites which I may find more use for in the future. Its called Drupal http://drupal.org, a content management system written in php. I&#039;m sure [...]]]></description>
			<content:encoded><![CDATA[<p>I create websites for a living, yet I don&#039;t have a personal website of my own. So this site is here to remedy that. </p>
<p>I&#039;m also evaluating a framework for developing websites which I may find more use for in the future. Its called Drupal <a href="http://drupal.org/">http://drupal.org</a>, a content management system written in php. I&#039;m sure I will have more to say about it in the near future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.code-fly.com/2006/09/13/creating-a-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.999 seconds -->

