<?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>Brett Hutley&#039;s Blog &#187; Useful</title>
	<atom:link href="http://bretthutley.com/category/useful/feed/" rel="self" type="application/rss+xml" />
	<link>http://bretthutley.com</link>
	<description>Home on the Digital Range</description>
	<lastBuildDate>Mon, 23 Jan 2012 21:21:43 +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>Immersion Blending Wine</title>
		<link>http://bretthutley.com/2011/12/19/immersion-blending-wine/</link>
		<comments>http://bretthutley.com/2011/12/19/immersion-blending-wine/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 10:36:17 +0000</pubDate>
		<dc:creator>brett</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Useful]]></category>
		<category><![CDATA[blender]]></category>
		<category><![CDATA[lifestyle]]></category>
		<category><![CDATA[Urban Living]]></category>
		<category><![CDATA[wine]]></category>

		<guid isPermaLink="false">https://bretthutley.com/?p=422</guid>
		<description><![CDATA[Tim Ferris (of the The 4-Hour Work Week fame), has got a post out on "Hyper-decanting" wine to "age" it very quickly. Essentially the trick is to use a stab-blender for 20 seconds to aerate the wine very quickly. It's definitely something I'll run a double-blind test on over Christmas! No related posts.


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Tim Ferris (of the <a href="http://www.amazon.co.uk/gp/product/0091929113/ref=as_li_ss_tl?ie=UTF8&tag=quan-21&linkCode=as2&camp=1634&creative=19450&creativeASIN=0091929113">The 4-Hour Work Week</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=quan-21&l=as2&o=2&a=0091929113" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> fame), has got a post out on <a href="http://www.fourhourworkweek.com/blog/2011/12/18/hyperdecanting-wine/">"Hyper-decanting" wine</a> to "age" it very quickly.</p>
<p><span id="more-422"></span></p>
<p>Essentially the trick is to use a stab-blender for 20 seconds to aerate the wine very quickly. It's definitely something I'll run a double-blind test on over Christmas!</p>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/ubgiBZpyxrA" frameborder="0" allowfullscreen></iframe></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://bretthutley.com/2011/12/19/immersion-blending-wine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unique, Secure, Memorable Passwords</title>
		<link>http://bretthutley.com/2011/12/05/unique-secure-memorable-passwords/</link>
		<comments>http://bretthutley.com/2011/12/05/unique-secure-memorable-passwords/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 14:06:45 +0000</pubDate>
		<dc:creator>brett</dc:creator>
				<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Useful]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[passwords]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">https://bretthutley.com/?p=408</guid>
		<description><![CDATA[An easy way to generate a unique, memorable but secure password for each website or service you visit is to apply the following recipe: Start with a base word. This can be anything, but the weirder the better. This will stay consistent across your passwords. For the purposes of explaining this technique, the base word [...]


Related posts:<ol><li><a href='http://bretthutley.com/2011/11/04/written-by-robot/' rel='bookmark' title='Written by Robot'>Written by Robot</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>An easy way to generate a unique, memorable but secure password for each website or service you visit is to apply the following recipe:</p>
<p><span id="more-408"></span></p>
<ol>
<li>
<p>Start with a base word. This can be anything, but the weirder the better. This will stay consistent across your passwords. For the purposes of explaining this technique, the base word will be "Redux".</p>
</li>
<li>
<p>Next take the name of the website or service. Let's say we are creating a password for <a href="http://www.reddit.com/">Reddit</a>. Take a number of specific letters from the name. Let's say that we always take the first 2 letters from the site name. This gives us the letters 'R' and 'e'. If you want, instead of taking the first 2 letters you could take the first and last letter, or the first 3 letters. It doesn't matter. What matters is to always take the same number of characters from the same position of each website.</p>
</li>
<li>
<p>Next, use an <em>algorithm</em>. This algorithm will be unique to you, but is a way of mixing the letters you have extracted from the website into your base word. A simple algorithm might be to prepend the letters to your base word. Your password then becomes <em>"ReRedux"</em>. A slightly better algorithm would be to increment the letters by one character. This means that "Re" -&gt; "Sf". Then merge the resultant characters into the first and third positions of your base word. Your password for Reddit then becomes <em>"SRfedux"</em>.</p>
</li>
</ol>
<p>This combination of using a unique <em>base word</em>, that is consistent across all your passwords, but modifying it using an <em>algorithm</em> based on the website name will allow you to construct passwords that you can remember, but are different for each site you need to log in to.</p>
<p><b>EDIT:</b> OK, <a href="http://www.reddit.com/r/geek/comments/n13nj/unique_secure_memorable_passwords/">based on the Reddit comment thread</a> it turns out that I didn't properly explain the rationale for using a combination of the website name and some constant stream of characters is to try and create a unique password for each individual site. You want to have a unique password per site because a lot of sites store your password in plain-text. If one site gets cracked, you don't want the attackers to be able to compromise your identity on other sites you have an account on. Also, using a passphrase or the first letters of words in a passphrase as your <em>base word</em> is obviously more secure than using a dictionary word.</p>
<p><b>EDIT 2:</b> It seems people are worried about the entropy of the generated passwords. Obviously, they are not completely random, but to give you an idea on how secure they can appear, here are some passwords generated from the same base word and algorithm for different sites:</p>
<table>
<tr>
<td><b>Site</b></td>
<td><b>Password</b></td>
</tr>
<tr>
<td>reddit</td>
<td>u-gCv*9^x%</td>
</tr>
<tr>
<td>slashdot</td>
<td>8D%4sXaN05</td>
</tr>
<tr>
<td>hackernews</td>
<td>z-hRvL9&p%</td>
</tr>
</table>
<p>The algorithm that generated these passwords was fairly simple. A slightly more complex algorithm would generate different length passwords. The key takeaway is that if an attacker gets hold of the password for the reddit site, it is extremely unlikely that they will be able to reverse-engineer the passwords for the other sites.</p>


<p>Related posts:<ol><li><a href='http://bretthutley.com/2011/11/04/written-by-robot/' rel='bookmark' title='Written by Robot'>Written by Robot</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://bretthutley.com/2011/12/05/unique-secure-memorable-passwords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Negotiation</title>
		<link>http://bretthutley.com/2011/12/02/negotiation/</link>
		<comments>http://bretthutley.com/2011/12/02/negotiation/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 16:45:00 +0000</pubDate>
		<dc:creator>brett</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Useful]]></category>
		<category><![CDATA[haggling]]></category>
		<category><![CDATA[lifestyle]]></category>
		<category><![CDATA[negotiating]]></category>
		<category><![CDATA[negotiation]]></category>
		<category><![CDATA[Urban Living]]></category>

		<guid isPermaLink="false">https://bretthutley.com/?p=404</guid>
		<description><![CDATA[I've been listening to Slate's Negotiation Podcasts, which I think are excellent. There are currently 7 episodes (although more are on their way), each about 10-15 minutes in length. Below are my notes summarising what I've learned: Before the negotiation Firstly, try and build information profile about your counter-party. You are interested in working out [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>I've been listening to <a href="http://www.slate.com/articles/podcasts/negotiation.html">Slate's Negotiation Podcasts</a>, which I think are excellent. There are currently 7 episodes (although more are on their way), each about 10-15 minutes in length. Below are my notes summarising what I've learned:</p>
<p><span id="more-404"></span></p>
<h3>Before the negotiation</h3>
<p>Firstly, try and build information profile about your counter-party. You are interested in working out what their utility function (or value profile) is. You want to try and determine their "walk-away" number - the price at which they will walk away from the negotiation. You want to try and work out what alternatives they have to an agreement. What pressures do they have to getting an agreement?</p>
<p>Also, determine what your walk-away price is. What is the point at which you will walk away from the agreement? Try and come up with alternatives, this will help take the pressure off you during the negotiation. Work out what your utility profile is - what are your priorities? What points won't you compromise on?</p>
<h3>During the negotiation</h3>
<p>Firstly, <em>you</em> should set the initial price. This will help determine the expectation range that your counter-party has. The only time when you should allow the counter-party to determine the initial price is if they have a lot more information about what the item/service is worth than you do.</p>
<p>With your initial price, you take your estimation of the negotiating counter-party's walk-away price and offer slightly lower. Don't go too low. You want the counter-party to take your initial offer seriously.</p>
<p>Also, try and establish rapport before you begin the negotiation. You can reveal unimportant information about yourself to help the flow of information. Ask questions - try and determine what is important to them. Are there any pressures on them to get the deal done? Are there any time pressures involved? Do other people have any expectations on the results of the negotiations? </p>
<p>Sometimes some small things may give you an edge. Having the appearance of authority may help you during the negotiation. Helping to boost the attractiveness to the counter-party by making the object of the negotiation appear scarce. "Only one left, so you should get it now". Social proof - all these other people have also bought this item and been completely satisfied.</p>
<p>It's important during the negotiation to try and seek mutual benefit.</p>
<p>If someone is over-aggressive or too emotional during the negotiation, take a time-out. Don't mirror negativity. If the counter-party starts with with an insultingly low offer try a technique called "Re-Anchoring". The Re-anchoring technique involves making a counter-proposal, and then repeating it numerous times. You are trying to "anchor" your counter-proposal in their mind.</p>
<p>If you get stuck in a negotiation, try adding in embedded options. For example; if [some situation] happens, then you must do [this other thing].</p>
<h3>Closing the negotiation</h3>
<p>Create a solution "package". This is a complete solution - listing all the negotiating points and your proposal. Don't try and negotiate each point separately, seek agreement for a "package" of solutions.</p>
<p>Potentially try embedding options into the solution.</p>
<p>Also, once you have an agreement, think about shelving the agreement temporarily to try and "re-factor" it, i.e. to try get a better agreement. You can always come back to your original agreement if no better solution can be found.</p>
<p>Take your time during the negotiation.</p>
<p>Practice!</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://bretthutley.com/2011/12/02/negotiation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting iTunes to recognise tracks as belonging to one Album</title>
		<link>http://bretthutley.com/2011/11/27/getting-itunes-to-recognise-tracks-as-belonging-to-one-album/</link>
		<comments>http://bretthutley.com/2011/11/27/getting-itunes-to-recognise-tracks-as-belonging-to-one-album/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 15:26:03 +0000</pubDate>
		<dc:creator>brett</dc:creator>
				<category><![CDATA[Useful]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">https://bretthutley.com/?p=400</guid>
		<description><![CDATA[I have just been importing some music into iTunes from an external drive. Sometimes iTunes doesn't recognise songs as belonging to the same album, even if they have the same Album name. (Bad iTunes!) The solution is to select all the files in iTunes that belong to the same Album. Right-click and choose "Get Info" [...]


Related posts:<ol><li><a href='http://bretthutley.com/2008/02/08/great-quote/' rel='bookmark' title='Great Quote'>Great Quote</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I have just been importing some music into iTunes from an external drive. Sometimes iTunes doesn't recognise songs as belonging to the same album, even if they have the same Album name.<br />
(Bad iTunes!)</p>
<p><span id="more-400"></span></p>
<p>The solution is to select all the files in iTunes that belong to the same Album. Right-click and choose "Get Info" from the menu (you may get a warning here that you are changing multiple items). You should see them as all having the same Album name. If they don't then edit the "Album" field with the name of the Album. Secondly, set the "Album Artist" field to be "Various Artists". If you click OK, you should now see the music in iTunes shown as being part of the same Album.</p>
<p>I quite often then go to the "Options" tab, and set the option "Part of a Compilation" to be "Yes", and because a lot of my music tends to be electronica and dance music, I also set "Gapless Album" to be "Yes".</p>


<p>Related posts:<ol><li><a href='http://bretthutley.com/2008/02/08/great-quote/' rel='bookmark' title='Great Quote'>Great Quote</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://bretthutley.com/2011/11/27/getting-itunes-to-recognise-tracks-as-belonging-to-one-album/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Five Tibetans</title>
		<link>http://bretthutley.com/2011/11/16/the-five-tibetans/</link>
		<comments>http://bretthutley.com/2011/11/16/the-five-tibetans/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 14:28:19 +0000</pubDate>
		<dc:creator>brett</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Useful]]></category>
		<category><![CDATA[exercise]]></category>
		<category><![CDATA[lifestyle]]></category>
		<category><![CDATA[yoga]]></category>

		<guid isPermaLink="false">https://bretthutley.com/?p=390</guid>
		<description><![CDATA[This morning I was researching a fast yoga workout when I came across the Five Tibetan Rites. These exercises supposedly came from a retired British Army Colonel who was stationed in Tibet, and written up in the book "The Eye of Revelation" by Peter Kelder in 1939. Apparently the colonel stayed at a monastery populated [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>This morning I was researching a fast yoga workout when I came across <a href="http://en.wikipedia.org/wiki/Five_Tibetan_Rites">the Five Tibetan Rites</a>.<br />
These exercises supposedly came from a retired British Army Colonel who was stationed in Tibet, and written up in the book "The Eye of Revelation" by Peter Kelder in 1939. Apparently the colonel stayed at a monastery populated by extremely long-lived monks who practiced these exercises every day.</p>
<p><span id="more-390"></span></p>
<p>Although the origins sound quite dodgy, apparently the exercises have been verified as a form of Tibetan Yoga. The key point for me is that the exercises can be done in 10 minutes a day.</p>
<p>There are 5 exercises:</p>
<ol>
<li>
<p>The first is extremely lame and is essentially spinning around with your arms outstretched, turning from left to right. Lame. Ignore.</p>
</li>
<li>
<p>The second exercise is leg raises, while raising the head to the chest at the same time. Good core strength workout.</p>
</li>
<li>
<p>The third exercise seems to be stretching forward from a kneeling position to child's pose, and then back to a seated back bend.</p>
</li>
<li>
<p>The fourth exercise goes from seated staff pose, and then pushing up to bridge pose.</p>
</li>
<li>
<p>The fifth exercise goes from downward dog to cobra pose.</p>
</li>
</ol>
<p>Apart from the first exercise, which seems quite silly and pointless, these sound like a great set of exercises for a quick workout routine.</p>
<p>Here are some links to THT demos on youtube:</p>
<ul>
<li><a href="http://youtu.be/5OyiHQRpY0Y">Sarah Kline demoing</a></li>
<li><a href="http://youtu.be/2qLKhvsfQKc">Maryse Moerel demoing</a></li>
</ul>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://bretthutley.com/2011/11/16/the-five-tibetans/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ledger to OFX</title>
		<link>http://bretthutley.com/2011/02/25/ledger-to-ofx/</link>
		<comments>http://bretthutley.com/2011/02/25/ledger-to-ofx/#comments</comments>
		<pubDate>Fri, 25 Feb 2011 14:55:25 +0000</pubDate>
		<dc:creator>brett</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Useful]]></category>

		<guid isPermaLink="false">http://www.bretthutley.com/?p=322</guid>
		<description><![CDATA[I keep my finances in J Wiegley's Ledger format, which means everything is in a flat text file, for easy editing. I recently decided to use Xero.com for both my company and personal accounts. Unfortunately, this means that I somehow needed to upload all my past transaction data. So I wrote a Python script to [...]


Related posts:<ol><li><a href='http://bretthutley.com/2011/02/08/evernote-to-dropbox/' rel='bookmark' title='Evernote to Dropbox'>Evernote to Dropbox</a></li>
<li><a href='http://bretthutley.com/2012/01/23/hacking-the-ez430-chronos-watch-on-the-mac/' rel='bookmark' title='Hacking the EZ430 Chronos Watch on the Mac'>Hacking the EZ430 Chronos Watch on the Mac</a></li>
<li><a href='http://bretthutley.com/2009/09/04/convert-wma-files-to-mp3/' rel='bookmark' title='Converting WMA files to MP3'>Converting WMA files to MP3</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I keep my finances in <a href="https://github.com/jwiegley/ledger/wiki/">J Wiegley's Ledger</a> format, which means everything is in a flat text file, for easy editing. I recently decided to use <a href="http://www.xero.com">Xero.com</a> for both my company and personal accounts. Unfortunately, this means that I somehow needed to upload all my past transaction data. So I wrote a Python script to convert Ledger format account files to OFX. You can grab a copy of the source code <a href="https://github.com/bhutley/ledger-to-ofx">over at GitHub</a>.</p>


<p>Related posts:<ol><li><a href='http://bretthutley.com/2011/02/08/evernote-to-dropbox/' rel='bookmark' title='Evernote to Dropbox'>Evernote to Dropbox</a></li>
<li><a href='http://bretthutley.com/2012/01/23/hacking-the-ez430-chronos-watch-on-the-mac/' rel='bookmark' title='Hacking the EZ430 Chronos Watch on the Mac'>Hacking the EZ430 Chronos Watch on the Mac</a></li>
<li><a href='http://bretthutley.com/2009/09/04/convert-wma-files-to-mp3/' rel='bookmark' title='Converting WMA files to MP3'>Converting WMA files to MP3</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://bretthutley.com/2011/02/25/ledger-to-ofx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Evernote to Dropbox</title>
		<link>http://bretthutley.com/2011/02/08/evernote-to-dropbox/</link>
		<comments>http://bretthutley.com/2011/02/08/evernote-to-dropbox/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 14:12:38 +0000</pubDate>
		<dc:creator>brett</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Useful]]></category>

		<guid isPermaLink="false">http://www.bretthutley.com/?p=317</guid>
		<description><![CDATA[I've just started using Evernote to make a note of things I find interesting on the web and to capture ideas or random thoughts. So far I love it! What I wanted was an easy way to extract the notes and save them to my filesystem, where they become much more useful. Specifically I want [...]


Related posts:<ol><li><a href='http://bretthutley.com/2012/01/23/hacking-the-ez430-chronos-watch-on-the-mac/' rel='bookmark' title='Hacking the EZ430 Chronos Watch on the Mac'>Hacking the EZ430 Chronos Watch on the Mac</a></li>
<li><a href='http://bretthutley.com/2011/02/25/ledger-to-ofx/' rel='bookmark' title='Ledger to OFX'>Ledger to OFX</a></li>
<li><a href='http://bretthutley.com/2011/11/05/blogging-process/' rel='bookmark' title='Blogging Process'>Blogging Process</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I've just started using <a href="http://www.evernote.com/">Evernote</a> to make a note of things I find interesting on the web and to capture ideas or random thoughts. So far I love it!<br/><br />
What I wanted was an easy way to extract the notes and save them to my filesystem, where they become much more useful. Specifically I want to save the notes as text files to a place in my Dropbox repository, so they get synced across all my devices, and are backed up.</p>
<p><span id="more-317"></span></p>
<p>After a bit of googling I found kjk's script evernote-to-file.py over at <a href="https://github.com/kjk/web-blog">Github</a>. A little bit of Pythonic bastardisation later, and I modified the script to extract the notes to a directory, creating directory names that match the notebook names in Evernote. I also updated the script a bit, as it didn't work with my version of Evernote.</p>
<p>I have uploaded the source code to <a href="https://github.com/bhutley/evernote-save">my repository at Github</a>, so it is available for general use.</p>
<p>It works OK at the moment, but future plans would be to track the notes by ID in an index file, and so if I move the notes around in Evernote, I can make the corresponding changes on my local filesystem.</p>


<p>Related posts:<ol><li><a href='http://bretthutley.com/2012/01/23/hacking-the-ez430-chronos-watch-on-the-mac/' rel='bookmark' title='Hacking the EZ430 Chronos Watch on the Mac'>Hacking the EZ430 Chronos Watch on the Mac</a></li>
<li><a href='http://bretthutley.com/2011/02/25/ledger-to-ofx/' rel='bookmark' title='Ledger to OFX'>Ledger to OFX</a></li>
<li><a href='http://bretthutley.com/2011/11/05/blogging-process/' rel='bookmark' title='Blogging Process'>Blogging Process</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://bretthutley.com/2011/02/08/evernote-to-dropbox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to get Maplin&#8217;s USB Microscope working on a Mac</title>
		<link>http://bretthutley.com/2010/09/19/usb-microscope-mac/</link>
		<comments>http://bretthutley.com/2010/09/19/usb-microscope-mac/#comments</comments>
		<pubDate>Sun, 19 Sep 2010 13:54:48 +0000</pubDate>
		<dc:creator>brett</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[Useful]]></category>
		<category><![CDATA[Mac OS/X]]></category>
		<category><![CDATA[USB Microscope]]></category>

		<guid isPermaLink="false">http://www.bretthutley.com/?p=293</guid>
		<description><![CDATA[I just brought Maplin's USB Digital Microsoft with 400x magnification, which is advertised as having Windows-only drivers. System Profiler identified the chipset as being from Vimicro Corporation. I went to the Driver Download section of their website and downloaded (and installed) the DRV_ZC0301PLus_070305 driver. I then opened up Photo Booth, and was able to select the [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>I just brought <a href="http://www.maplin.co.uk/module.aspx?moduleno=286566">Maplin's USB Digital Microsoft with 400x magnification</a>, which is advertised as having Windows-only drivers. System Profiler identified the chipset as being from Vimicro Corporation. I went to the <a href="http://www.vimicro.com/english/product/pc003.htm">Driver Download</a> section of their website and downloaded (and installed) the <em>DRV_ZC0301PLus_070305</em> driver. I then opened up Photo Booth, and was able to select the Vimicro camera as the video source. What I <strong>should</strong> have done was just try and access the Microscope using Photo Booth before I installed the driver, as I half suspect that there was no actual need to install that driver.</p>
<div id="attachment_294" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.bretthutley.com/wp-content/uploads/2010/09/razor_closeup.jpg"><img class="size-medium wp-image-294" title="Close-up of a new razor blade" src="http://www.bretthutley.com/wp-content/uploads/2010/09/razor_closeup-300x225.jpg" alt="Close-up of a new razor blade" width="300" height="225" /></a><p class="wp-caption-text">Close-up of a new razor blade</p></div>
<p>Please try to use the microscope with Photo Booth first before downloading the driver, and let me know in the comments if that works.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://bretthutley.com/2010/09/19/usb-microscope-mac/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>DEVONthink and Emacs Completion</title>
		<link>http://bretthutley.com/2009/11/18/devonthink-and-emacs-completion/</link>
		<comments>http://bretthutley.com/2009/11/18/devonthink-and-emacs-completion/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 23:26:56 +0000</pubDate>
		<dc:creator>brett</dc:creator>
				<category><![CDATA[Useful]]></category>
		<category><![CDATA[Annoyance]]></category>
		<category><![CDATA[DEVONthink]]></category>
		<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Hotkey]]></category>
		<category><![CDATA[Keyboard Shortcut]]></category>

		<guid isPermaLink="false">http://www.bretthutley.com/?p=235</guid>
		<description><![CDATA[DEVONthink has the annoying habit of starting up if I try to complete a bit of text in Emacs on my Mac. By default DEVONthink is bound in the "Services" menu to Apple-Slash (Command-Slash). To fix this, open up "/Applications/DEVONthink Pro.app/Contents/Info.plist" in Emacs. Do a search for "NSKeyEquivalent" until you see an entry that looks [...]


Related posts:<ol><li><a href='http://bretthutley.com/2010/07/04/emacs-cmd-key-on-mac/' rel='bookmark' title='Emacs cmd-key on Mac'>Emacs cmd-key on Mac</a></li>
<li><a href='http://bretthutley.com/2009/08/21/getting-postfix-sending-email-on-your-mac/' rel='bookmark' title='Getting Postfix sending email on your Mac'>Getting Postfix sending email on your Mac</a></li>
<li><a href='http://bretthutley.com/programming/emacs/integrating-emacs-and-xcode/' rel='bookmark' title='Integrating Emacs and XCode'>Integrating Emacs and XCode</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>DEVONthink has the annoying habit of starting up if I try to complete a bit of text in Emacs on my Mac. By default DEVONthink is bound in the "Services" menu to Apple-Slash (Command-Slash). To fix this, open up "/Applications/DEVONthink Pro.app/Contents/Info.plist" in Emacs. Do a search for "NSKeyEquivalent" until you see an entry that looks like this:<br />
<span id="more-235"></span></p>
<pre class="xml">
        &lt;key&gt;NSKeyEquivalent&lt;/key&gt;
             &lt;dict&gt;
                 &lt;key&gt;default&lt;/key&gt;
                 &lt;string&gt;/&lt;/string&gt;
             &lt;/dict&gt;
             &lt;key&gt;NSMenuItem&lt;/key&gt;
             &lt;dict&gt;
                 &lt;key&gt;default&lt;/key&gt;
                 &lt;string&gt;DEVONthink Pro/Lookup...&lt;/string&gt;
             &lt;/dict&gt;
</pre>
<p>Delete the "/" character from the "&lt;string&gt;/&lt;/string&gt;" line. Once you log out and log back in, this should be fixed. Save a copy of this file before you change it, just in case you screw up.</p>
<div><span style="font-family: 'Lucida Grande', Verdana, Arial, 'Bitstream Vera Sans', sans-serif;"><span style="white-space: pre-wrap;"><br />
</span></span></div>


<p>Related posts:<ol><li><a href='http://bretthutley.com/2010/07/04/emacs-cmd-key-on-mac/' rel='bookmark' title='Emacs cmd-key on Mac'>Emacs cmd-key on Mac</a></li>
<li><a href='http://bretthutley.com/2009/08/21/getting-postfix-sending-email-on-your-mac/' rel='bookmark' title='Getting Postfix sending email on your Mac'>Getting Postfix sending email on your Mac</a></li>
<li><a href='http://bretthutley.com/programming/emacs/integrating-emacs-and-xcode/' rel='bookmark' title='Integrating Emacs and XCode'>Integrating Emacs and XCode</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://bretthutley.com/2009/11/18/devonthink-and-emacs-completion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting WMA files to MP3</title>
		<link>http://bretthutley.com/2009/09/04/convert-wma-files-to-mp3/</link>
		<comments>http://bretthutley.com/2009/09/04/convert-wma-files-to-mp3/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 13:17:12 +0000</pubDate>
		<dc:creator>brett</dc:creator>
				<category><![CDATA[Useful]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[mplayer]]></category>
		<category><![CDATA[sox]]></category>
		<category><![CDATA[wma]]></category>

		<guid isPermaLink="false">http://www.bretthutley.com/?p=198</guid>
		<description><![CDATA[I recently needed to convert a bunch of WMA files to MP3 on my macbook. The easiest way to do it was to open up a terminal window, change directory to the directory with the files, and then use mplayer to convert each file to a WAV, and then sox to convert the file to [...]


Related posts:<ol><li><a href='http://bretthutley.com/2007/11/29/using-gpg-to-encrypt-files-on-a-web-server/' rel='bookmark' title='Using gpg to encrypt files on a web server'>Using gpg to encrypt files on a web server</a></li>
<li><a href='http://bretthutley.com/2009/11/17/emacs-and-rails/' rel='bookmark' title='Emacs and Ruby on Rails'>Emacs and Ruby on Rails</a></li>
<li><a href='http://bretthutley.com/2011/02/08/evernote-to-dropbox/' rel='bookmark' title='Evernote to Dropbox'>Evernote to Dropbox</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I recently needed to convert a bunch of WMA files to MP3 on my macbook. The easiest way to do it was to open up a terminal window, change directory to the directory with the files, and then use mplayer to convert each file to a WAV, and then sox to convert the file to an MP3. The command line I used is described below:</p>
<p><span id="more-198"></span></p>
<p><pre class="bash">&nbsp;
<span style="color: #000000; font-weight: bold;">for</span> i <span style="color: #000000; font-weight: bold;">in</span> *.wma ; <span style="color: #000000; font-weight: bold;">do</span>
  <span style="color: #007800;">MN=</span>`<span style="color: #c20cb9; font-weight: bold;">basename</span> <span style="color: #ff0000;">&quot;$i&quot;</span> .wma`.mp3
  mplayer -vo null -vc null -af <span style="color: #007800;">resample=</span><span style="color: #000000;">44100</span> -ao pcm:waveheader <span style="color: #ff0000;">&quot;$i&quot;</span>
  <span style="color: #c20cb9; font-weight: bold;">sox</span> audiodump.wav <span style="color: #ff0000;">&quot;${MN}&quot;</span>
  <span style="color: #c20cb9; font-weight: bold;">rm</span> audiodump.wav
<span style="color: #000000; font-weight: bold;">done</span>
&nbsp;</pre>
</p>
<p>I probably can just output straight to MP3 from mplayer, but I couldn't be bothered reading through the mplayer man page to work out how to do it!</p>


<p>Related posts:<ol><li><a href='http://bretthutley.com/2007/11/29/using-gpg-to-encrypt-files-on-a-web-server/' rel='bookmark' title='Using gpg to encrypt files on a web server'>Using gpg to encrypt files on a web server</a></li>
<li><a href='http://bretthutley.com/2009/11/17/emacs-and-rails/' rel='bookmark' title='Emacs and Ruby on Rails'>Emacs and Ruby on Rails</a></li>
<li><a href='http://bretthutley.com/2011/02/08/evernote-to-dropbox/' rel='bookmark' title='Evernote to Dropbox'>Evernote to Dropbox</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://bretthutley.com/2009/09/04/convert-wma-files-to-mp3/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
	</channel>
</rss>

