<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>DiscoMoose</title>
	<link>http://discomoose.org</link>
	<description>interesting things.</description>
	<lastBuildDate>Tue, 22 May 2007 20:57:29 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0" -->

	<item>
		<title>Add Notepad To Your &#8220;Send To&#8221; Menu</title>
		<description><![CDATA[What I&#8217;ve always found useful since I started using Windows is to add notepad to the &#8220;Send To&#8221; menu, which is available when you right click on any file in Windows. This means that if you come across a text file with an extension which is not associated with Notepad then you can open it [...]]]></description>
		<link>http://discomoose.org/2006/05/01/add-notepad-to-your-send-to-menu/</link>
			</item>
	<item>
		<title>How to stop .avi files from locking up in Windows Explorer</title>
		<description><![CDATA[If you&#8217;ve downloaded a corrupt .avi file in Windows then you may have noticed that if you try to delete, rename or move it that explorer complains that the file is in use. This is because Windows is trying to load the whole file to generate a preview image for you. You can turn this [...]]]></description>
		<link>http://discomoose.org/2006/05/01/how-to-stop-avi-files-from-locking-up-in-windows-explorer/</link>
			</item>
	<item>
		<title>Output redirection to a file from the Windows Command Line</title>
		<description><![CDATA[This tip will show you how to write the output of a command at the Windows command line to a file. It&#8217;s not hard (infact it&#8217;s one of the very basics of command line programming). Start Command Line within Windows by choosing Start-&#62;Run then entering &#8216;cmd&#8217; and pressing enter. Suppose you want to capture the [...]]]></description>
		<link>http://discomoose.org/2006/05/01/output-redirection-to-a-file-from-the-windows-command-line/</link>
			</item>
	<item>
		<title>How to use PHP in pages with a .html extension (or any other)</title>
		<description><![CDATA[To be able to use php code on a page with an extension other than .php, you need a server which supports .htaccess files. To add an extension to be parsed for php, create or edit a file called .htaccess (with the dot first) containing the following line: AddType application/x-httpd-php .html .moo .htm This tells [...]]]></description>
		<link>http://discomoose.org/2006/04/28/how-to-use-php-in-pages-with-a-html-extension-or-any-other/</link>
			</item>
	<item>
		<title>The Difference Between require() and include()</title>
		<description><![CDATA[The key difference between require() and include() is that if you require() a file that can't be loaded (eg if it isn't there) then it generates a fatal error which will halt the execution of the page completely, and no more output will be generated. On the other hand, if you include() a file that [...]]]></description>
		<link>http://discomoose.org/2006/04/28/the-difference-between-require-and-include/</link>
			</item>
	<item>
		<title>Finding Items in an Array with PHP</title>
		<description><![CDATA[The problem: we have an array of items in PHP and we want to find out if a specific item is in the array. In code we can define the array as: IE we have an array called $fruitBasket which contains 5 strings, each of which is the name of a fruit. We want to [...]]]></description>
		<link>http://discomoose.org/2006/04/28/finding-items-in-an-array-with-php/</link>
			</item>
	<item>
		<title>Rotating Images with PHP</title>
		<description><![CDATA[This tutorial will show you how to rotate an image in your PHP scripts. You'll need to have the GD library installed to be able to use some of the functions we use in this guide, though this is included with most PHP installations so there's a chance you'll have it. Image rotation in PHP [...]]]></description>
		<link>http://discomoose.org/2006/04/28/rotating-pictures-with-php/</link>
			</item>
	<item>
		<title>Reading a file&#8217;s contents with PHP</title>
		<description><![CDATA[PHP provides three built-in functions which allow you to easily read the contents of a file on your webserver. This is useful when, for example, another program may write information to the file and you could access that information through your script. In this example, we're going to use the following example 5 line file, [...]]]></description>
		<link>http://discomoose.org/2006/04/28/reading-a-files-contents-with-php/</link>
			</item>
	<item>
		<title>Generating Random Numbers in PHP</title>
		<description><![CDATA[To create random numbers in PHP, you can use the rand() function call, which takes either zero or, optionally, two parameters determining the minimum and maximum random numbers (inclusive) that you'd like. If you don't specify a maximum then it will default to a value, RAND_MAX, set in the PHP configuration. The function returns an [...]]]></description>
		<link>http://discomoose.org/2006/04/27/random-numbers-in-php/</link>
			</item>
	<item>
		<title>Search Google for Synonyms</title>
		<description><![CDATA[It's possible to search Google for synonyms of a word, ie other words that Google thinks has the same meaning. To do this, simply precede the term by a tilde: ~, for example: ~blog will return results for terms such as weblog and blogger as well as those for blog. If you're only interested in [...]]]></description>
		<link>http://discomoose.org/2006/03/02/search-google-for-synonyms/</link>
			</item>
</channel>
</rss>
