<?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>Big Bad Code &#187; osx</title>
	<atom:link href="http://bigbadcode.com/category/osx/feed/" rel="self" type="application/rss+xml" />
	<link>http://bigbadcode.com</link>
	<description>this blog is retired. I&#039;m leaving it up as a reference</description>
	<lastBuildDate>Wed, 19 Aug 2009 21:49:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How To: Get anti-aliased fonts in the Arduino and Processing IDE&#8217;s</title>
		<link>http://bigbadcode.com/2009/05/20/how-to-get-anti-aliased-fonts-in-the-arduino-and-processing-ides/</link>
		<comments>http://bigbadcode.com/2009/05/20/how-to-get-anti-aliased-fonts-in-the-arduino-and-processing-ides/#comments</comments>
		<pubDate>Wed, 20 May 2009 17:04:58 +0000</pubDate>
		<dc:creator>jbloom</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://bigbadcode.com/?p=246</guid>
		<description><![CDATA[How to turn on font anti aliasing in the Arduino and Processing IDE's (OSX)]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong>:</p>
<p>Arduino and Processing IDE&#8217;s both are java applications and don&#8217;t use anti-aliasing when displaying fonts on OS X.</p>
<p><strong>Solution</strong>:</p>
<p>Add the Java Swing options to enable anti aliasing to the Info.plist file that OS X uses to launch the IDE&#8217;s.</p>
<p><strong>Steps</strong>:<br />
Right click the Arduino.app in the Finder and select &#8216;Show Package Contents&#8217;, double click the Contents directory and there you will find the Info.plist file. Open it in a text editor of your choice.<br />
Add the following two lines under the Java option. See the screenshot for the exact location.</p>
<p><code><tt> &lt;key&gt;VMOptions&lt;/key&gt;<br />
&lt;string&gt;-Dswing.aatext=true</tt></code><tt>&lt;/string&gt;<br />
</tt><br />
<a href="http://bigbadcode.com/wp-content/uploads/2009/05/addantialiasing.png"><img class="alignnone size-medium wp-image-248" title="UpdatePlistScreenShot" src="http://bigbadcode.com/wp-content/uploads/2009/05/addantialiasing-263x300.png" alt="UpdatePlistScreenShot" width="263" height="300" /></a></p>
<p>Now your code editor goes from looking like this crapness:</p>
<p><a href="http://bigbadcode.com/wp-content/uploads/2009/05/noaliasing.png"><img class="alignnone size-medium wp-image-250" title="noaliasing" src="http://bigbadcode.com/wp-content/uploads/2009/05/noaliasing-279x300.png" alt="noaliasing" width="279" height="300" /></a></p>
<p>To this hotness:</p>
<p><a href="http://bigbadcode.com/wp-content/uploads/2009/05/withantialiasing.png"><img class="alignnone size-medium wp-image-251" title="withantialiasing" src="http://bigbadcode.com/wp-content/uploads/2009/05/withantialiasing-279x300.png" alt="withantialiasing" width="279" height="300" /></a></p>
<p>And even better you can use great looking fonts like <a href="http://www.levien.com/type/myfonts/inconsolata.html">Inconsolata</a> and get an editor that looks this good:<br />
<a href="http://bigbadcode.com/wp-content/uploads/2009/05/inconsolasarduino.png"><img src="http://bigbadcode.com/wp-content/uploads/2009/05/inconsolasarduino-279x300.png" alt="inconsolasarduino" title="inconsolasarduino" width="279" height="300" class="alignnone size-medium wp-image-254" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://bigbadcode.com/2009/05/20/how-to-get-anti-aliased-fonts-in-the-arduino-and-processing-ides/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Quick look support for .mxml and .as files</title>
		<link>http://bigbadcode.com/2009/02/22/quick-look-support-for-mxml-and-as-files/</link>
		<comments>http://bigbadcode.com/2009/02/22/quick-look-support-for-mxml-and-as-files/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 04:53:15 +0000</pubDate>
		<dc:creator>jbloom</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[quicklook]]></category>

		<guid isPermaLink="false">http://bigbadcode.com/?p=235</guid>
		<description><![CDATA[I&#8217;ve recently re-installed OSX and lost my quicklook support for .mxml and .as files. Since I couldn&#8217;t find whatever packages I had installed that allowed that quicklook support, I&#8217;ve modified QLColorCode to add support for previewing both .as files and .mxml files. It works on my computer and I hope that it&#8217;ll work on yours [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently re-installed OSX and lost my quicklook support for .mxml and .as files. Since I couldn&#8217;t find whatever packages I had installed that allowed that quicklook support, I&#8217;ve modified <a href="http://code.google.com/p/qlcolorcode/">QLColorCode</a> to add support for previewing both .as files and .mxml files.</p>
<p>It works on my computer and I hope that it&#8217;ll work on yours too.</p>
<p>Please feel free to download<a href="http://bigbadcode.com/wp-content/uploads/2009/02/qlcolorcodeqlgenerator.zip"> my version, </a><a href="http://bigbadcode.com/wp-content/uploads/2009/02/qlcolorcodeqlgenerator.zip">qlcolorcodeqlgenerator</a> unzip and install, let me know if it doesn&#8217;t work.</p>
<p>Installation instructions for quicklook plugins can be found <a href="http://code.google.com/p/qlcolorcode/">here.</a></p>
<p>-josh</p>
]]></content:encoded>
			<wfw:commentRss>http://bigbadcode.com/2009/02/22/quick-look-support-for-mxml-and-as-files/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Developing AIR Applications (and killing them when they misbehave)</title>
		<link>http://bigbadcode.com/2007/09/27/developing-air-applications-and-killing-them-when-they-misbehave/</link>
		<comments>http://bigbadcode.com/2007/09/27/developing-air-applications-and-killing-them-when-they-misbehave/#comments</comments>
		<pubDate>Thu, 27 Sep 2007 19:26:23 +0000</pubDate>
		<dc:creator>jbloom</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://bigbadcode.com/2007/09/27/developing-air-applications-and-killing-them-when-they-misbehave/</guid>
		<description><![CDATA[When developing AIR applications under flexbuilder you may get a situation where the app is stuck in an unresponsive state and refuses to quit itself. To kill it quickly on a Mac you can do the following from a terminal: ps -A &#124; grep adl That will return a line that looks something like this [...]]]></description>
			<content:encoded><![CDATA[<p>When developing AIR applications under flexbuilder you may get a situation where the app is stuck in an unresponsive state and refuses to quit itself. </p>
<p>To kill it quickly on a Mac you can do the following from a terminal:<br />
<code><br />
ps -A | grep adl<br />
</code></p>
<p>That will return a line that looks something like this<br />
<code><br />
18132  ??  S      0:22.97 /Users/joshbloom/Applications/flexb_183522/Adobe Flex Builder 3/sdks/3.0.0/bin/adl -runtime /Users/joshbloom/Appl<br />
18148  p1  S+     0:00.00 grep adl</code></p>
<p>The number at the beginning of the first line first line indicates the process ID of your unresponsive AIR app. </p>
<p>To kill it you would run this command:<br />
<code><br />
kill -9 18132<br />
</code></p>
<p>Be careful what number you put into the kill command, it will happily kill anything you tell it to. If you make a mistake you may have killed your window manager, your instant messenger or even something important like your twitter client. </p>
]]></content:encoded>
			<wfw:commentRss>http://bigbadcode.com/2007/09/27/developing-air-applications-and-killing-them-when-they-misbehave/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

