<?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>Lillesvin Networks &#187; MacOS X</title>
	<atom:link href="http://lillesvin.net/archives/category/computers/macos-x/feed" rel="self" type="application/rss+xml" />
	<link>http://lillesvin.net</link>
	<description></description>
	<lastBuildDate>Thu, 05 Jan 2012 05:50:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Mutt: Mailing like it&#8217;s 1995!</title>
		<link>http://lillesvin.net/archives/497</link>
		<comments>http://lillesvin.net/archives/497#comments</comments>
		<pubDate>Thu, 03 Feb 2011 06:24:01 +0000</pubDate>
		<dc:creator>Anders K. Madsen</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://lillesvin.net/?p=497</guid>
		<description><![CDATA[Don&#8217;t be confused &#8211; it&#8217;s not a bad thing, it just means that Michael Elkins got it right back then and, let&#8217;s face it, email hasn&#8217;t changed a whole lot since then, so why not go with something that doesn&#8217;t &#8230; <a href="http://lillesvin.net/archives/497">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t be confused &#8211; it&#8217;s not a bad thing, it just means that Michael Elkins got it right back then and, let&#8217;s face it, email hasn&#8217;t changed a whole lot since then, so why not go with something that doesn&#8217;t try to make email out to be more than it actually is? (I&#8217;m looking at you Apple.)</p>
<p>So I managed to finally set up Mutt for multiple IMAP accounts along with some sharing of the configuration via Dropbox so I only have to maintain one configuration between MacOS X and Linux (and whatever else I may use), and I&#8217;ll show you how.</p>
<p>First of all, you need to install Mutt. If you&#8217;re on any sort of Linux, then there&#8217;s probably a native package for Mutt and you should just install that. If you&#8217;re on OS X you&#8217;ll need to build it from the source, which requires that you&#8217;ve have the Apple Developer Tools (gcc and stuff) and probably <a href="http://finkproject.org">Fink</a> or <a href="http://macports.org">MacPorts</a> for dependencies &#8211; e.g. BerkeleyDB &#8211; and also you&#8217;ll have to apply the <a href="http://cedricduval.free.fr/mutt/patches/#trash">Trash Folder patch</a> to the Mutt source (at least if you want to use your IMAP Trash folders instead of directly deleting mail). On my OS X all I had to do to build Mutt was the following:</p>
<pre>$ wget ftp://ftp.mutt.org/mutt/devel/mutt-1.5.21.tar.gz
$ wget http://cedricduval.free.fr/mutt/patches/download/patch-1.5.5.1.cd.trash_folder.3.4
$ tar -zxvf mutt-1.5.21.tar.gz
$ cd mutt-1.5.21/
$ patch -p1 &lt; ../patch-1.5.5.1.cd.trash_folder.3.4
$ configure --prefix=/usr/local --with-curses --with-regex \
    --enable-locales-fix --enable-pop --enable-imap --enable-smtp \
    --with-sasl --enable-hcache --with-ssl
$ make
$ sudo make install</pre>
<p>However, I do have Fink installed, which may be the reason that it was so very easy. If <tt>./configure</tt> fails (e.g. because of some missing dependency) you&#8217;re on your own. Same goes if you&#8217;re using Windows.</p>
<p>Anyways, with Mutt installed, we can now get started on the configuration files. (Mutt won&#8217;t do anything for you before it&#8217;s configured.) First of all, we need to setup some directories to hold the configuration files, certificates and caches. Now, I don&#8217;t want to share certificates and caches between my various machines/OSes (because of potential DB incompabilites), so let&#8217;s create a directory in our home directory to hold that. However, the Mutt configuration along with the account settings is what we want to share between machines/OSes, so we&#8217;ll create a directory in Dropbox for that and then create a symbolic link between the home directory and the configuration in Dropbox.</p>
<pre>$ mkdir -p ~/.mutt.local/cache
$ mkdir -p ~/Dropbox/mutt.config/accounts
$ ln -s ~/Dropbox/mutt.config ~/.mutt</pre>
<p>Now let&#8217;s go ahead and setup two accounts. I won&#8217;t go into too much detail about this, because you can find this stuff all over the internet. So first off we create the file <tt>~/Dropbox/mutt.config/accounts/lillesvin</tt> for the first account with the following content:</p>
<pre>#~/Dropbox/mutt.config/accounts/lillesvin
account-hook "imaps://lillesvin.net/" '\
set imap_user = "username@lillesvin.net" imap_pass = "PasswordGoesHere" '</pre>
<pre>set from = "username@lillesvin.net" # From-address for this account
set folder = "imaps://lillesvin.net/INBOX"
set spoolfile = "imaps://lillesvin.net/INBOX" # Inbox
set postponed = "+Drafts" #Drafts folder
set trash = "+Trash" # Trash folder (if you applied the Trash Folder patch)
set record = "+Sent" # Sent messages
mailboxes "+" "+Sent" "+Drafts"
set header_cache =~/.mutt.local/cache/headers
set message_cachedir =~/.mutt.local/cache/bodies
set certificate_file =~/.mutt.local/certificates
set smtp_url = "smtp://smtpserver.example.com"
set imap_keepalive = 900
set imap_check_subscribed</pre>
<p>And for the second account we create the file <tt>~/Dropbox/mutt.config/accounts/gmail</tt> with the content:</p>
<pre># ~/Dropbox/mutt.config/accounts/gmail
account-hook "imaps://imap.gmail.com/" '\
set imap_user = "username@gmail.com" imap_pass = "PasswordGoesHere" '</pre>
<pre>set from = "username@gmail.com" # From-address for this account
set folder="imaps://imap.gmail.com/"
set spoolfile = "+INBOX" # Inbox
set postponed = "+[Gmail]/Drafts" # Drafts folder
set trash = "+[Gmail]/Trash" # Trash folder (if you applied the Trash Folder patch)
mailboxes "+INBOX" "+[Gmail]/Drafts" "+[Gmail]/Sent Mail" "+[Gmail]/Spam" "+[Gmail]"
set header_cache =~/.mutt.local/cache/headers
set message_cachedir =~/.mutt.local/cache/bodies
set certificate_file =~/.mutt.local/certificates
set smtp_url = "smtp://username@smtp.gmail.com:587/"
set smtp_pass = "PasswordGoesHere"
set imap_keepalive = 900
set imap_check_subscribed</pre>
<p>Now Mutt at least knows about the two acounts, but we&#8217;re still not able to use them untill we&#8217;ve created the following <tt>muttrc</tt> in <tt>~/Dropbox/mutt.config/</tt>:</p>
<pre># ~/Dropbox/mutt.config/muttrc</pre>
<pre># Global settings:
set realname = "My Real Name" # Name to put in From on emails
set editor='vim + -c "set textwidth=72" -c "set wrap" -c "set nocp"'
unset imap_passive
set charset = "utf-8" # We want this and the one below to force UTF-8 (only with UTF-8 terminals)
set send_charset = "utf-8" # Force sending as UTF-8 (only works with UTF-8 terminals)
set mail_check = 60
set timeout = 30
set edit_headers = yes
set move = no</pre>
<pre># Make account switching possible
account-hook . 'unset imap_pass'
folder-hook 'lillesvin.net' 'source ~/.mutt/accounts/lillesvin'
folder-hook 'imap.gmail.com' 'source ~/.mutt/accounts/gmail'
macro index &lt;F2&gt; '&lt;sync-mailbox&gt;&lt;enter-command&gt;source ~/.mutt/accounts/lillesvin&lt;enter&gt;&lt;change-folder&gt;!&lt;enter&gt;'
macro index &lt;F3&gt; '&lt;sync-mailbox&gt;&lt;enter-command&gt;source ~/.mutt/accounts/gmail&lt;enter&gt;&lt;change-folder&gt;!&lt;enter&gt;'
# Default account
source ~/.mutt/accounts/lillesvin</pre>
<p>I&#8217;ve stripped almost all unnecessary stuff from <tt>muttrc</tt> (again, you can find all the gravy by simply googling), but this should be a minimal working setup. To switch between the accounts you simply hit F2 and F3 for the lillesvin account and gmail account respectively. And to get a nice overview of all folders you simply hit &#8216;y&#8217;. Now all there&#8217;s left to do is to actually open Mutt and see if it all works as expected. (You better get used to hitting &#8216;?&#8217; for help &#8211; at least in the beginning.)</p>
<pre>$ mutt</pre>
<p>Enjoy your Mutt!</p>
]]></content:encoded>
			<wfw:commentRss>http://lillesvin.net/archives/497/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>My Next Computer</title>
		<link>http://lillesvin.net/archives/454</link>
		<comments>http://lillesvin.net/archives/454#comments</comments>
		<pubDate>Sun, 28 Nov 2010 14:38:19 +0000</pubDate>
		<dc:creator>Anders K. Madsen</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Gear]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://lillesvin.net/?p=454</guid>
		<description><![CDATA[My MacBook (2nd gen) is nearly 4 years old now and it&#8217;s not running that great, so I&#8217;m looking into what computer I should be getting next. Since I&#8217;ve taken up some gaming recently &#8212; Urban Terror and Starcraft &#8212; &#8230; <a href="http://lillesvin.net/archives/454">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My MacBook (2nd gen) is nearly 4 years old now and it&#8217;s not running that great, so I&#8217;m looking into what computer I should be getting next. Since I&#8217;ve taken up some gaming recently &#8212; <a href="http://urbanterror.net">Urban Terror</a> and Starcraft &#8212; I&#8217;d really like one that, besides running all my usual stuff, is able to run Starcraft 2.</p>
<p>Now, Starcraft 2 requires a pretty good graphics card, so if I want to stay on OS X, I&#8217;m going to have to go with at least a MacBook Pro 15&#8243; &#8212; i.e. a 13.200 DKK computer ($2350 / €1770). Now, that&#8217;s a hell of a lot of money. Alternatively, if I choose not to care about OS X and just try to get value for my money, I can get an MSI FX600 with equal or better specs for 6.000 DKK ($1050 / €800).</p>
<p>A quick comparison of some key specs. (Specs and prices from <a href="http://edbpriser.dk">http://edbpriser.dk</a>)</p>
<table>
<tbody>
<tr>
<th></th>
<th>MSI FX600 (008NE)</th>
<th>MacBook Pro 15&#8221; (2.4 GHz)</th>
</tr>
<tr>
<td><strong>Processor</strong></td>
<td>Intel Core i5 (2.4 GHz)</td>
<td>Intel Core i5 (2.4 GHz)</td>
</tr>
<tr>
<td><strong>RAM</strong></td>
<td>4 GB DDR3 SDRAM (8 GB max.)</td>
<td>4 GB DDR3 SDRAM (8 GB max.)</td>
</tr>
<tr>
<td><strong>Display</strong></td>
<td>15,6&#8221; (1366&#215;768)</td>
<td>15,4&#8221; (1440&#215;900)</td>
</tr>
<tr>
<td><strong>Graphics card</strong></td>
<td>Nvidia GeForce GT 325M</td>
<td>Nvidia GeForce GT 330M</td>
</tr>
<tr>
<td><strong>Video mem</strong>.</td>
<td>1 GB DDR3 SDRAM</td>
<td>256 MB GDDR3 SDRAM</td>
</tr>
<tr>
<td><strong>Hard drive</strong></td>
<td>500 GB Serial ATA-150</td>
<td>320 GB Serial ATA-150</td>
</tr>
<tr>
<td><strong>Price</strong></td>
<td><strong>6.000 DKK / $1050 / €800</strong></td>
<td><strong>13.200 DKK / $2350 / €1770</strong></td>
</tr>
</tbody>
</table>
<p>Granted, GDDR3 RAM is a lot better than just DDR3 (the G makes all the difference), but it&#8217;s not 4 times better.</p>
<p>On top of that, I&#8217;ve lost absolutely all respect I had for Apple when I bought my MacBook back in 2007. The upcoming Mac App Store and shit like that is just downright retarded. Meanwhile Microsoft has actually been doing pretty much the same as they&#8217;ve always been doing, but compared to Steve Jobs&#8217; insane world domination plot, Steve Ballmer is actually starting to look like the sane one of the two. And Windows 7 is getting rave reviews, so why not give that a try, now that OS X is going &#8220;<a href="http://www.youtube.com/watch?v=hkzl0zHIE2k">Trumpets!</a>&#8221;</p>
<p>Now I&#8217;m just left thinking, why would anyone (today) spend money on a Mac, when you can get the same specs in non-Apple computer for less than half the price? The MSI obviously doesn&#8217;t look as slick as a unibody MacBook, but it looks alright &#8212; I mean, it&#8217;s not downright ugly if you peel off all the stickers, and the day I pay 7.000 DKK ($1250 / €940) for <em>just</em> the design, is the day when someone ought to shoot me in the fucking head.</p>
]]></content:encoded>
			<wfw:commentRss>http://lillesvin.net/archives/454/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>When Linux Can Look This Good&#8230;</title>
		<link>http://lillesvin.net/archives/409</link>
		<comments>http://lillesvin.net/archives/409#comments</comments>
		<pubDate>Fri, 13 Aug 2010 17:38:52 +0000</pubDate>
		<dc:creator>Anders K. Madsen</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://lillesvin.net/?p=409</guid>
		<description><![CDATA[Who would want to be stuck with OS X or Windows? Setup: GTK2/Metacity: Elegant Cold Blue Flat Icons: AnyColorYouLike Title bar font: Aldo Application font: Butter Clock/date font: Digital-7 Wallpaper: Annotated / Raw Conky: .conkyrc Docky: bluesmoke Well, back to &#8230; <a href="http://lillesvin.net/archives/409">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div id="attachment_410" class="wp-caption alignright" style="width: 310px"><a href="http://lillesvin.net/wp-content/uploads/2010/08/2010-08-13-191043_1280x800_scrot.png"><img class="size-medium wp-image-410 " title="Desktop screenshot (2010-08-13)" src="http://lillesvin.net/wp-content/uploads/2010/08/2010-08-13-191043_1280x800_scrot-300x187.png" alt="Desktop screenshot (2010-08-13)" width="300" height="187" /></a><p class="wp-caption-text">My current desktop.</p></div>
<p>Who would want to be stuck with OS X or Windows?</p>
<p>Setup:</p>
<ul>
<li>GTK2/Metacity: <a href="http://gnome-look.org/content/show.php/Gtk+themes+Elegant+Cold+Blue+(2+variants?content=77147">Elegant Cold Blue Flat</a></li>
<li>Icons: <a href="http://gnome-look.org/content/show.php/Any+Color+You+Like?content=102435">AnyColorYouLike</a></li>
<li>Title bar font: <a href="http://www.dafont.com/aldo.font">Aldo</a></li>
<li>Application font: <a href="http://www.dafont.com/butter.font">Butter</a></li>
<li>Clock/date font: <a href="http://www.dafont.com/digital-7.font">Digital-7</a></li>
<li>Wallpaper: <a href="http://lillesvin.net/wp-content/uploads/2010/08/mb-conky_bg-blueish.png">Annotated</a> / <a href="http://lillesvin.net/wp-content/uploads/2010/08/mb-conkyd-bg-blueish.jpeg">Raw</a></li>
<li>Conky: <a href="http://lillesvin.net/wp-content/uploads/2010/08/conkyrc.txt">.conkyrc</a></li>
<li>Docky: <a href="http://gnome-look.org/content/show.php/Themes+for+Docky?content=117108">bluesmoke</a></li>
</ul>
<p>Well, back to work with some LaTeX in Vim. Haha! Even after 10+ years Linux still rocks my world.</p>
]]></content:encoded>
			<wfw:commentRss>http://lillesvin.net/archives/409/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Well, thank you Apple!</title>
		<link>http://lillesvin.net/archives/249</link>
		<comments>http://lillesvin.net/archives/249#comments</comments>
		<pubDate>Wed, 09 Sep 2009 21:55:54 +0000</pubDate>
		<dc:creator>Anders K. Madsen</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://lillesvin.net/?p=249</guid>
		<description><![CDATA[At a recent press event Apple presented a lot of &#8220;new&#8221; stuff, and as usual Steve Jobs gave the presentation. As I was looking through Engadget&#8217;s liveblog from the event, I stumbled upon a quote that pretty much sums up &#8230; <a href="http://lillesvin.net/archives/249">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>At a recent press event Apple presented a lot of &#8220;new&#8221; stuff, and as usual Steve Jobs gave the presentation. As I was looking through <a href="http://www.engadget.com/2009/09/09/live-from-apples-its-only-rock-and-roll-event/">Engadget&#8217;s liveblog from the event</a>, I stumbled upon a quote that pretty much sums up why I&#8217;m looking into getting a non-Apple computer the next time around.</p>
<p>Steve Jobs: &#8220;<em>Home sharing: <strong>we</strong>&#8216;re going to </em><em><strong>let you</strong> copy songs, TV shows, etc. with up to 5 computers in your house.</em>&#8221; (Emphasis mine.)</p>
<p>Well, thanks a lot. Are <em>you</em> really going to let <em>me</em> do that? Gee, Steve! I don&#8217;t know what to say. I can play my DVDs on pretty much any device with a DVD drive without being limited to 5. I can even let friends borrow them without being worried that I won&#8217;t be able to see them myself when I buy a new DVD player because it would just happen to be the 6th device to play back that particular DVD. And don&#8217;t get me started on my vinyl collection.<sup>[1]</sup></p>
<p>I&#8217;m not sure I want an OS riddled with <a href="http://www.fsf.org/bulletin/2007/fall/antifeatures/">antifeatures</a>, where I&#8217;m at the mercy of what Steve Jobs and Co. will let me do with my data.</p>
<p><sup>[1]</sup>: Irony would have it that in this recent press event, Apple announced the <a href="http://www.apple.com/itunes/whats-new/#itunes-lp">iTunes LP</a>, which is basically <em>nothing</em> like a vinyl, but more like the many failed attempts at releasing extra material in a data track on a regular CD album. So get ready for craploads of cheesy DVD-like animated menus and metric tonnes of completely useless and indifferent bonus material.</p>
]]></content:encoded>
			<wfw:commentRss>http://lillesvin.net/archives/249/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>It&#8217;s the end of the world!</title>
		<link>http://lillesvin.net/archives/236</link>
		<comments>http://lillesvin.net/archives/236#comments</comments>
		<pubDate>Sun, 03 May 2009 03:31:17 +0000</pubDate>
		<dc:creator>Anders K. Madsen</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://lillesvin.net/archives/236</guid>
		<description><![CDATA[Yup — it&#8217;s here, I&#8217;m sure. Microsoft Office 2007 SP2 now supports ODF out of the box and has the option of using ODF as the default format. And just to add to that hell-freezes-over feeling, Office 2007 SP2 finally &#8230; <a href="http://lillesvin.net/archives/236">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yup — it&#8217;s here, I&#8217;m sure. <a href="http://microsoft.com">Microsoft</a> <a href="http://www.microsoft.com/presspass/features/2009/Apr09/04-28Office2007SP2QA.mspx">Office 2007 SP2</a> now supports <a href="http://en.wikipedia.org/wiki/OpenDocument">ODF</a> out of the box and has the option of using ODF as the default format. And just to add to that hell-freezes-over feeling, Office 2007 SP2 finally has a &#8220;Save as PDF&#8221; option. (<a href="http://tech.slashdot.org/article.pl?sid=09/05/02/199203&amp;from=rss">Slashdot article with further links.</a>)</p>
<p>So in this post-apocalyptic wasteland of a world it is now possible to actually use <a href="http://openoffice.org">OpenOffice.org</a> and send your ODF document to a Word user and expect them to be able to open it! While this is somewhat unexpected coming from Microsoft, it&#8217;s really a huge benefit to all word processor users of the world and a nice move from the people in Redmond. Of course, they&#8217;re not just doing it to be nice — there are certainly financial aspects to it — but still it shows that they are &#8220;getting it&#8221; even though it&#8217;s taken them some time.</p>
<p>Now, let&#8217;s sit back and watch how long it takes for <a href="http://apple.com">Apple</a> to implement native ODF support in Pages, Numbers, Keynote, etc. My guess is that it&#8217;ll be a while. Actually, I&#8217;m getting more and more tired of being held hostage by Apple&#8217;s ideas of what I want — and am allowed — to use my computer/OS for, while Microsoft seems to be heading in a more sensible and  <a href="http://www.opensource.org/">Open</a> direction. Of course, first and foremost I&#8217;m a Linux-user, but with Windows 7 getting rave reviews and these nice additions in Office 2007 SP2 (not that I do, or ever will, use Microsoft Office or any other office suite for that matter) I might just give Microsoft another chance after ditching Windows back in 2001. Kudos to the Redmond crew for going with what the users want instead of what they want the users to have.</p>
]]></content:encoded>
			<wfw:commentRss>http://lillesvin.net/archives/236/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Firefox 3 (on OS X) — Special Characters Bug</title>
		<link>http://lillesvin.net/archives/225</link>
		<comments>http://lillesvin.net/archives/225#comments</comments>
		<pubDate>Thu, 28 Aug 2008 22:06:58 +0000</pubDate>
		<dc:creator>Anders K. Madsen</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://lillesvin.net/archives/225</guid>
		<description><![CDATA[During my recent contact with an English company, I&#8217;ve had to use the pound sign (£) a lot, which has uncovered a bug in Firefox 3 — at least I think it is&#8230; Using the danish keyboard layout the pound &#8230; <a href="http://lillesvin.net/archives/225">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>During my recent contact with an English company, I&#8217;ve had to use the pound sign (£) a lot, which has uncovered a bug in Firefox 3 — at least I think it is&#8230; Using the danish keyboard layout the pound sign has to be made by pressing alt-4, but doing so in Firefox 3 will just result in switching to tab no. 4 if a such exists. If not, the shortcut will merely do nothing. Either way, no pound sign for me.</p>
<p>Effectively this means that all combinations from alt-1 – alt-9 are useless, which means that the following characters can&#8217;t be written in Firefox 3 on OS X with a danish keyboard layout: ¡, “, §, £, ∞, ™, ¶, [ and ]. I find it especially troublesome that the hard brackets doesn&#8217;t work, since they&#8217;re extensibly used in BBTags, as replacements for &lt; and &gt; when writing HTML examples in a place that doesn&#8217;t handle &lt; and &gt; well, it&#8217;s used as scope delimiter in Functional Grammar notation and in a ton of other places.</p>
<p>I&#8217;ve scoured the web for a solution (as well as about:config) but to no avail.</p>
]]></content:encoded>
			<wfw:commentRss>http://lillesvin.net/archives/225/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Doing MIDI Music: Linux and/or OS X?</title>
		<link>http://lillesvin.net/archives/196</link>
		<comments>http://lillesvin.net/archives/196#comments</comments>
		<pubDate>Tue, 13 Nov 2007 08:02:27 +0000</pubDate>
		<dc:creator>Anders K. Madsen</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Gear]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://lillesvin.net/archives/196</guid>
		<description><![CDATA[For my birthday, my dad got me a USB MIDI keyboard, which is awesome — especially if I want to use it with GarageBand, because MIDI on the Mac is soooo easy. One thing, though, is that I&#8217;d actually rather &#8230; <a href="http://lillesvin.net/archives/196">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For my birthday, my dad got me a USB MIDI keyboard, which is awesome — especially if I want to use it with GarageBand, because MIDI on the Mac is soooo easy. One thing, though, is that I&#8217;d actually rather use it with <a href="http://lmms.sf.net">LMMS</a> and <a href="http://muse-sequencer.org/">MuSe</a> on my Ubuntu installation, but that seems to be rather difficult. It actually works fine with LMMS, but alas, LMMS does not seem to support SoundFonts and neither can I make (and play) an entire drum kit at once. I have to record each different sound individually — i.e. I have to record the tracks separatly, which is a pain, in my opinion.</p>
<p>So, MuSe and MIDI&#8230; It may just be me, but it seems I&#8217;ve tried every possible combination of settings and soft-synths, but still no cigar. I know that the keyboard is recognized, because — as I said — I can use it with LMMS, but MuSe just seems to make using MIDI really, really complicated, which is too bad. If anyone knows of any up-to-date documentation on the subject, please let me know, because what I&#8217;ve been digging up on google is ancient.</p>
<p>Anyways, I hope I don&#8217;t get too carried away with MIDI and totally lose the ability to keep it simple — don&#8217;t hesitate to let me know, if that happens. For now you&#8217;ll have to settle with my old tracks, until I&#8217;ve figured out how to work MIDI on Linux — or at least until I figure out how to make GarageBand obey my every command (hehe, yeah right&#8230; Like Apple would let me do that.) Alternatively, if <a href="http://ardour.org">Ardour</a> make <a href="http://ardour.org/node/1267">that native OS X port</a> available soon and it has (some) MIDI editing capabilities, I might actually use that, because it absolutely rocks my boat.</p>
<p>Finally, if you have any tips or tricks (anything!) regarding MIDI on either Linux or OS X, please comment away (or email me). It&#8217;ll be greatly appreciated!</p>
]]></content:encoded>
			<wfw:commentRss>http://lillesvin.net/archives/196/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Odd be-mac-viur</title>
		<link>http://lillesvin.net/archives/175</link>
		<comments>http://lillesvin.net/archives/175#comments</comments>
		<pubDate>Tue, 14 Aug 2007 09:35:56 +0000</pubDate>
		<dc:creator>Steffen</dc:creator>
				<category><![CDATA[MacOS X]]></category>

		<guid isPermaLink="false">http://lillesvin.net/archives/175</guid>
		<description><![CDATA[First of all when I boot, I get an message telling me that &#8220;No Updatable Devices Found&#8221;. I guess it happened after a system update, where the firmware for the device was to be updated, accurding to the Software Update &#8230; <a href="http://lillesvin.net/archives/175">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://lillesvin.net/wp-content/uploads/2007/08/no_update.png" title="No updatable devices found"><img src="http://lillesvin.net/wp-content/uploads/2007/08/no_update.thumbnail.png" alt="No updatable devices found" align="right" /></a></p>
<p>First of all when I boot, I get an message telling me that &#8220;No Updatable Devices Found&#8221;. I guess it happened after a system update, where the firmware for the device was to be updated, accurding to the Software Update program. I don&#8217;t use the drive that often, and I wouldn&#8217;t know if it did update it or not anyway. But this almost meaning less message annoys me, since it kind of shouts to my facethat the Playmoile OS doesn&#8217;t work as &#8220;Boom&#8221; as it says in the glitter adds.</p>
<p><a href="http://lillesvin.net/wp-content/uploads/2007/08/ff_vs_topmenu.png" title="Ff Vs. Menu bar"><img src="http://lillesvin.net/wp-content/uploads/2007/08/ff_vs_topmenu.png" alt="Ff Vs. Menu bar" align="left" /></a></p>
<p>While the first problem properly is a minor issue easy to solve, did I know how. This one is really odd. It concerns Firefox (Ff) and the OS X window manager, and is here parted in two issues. First; the Ff window reaches into top menu bar area. Either on top or underneath. In the picture it&#8217;s underneath. It was dragged into that area, but afterwards I can&#8217;t drag or click the bits of the Ff window that is in the menu bar area. Say it was on top and in a similar position as in this picture, then clicking the green radio-button to max the Ff window would instead unfold the Edit menu.</p>
<p>The other odd part is that Ff occupies the dashboard area. So when I enter the dashboard, it&#8217;s like Ff didn&#8217;t care and stay on top. Both of these two odd issues don&#8217;t happen all the time, I have to add, which makes it even more odd.</p>
]]></content:encoded>
			<wfw:commentRss>http://lillesvin.net/archives/175/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Too fresh to cope</title>
		<link>http://lillesvin.net/archives/149</link>
		<comments>http://lillesvin.net/archives/149#comments</comments>
		<pubDate>Fri, 20 Jul 2007 11:37:06 +0000</pubDate>
		<dc:creator>Steffen</dc:creator>
				<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[Synfig]]></category>

		<guid isPermaLink="false">http://lillesvin.net/archives/149</guid>
		<description><![CDATA[I was wanting to install X11 on Mac OS X, such that i could test the Synfig Studio port madsen [0] is cooking, as it depends on it. But was too slack to get out of the sofa (see pervius &#8230; <a href="http://lillesvin.net/archives/149">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was wanting to install X11 on Mac OS X, such that i could test the Synfig Studio port madsen <a href="http://http://lillesvin.net/archives/author/madsen/">[0]</a> is cooking, as it depends on it. But was too slack to get out of the sofa (see pervius post; sofa&#8217;s are good for you) to go get the install dvd which holds X11, i though it would be just as easy and accurate to download the <code>X11User.dmg</code> from Apples site <a href="http://www.apple.com/support/downloads/x11formacosx.html">[1]</a> which holds <code>X11User.pkg </code>and install X11 from there.</p>
<p>But no &#8212; check this picture:</p>
<p><center><a href="/wp-content/uploads/2007/07/x11-error.png" title="X11-error"> </a><a href="http://lillesvin.net/wp-content/uploads/2007/08/x11-error.png" title="x11 install error msg."><img src="http://lillesvin.net/wp-content/uploads/2007/08/x11-error.thumbnail.png" alt="x11 install error msg." /></a></center>The error in the picture says, that I can not install X11, since there is a newer, fresher version installed already. While that might be partly true, it&#8217;s not the complete truth. It is partly true as i have some fresh Development Tools installed that among other things hold a bunch of X11 related stuff. But not the binary it self.</p>
<p>Wouldn&#8217;t one expect to get X11.app installed by installing exactly that packages? &#8211; It&#8217;s what I&#8217;ve done the last time I installed X11 (to run Gimp, on a previous install of on another HD before it hard died). But now the installer can&#8217;t cope with something being too fresh. I&#8217;m happy that it don&#8217;t downgrade my (developer) sources, but why on earth doesn&#8217;t it just skip that and install the binary.</p>
<p>The install dvd didn&#8217;t have the same problems as this installer &#8211; thankfully.</p>
]]></content:encoded>
			<wfw:commentRss>http://lillesvin.net/archives/149/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>FUD by Association</title>
		<link>http://lillesvin.net/archives/114</link>
		<comments>http://lillesvin.net/archives/114#comments</comments>
		<pubDate>Fri, 16 Feb 2007 01:23:02 +0000</pubDate>
		<dc:creator>Anders K. Madsen</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[In the news]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.lillesvin.net/archives/114</guid>
		<description><![CDATA[I just saw an article on politiken.dk (a Danish newspaper) about a Valentine&#8217;s Day virus [da] apparently circulating. That, in itself, is nothing new — nor even unexpected, but along with the article they showed a picture of an old &#8230; <a href="http://lillesvin.net/archives/114">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p> I just saw an article on <a href="http://politiken.dk">politiken.dk</a> (a Danish newspaper) about a <a href="http://politiken.dk/it/article245399.ece">Valentine&#8217;s Day virus</a> [da] apparently circulating. That, in itself, is nothing new — nor even unexpected, but along with the article they showed a picture of an old 12&#8243; iBook. I guess the writers/editors just didn&#8217;t really think it all through, but the virus doesn&#8217;t run on OS X, but people will subconsciously make an association between a virus warning and the white Mac. And as a brand spanking new Mac-user, I&#8217;m against that.</p>
<p>I know it&#8217;s just a little thing and that it probably doesn&#8217;t really matter, but I do, none the less, think it&#8217;s a bit inconsiderate of Politiken.</p>
<p><strong>Update (Sun, Feb. 18, 2007 15:49):</strong> As I said in the comments I actually mailed the author to mention it (not to whine or bitch about it) and today she sent me a nice and friendly reply and told me she wasn&#8217;t aware and that she&#8217;d try to keep such things in mind in the future. Apparently she&#8217;d had the same reaction from a lot of other readers. I guess the proper heading for this entry should have been <em>Accidental FUD</em>. Anyhow, it&#8217;s nice to know that you&#8217;re being taken seriously even though it was really just a silly little thing. :)</p>
]]></content:encoded>
			<wfw:commentRss>http://lillesvin.net/archives/114/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

