<?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>2manyvariables</title>
	<atom:link href="http://2manyvariables.inmachina.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://2manyvariables.inmachina.com</link>
	<description>&#34;To be is to be the value of a (bound) variable — W.V.O. Quine</description>
	<lastBuildDate>Wed, 22 Jul 2009 08:53:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Automatically import all your FLACs into iTunes</title>
		<link>http://2manyvariables.inmachina.com/2009/07/automatically-import-all-your-flacs-into-itunes/</link>
		<comments>http://2manyvariables.inmachina.com/2009/07/automatically-import-all-your-flacs-into-itunes/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 21:54:30 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://2manyvariables.inmachina.com/?p=19</guid>
		<description><![CDATA[iTunes lacks FLAC support out of the box and as annoying as that is, there is hope. Fluke lets you import and play your FLACs with iTunes.
Unfortunatly the standard method requires that you select the files you want to import in the Finder and open them with &#8220;Open with&#8221;.
This can be cumbersome if you have [...]]]></description>
			<content:encoded><![CDATA[<p>iTunes lacks FLAC support out of the box and as annoying as that is, there is hope. <a href="http://blowintopieces.com/fluke/">Fluke</a> lets you import and play your FLACs with iTunes.<br />
Unfortunatly the standard method requires that you select the files you want to import in the Finder and open them with &#8220;Open with&#8221;.</p>
<p>This can be cumbersome if you have many FLACs in different places. To add them all in one run, open<br />
the Terminal, cd into the directory where your music is stored an run</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">find</span> . <span style="color: #660033;">-name</span> <span style="color: #ff0000;">&quot;*.flac&quot;</span> <span style="color: #660033;">-print0</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">xargs</span> <span style="color: #660033;">-0</span> open <span style="color: #660033;">-a</span> Fluke</pre></td></tr></table></div>

<p>This will search in the current directory and all it&#8217;s subdirectories for FLAC files and import them</p>
]]></content:encoded>
			<wfw:commentRss>http://2manyvariables.inmachina.com/2009/07/automatically-import-all-your-flacs-into-itunes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vim LaTeX-suite and OS X</title>
		<link>http://2manyvariables.inmachina.com/2009/07/vim-latex-suite-and-os-x/</link>
		<comments>http://2manyvariables.inmachina.com/2009/07/vim-latex-suite-and-os-x/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 19:12:28 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[latex]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://2manyvariables.inmachina.com/?p=3</guid>
		<description><![CDATA[One of the many great features that LaTeX-suite provides is autocompletion for \ref, \cite etc. Unfortuantly LaTeX-suite maps autocompletion to F9 and this is mapped to fast-forward on OS X.
If you don&#8217;t want to disable the standard F1-F9 mappings and go the FN+F1-9 route, simply add

1
2
3
&#34; TeX
&#34; Fix F9 mapping on MacBook
autocmd FileType tex imap [...]]]></description>
			<content:encoded><![CDATA[<p>One of the many great features that LaTeX-suite provides is autocompletion for \ref, \cite etc. Unfortuantly LaTeX-suite maps autocompletion to F9 and this is mapped to fast-forward on OS X.</p>
<p>If you don&#8217;t want to disable the standard F1-F9 mappings and go the FN+F1-9 route, simply add</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="vim" style="font-family:monospace;"><span style="color: #adadad; font-style: italic;">&quot; TeX</span>
<span style="color: #adadad; font-style: italic;">&quot; Fix F9 mapping on MacBook</span>
<span style="color: #668080;">autocmd</span> FileType tex imap <span style="color: #000000;">&lt;</span>buffer<span style="color: #000000;">&gt;</span> <span style="color: #000000;">&lt;</span>M<span style="color: #000000;">-</span>TAB<span style="color: #000000;">&gt;</span> <span style="color: #000000;">&lt;</span>Plug<span style="color: #000000;">&gt;</span>Tex_Completion</pre></td></tr></table></div>

<p>to your ~/.vimrc. This will map autocompletion to ALT+TAB when a tex-file is loaded.</p>
<p>Now back to finishing that thesis&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://2manyvariables.inmachina.com/2009/07/vim-latex-suite-and-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
