<?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>Shizzle &#187; os x</title>
	<atom:link href="http://lenni.info/blog/tag/os-x/feed/" rel="self" type="application/rss+xml" />
	<link>http://lenni.info/blog</link>
	<description>My little notebook</description>
	<lastBuildDate>Wed, 09 May 2012 16:46:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How to deactivate one macport variant and switch to another one</title>
		<link>http://lenni.info/blog/2009/01/how-to-deactivate-one-macport-variant-and-switch-to-another-one/</link>
		<comments>http://lenni.info/blog/2009/01/how-to-deactivate-one-macport-variant-and-switch-to-another-one/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 12:16:57 +0000</pubDate>
		<dc:creator>Leonard</dc:creator>
				<category><![CDATA[Mixed]]></category>
		<category><![CDATA[macports]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[port]]></category>

		<guid isPermaLink="false">http://internetshizzle.wordpress.com/?p=22</guid>
		<description><![CDATA[Lets say for instance you have installed PHP with MySQL support with macports: sudo port install php5 +mysql5 But later on you decide you want to use SQLite, too, you&#8217;ll have to rebuild PHP with SQLite extensions, like this. sudo port install php5 +mysql5 +sqlite Now you have to deactivate the MySQL-only build and activate [...]]]></description>
			<content:encoded><![CDATA[<p>Lets say for instance you have installed PHP with MySQL support with macports:</p>
<p><code>sudo port install php5 +mysql5</code></p>
<p>But later on you decide you want to use SQLite, too, you&#8217;ll have to rebuild PHP with SQLite extensions, like this.</p>
<p><code>sudo port install php5 +mysql5 +sqlite</code></p>
<p>Now you have to deactivate the MySQL-only build and activate the one with SQLite bindings. I couldn&#8217;t find it anywhere in in the macports manual so here it goes.</p>
<p>Get a list of your current PHP5 builds with</p>
<p><code>$ sudo port activate php5<br />
Password:<br />
---&gt;  The following versions of php5 are currently installed:<br />
---&gt;  	php5 @5.2.8_1+apache2+macosx<br />
---&gt;  	php5 @5.2.8_1+apache2+macosx+mysql5 (active)<br />
---&gt;  	php5 @5.2.8_1+apache2+macosx+mysql5+sqlite<br />
Error: port activate failed: Registry error: Please specify the full version as recorded in the port registry.<br />
</code><br />
Then copy and paste the currently activated port and use the deactivate command.</p>
<p><code>sudo port deactivate php5 @5.2.8_1+apache2+macosx+mysql5<br />
---&gt;  Deactivating php5 @5.2.8_1+apache2+macosx+mysql5<br />
</code><br />
Then copy and paste the one you would like to use and use the activate command:</p>
<p><code>sudo port activate php5 @5.2.8_1+apache2+macosx+mysql5+sqlite<br />
---&gt;  Activating php5 @5.2.8_1+apache2+macosx+mysql5+sqlite<br />
</code><br />
That&#8217;s it.</p>
]]></content:encoded>
			<wfw:commentRss>http://lenni.info/blog/2009/01/how-to-deactivate-one-macport-variant-and-switch-to-another-one/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing miranda on Mac OS X</title>
		<link>http://lenni.info/blog/2009/01/installing-miranda-on-mac-os-x/</link>
		<comments>http://lenni.info/blog/2009/01/installing-miranda-on-mac-os-x/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 09:15:50 +0000</pubDate>
		<dc:creator>Leonard</dc:creator>
				<category><![CDATA[Mixed]]></category>
		<category><![CDATA[miranda]]></category>
		<category><![CDATA[os x]]></category>

		<guid isPermaLink="false">http://internetshizzle.wordpress.com/?p=13</guid>
		<description><![CDATA[EDIT: It seems that miranda is again distributed as a .tgz archive, therefore revert back to the original instructions here. This is little walk-through for installing the Miranda programming language on OS X. There are the original instructions here, but they things have changed a little since that document was written. Hence this little write-up. [...]]]></description>
			<content:encoded><![CDATA[<p>EDIT: It seems that miranda is again distributed as a .tgz archive, therefore revert back to the original instructions <a href="http://www.cs.kent.ac.uk/people/staff/dat/miranda/downloads/macos/instructions">here</a>.</p>
<p>This is little walk-through for installing the Miranda programming language on OS X. There are the original instructions <a href="http://www.cs.kent.ac.uk/people/staff/dat/miranda/downloads/macos/instructions">here</a>, but they things have changed a little since that document was written. Hence this little write-up.</p>
<p>Firstly, download the OS X tarball from the <a href="http://www.cs.kent.ac.uk/people/staff/dat/miranda/downloads/">Miranda downloads page</a>&nbsp;or the <a href="http://www.cs.kent.ac.uk/people/staff/dat/miranda/downloads/macos">direct download link</a>.</p>
<p>Open your OS X Terminal (search for it in Spotlight) and go to the directory the tarball was downloaded to.</p>
<p>Then type&nbsp;</p>
<p><code>sudo tar xpf mira-2032-MacOSX.tar -C /</code></p>
<p>This installs bunch of files in your /usr directory, hence the required su access. That&#8217;s it. Just run</p>
<p><code>mira&nbsp;</code></p>
<p>and off you go. If you know about a nice IDE or editor with syntax highlighting please post it in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://lenni.info/blog/2009/01/installing-miranda-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Fixed] Eclipse editor text bouncing up and down under OS X</title>
		<link>http://lenni.info/blog/2008/10/eclipse-squashing-lines/</link>
		<comments>http://lenni.info/blog/2008/10/eclipse-squashing-lines/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 13:53:02 +0000</pubDate>
		<dc:creator>Leonard</dc:creator>
				<category><![CDATA[Mixed]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[os x]]></category>

		<guid isPermaLink="false">http://internetshizzle.wordpress.com/2008/10/15/eclipse-squashing-lines/</guid>
		<description><![CDATA[Eclipse squashing lines Originally uploaded by Lenniboy I used to have terrible problems with Eclipse on my MacBook running OS X. Editor text was bouncing up and down and all my lines were squashing. Have a look at the photo if you think I&#8217;m crazy. Finally I have managed to find out what has caused [...]]]></description>
			<content:encoded><![CDATA[<div style="float:right;margin-left:10px;margin-bottom:10px;"><a title="photo sharing" href="http://www.flickr.com/photos/24003367@N00/2943744255/"><img style="border:solid 2px #000000;" src="http://farm4.static.flickr.com/3042/2943744255_d5591d74a9_m.jpg" alt="" /></a></p>
<p><span style="font-size:.9em;margin-top:0;"><br />
<a href="http://www.flickr.com/photos/24003367@N00/2943744255/">Eclipse squashing lines</a></span></p>
<p>Originally uploaded by <a href="http://www.flickr.com/people/24003367@N00/">Lenniboy</a></div>
<p>I used to have terrible problems with Eclipse on my MacBook running OS X. Editor text was bouncing up and down and all my lines were squashing. Have a look at the photo if you think I&#8217;m crazy.</p>
<p>Finally I have managed to find out what has caused this behaviour: It is the font size, which was set to 9.5. I&#8217;m not sure if the small size or the .5 bit that is to blame but but as soon as I set it to 11pt everything was fine.</p>
<p>I&#8217;m happy I found this because I was very short of changing over to XCode.</p>
]]></content:encoded>
			<wfw:commentRss>http://lenni.info/blog/2008/10/eclipse-squashing-lines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

