<?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>gHacks technology news &#187; script</title>
	<atom:link href="http://www.ghacks.net/tag/script/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Wed, 25 Nov 2009 09:43:02 +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>Turn Off Computer Hardware With A Single Click</title>
		<link>http://www.ghacks.net/2009/05/30/turn-off-computer-hardware-with-a-single-click/</link>
		<comments>http://www.ghacks.net/2009/05/30/turn-off-computer-hardware-with-a-single-click/#comments</comments>
		<pubDate>Sat, 30 May 2009 14:26:03 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[computer hardware]]></category>
		<category><![CDATA[devcon]]></category>
		<category><![CDATA[device-manager]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[netbook]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[turn off computer hardware]]></category>
		<category><![CDATA[windows software]]></category>
		<category><![CDATA[windows tips]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/05/30/turn-off-computer-hardware-with-a-single-click/</guid>
		<description><![CDATA[Rarst inspired me to take a closer look at the command line utility devcon which has been created by Microsoft. Devcon is basically a command line version of the Windows Device Manager. We recently published an energy saving article that contained a tip to disable computer hardware to save power which is especially useful for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rarst.net/script/devcon/">Rarst</a> inspired me to take a closer look at the command line utility devcon which has been created by Microsoft. Devcon is basically a command line version of the Windows Device Manager. We recently published an energy saving article that contained a tip to disable computer hardware to save power which is especially useful for mobile computer systems like laptops or netbooks.</p>
<p>It is possible to write a simple batch script that can turn computer hardware off. Might be a handy for users who connect their mobile computer to a power source and use it on the road as well. They would simply turn off the unnecessary computer hardware on the road and turn it on again once it is connected to a power source again.</p>
<p><span id="more-13179"></span>The creation does not require programming skills but you need to know a bit about the computer hardware installed on your system. Not all hardware should be disabled, possibilities include</p>
<ul>
<li>Audio Devices</li>
<li>Network Adapters</li>
<li>Wireless Networking Adapters</li>
<li>CD, DVD and Blu-Ray drives</li>
<li>Floppy drives</li>
<li>webcams, card readers and other peripherals</li>
</ul>
<p>You need three commands to work with devcon. </p>
<ul>
<li>devcon find</li>
<li>devcon disable</li>
<li>devcon enable</li>
</ul>
<p>Start by downloading <a href="http://support.microsoft.com/kb/311272">devcon</a> from the official Microsoft website. Unpack it to a directory of your choice. It might be a good idea to put it into a directory that is listed in the system path of the operating system, e.g. /system32.</p>
<p>Open the Windows command line with [Windows R], [cmd], [enter]. </p>
<p>Enter <strong>devcon find *</strong> to get a listing of all hardware devices. This can be a long list, you can use the following command to find a specific device (the command is case sensitive): </p>
<p><code>devcon find * | find "computer hardware identifier"</code></p>
<p>To find all Creative devices one could enter</p>
<p><code>devcon find * | find "Creative"</code></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/05/computer_hardware-500x251.jpg" alt="computer hardware" title="computer hardware" width="500" height="251" class="alignnone size-medium wp-image-13178" /></p>
<p>The device in the screenshot above would be the Creative Soundblaster X-FI sound card. To disable that sound card one would use the following command</p>
<p><code>devcon disable PCI\VEN_1102</code></p>
<p>It is enough to add the unique identifier for the hardware device. Here are some tips to make the most out of the find command:</p>
<p><strong>Find all PCI devices</strong></p>
<p><code>devcon find * | find "PCI"</code></p>
<p><strong>Find all USB devices</strong></p>
<p><code>devcon find * | find "USB"</code></p>
<p>All that needs to be done now is to collect the unique identifiers for all computer hardware devices that should be turned off at times.</p>
<p>Create a new text document on the computer, name it disable.bat. Right-click it, select edit and add as many devcon disable lines to it as you want.</p>
<p><code>devcon disable PCI\VEN_1102<br />
devcon disable PCI\VEN_1317<br />
devcon disable USB\VID_1532</code></p>
<p>Now create a second batch file, name it enable.bat and use the following code (you basically exchange disable with enable)</p>
<p><code>devcon enable PCI\VEN_1102<br />
devcon enable PCI\VEN_1317<br />
devcon enable USB\VID_1532</code></p>
<p>That&#8217;s a basic script. You could add echo commands to it, combine the two scripts into one and beatify it further. The basic script on the other hand does what it is supposed to do.</p>

	Tags: <a href="http://www.ghacks.net/tag/computer-hardware/" title="computer hardware" rel="tag">computer hardware</a>, <a href="http://www.ghacks.net/tag/devcon/" title="devcon" rel="tag">devcon</a>, <a href="http://www.ghacks.net/tag/device-manager/" title="device-manager" rel="tag">device-manager</a>, <a href="http://www.ghacks.net/tag/laptop/" title="laptop" rel="tag">laptop</a>, <a href="http://www.ghacks.net/tag/netbook/" title="netbook" rel="tag">netbook</a>, <a href="http://www.ghacks.net/tag/script/" title="script" rel="tag">script</a>, <a href="http://www.ghacks.net/tag/turn-off-computer-hardware/" title="turn off computer hardware" rel="tag">turn off computer hardware</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a>, <a href="http://www.ghacks.net/tag/windows-tips/" title="windows tips" rel="tag">windows tips</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/06/18/disney-netpal/" title="Disney Netpal (June 18, 2009)">Disney Netpal</a> (8)</li>
	<li><a href="http://www.ghacks.net/2009/10/27/windows-device-manager-alternative/" title="Windows Device Manager Alternative (October 27, 2009)">Windows Device Manager Alternative</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/05/20/what-you-should-do-after-buying-a-new-computer-system/" title="What You Should Do After Buying A New Computer System (May 20, 2009)">What You Should Do After Buying A New Computer System</a> (18)</li>
	<li><a href="http://www.ghacks.net/2009/09/15/web-browser-have-impact-on-battery-life/" title="Web Browser Have Impact On Battery Life (September 15, 2009)">Web Browser Have Impact On Battery Life</a> (1)</li>
	<li><a href="http://www.ghacks.net/2007/12/12/use-favorites-to-access-folders-faster-2/" title="Use Favorites to access Folders faster (December 12, 2007)">Use Favorites to access Folders faster</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/05/30/turn-off-computer-hardware-with-a-single-click/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Document Presentation For Websites</title>
		<link>http://www.ghacks.net/2009/03/18/document-presentation-for-websites/</link>
		<comments>http://www.ghacks.net/2009/03/18/document-presentation-for-websites/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 10:18:39 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Online Services]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[document]]></category>
		<category><![CDATA[document presentation]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[view documents]]></category>
		<category><![CDATA[webmasters]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/03/18/document-presentation-for-websites/</guid>
		<description><![CDATA[There is not really a standard out there for document presentation on websites. Many webmasters rely on widgets and scripts to display documents on their websites making it sometimes confusing for their visitors who have to deal with documents that they can only download and various interfaces for document presentations on the website itself.
Doc Shots [...]]]></description>
			<content:encoded><![CDATA[<p>There is not really a standard out there for document presentation on websites. Many webmasters rely on widgets and scripts to display documents on their websites making it sometimes confusing for their visitors who have to deal with documents that they can only download and various interfaces for document presentations on the website itself.</p>
<p><a href="http://www.docstoc.com/DocShots/">Doc Shots</a> tries to bring in more control to the webmaster by allowing them to present documents on their websites easily. The visitor be able to view a selected document right on the website in an overlay that is providing basic controls such as being able to download, print, search and zoom the document at hand. It feels like a document viewer on the web and resembles desktop document viewers enough to make it easy for visitors to use it.</p>
<p>Webmasters have to be registered users of the service before they can configure the service for their website. Registration is free on the other hand and not problematic or time consuming at all. The configuration of the document presentation script can be customized by setting the width and height of the overlay window. Other options include the display of related items and document storing policies.</p>
<p><span id="more-11317"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/03/document_presentation-500x354.jpg" alt="document presentation" title="document presentation" width="500" height="354" class="alignnone size-medium wp-image-11316" /></p>
<p>Webmasters receive a JavaScript code in the end that they have to embed into their website to make use of the document presentation engine. The script will automatically recognize popular document formats such as .doc, .pdf, .ppt, .xls. Hoovering over document links or clicking on the documents will open the document presentation overlay on the same website.</p>
<p>The first viewer will experience a small delay while opening the document as the conversion is initiated at that time. It is therefor a good idea to be the first viewer so that regular visitors do not experience the delay. Visitors can still right-click the document and save it to their computer system directly.</p>

	Tags: <a href="http://www.ghacks.net/tag/document/" title="document" rel="tag">document</a>, <a href="http://www.ghacks.net/tag/document-presentation/" title="document presentation" rel="tag">document presentation</a>, <a href="http://www.ghacks.net/tag/documents/" title="documents" rel="tag">documents</a>, <a href="http://www.ghacks.net/tag/javascript/" title="javascript" rel="tag">javascript</a>, <a href="http://www.ghacks.net/tag/script/" title="script" rel="tag">script</a>, <a href="http://www.ghacks.net/tag/view-documents/" title="view documents" rel="tag">view documents</a>, <a href="http://www.ghacks.net/tag/webmasters/" title="webmasters" rel="tag">webmasters</a>, <a href="http://www.ghacks.net/tag/websites/" title="websites" rel="tag">websites</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/03/20/webmaster-contact-software/" title="Webmaster Contact Software (March 20, 2009)">Webmaster Contact Software</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/11/23/typealizer-what-type-is-that-blog/" title="Typealizer: What Type is That Blog (November 23, 2008)">Typealizer: What Type is That Blog</a> (6)</li>
	<li><a href="http://www.ghacks.net/2008/06/01/test-websites-in-various-internet-explorer-versions/" title="Test Websites in various Internet Explorer Versions (June 1, 2008)">Test Websites in various Internet Explorer Versions</a> (9)</li>
	<li><a href="http://www.ghacks.net/2009/08/16/siteflow-bookmarklet-simplifies-website-navigation/" title="SiteFlow Bookmarklet Simplifies Website Navigation (August 16, 2009)">SiteFlow Bookmarklet Simplifies Website Navigation</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/03/27/open-xml-docx-viewer/" title="Open XML Docx Viewer (March 27, 2009)">Open XML Docx Viewer</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/03/18/document-presentation-for-websites/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Create Web based Powerpoint Presentations</title>
		<link>http://www.ghacks.net/2007/12/15/create-web-based-powerpoint-presentations/</link>
		<comments>http://www.ghacks.net/2007/12/15/create-web-based-powerpoint-presentations/#comments</comments>
		<pubDate>Sat, 15 Dec 2007 11:20:47 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[The Web]]></category>
		<category><![CDATA[powerpoint]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[slideshows]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2007/12/15/create-web-based-powerpoint-presentations/</guid>
		<description><![CDATA[Microsoft Powerpoint has one huge disadvantage. It only supports local presentations and offers no way to show a presentation to users of a conference that take part from different offices. Most companies send the presentation by email to those users but this is not the best solution in my opinion. ]]></description>
			<content:encoded><![CDATA[<p>Microsoft PowerPoint has one huge disadvantage. It only supports local presentations and offers no way to show a presentation to users of a conference that take part from different offices. Most companies send the presentation by email to those users but this is not the best solution in my opinion. </p>
<p><a href="http://sourceforge.net/project/showfiles.php?group_id=181580&#038;package_id=236594&#038;release_id=522845">Slide Presenter</a> offers a better one. It is a php based script that can run on any server that supports PHP. The administrator can create new presentations by adding images of the slides to it. Users can then connect to the website to see the current slide. The administrator manages the progression and decides which slide is currently seen on the website, much like a local presentation but with the major advantage that people from all over the world can connect and view the PowerPoint presentation online.</p>
<p>The presentation that has been created in Microsoft PowerPoint has to be saved as image slides which can be done directly in Powerpoint using the File > Save As menu. Just select a different format, jpg for instance, before saving the presentation. PowerPoint will then ask if you want to save the current slide or all slides. Select all slides which has the result that all slides of the presentation are saved as images.</p>
<p><span id="more-2541"></span><img src='http://www.ghacks.net/wp-content/uploads/2007/12/slide-presenter-admin.jpg' alt='slide presenter' /></p>

	Tags: <a href="http://www.ghacks.net/tag/powerpoint/" title="powerpoint" rel="tag">powerpoint</a>, <a href="http://www.ghacks.net/tag/script/" title="script" rel="tag">script</a>, <a href="http://www.ghacks.net/tag/slideshows/" title="slideshows" rel="tag">slideshows</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/10/27/wordpress-231-is-available/" title="Wordpress 2.31 is available (October 27, 2007)">Wordpress 2.31 is available</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/05/30/turn-off-computer-hardware-with-a-single-click/" title="Turn Off Computer Hardware With A Single Click (May 30, 2009)">Turn Off Computer Hardware With A Single Click</a> (6)</li>
	<li><a href="http://www.ghacks.net/2008/08/15/sendshield-prevents-private-data-leaks-when-sending-office-documents/" title="Sendshield Prevents Private Data Leaks When Sending Office Documents (August 15, 2008)">Sendshield Prevents Private Data Leaks When Sending Office Documents</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/06/30/remove-hidden-data-tool-for-office-2003-and-office-xp/" title="Remove Hidden Data tool for Office 2003 and Office XP (June 30, 2008)">Remove Hidden Data tool for Office 2003 and Office XP</a> (2)</li>
	<li><a href="http://www.ghacks.net/2007/09/30/preezo-create-powerpoint-presentations-online/" title="Preezo: Create Powerpoint Presentations Online (September 30, 2007)">Preezo: Create Powerpoint Presentations Online</a> (12)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2007/12/15/create-web-based-powerpoint-presentations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress 2.31 is available</title>
		<link>http://www.ghacks.net/2007/10/27/wordpress-231-is-available/</link>
		<comments>http://www.ghacks.net/2007/10/27/wordpress-231-is-available/#comments</comments>
		<pubDate>Sat, 27 Oct 2007 07:33:09 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[The Web]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[windows live writer]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress update]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2007/10/27/wordpress-231-is-available/</guid>
		<description><![CDATA[A new version of the blogging plattform Wordpress has been released today. It is an advised update for every webmaster especially for those with register_globals enabled. A security vulnerability was found that can be exploited if that setting is enabled. ]]></description>
			<content:encoded><![CDATA[<p>A new version of the blogging plattform Wordpress has been released today. It is an advised update for every webmaster especially for those with register_globals enabled. A security vulnerability was found that can be exploited if that setting is enabled. </p>
<p>The new version fixes more than 20 bugs and security vulnerabilities. Some of the most important fixes include tagging support for Windows Live Writer, a login fix for blogs that have different Wordpress and Blog addresses, faster taxonomy database queries, that emailed posts can now be assigned to the author if the email uses a hyphen and link importer fixes.</p>
<p>I had no troubles overwriting the files of my Wordpress installation to speed up the process. A suggestion would be to backup your blog before you start the process.</p>
<p><span id="more-2179"></span><strong>Read More:</strong></p>
<p><a href="http://wordpress.org/download/">Wordpress 2.31</a><br />
<a href="http://trac.wordpress.org/query?status=closed&#038;milestone=2.3.1&#038;resolution=fixed&#038;order=priority">Wordpress Release Notes</a></p>

	Tags: <a href="http://www.ghacks.net/tag/blog/" title="blog" rel="tag">blog</a>, <a href="http://www.ghacks.net/tag/script/" title="script" rel="tag">script</a>, <a href="http://www.ghacks.net/tag/windows-live-writer/" title="windows live writer" rel="tag">windows live writer</a>, <a href="http://www.ghacks.net/tag/wordpress/" title="wordpress" rel="tag">wordpress</a>, <a href="http://www.ghacks.net/tag/wordpress-update/" title="wordpress update" rel="tag">wordpress update</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/08/04/wordpress-2-8-3/" title="Wordpress 2.8.3 (August 4, 2009)">Wordpress 2.8.3</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/07/20/wordpress-2-8-2-security-patch/" title="Wordpress 2.8.2 Security Patch (July 20, 2009)">Wordpress 2.8.2 Security Patch</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/06/11/wordpress-2-8/" title="Wordpress 2.8 (June 11, 2009)">Wordpress 2.8</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/12/11/wordpress-27/" title="Wordpress 2.7 (December 11, 2008)">Wordpress 2.7</a> (7)</li>
	<li><a href="http://www.ghacks.net/2008/11/25/wordpress-265-security-update/" title="Wordpress 2.6.5 Security Update (November 25, 2008)">Wordpress 2.6.5 Security Update</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2007/10/27/wordpress-231-is-available/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free Online Conversions</title>
		<link>http://www.ghacks.net/2006/12/09/free-online-conversions/</link>
		<comments>http://www.ghacks.net/2006/12/09/free-online-conversions/#comments</comments>
		<pubDate>Sat, 09 Dec 2006 14:14:58 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[The Web]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[filetypes]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2006/12/09/free-online-conversions/</guid>
		<description><![CDATA[Sometimes you download filetypes that your computer can't read because of a missing viewer or that you would like to transport to a portable device that only reads certain filetypes. Instead of download several programs that are able to convert the files you have into the filetypes that you need you could use the online file conversion website Zamzar to do the same.]]></description>
			<content:encoded><![CDATA[<p>Sometimes you download filetypes that your computer can&#8217;t read because of a missing viewer or that you would like to transport to a portable device that only reads certain filetypes. Instead of download several programs that are able to convert the files you have into the filetypes that you need you could use the online file conversion website <a title="zamzar" href="http://www.zamzar.com/" target="_blank">Zamzar</a> to do the same.</p>
<p><a title="zamzar convert filetypes" href="http://www.zamzar.com/conversionTypes.php" target="_blank">Zamzar</a> offers four different format categories which are: document, image, movie and music. Each category has a large list of formats that can be converted into each other. The following can be converted on the website:</p>
<p><span id="more-992"></span></p>
<ul>
<li>text formats: csv, doc, odp, ods, odt, pdf, ppt and xls.</li>
<li>image formats: bmp, gif, jpg, tiff, ps</li>
<li>music fomats: ac3, au, flac, m4a, mp3, wav, wma</li>
<li>movie formats: avi, flv, gvi, mov, mp4, mpg</li>
</ul>
<p>As you can see there are plenty of possiblities to convert formats into each other. The maximum file limit is 100 megabytes which should be sufficient for most purposes.</p>

	Tags: <a href="http://www.ghacks.net/tag/conversion/" title="conversion" rel="tag">conversion</a>, <a href="http://www.ghacks.net/tag/convert/" title="convert" rel="tag">convert</a>, <a href="http://www.ghacks.net/tag/documents/" title="documents" rel="tag">documents</a>, <a href="http://www.ghacks.net/tag/file/" title="file" rel="tag">file</a>, <a href="http://www.ghacks.net/tag/filetypes/" title="filetypes" rel="tag">filetypes</a>, <a href="http://www.ghacks.net/tag/freeware/" title="freeware" rel="tag">freeware</a>, <a href="http://www.ghacks.net/tag/image/" title="image" rel="tag">image</a>, <a href="http://www.ghacks.net/tag/movie/" title="movie" rel="tag">movie</a>, <a href="http://www.ghacks.net/tag/music/" title="music" rel="tag">music</a>, <a href="http://www.ghacks.net/tag/script/" title="script" rel="tag">script</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/08/08/convert-your-documents-into-one-format/" title="Convert your Documents into one Format (August 8, 2006)">Convert your Documents into one Format</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/12/22/software-for-starving-students/" title="Software for Starving Students (December 22, 2006)">Software for Starving Students</a> (1)</li>
	<li><a href="http://www.ghacks.net/2006/12/30/share-files-with-http-file-server/" title="Share Files with HTTP File Server (December 30, 2006)">Share Files with HTTP File Server</a> (11)</li>
	<li><a href="http://www.ghacks.net/2007/01/25/play-your-mp3-collection-remotely/" title="Play your MP3 collection remotely (January 25, 2007)">Play your MP3 collection remotely</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/12/03/how-to-easily-dump-ps3-movies-and-games/" title="How to easily dump PS3 movies and games (December 3, 2006)">How to easily dump PS3 movies and games</a> (7)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2006/12/09/free-online-conversions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
