<?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>An Experiment in Bloggery &#187; OS X</title>
	<atom:link href="http://kevin.sb.org/tag/osx/feed/" rel="self" type="application/rss+xml" />
	<link>http://kevin.sb.org</link>
	<description>The occasional view into my life</description>
	<lastBuildDate>Fri, 09 Sep 2011 00:19:38 +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>Malloc free space not reclaimed</title>
		<link>http://kevin.sb.org/2007/07/05/malloc-free-space-not-reclaimed/</link>
		<comments>http://kevin.sb.org/2007/07/05/malloc-free-space-not-reclaimed/#comments</comments>
		<pubDate>Fri, 06 Jul 2007 00:25:00 +0000</pubDate>
		<dc:creator>Kevin Ballard</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[malloc]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://c9c139cd-075a-4abd-a159-8c73c5065991</guid>
		<description><![CDATA[Lately every day when I come home from work I notice a handful of applications taking up a surprisingly high amount of Real Memory. These apps tend to be Quicksilver, Safari, iScrobbler, NetNewsWire, and GrowlHelperApp. Every day I end up quitting at least 3 apps to free up some memory and it happens all over [...]]]></description>
			<content:encoded><![CDATA[<p>Lately every day when I come home from work I notice a handful of applications taking up a surprisingly high amount of Real Memory. These apps tend to be Quicksilver, Safari, iScrobbler, NetNewsWire, and GrowlHelperApp. Every day I end up quitting at least 3 apps to free up some memory and it happens all over again.</p>

<p>Right now Quicksilver is using roughly 235MB of Real Memory. Running <code>vmmap</code> on it tells me that almost all of that memory is in the malloc zone, and the vast majority of that malloced memory are freed blocks. So my question is why are my multitudes of freed MALLOC_TINY pages not being reclaimed by the system?</p>
]]></content:encoded>
			<wfw:commentRss>http://kevin.sb.org/2007/07/05/malloc-free-space-not-reclaimed/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Quick Tip: Using Rosetta from the command-line</title>
		<link>http://kevin.sb.org/2006/02/14/quick-tip-using-rosetta-from-the-command-line/</link>
		<comments>http://kevin.sb.org/2006/02/14/quick-tip-using-rosetta-from-the-command-line/#comments</comments>
		<pubDate>Wed, 15 Feb 2006 01:39:00 +0000</pubDate>
		<dc:creator>Kevin Ballard</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Photo Booth]]></category>
		<category><![CDATA[rosetta]]></category>
		<category><![CDATA[translate]]></category>

		<guid isPermaLink="false">http://9a0d732f-1a17-4dee-94d8-5e219e25b60e</guid>
		<description><![CDATA[Here&#8217;s a neat tip I just discovered. It&#8217;s really quite easy to run an app through Rosetta from the command-line. How? By using /usr/libexec/oah/translate. For example, /usr/libexec/oah/translate /Applications/Photo\ Booth.app/Contents/MacOS/Photo\ Booth will launch Photo Booth in Rosetta.]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a neat tip I just discovered. It&#8217;s really quite easy to run an app through Rosetta from the command-line. How? By using <code>/usr/libexec/oah/translate</code>. For example, <code>/usr/libexec/oah/translate /Applications/Photo\ Booth.app/Contents/MacOS/Photo\ Booth</code> will launch Photo Booth in Rosetta.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevin.sb.org/2006/02/14/quick-tip-using-rosetta-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Quick Tip: Dismissing Dashboard Programmatically</title>
		<link>http://kevin.sb.org/2006/02/14/quick-tip-dismissing-dashboard-programmatically/</link>
		<comments>http://kevin.sb.org/2006/02/14/quick-tip-dismissing-dashboard-programmatically/#comments</comments>
		<pubDate>Wed, 15 Feb 2006 00:37:00 +0000</pubDate>
		<dc:creator>Kevin Ballard</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[AppleEvents]]></category>
		<category><![CDATA[dashboard]]></category>
		<category><![CDATA[DVDPlayer]]></category>
		<category><![CDATA[iLife]]></category>
		<category><![CDATA[iPhoto]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[iWork]]></category>
		<category><![CDATA[Keynote]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[QuickTime]]></category>
		<category><![CDATA[rcd]]></category>
		<category><![CDATA[Remote Control]]></category>

		<guid isPermaLink="false">http://a85df6cd-278b-478a-9f5d-1ad3ddb548de</guid>
		<description><![CDATA[I just stumbled across something interesting today while poking around rcd (the daemon that farms out remote control events). If you send the NSDistributedNotificationCenter notification name @"com.apple.dashboard.dismiss" (no object or userInfo dictionary) then Dashboard hides itself. That&#8217;s pretty neat! On a side note, it turns out there is no way to hack rcd to farm [...]]]></description>
			<content:encoded><![CDATA[<p>I just stumbled across something interesting today while poking around <code>rcd</code> (the daemon that farms out remote control events). If you send the <code>NSDistributedNotificationCenter</code> notification name <code>@"com.apple.dashboard.dismiss"</code> (no object or userInfo dictionary) then Dashboard hides itself. That&#8217;s pretty neat!</p>

<p>On a side note, it turns out there is no way to hack <code>rcd</code> to farm remote control events out to non-Apple programs. It has all the appleevents and such that it uses hardcoded in. I was really hoping they did something like implement a generic remote control AE that they sent to any app that cared, but no, if you&#8217;re not iTunes, DVDPlayer, iPhoto, QuickTime Player, or Keynote, you won&#8217;t see hide nor hair of the events.</p>

<p><strong>Update:</strong> Turns out there&#8217;s a companion <code>@"com.apple.dashboard.awake"</code> notification as well that, you guessed it, brings Dashboard forward.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevin.sb.org/2006/02/14/quick-tip-dismissing-dashboard-programmatically/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
