<?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>DiscoMoose</title>
	<atom:link href="http://discomoose.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://discomoose.org</link>
	<description>interesting things.</description>
	<lastBuildDate>Tue, 22 May 2007 20:57:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Hacking the translation plugin for nicer URLs</title>
		<link>http://discomoose.org/2006/05/07/hacking-the-translation-plugin-for-nicer-urls/</link>
		<comments>http://discomoose.org/2006/05/07/hacking-the-translation-plugin-for-nicer-urls/#comments</comments>
		<pubDate>Sat, 06 May 2006 23:29:54 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://discomoose.org/2006/05/07/hacking-the-translation-plugin-for-nicer-urls/</guid>
		<description><![CDATA[When I first installed WordPress on this site, I went to the codex plugin list and went a bit mad over the extreme extensibility on offer, grabbing many plugins, just to try them out. A lot of them I disabled after a short while (not that they weren't good, they weren't anything I was wanting [...]]]></description>
			<content:encoded><![CDATA[<p>When I first installed <a href="http://wordpress.org/">WordPress</a> on this site, I went to the <a href="http://codex.wordpress.org/Plugins">codex plugin list</a> and went a bit mad over the extreme extensibility on offer, grabbing many plugins, just to try them out. A lot of them I disabled after a short while (not that they weren't good, they weren't anything I was wanting to use). Anyway, one of the plugins which is almost completely useless to me, but which I have left activated is the <a href="http://blog.taragana.com/index.php/archive/wordpress-plugin-automatic-machine-translation-for-your-blog-in-eight-languages-spanish-french-german-portuguese-italian-japanese-korean-and-chinese/">Simple Thoughts Automatic Translation Plugin</a>, which provides the little translation bar with the flags which you can see on the right of this page. I left it activated simply because it is neat. <img src='http://discomoose.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<span id="more-49"></span><br />
As I use nice mod_rewritten URLs for all other WordPress powered content on this site, I decided to try and hack the script to allow nice translation URLs:<br />
Old: http://discomoose.org/wp-content/plugins/translator.php?l=de&#038;u=http://discomoose.org/<br />
New: http://discomoose.org/translate/de/http://discomoose.org/<br />
Now, I'm not experienced with mod_rewrite at all, so this is more than likely a poorly implemented hack. But equipped with <a href="http://www.workingwith.me.uk/articles/scripting/mod_rewrite">an excellent mod_rewrite beginner's guide</a> (found via <a href="http://digg.com/programming/mod_rewrite,_a_beginner_s_guide_(with_examples)">Digg</a>) I set about trying to implement it.</p>
<p>What I came up with is this:<br />
In /wp-content/plugins/translator.php, change the get_translated_url function to this:</p>
<div class="igBar"><span id="lphp-3"><a href="#" onclick="javascript:showPlainTxt('php-3'); return false;">Click here to view the below code as plain text</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-3">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF9933; font-style:italic;">// new version for mod_rewriteness</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">function</span> get_translated_url<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$language</span>=<span style="color:#FF0000;">'de'</span>, <span style="color:#0000FF;">$url</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color:#616100;">if</span><span style="color:#006600; font-weight:bold;">&#40;</span>!<a href="http://www.php.net/isset"><span style="color:#000066;">isset</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$url</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#0000FF;">$url</span> = get_bloginfo<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'url'</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color:#616100;">return</span> get_bloginfo<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'url'</span><span style="color:#006600; font-weight:bold;">&#41;</span> . <span style="color:#FF0000;">'/translate/'</span> . <span style="color:#0000FF;">$language</span> . <span style="color:#FF0000;">'/'</span> . <span style="color:#0000FF;">$url</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#008000;">/* old get_translated_url function commented out for easy restoring:</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#008000;">function get_translated_url($language='de', $url) {</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#008000;">&nbsp; &nbsp; if(!isset($url)) $url = get_bloginfo('url');</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#008000;">&nbsp; &nbsp; return get_bloginfo('url') . '/wp-content/plugins/translator.php?l=' . $language . '&amp;amp;u=' . $url;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#008000;">} */</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>And add the following to the top of .htaccess:</p>
<div class="igBar"><span id="lcode-4"><a href="#" onclick="javascript:showPlainTxt('code-4'); return false;">Click here to view the below code as plain text</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-4">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;IfModule mod_rewrite.<span style="">c</span>&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">RewriteEngine On</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">RewriteBase /</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">RewriteRule ^translate/<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#91;</span>^\/<span style="color:#006600; font-weight:bold;">&#93;</span>+<span style="color:#006600; font-weight:bold;">&#41;</span>/<span style="color:#006600; font-weight:bold;">&#40;</span>.*<span style="color:#006600; font-weight:bold;">&#41;</span>$ /wp-content/plugins/translator.<span style="">php</span>?l=$<span style="color:#800000;color:#800000;">1</span>&amp;u=$<span style="color:#800000;color:#800000;">2</span> <span style="color:#006600; font-weight:bold;">&#91;</span>L<span style="color:#006600; font-weight:bold;">&#93;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/IfModule&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Then URLs such as /translate/&lt;language&gt;/&lt;url&gt; will work. As of yet I haven't encountered any major problems with this hack, but that's not to say there aren't any <img src='http://discomoose.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://discomoose.org/2006/05/07/hacking-the-translation-plugin-for-nicer-urls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Access a Page in Google&#8217;s Cache</title>
		<link>http://discomoose.org/2006/05/01/how-to-access-a-page-in-googles-cache/</link>
		<comments>http://discomoose.org/2006/05/01/how-to-access-a-page-in-googles-cache/#comments</comments>
		<pubDate>Mon, 01 May 2006 02:30:48 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://discomoose.org/2006/05/01/how-to-access-a-page-in-googles-cache/</guid>
		<description><![CDATA[Normally the format of a URL in Google's cache is:http://google.com/search?q=cache:xxxxx:yyyyyWhere xxxxx is a hash of the URL and yyyyy is the address itself. You can access the cache of specific URL by omitting the hash part and simply using the url:http://google.com/search?q=cache:xxxxxFor example:http://google.com/search?q=cache:google.com This is also possible without editing the url, by searching google for &#34;cache:google.com&#34; [...]]]></description>
			<content:encoded><![CDATA[<p>Normally the format of a URL in Google's cache is:<br />http://google.com/search?q=cache:xxxxx:yyyyy<br />Where xxxxx is a hash of the URL and yyyyy is the address itself. <br />You can access the cache of specific URL by omitting the hash part and simply using the url:<br />http://google.com/search?q=cache:xxxxx<br />For example:<br /><a target="_blank" href="http://google.com/search?q=cache:google.com">http://google.com/search?q=cache:google.com</a></p>
<p>This is also possible without editing the url, by searching google for &quot;cache:google.com&quot;</p>
<p>To highlight terms within the cache'd page, add them on to the end of the search query, for example: &quot;cache:google.com news&quot; will highlight the word &quot;News&quot;</p>
]]></content:encoded>
			<wfw:commentRss>http://discomoose.org/2006/05/01/how-to-access-a-page-in-googles-cache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Control the Mouse Pointer Without a Mouse in Windows XP</title>
		<link>http://discomoose.org/2006/05/01/how-to-control-the-mouse-pointer-without-a-mouse-in-windows-xp/</link>
		<comments>http://discomoose.org/2006/05/01/how-to-control-the-mouse-pointer-without-a-mouse-in-windows-xp/#comments</comments>
		<pubDate>Mon, 01 May 2006 02:29:49 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://discomoose.org/2006/05/01/how-to-control-the-mouse-pointer-without-a-mouse-in-windows-xp/</guid>
		<description><![CDATA[If you want to control your mouse pointer with the keyboard, Windows XP provides a way: Press Alt+Left Shift+Num Lock all at once and a prompt will appear telling you that you have activated mousekeys, select ok then you can control the mouse with the numpad. The controls are: 1,2,3,4,6,7,8,9 = move the mouse5 = [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to control your mouse pointer with the keyboard, Windows XP provides a way:</p>
<p>Press Alt+Left Shift+Num Lock all at once and a prompt will appear telling you that you have activated mousekeys, select ok then you can control the mouse with the numpad.</p>
<p>The controls are: <br />1,2,3,4,6,7,8,9 = move the mouse<br />5 = mouse button click<br />+ = double click<br />insert = hold down mouse button<br />delete = release mouse button (after holding it down with insert)<br />/, * or - = select which mouse button the above controls will click (left, both or right respectively)<br />numlock = disable mousekeys</p>
]]></content:encoded>
			<wfw:commentRss>http://discomoose.org/2006/05/01/how-to-control-the-mouse-pointer-without-a-mouse-in-windows-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use Google to define words</title>
		<link>http://discomoose.org/2006/05/01/use-google-to-define-words/</link>
		<comments>http://discomoose.org/2006/05/01/use-google-to-define-words/#comments</comments>
		<pubDate>Mon, 01 May 2006 02:28:17 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://discomoose.org/2006/05/01/use-google-to-define-words/</guid>
		<description><![CDATA[You can use google to find definitions of words rather than looking them up in an online dictionary. To do this, search for &#34;define:&#34; followed by the word (without quotes) you want to find the meaning of. For example: &#34;define:potato&#34;.]]></description>
			<content:encoded><![CDATA[<p>You can use google to find definitions of words rather than looking them up in an online dictionary.<br /> To do this, search for &quot;define:&quot; followed by the word (without quotes) you want to find the meaning of.<br /> For example: <a href="http://www.google.com/search?q=define%3Apotato">&quot;define:potato&quot;</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://discomoose.org/2006/05/01/use-google-to-define-words/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List all processes with the Windows Command Line</title>
		<link>http://discomoose.org/2006/05/01/list-all-processes-with-the-windows-command-line/</link>
		<comments>http://discomoose.org/2006/05/01/list-all-processes-with-the-windows-command-line/#comments</comments>
		<pubDate>Mon, 01 May 2006 02:27:06 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://discomoose.org/2006/05/01/list-all-processes-with-the-windows-command-line/</guid>
		<description><![CDATA[To view all the currently running processes in windows from the command line, you can use the command 'tasklist'. The output will look something like this: F:\&#62;tasklist Image Name PID Session Name Session# Mem Usage ===================== ====== ================ ======== ============ System Idle Process 0 Console 0 16 K System 4 Console 0 52 K smss.exe [...]]]></description>
			<content:encoded><![CDATA[<p>To view all the currently running processes in windows from the command line, you can use the command 'tasklist'. The output will look something like this:<br />
<code>F:\&gt;tasklist</code></p>
<pre>Image Name               PID Session Name     Session#    Mem Usage
===================== ====== ================ ======== ============
System Idle Process        0 Console                 0         16 K
System                     4 Console                 0         52 K
smss.exe                 592 Console                 0        108 K
csrss.exe                648 Console                 0      5,868 K
winlogon.exe             680 Console                 0      2,632 K
services.exe             724 Console                 0      2,376 K
(...)</pre>
]]></content:encoded>
			<wfw:commentRss>http://discomoose.org/2006/05/01/list-all-processes-with-the-windows-command-line/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Kill a Process from the Windows Command Line</title>
		<link>http://discomoose.org/2006/05/01/kill-a-process-from-the-windows-command-line/</link>
		<comments>http://discomoose.org/2006/05/01/kill-a-process-from-the-windows-command-line/#comments</comments>
		<pubDate>Mon, 01 May 2006 02:25:56 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://discomoose.org/2006/05/01/kill-a-process-from-the-windows-command-line/</guid>
		<description><![CDATA[To terminate a process from the command line of windows, use the taskkill command: When you know the name of the image to stop: taskkill /IM notepad.exe Or when you know the process ID, eg 784: taskkill /PID 784 For more usage variants, type taskkill /? NB: some of this information about what processes are [...]]]></description>
			<content:encoded><![CDATA[<p>To terminate a process from the command line of windows, use the <code>taskkill</code> command:<br />
When you know the name of the image to stop:<br />
<code>taskkill /IM notepad.exe</code><br />
Or when you know the process ID, eg 784:<br />
<code>taskkill /PID 784</code><br />
For more usage variants, type <code>taskkill /?</code></p>
<p>NB: some of this information about what processes are running can be obtained by the <code>tasklist</code> command.</p>
]]></content:encoded>
			<wfw:commentRss>http://discomoose.org/2006/05/01/kill-a-process-from-the-windows-command-line/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Google: Search within a site</title>
		<link>http://discomoose.org/2006/05/01/google-search-within-a-site/</link>
		<comments>http://discomoose.org/2006/05/01/google-search-within-a-site/#comments</comments>
		<pubDate>Mon, 01 May 2006 02:23:37 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://discomoose.org/2006/05/01/google-search-within-a-site/</guid>
		<description><![CDATA[Google lets you narrow your search down to within a specific website, or to within a specific TLD (for example .gov). You can do this by using the site: command in your search, for example: java site:sun.com - searches for java on sites with the domain name sun.com (this includes subdomains, like java.sun.com) java site:java.sun.com [...]]]></description>
			<content:encoded><![CDATA[<p>Google lets you narrow your search down to within a specific website, or to within a specific TLD (for example .gov).
<p>You can do this by using the site: command in your search, for example:</p>
<ul>
<li><a href="http://www.google.com/search?hl=en&#038;lr=&#038;q=java+site%3Asun.com&#038;btnG=Search">java site:sun.com</a> - searches for <span style="font-style: italic;">java</span> on sites with the domain name <span style="font-style: italic;">sun.com</span> (this includes subdomains, like java.sun.com)</li>
<li><a href="http://www.google.com/search?hl=en&#038;lr=&#038;q=java+site%3Ajava.sun.com&#038;btnG=Search">java site:java.sun.com</a> - more specific; searches for <span style="font-style: italic;">java</span> on sites with the domain name<span style="font-style: italic;"> java.sun.com</span>.</li>
<li><a href="http://www.google.com/search?hl=en&#038;lr=&#038;q=copyright+site%3Agov&#038;btnG=Search">copyright site:gov</a> - searches all US government sites (domain names ending in .gov) for the term <span style="font-style: italic;">copyright</span>.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://discomoose.org/2006/05/01/google-search-within-a-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Currency Conversion</title>
		<link>http://discomoose.org/2006/05/01/google-currency-conversion/</link>
		<comments>http://discomoose.org/2006/05/01/google-currency-conversion/#comments</comments>
		<pubDate>Mon, 01 May 2006 02:22:26 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://discomoose.org/2006/05/01/google-currency-conversion/</guid>
		<description><![CDATA[Google has a currency conversion feature built in to its search, all you have to do is search for 100 GBP in USD, for example, to convert &#163;100 (UK Pounds Sterling) to US Dollars. If you don't know the acronym for the currency you're converting to then don't worry as you can also do conversions [...]]]></description>
			<content:encoded><![CDATA[<p>Google has a currency conversion feature built in to its search, all you have to do is search for <a href="http://www.google.co.uk/search?q=100%20GBP%20in%20USD">100 GBP in USD</a>, for example, to convert &pound;100 (UK Pounds Sterling) to US Dollars. If you don't know the acronym for the currency you're converting to then don't worry as you can also do conversions with a search like <a href="http://www.google.com/search?hl=en&#038;lr=&#038;q=100+USD+in+czech+money&#038;btnG=Search" target="_blank">100 USD in Czech money</a>, if you were planning a trip to the Czech Republic.</p>
]]></content:encoded>
			<wfw:commentRss>http://discomoose.org/2006/05/01/google-currency-conversion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Save Embedded Media and Other Files in Firefox</title>
		<link>http://discomoose.org/2006/05/01/save-embedded-media-and-other-files-in-firefox/</link>
		<comments>http://discomoose.org/2006/05/01/save-embedded-media-and-other-files-in-firefox/#comments</comments>
		<pubDate>Mon, 01 May 2006 02:13:01 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://discomoose.org/2006/05/01/save-embedded-media-and-other-files-in-firefox/</guid>
		<description><![CDATA[There's a Firefox extension that allows you to easily save files which are embedded in a webpage, such as windows media files. Download Embedded does exactly what it sounds like it does. It adds a right-click context menu entry to download all embedded files on a webpage. Its great for grabbing embedded flash animations, movies, [...]]]></description>
			<content:encoded><![CDATA[<p>There's a Firefox extension that allows you to easily save files which are embedded in a webpage, such as windows media files.</p>
<blockquote><p><a  href="http://www.aeruder.net/software/extensions/extensionlist.html">Download Embedded</a> does exactly what it sounds like it does. It adds a  right-click context menu entry to download all embedded files on a webpage. Its  great for grabbing embedded flash animations, movies, music, etc., and a lot  easier than digging through the page source or through Firefox's Page Info.</p>
</blockquote>
<p><a target="_blank" href="http://www.aeruder.net/software/extensions/extensionlist.html">Download Embedded</a> makes the process simple. My previous technique was to find the URL for the embedded media in the <a href="http://adblock.mozdev.org/">Adblock</a> extension's 'Blockable Items' list.</p>
]]></content:encoded>
			<wfw:commentRss>http://discomoose.org/2006/05/01/save-embedded-media-and-other-files-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google: Filter By Usage Rights</title>
		<link>http://discomoose.org/2006/05/01/google-filter-by-usage-rights/</link>
		<comments>http://discomoose.org/2006/05/01/google-filter-by-usage-rights/#comments</comments>
		<pubDate>Mon, 01 May 2006 02:11:18 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://discomoose.org/2006/05/01/google-filter-by-usage-rights/</guid>
		<description><![CDATA[I'm not sure how long this has been there (a while now; I'm imporing this from an old blog of mine), but Google has added a filter on its Advanced Search page which allows you to filter search results by the license that content on a website is released under, which would be useful, for [...]]]></description>
			<content:encoded><![CDATA[<p>I'm not sure how long this has been there (a while now; I'm imporing this from an old blog of mine), but Google has added a filter on its <a href="http://www.google.com/advanced_search?hl=en">Advanced Search</a> page which allows you to filter search results by the license that content on a website is released under, which would be useful, for example, if you are looking for content which you can republish on your page.<br /> <img width="316" height="106" border="0" src="http://vdhri.net/google-license-search.png" alt="google-license-search.png" /></p>
]]></content:encoded>
			<wfw:commentRss>http://discomoose.org/2006/05/01/google-filter-by-usage-rights/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
