<?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>Enquiring Mimes&#187; Windows</title>
	<atom:link href="http://enquiringmimes.com/wp/category/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://enquiringmimes.com/wp</link>
	<description>Tools and Technology for Adults</description>
	<lastBuildDate>Wed, 30 Nov 2011 17:26:51 +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>My new best friend &#8212; AutoHotkey</title>
		<link>http://enquiringmimes.com/wp/2009/06/18/my-new-best-friend-autohotkey/</link>
		<comments>http://enquiringmimes.com/wp/2009/06/18/my-new-best-friend-autohotkey/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 22:10:10 +0000</pubDate>
		<dc:creator>Dan Perlman</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[AutoHotkey]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Keyboard shortcut]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://enquiringmimes.com/wp/?p=2274</guid>
		<description><![CDATA[When you&#8217;re like me, a natural time waster, you need to be as productive as possible when you are working. That&#8217;s why I have recently learned to love AutoHotkey, a free Windows download that allows you to automate repitive actions, create hotkey and scripts and at its most basic is really easy to use. Some [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-2275" title="autohotkey-logo" src="http://enquiringmimes.com/wp/wp-content/uploads/2009/06/autohotkey-logo.png" alt="autohotkey-logo" width="238" height="150" />When you&#8217;re like me, a natural time waster, you need to be as productive as possible when you are working.  That&#8217;s why I have recently learned to love <a class="zem_slink" title="AutoHotkey" rel="homepage" href="http://www.autohotkey.com/" onclick="return TrackClick('http%3A%2F%2Fwww.autohotkey.com%2F','AutoHotkey')">AutoHotkey</a>, a free Windows download that allows you to automate repitive actions, create hotkey and scripts and at its most basic is really easy to use.</p>
<p>Some of AutHotkey&#8217;s key features include (their words):</p>
<ul style="margin-top: 0.7em; margin-bottom: 0.7em; font-size: 13px;">
<li style="margin-top: 0.3em; margin-bottom: 0.3em;">Automate almost anything by sending keystrokes and mouse clicks. You can write a mouse or keyboard macro by hand or use the macro recorder.</li>
<li style="margin-top: 0.3em; margin-bottom: 0.3em;">Create hotkeys for keyboard, joystick, and mouse. Virtually any key, button, or combination can become a hotkey.</li>
<li style="margin-top: 0.3em; margin-bottom: 0.3em;">Expand abbreviations as you type them. For example, typing &#8220;btw&#8221; can automatically produce &#8220;by the way&#8221;.</li>
<li style="margin-top: 0.3em; margin-bottom: 0.3em;">Remap keys and buttons on your keyboard, joystick, and mouse.</li>
<li style="margin-top: 0.3em; margin-bottom: 0.3em;">Convert any script into an EXE file that can be run on computers that don&#8217;t have AutoHotkey installed.</li>
</ul>
<p>The basic idea is you create text file scripts with small coded fragments that can replace text as you write, perform simple actions or perform more complicated actions.  The script needs to run once to be put into memory and then each time you need it, it&#8217;ll be there.</p>
<h3><span id="more-2274"></span>Let&#8217;s look at a couple of simple AutoHotkey cases:</h3>
<h4>Hotkeys</h4>
<p><code>#m::Run http://www.google.com/mail</code></p>
<p>This is a simple example of a <strong><em>hotkey</em></strong>, when I type the Windows Key + m,  AutoHotkey opens my Gmail.</p>
<p>The <strong># </strong>means use the Windows Key and the double colon <strong>::</strong> is a delimiter.</p>
<h4>Hotstrings and Autoreplace</h4>
<p><code>::w4l::Win4Lin</code></p>
<p>My company has a product called Win4Lin, good product and brand, but a pain to type.  With this, every time I type w4l, AutoHotkey replace it with Win4Lin, as I type.  Very useful.</p>
<p>The string to be replaced is delimited by the double colons, followed by the repacement string.</p>
<h4>Longer text autoreplace<br />
<code><br />
::tx::<br />
(<br />
Thanks,<br />
Dan<br />
)</code></h4>
<p>Here&#8217;s how I often sign my email messages (when I&#8217;m being polite).  Now when I type tx,  AutoHotkey replaces it with my multi-line  salutation.</p>
<p>Thanks,</p>
<p>Dan</p>
<p>When using multiple line output, enclose the actions in parenthesis.</p>
<h4>Remapping keyboard keys</h4>
<p><code>RCtrl::^+p</code></p>
<p>Finally, this little fragment <strong><em>remaps </em></strong>the right CtrlKey (I know, who knew the two Ctrl keys can be different?) to be Ctl Shift-P which is an awkward hotkey required by a screen clipping program that I use.</p>
<h3>Let&#8217;s get going</h3>
<p>As you can imagine, my examples are on the preschool to kindergarten level, so much more can be done with AutoHotkey.</p>
<p>There is a useful tutorial for AutoHotkey <a href="http://www.autohotkey.com/docs/Tutorial.htm" onclick="return TrackClick('http%3A%2F%2Fwww.autohotkey.com%2Fdocs%2FTutorial.htm','here')">here</a>.  The website also has plenty of good resources for using and developing scripts. Download AutoHotkey and install from <a href="http://autohotkey.com/" onclick="return TrackClick('http%3A%2F%2Fautohotkey.com%2F','www.autohotkey.com')">www.autohotkey.com</a>.</p>
<p>Another tip, if you Google-around, you’ll find useful text files of AutoHotkey scripts that you can download and use.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/3a5b9325-53ea-43f9-ad11-66139549767e/" onclick="return TrackClick('http%3A%2F%2Freblog.zemanta.com%2Fzemified%2F3a5b9325-53ea-43f9-ad11-66139549767e%2F','Reblog+this+post+%5Bwith+Zemanta%5D')"><img class="zemanta-pixie-img" style="border: none; float: right;" src="http://img.zemanta.com/reblog_b.png?x-id=3a5b9325-53ea-43f9-ad11-66139549767e" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://enquiringmimes.com/wp/2009/06/18/my-new-best-friend-autohotkey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tabbed Windows File Handler Hits the Spot</title>
		<link>http://enquiringmimes.com/wp/2009/06/10/tabbed-windows-file-handler-hits-the-spot/</link>
		<comments>http://enquiringmimes.com/wp/2009/06/10/tabbed-windows-file-handler-hits-the-spot/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 19:12:22 +0000</pubDate>
		<dc:creator>Dan Perlman</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://enquiringmimes.com/wp/?p=2137</guid>
		<description><![CDATA[Regardless the level or age of your Microsoft Windows configuration, the one built piece of functionality that can always stand a helping hand is the Windows File Explorer. Nomad.NET is a free Windows Explorer replacement with plenty of useful features. Features include - Tabbed interface.   This is our favorite feature, you can open tabs, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-2139" title="nomad-logo" src="http://enquiringmimes.com/wp/wp-content/uploads/2009/06/nomad-logo.png" alt="nomad-logo" width="181" height="43" />Regardless the level or age of your Microsoft Windows configuration, the one built piece of functionality that can always stand a helping hand is the Windows File Explorer.</p>
<p>Nomad.NET is a free Windows Explorer replacement with plenty of useful features.</p>
<p>Features include -</p>
<ul>
<li>Tabbed interface.   This is our favorite feature, you can open tabs, like a browser for directories with which you&#8217;re working and keep them open.</li>
<li>Bookmarks system. You can bookmark you favorite folders, ftp sites or even searches.</li>
<li>You can create very complex search rules, with ability to search in different encoding (complete encodings auto detect), use IFilter filters, apply custom text search rules (including regular expressions), search in hex, duplicates search and so on and for mortals there is a simplified search that is not scary.</li>
<li>Filtering system, based on the same core as search.</li>
</ul>
<p><img class="alignnone size-full wp-image-2138" title="nomad-screen" src="http://enquiringmimes.com/wp/wp-content/uploads/2009/06/nomad-screen.png" alt="nomad-screen" width="500" height="320" /></p>
<p>Normally we recommend <a href="http://enquiringmimes.com/wp/2008/09/17/manage-your-windows-files-without-windows-explorer/" onclick="return TrackClick('http%3A%2F%2Fenquiringmimes.com%2Fwp%2F2008%2F09%2F17%2Fmanage-your-windows-files-without-windows-explorer%2F','FreeCommander')">FreeCommander </a>as our favorite free alternative file handler, but Nomad.NET is a worthy competitor and well worth a try.</p>
<p>Download <a href="http://www.nomad-net.info/downloads" onclick="return TrackClick('http%3A%2F%2Fwww.nomad-net.info%2Fdownloads','Nomad.NET')">Nomad.NET</a> [via<a href="http://lifehacker.com/5284579/nomadnet-is-a-powerful-tabbed-file-manager" onclick="return TrackClick('http%3A%2F%2Flifehacker.com%2F5284579%2Fnomadnet-is-a-powerful-tabbed-file-manager','lifehacker.com')"> lifehacker.com</a>]</p>
<p>If you haven&#8217;t installed Microsoft .Net Framework 2.0, it will need to be installed first, there&#8217;s a link for the free download from the Nomad.NET download page.</p>
]]></content:encoded>
			<wfw:commentRss>http://enquiringmimes.com/wp/2009/06/10/tabbed-windows-file-handler-hits-the-spot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wow, hasn&#8217;t Hulu gotten all fancy?</title>
		<link>http://enquiringmimes.com/wp/2009/06/01/wow-hasnt-hulu-gotten-all-fancy/</link>
		<comments>http://enquiringmimes.com/wp/2009/06/01/wow-hasnt-hulu-gotten-all-fancy/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 14:00:57 +0000</pubDate>
		<dc:creator>Dan Perlman</dc:creator>
				<category><![CDATA[Desktop Apps]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[New features]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Hulu]]></category>

		<guid isPermaLink="false">http://enquiringmimes.com/wp/?p=2059</guid>
		<description><![CDATA[Hulu, if you&#8217;re not using it, is a website that allows you to watch some of your favorite television shows and movies on you Windows or Mac computer for free.  That&#8217;s simple enough.  There are a &#8220;limited&#8221; number of commercials, certainly less than commercial television. Hulu&#8217;s content is all professionally produced with none of the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-2060" title="hulu-logo" src="http://enquiringmimes.com/wp/wp-content/uploads/2009/05/hulu-logo.png" alt="hulu-logo" width="124" height="41" /><a class="zem_slink" title="hulu" rel="homepage" href="http://www.hulu.com/" onclick="return TrackClick('http%3A%2F%2Fwww.hulu.com%2F','hulu')">Hulu</a>, if you&#8217;re not using it, is a website that allows you to watch some of your favorite television shows and movies on you Windows or Mac computer for free.  That&#8217;s simple enough.  There are a &#8220;limited&#8221; number of commercials, certainly less than commercial television. Hulu&#8217;s content is all professionally produced with none of the YouTube-type amateur stuff.</p>
<p>Sometimes when I either need a break at my desk, or it&#8217;s late and I want a little non-challenging entertainment before bed and don&#8217;t want to have all the noise associated with turning on the TV and the risk of waking the family, for this I use Hulu.</p>
<p>The big recent news for Hulu is that they have created a set of experimental projects and are offering them for use to the public À la Gmail labs.  The coolest of the new offerings is a desktop Hulu video player that let&#8217;s you watch Hulu content without a browser.  The picture is sharp and clear and will look on your computer monitor or laptop.</p>
<p><img class="alignnone size-full wp-image-2062" title="hulu-desktop-screen" src="http://enquiringmimes.com/wp/wp-content/uploads/2009/05/hulu-desktop-screen.png" alt="hulu-desktop-screen" width="500" height="327" /></p>
<p>If you&#8217;d like to give Hulu Desktop a try, visit <a href="http://www.hulu.com/labs" onclick="return TrackClick('http%3A%2F%2Fwww.hulu.com%2Flabs','Hulu+Labs')">Hulu Labs</a> and download it.  Or just stop by in an idle moment and watch a show in your browser.  I just watched Jay Leno&#8217;s last Tonight show episode.</p>
<p>If you&#8217;re interested in the background of the company, it&#8217;s owned by NBC Universal, News Corporation, and Disney.</p>
<p><span style="text-decoration: line-through;">You can even use Hulu to watch a little something while your working, like I did here.</span></p>
<p>Oh, yeah, this site is supposed to be about productivity.  Never mind.</p>
<p><img class="alignnone size-full wp-image-2061" title="hulu-chrome" src="http://enquiringmimes.com/wp/wp-content/uploads/2009/05/hulu-chrome.png" alt="hulu-chrome" width="500" height="226" /></p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/d5e86945-3309-415c-8e2b-68a98750f0d7/" onclick="return TrackClick('http%3A%2F%2Freblog.zemanta.com%2Fzemified%2Fd5e86945-3309-415c-8e2b-68a98750f0d7%2F','Reblog+this+post+%5Bwith+Zemanta%5D')"><img class="zemanta-pixie-img" style="border:none;float:right" src="http://img.zemanta.com/reblog_b.png?x-id=d5e86945-3309-415c-8e2b-68a98750f0d7" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://enquiringmimes.com/wp/2009/06/01/wow-hasnt-hulu-gotten-all-fancy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Five more ways to supercharge your new PC</title>
		<link>http://enquiringmimes.com/wp/2009/04/29/five-more-ways-to-supercharge-your-new-pc/</link>
		<comments>http://enquiringmimes.com/wp/2009/04/29/five-more-ways-to-supercharge-your-new-pc/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 23:10:42 +0000</pubDate>
		<dc:creator>Dan Perlman</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[File Transfer Protocol]]></category>
		<category><![CDATA[FileZilla Server]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[image viewer]]></category>
		<category><![CDATA[Paint.NET]]></category>
		<category><![CDATA[Windows Live Writer]]></category>

		<guid isPermaLink="false">http://enquiringmimes.com/wp/?p=1876</guid>
		<description><![CDATA[Last week I posted Got a new PC? Supercharge it fast with 11 free apps.  That explained when you get a new PC, inexpensive as they are now, what free apps you needed to get productive.  Today 5 more free apps that you ought to consider.  This list is for more advanced users. Paint.NET &#8211;  A [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1883" title="greatfalls" src="http://enquiringmimes.com/wp/wp-content/uploads/2009/04/greatfalls.jpg" alt="greatfalls" width="500" height="463" /></p>
<p>Last week I posted <a href="http://enquiringmimes.com/wp/2009/04/23/got-a-new-pc-supercharge-it-fast-with-11-free-apps/" onclick="return TrackClick('http%3A%2F%2Fenquiringmimes.com%2Fwp%2F2009%2F04%2F23%2Fgot-a-new-pc-supercharge-it-fast-with-11-free-apps%2F','Got+a+new+PC%3F+Supercharge+it+fast+with+11+free+apps')">Got a new PC? Supercharge it fast with 11 free apps</a>.  That explained when you get a new PC, inexpensive as they are now, what free apps you needed to get productive.  Today 5 more free apps that you ought to consider.  This list is for more advanced users.</p>
<ul>
<li><a href="http://www.getpaint.net/download.html" onclick="return TrackClick('http%3A%2F%2Fwww.getpaint.net%2Fdownload.html','Paint.NET')">Paint.NET</a> &#8211;  A lightweight graphic and image editor that has most of the functionality most people would ever use from the very heavy and expensive Adobe Photoshop.</li>
<li><a href="http://filezilla-project.org/download.php" onclick="return TrackClick('http%3A%2F%2Ffilezilla-project.org%2Fdownload.php','FileZilla')">FileZilla</a> &#8211; FTP may be old and creaky but it doesn&#8217;t go away and someday you&#8217;re going need to up/download files.  This open source FTP client is full-featured.</li>
<li><a href="http://www.faststone.org/FSViewerDetail.htm" onclick="return TrackClick('http%3A%2F%2Fwww.faststone.org%2FFSViewerDetail.htm','Fastone+Image+Viewer')">Fastone Image Viewer</a> &#8211; A fast image viewer that dispays digital images in a zillion grahic formats.</li>
<li><a href="http://desktop.seesmic.com/" onclick="return TrackClick('http%3A%2F%2Fdesktop.seesmic.com%2F','Seesmic+Desktop')">Seesmic Desktop</a> &#8211; Do you use Twitter?  Seesmic Desktop is the best of the current crop of Twitter Clients.</li>
<li><a href="http://download.live.com/writer" onclick="return TrackClick('http%3A%2F%2Fdownload.live.com%2Fwriter','Windows+Live+Writer')">Windows Live Writer</a> &#8211;  Do you blog either for yourself or your company?  Windows Live Writer is  by far the best client for writing blog entries from your PC.  If you don&#8217;t use the online interface for your blog, use Windows Live Writer.</li>
</ul>
<p>Go ahead now, make yourself productive.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/ddcb433e-72b9-41fa-b4e1-361dcebcda27/" onclick="return TrackClick('http%3A%2F%2Freblog.zemanta.com%2Fzemified%2Fddcb433e-72b9-41fa-b4e1-361dcebcda27%2F','Reblog+this+post+%5Bwith+Zemanta%5D')"><img class="zemanta-pixie-img" style="border: none; float: right;" src="http://img.zemanta.com/reblog_a.png?x-id=ddcb433e-72b9-41fa-b4e1-361dcebcda27" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://enquiringmimes.com/wp/2009/04/29/five-more-ways-to-supercharge-your-new-pc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Got a new PC? Supercharge it fast with 11 free apps</title>
		<link>http://enquiringmimes.com/wp/2009/04/23/got-a-new-pc-supercharge-it-fast-with-11-free-apps/</link>
		<comments>http://enquiringmimes.com/wp/2009/04/23/got-a-new-pc-supercharge-it-fast-with-11-free-apps/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 19:00:03 +0000</pubDate>
		<dc:creator>Dan Perlman</dc:creator>
				<category><![CDATA[Desktop applications]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[free apps]]></category>
		<category><![CDATA[freecommander]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[google docs]]></category>
		<category><![CDATA[new pc]]></category>

		<guid isPermaLink="false">http://enquiringmimes.com/wp/?p=1800</guid>
		<description><![CDATA[Even in our excremental economy, PCs are cheap.  Microsoft wants to run their entire advertising campaign on that basis, but whatever.  I often use a well-loved MacBook, but in the last year have had occasion to buy two PCs.  Bought a Desktop PC for about $400 and a netbook, mini-laptop for about $300. After the [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_1813" class="wp-caption alignleft" style="width: 310px"><img class="size-medium wp-image-1813" title="gwashington-teeth" src="http://enquiringmimes.com/wp/wp-content/uploads/2009/04/gwashington-teeth-300x222.jpg" alt="George Washington's Teeth" width="300" height="222" /><p class="wp-caption-text">George Washington&#39;s Teeth</p></div>
<p>Even in our excremental economy, PCs are cheap.  Microsoft wants to run their entire <a href="http://www.microsoft.com/windows/watchtheads/video/lauren/" onclick="return TrackClick('http%3A%2F%2Fwww.microsoft.com%2Fwindows%2Fwatchtheads%2Fvideo%2Flauren%2F','advertising+campaign')">advertising campaign</a> on that basis, but whatever.  I often use a well-loved MacBook, but in the last year have had occasion to buy two PCs.  Bought a Desktop PC for about $400 and a netbook, mini-laptop for about $300.</p>
<p>After the immediate glow of geek happiness wears off (new PCs always seem fast), the question becomes how to become productive fast.  (I actually had to buy the netbook because we went away for the weekend and I forgot my laptop and needed to do some work).</p>
<p>What I do is connect to Internet and download these 11 apps, and I&#8217;m ready to go in about 20 minutes in a productive work environment.</p>
<h4>Let me explain.</h4>
<ul>
<li><a href="http://download.cnet.com/AVG-Anti-Virus-Free-Edition/3000-2239_4-10320142.html?part=dl-10044820&amp;subj=dl&amp;tag=button&amp;cdlPid=11014801" onclick="return TrackClick('http%3A%2F%2Fdownload.cnet.com%2FAVG-Anti-Virus-Free-Edition%2F3000-2239_4-10320142.html%3Fpart%3Ddl-10044820%26amp%3Bsubj%3Ddl%26amp%3Btag%3Dbutton%26amp%3BcdlPid%3D11014801','AVG+Antivirus')">AVG Antivirus</a> &#8211; Sure you need anti-virus, the world is weird, but AVG Free does a great job and it&#8217;s, well, free.</li>
<li><a href="http://www.google.com/chrome" onclick="return TrackClick('http%3A%2F%2Fwww.google.com%2Fchrome','Google+Chrome')">Google Chrome</a> &#8211; Sorry, Microsoft Internet Exporer doesn&#8217;t work for me.  I can&#8217;t be productive with such a slow browser.  I install the new-ish Google Chrome, which isn&#8217;t yet full-featured but is extremely fast.</li>
<li><a href="http://www.mozilla.com/en-US/firefox/firefox.html" onclick="return TrackClick('http%3A%2F%2Fwww.mozilla.com%2Fen-US%2Ffirefox%2Ffirefox.html','Firefox')">Firefox</a> &#8211; I also install Firefox, the major open source competitor to IE.  Firefox becomes very full-featured by use of plug-in technology.</li>
<li><a href="http://www.freecommander.com/fc_downl_en.htm" onclick="return TrackClick('http%3A%2F%2Fwww.freecommander.com%2Ffc_downl_en.htm','FreeCommander')">FreeCommander</a> &#8211; You owe yourself something better than Windows Explorer.  FreeCommander has plenty of features for making your file and PC management easier.   The dual-interface alone is worth the download.</li>
<li><a href="http://www.evernote.com/about/download/" onclick="return TrackClick('http%3A%2F%2Fwww.evernote.com%2Fabout%2Fdownload%2F','Evernote')">Evernote</a> &#8211; I store all my information in Evernote (and so should you).  Download the PC desktop version to sync to your web based data.</li>
<li><a href="http://picasa.google.com/" onclick="return TrackClick('http%3A%2F%2Fpicasa.google.com%2F','Picasa')">Picasa </a>- The best way of managing and editing digital images and videos.</li>
<li><a href="http://www.skype.com/download/skype/windows/downloading/" onclick="return TrackClick('http%3A%2F%2Fwww.skype.com%2Fdownload%2Fskype%2Fwindows%2Fdownloading%2F','Skype')">Skype</a> &#8211; For free phone calls to other PCs, conference calls and video calls to other team members.  I also use it for video calling my family.</li>
<li><a href="http://www.foxitsoftware.com/pdf/reader/download.php" onclick="return TrackClick('http%3A%2F%2Fwww.foxitsoftware.com%2Fpdf%2Freader%2Fdownload.php','Foxit+Reader')">Foxit Reader</a> &#8211; A lightweight PDF reader, to replace the slow and heavy Adobe Reader</li>
<li><a href="http://notepad-plus.sourceforge.net/uk/site.htm" onclick="return TrackClick('http%3A%2F%2Fnotepad-plus.sourceforge.net%2Fuk%2Fsite.htm','notepad%2B%2B')">notepad++</a> &#8211; A hardy open source replacement for Notepad.  Use it for any text editing work that you can get by doing without a word processor.</li>
<li><a href="http://www.videolan.org/vlc/download-windows.html" onclick="return TrackClick('http%3A%2F%2Fwww.videolan.org%2Fvlc%2Fdownload-windows.html','Videolan')">Videolan</a> &#8211; An open source video player that plays just about any videos you&#8217;ve got.</li>
<li><a href="http://www.revouninstaller.com/revo_uninstaller_free_download.html" onclick="return TrackClick('http%3A%2F%2Fwww.revouninstaller.com%2Frevo_uninstaller_free_download.html','Revo+Unistaller')">Revo Unistaller</a> &#8211; Finally install this utility to uninstall some of the crap that is often pre-installed on new consumer PC&#8217;s.  What comes quickly to mind is the trial version of Symantec Internet Security which is probably already installed on your new PC.  If you activate it, you&#8217;ll get it free for a couple of months and then will be nagged to death by the program trying to get you to buy the full version &#8212; just saying.</li>
</ul>
<h4>The rest of the apps I use:</h4>
<ul>
<li><a href="http://gmail.com/" onclick="return TrackClick('http%3A%2F%2Fgmail.com%2F','Gmail')">Gmail </a>- Web-based email</li>
<li>Office Suite &#8211; Either <a href="http://google.com/docs" onclick="return TrackClick('http%3A%2F%2Fgoogle.com%2Fdocs','Google+Docs')">Google Docs </a>or <a class="zem_slink" title="Zoho Office Suite" rel="homepage" href="http://www.zoho.com" onclick="return TrackClick('http%3A%2F%2Fwww.zoho.com','Zoho+Office+Suite')">Zoho Office</a>, both free and web-based.</li>
</ul>
<p>Okay, you&#8217;re ready to work.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/d086a2e2-0e61-43bb-b722-0dcb9fff308b/" onclick="return TrackClick('http%3A%2F%2Freblog.zemanta.com%2Fzemified%2Fd086a2e2-0e61-43bb-b722-0dcb9fff308b%2F','Reblog+this+post+%5Bwith+Zemanta%5D')"><img class="zemanta-pixie-img" style="border: none; float: right;" src="http://img.zemanta.com/reblog_a.png?x-id=d086a2e2-0e61-43bb-b722-0dcb9fff308b" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://enquiringmimes.com/wp/2009/04/23/got-a-new-pc-supercharge-it-fast-with-11-free-apps/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Picasa for Mac, we&#8217;ve been waiting for you</title>
		<link>http://enquiringmimes.com/wp/2009/01/06/picasa-for-mac-weve-been-waiting-for-you/</link>
		<comments>http://enquiringmimes.com/wp/2009/01/06/picasa-for-mac-weve-been-waiting-for-you/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 20:39:54 +0000</pubDate>
		<dc:creator>Dan Perlman</dc:creator>
				<category><![CDATA[Digital Pictures]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Photo Sharing]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://enquiringmimes.com/wp/2009/01/06/picasa-for-mac-weve-been-waiting-for-you/</guid>
		<description><![CDATA[&#160; I’ve happy to report that at this week’s MacWorld, Google has released a beta of their superb free photo organizer and retoucher, Picasa.&#160; Picasa was available first on Windows, then curiously on Linux, all before the Mac. My own first use and other reports show that the Mac implementation of Picasa is both very [...]]]></description>
			<content:encoded><![CDATA[<p>&#160;<a href="http://picasa.google.com/mac/" onclick="return TrackClick('http%3A%2F%2Fpicasa.google.com%2Fmac%2F','Download+Picasa+for+Mac+%28beta%29')" onclick="return TrackClick('http%3A%2F%2Fpicasa.google.com%2Fmac%2F','picasa-mac-button')"><img style="border-bottom: 0px; border-left: 0px; margin: 0px 20px 20px 0px; display: inline; border-top: 0px; border-right: 0px" title="picasa-mac-button" border="0" alt="picasa-mac-button" align="left" src="http://enquiringmimes.com/wp/wp-content/uploads/2009/01/picasamacbutton.png" width="312" height="54" /></a>
</p>
<p>I’ve happy to report that at this week’s MacWorld, Google has released a beta of their superb free photo organizer and retoucher, Picasa.&#160; </p>
<p>Picasa was available first on Windows, then curiously on Linux, all before the Mac.</p>
<p>My own first use and other reports show that the Mac implementation of Picasa is both very feature-true to the Windows version and seems faster than Apple iPhoto which since included with a Mac has always been the top choice for Photo organizing on that platform.</p>
<p>I could say that having Picasa now available for the Mac eliminates on the few remaining deficits in the Mac vs. PC debate, but it’s probably more accurate to say, having Picasa for the Mac eliminates one of the last reasons for using Parallels or VMware Fusion to&#160; run Windows on a Mac.</p>
<p>&#160;</p>
<p><a href="http://www.google.com/intl/en/press/annc/20090105_picasa_mac.html" onclick="return TrackClick('http%3A%2F%2Fwww.google.com%2Fintl%2Fen%2Fpress%2Fannc%2F20090105_picasa_mac.html','From+the+Google+Press+Release')">From the Google Press Release</a>:</p>
<blockquote><p>Picasa for Mac makes it easy to manage large photo collections and helps users make professional-looking edits without any technical knowledge, including:</p>
<ul>
<li>A drag-and-drop photo collage tool that gives users control over layout and content </li>
<li>A retouching brush to wipe out scratches and blemishes &#8211; and repair old photos </li>
<li>A slideshow movie maker that uploads users photo montage videos to YouTube with a click </li>
<li>Smart auto-cropping that guides user </li>
</ul>
<p>Picasa for Mac &quot;plays nice&quot; with iPhoto, and takes a read-only approach to editing photos stored in the iPhoto library, duplicating files as needed, so that users&#8217; iPhoto libraries are never affected when they use Picasa. Avid iPhoto users who currently use our Picasa Web Albums Uploader plugin can continue to do so, although features like automatic web sync, photo collages, and more will only be found in the Picasa application.</p>
<p>This first beta of Picasa for Mac matches the speed and most core features of Picasa on Windows &#8212; and we&#8217;ll be working on more refinements to the Mac interface and feature set as time goes on.</p>
</blockquote>
<p><a href="http://picasa.google.com/mac/" onclick="return TrackClick('http%3A%2F%2Fpicasa.google.com%2Fmac%2F','Download+Picasa+for+Mac+%28beta%29')" onclick="return TrackClick('http%3A%2F%2Fpicasa.google.com%2Fmac%2F','picasa-mac-button')">Download Picasa for Mac (beta)</a></p>
<p><strong>Picasa for Mac running on my laptop.</strong></p>
<p><img style="border-right-width: 0px; margin: 0px 0px 20px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="picasa_mac" border="0" alt="picasa_mac" align="left" src="http://enquiringmimes.com/wp/wp-content/uploads/2009/01/picasa-mac.jpg" width="550" height="341" /></p>
]]></content:encoded>
			<wfw:commentRss>http://enquiringmimes.com/wp/2009/01/06/picasa-for-mac-weve-been-waiting-for-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A rumor we hope is true</title>
		<link>http://enquiringmimes.com/wp/2008/12/30/a-rumor-we-hope-is-true/</link>
		<comments>http://enquiringmimes.com/wp/2008/12/30/a-rumor-we-hope-is-true/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 20:11:22 +0000</pubDate>
		<dc:creator>Dan Perlman</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://enquiringmimes.com/wp/?p=1149</guid>
		<description><![CDATA[There&#8217;s a rumor making the rounds today that Google might announce a Mac version of their free Picasa photo organizer at 2009 MacWorld and we think that would be just great. We got the rumor from the Googling Google blog over at zdnet and it would make sense. The story of a Mac version of [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://picasa.google.com/images/logo.jpg" alt="" align="left" />There&#8217;s a rumor making the rounds today that Google might announce a Mac version of their free Picasa photo organizer at 2009 MacWorld and we think that would be just great.</p>
<p>We got the rumor from the <a href="http://blogs.zdnet.com/Google/?p=1215" onclick="return TrackClick('http%3A%2F%2Fblogs.zdnet.com%2FGoogle%2F%3Fp%3D1215','Googling+Google+blog')">Googling Google blog</a> over at <strong>zdnet </strong>and it would make sense.  The story of a Mac version of Picasa has been kicking around at least a year since <strong>TechCrunch </strong>carried this one, <a href="http://www.techcrunch.com/2008/01/15/exclusive-google-developing-mac-version-of-picasa-due-to-be-released-this-year/" onclick="return TrackClick('http%3A%2F%2Fwww.techcrunch.com%2F2008%2F01%2F15%2Fexclusive-google-developing-mac-version-of-picasa-due-to-be-released-this-year%2F','Google+Developing+Mac+Version+Of+Picasa+%2C+Due+To+Be+Released+This+Year')">Google Developing Mac Version Of Picasa , Due To Be Released This Year</a>.</p>
<h3>Why the excitement?</h3>
<p>No matter what the PC or Mac fans tell you, there&#8217;s not really much difference between what you can do with a PC or a Mac, but Picasa is one of the coolest, most useful pieces of software that  can&#8217;t be run on a Mac (the other, if you really want to know, is Microsoft <a class="zem_slink" title="Microsoft OneNote" rel="homepage" href="http://office.microsoft.com/en-us/onenote/FX100487701033.aspx" onclick="return TrackClick('http%3A%2F%2Foffice.microsoft.com%2Fen-us%2Fonenote%2FFX100487701033.aspx','Microsoft+OneNote')">OneNote</a>).  Making Picasa available directly available for the Mac would be one less reason to need to run a solution likeVMware&#8217;s Fusion which allows you to run Windows on a Mac.</p>
<p>There is already a slightly lame version of Picasa that runs on Linux.  It&#8217;s somewhat lame because it uses <a class="zem_slink" title="Wine (software)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Wine_%28software%29" onclick="return TrackClick('http%3A%2F%2Fen.wikipedia.org%2Fwiki%2FWine_%2528software%2529','Wine+%28software%29')">WINE</a> technology to work.  WINE is the famous, this-would-be-so-cool-if-it-only-actually-worked way of running Windows on other platforms without needing Windows, kind like how useful it might be to have your blood pumped through your body without needing a heart.</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://lifehacker.com/5120613/picasa-for-macs-might-launch-at-macworld-2009" onclick="return TrackClick('http%3A%2F%2Flifehacker.com%2F5120613%2Fpicasa-for-macs-might-launch-at-macworld-2009','Picasa+for+Macs+Might+Launch+at+Macworld+2009+%5BPicasa%5D')">Picasa for Macs Might Launch at Macworld 2009 [Picasa]</a></li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/3b9e9a92-51fd-46ba-935a-d7462d5c625a/" onclick="return TrackClick('http%3A%2F%2Freblog.zemanta.com%2Fzemified%2F3b9e9a92-51fd-46ba-935a-d7462d5c625a%2F','Zemified+by+Zemanta')"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=3b9e9a92-51fd-46ba-935a-d7462d5c625a" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://enquiringmimes.com/wp/2008/12/30/a-rumor-we-hope-is-true/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Q-Dir: A very flexible Windows Explorer Replacement</title>
		<link>http://enquiringmimes.com/wp/2008/11/25/q-dir-a-very-flexible-windows-explorer-replacement/</link>
		<comments>http://enquiringmimes.com/wp/2008/11/25/q-dir-a-very-flexible-windows-explorer-replacement/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 20:21:13 +0000</pubDate>
		<dc:creator>Dan Perlman</dc:creator>
				<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://enquiringmimes.com/wp/?p=997</guid>
		<description><![CDATA[Be it Windows XP or Windows Vista, there&#8217;s always a need for a Windows Explorer replacement.   The weakness of the standard file explorer has always furnished a breeding ground for innovators. Q-Dir is a freeware file manager that is really great if you have a lot of file copying and moving to do, since it [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin: 0px 20px 20px 0px; display: inline;" title="q-dir-logo" src="http://enquiringmimes.com/wp/wp-content/uploads/2008/11/qdirlogo.png" border="0" alt="q-dir-logo" width="109" height="106" align="left" /> Be it Windows XP or Windows Vista, there&#8217;s always a need for a Windows Explorer replacement.   The weakness of the standard file explorer has always furnished a breeding ground for innovators.</p>
<p>Q-Dir is a freeware file manager that is really great if you have a lot of file copying and moving to do, since it can keep many windows and folder views open at the same time.  The default view is four windows, but it looks like anything is possible.</p>
<p>Views can be saved as favorites and you can add shortcuts to frequently-accessed folders.</p>
<p>There is also a an extension that can be added to your right-click menu for launching Q-Dir to view a folder.</p>
<p>Download <a href="http://www.softwareok.com/Download/Q-Dir_Installer.zip" onclick="return TrackClick('http%3A%2F%2Fwww.softwareok.com%2FDownload%2FQ-Dir_Installer.zip','Q-Dir')">Q-Dir</a> [via <a href="http://lifehacker.com/5095548/q+dir-explores-files-with-multiple-panes-and-custom-views" onclick="return TrackClick('http%3A%2F%2Flifehacker.com%2F5095548%2Fq%2Bdir-explores-files-with-multiple-panes-and-custom-views','lifehacker')">lifehacker</a> ]</p>
<p><img style="margin: 0px 0px 20px; display: inline;" title="q-screen" src="http://enquiringmimes.com/wp/wp-content/uploads/2008/11/qscreen.png" border="0" alt="q-screen" width="550" height="398" /></p>
<p>More features from their web page after the jump.</p>
<p><span id="more-997"></span></p>
<p><strong>Favorites:</strong><br />
Quick access to most often used folders.<br />
<strong>Drag&amp;Drop:</strong><br />
Move files by dragging in Q-views, and other programs such as MS Explorer.<br />
<strong>Clipboard:</strong><br />
Copy/ Paste between the Q-Dir directory views, and other programs such as MS Explorer.<br />
<strong>Folder-Type:</strong><br />
ZIP-, FTP-,cabinet-,network-, system &#8211; folders, shortcuts &#8230;<br />
<strong>Views:</strong><br />
Large icons, tiles, list, detail, thumbnail (Vista: extra large symbols) .<br />
<strong>Export:</strong><br />
to XLS, CSV, TXT, HTML.<br />
<strong>Popup Menus:</strong><br />
Desktop, My Computer.<br />
<strong>Screen magnifier:</strong><br />
anything on the screen can be enlarged.<br />
<strong>Color Filter:</strong><br />
Different colors for different item types (e.g. *.log;*.txt).<br />
<strong>Highlight-Filter:</strong><br />
Effective way for fast items highlighting.<br />
<strong>File-Filter:</strong><br />
Allows for quick and easy filtering of the items.<br />
<strong>Columns:</strong><br />
All columns support, and save function .<br />
<strong>Quick-Link&#8217;s:</strong><br />
For fast folder access.<br />
<strong>Folder-Select:</strong><br />
Fast &amp; flexible folder selection address-bar/ desktop menu/ my-computer menu/&#8230;<br />
<strong>Multi-INI:</strong><br />
Several INI files for Q-Dir.<br />
<strong>Tree-View:</strong><br />
Simple and quadruple.<br />
<strong>Preview:</strong><br />
Allows a quick preview.<br />
<strong>Portable:</strong><br />
from 2.77 is Q-Dir portable.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/3a02a549-cb72-46ee-bb80-3def5a16c033/" onclick="return TrackClick('http%3A%2F%2Freblog.zemanta.com%2Fzemified%2F3a02a549-cb72-46ee-bb80-3def5a16c033%2F','Zemified+by+Zemanta')"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=3a02a549-cb72-46ee-bb80-3def5a16c033" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://enquiringmimes.com/wp/2008/11/25/q-dir-a-very-flexible-windows-explorer-replacement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Feeding my Sticky Note habit</title>
		<link>http://enquiringmimes.com/wp/2008/11/18/feeding-my-sticky-note-habit/</link>
		<comments>http://enquiringmimes.com/wp/2008/11/18/feeding-my-sticky-note-habit/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 17:47:27 +0000</pubDate>
		<dc:creator>Dan Perlman</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[Portable Apps]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://enquiringmimes.com/wp/2008/11/18/feeding-my-sticky-note-habit/</guid>
		<description><![CDATA[Now I might be the first to suggest that using sticky notes to keep track of information might not actually be considered organization, and in-fact may be more like a condition requiring a twelve-step program. I love sticky notes, though.  Especially electronic ones.  Once I open the first note I can suddenly think of tons [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin: 0px 0px 20px; display: inline" title="pnotes-logo1" src="http://enquiringmimes.com/wp/wp-content/uploads/2008/11/pnoteslogo1.png" border="0" alt="pnotes-logo1" width="300" height="74" align="left" /> Now I might be the first to suggest that using sticky notes to keep track of information might not actually be considered organization, and in-fact may be more like a condition requiring a twelve-step program.</p>
<p>I love sticky notes, though.  Especially electronic ones.  Once I open the first note I can suddenly think of tons of things to write each in different notes.</p>
<p>This confession probably explains why I like <a href="http://pnotes.sourceforge.net/index.php?page=1" onclick="return TrackClick('http%3A%2F%2Fpnotes.sourceforge.net%2Findex.php%3Fpage%3D1','Pnotes')">Pnotes</a> so much.  Pnotes means either pinned notes or portable notes.  The Pnotes folks say you can decide.</p>
<p><span id="more-935"></span></p>
<h1>What’s Pnotes?</h1>
<p>A free very lightweight and portable sticky notes system for Windows that let’s you open, write and manage multiple sticky notes.</p>
<p>Some of the features are:</p>
<ul>
<li>Portable – Can be installed on a removable USB drive so you can take them with you</li>
<li>Multiple Skins – Different looks to choose from or keep them “skinless” for max flexibility</li>
<li>Scheduling for reminders – Set reminders for individual notes</li>
<li>Docking – Make them dock together on your screen</li>
<li>Groups – Put notes together in groups</li>
<li>Control Panel – Manage the notes</li>
</ul>
<p>Download <a href="http://pnotes.sourceforge.net/index.php?page=5" onclick="return TrackClick('http%3A%2F%2Fpnotes.sourceforge.net%2Findex.php%3Fpage%3D5','Pnotes')">Pnotes</a> [via <a href="http://portableapps.com/apps/office/pnotes_portable" onclick="return TrackClick('http%3A%2F%2Fportableapps.com%2Fapps%2Foffice%2Fpnotes_portable','portableapps')">portableapps</a>]</p>
<p><img style="margin: 0px 0px 20px; display: inline" title="pnotes-screen" src="http://enquiringmimes.com/wp/wp-content/uploads/2008/11/pnotesscreen.png" border="0" alt="pnotes-screen" width="550" height="211" align="left" /></p>
]]></content:encoded>
			<wfw:commentRss>http://enquiringmimes.com/wp/2008/11/18/feeding-my-sticky-note-habit/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>XMind Mind Mapping Now Open Source</title>
		<link>http://enquiringmimes.com/wp/2008/11/17/xmind-mind-mapping-now-open-source/</link>
		<comments>http://enquiringmimes.com/wp/2008/11/17/xmind-mind-mapping-now-open-source/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 01:32:16 +0000</pubDate>
		<dc:creator>Dan Perlman</dc:creator>
				<category><![CDATA[Desktop applications]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://enquiringmimes.com/wp/2008/11/17/xmind-mind-mapping-now-open-source/</guid>
		<description><![CDATA[The full-featured XMind, mind-mapping, application that previously sold for $299 a copy has been open sourced and is now available without charge.  It’s cross-platform and available for Windows, Linux and Mac. It has been one of the better professional applications for creating the mapping diagrams that are an intuitive way to take notes, brainstorm, collaborate [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin: 0px 20px 20px 0px; display: inline" title="xmind-logo" src="http://enquiringmimes.com/wp/wp-content/uploads/2008/11/xmindlogo.png" border="0" alt="xmind-logo" width="301" height="109" align="left" /></p>
<p>The full-featured XMind, <a class="zem_slink" title="Mind map" rel="wikipedia" href="http://en.wikipedia.org/wiki/Mind_map" onclick="return TrackClick('http%3A%2F%2Fen.wikipedia.org%2Fwiki%2FMind_map','Mind+map')">mind-mapping</a>, application that previously sold for $299 a copy has been open sourced and is now available without charge.  It’s cross-platform and available for Windows, Linux and Mac.</p>
<p>It has been one of the better professional applications for creating the mapping diagrams that are an intuitive way to take notes, brainstorm, collaborate and manage projects (among other things).</p>
<p><span id="more-932"></span></p>
<p>Here’s the XMind mind map of it’s features.</p>
<p>Download <a href="http://www.xmind.net/downloads/" onclick="return TrackClick('http%3A%2F%2Fwww.xmind.net%2Fdownloads%2F','XMIND')">XMIND</a> [via <a href="http://www.tuaw.com/2008/11/15/xmind-goes-open-source/" onclick="return TrackClick('http%3A%2F%2Fwww.tuaw.com%2F2008%2F11%2F15%2Fxmind-goes-open-source%2F','TUAW')">TUAW</a>]</p>
<h6 class="zemanta-related-title" style="font-size: 1em"><img style="margin: 0px 0px 20px; display: inline" title="xmind-screen" src="http://enquiringmimes.com/wp/wp-content/uploads/2008/11/xmindscreen.png" border="0" alt="xmind-screen" width="499" height="323" /></h6>
<h6 class="zemanta-related-title" style="font-size: 1em">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.influentialblogger.net/2008/09/mind-map-101.html" onclick="return TrackClick('http%3A%2F%2Fwww.influentialblogger.net%2F2008%2F09%2Fmind-map-101.html','Mind+Map+101')">Mind Map 101</a></li>
<li class="zemanta-article-ul-li"><a href="http://matthewlang.co.uk/mind-mapping/mind-map-recipes/" onclick="return TrackClick('http%3A%2F%2Fmatthewlang.co.uk%2Fmind-mapping%2Fmind-map-recipes%2F','Mind+Map+Recipes')">Mind Map Recipes</a></li>
<li class="zemanta-article-ul-li"><a href="http://matthewlang.co.uk/mind-mapping/conveying-information/" onclick="return TrackClick('http%3A%2F%2Fmatthewlang.co.uk%2Fmind-mapping%2Fconveying-information%2F','Conveying+Information+with+Mind+Maps')">Conveying Information with Mind Maps</a></li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/2176674d-c254-4638-8a11-8eb915fcf5a4/" onclick="return TrackClick('http%3A%2F%2Freblog.zemanta.com%2Fzemified%2F2176674d-c254-4638-8a11-8eb915fcf5a4%2F','Zemified+by+Zemanta')"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=2176674d-c254-4638-8a11-8eb915fcf5a4" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://enquiringmimes.com/wp/2008/11/17/xmind-mind-mapping-now-open-source/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

