<?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>dixson.org&#187; Apple</title>
	<atom:link href="http://dixson.org/category/apple/feed/" rel="self" type="application/rss+xml" />
	<link>http://dixson.org</link>
	<description>news and rants for family &#38; friends</description>
	<lastBuildDate>Tue, 27 Mar 2012 20:50:24 +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>Custom Safari Style Sheets (Using CSS to Remove the Facebook Ticker)</title>
		<link>http://dixson.org/2011/09/custom-safari-style-sheets-using-css-to-remove-facebook-ticker/</link>
		<comments>http://dixson.org/2011/09/custom-safari-style-sheets-using-css-to-remove-facebook-ticker/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 16:58:47 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Tech]]></category>

		<guid isPermaLink="false">http://dixson.org/?p=490</guid>
		<description><![CDATA[Facebook recently released a new homepage ticker which, for some, is not a welcome change. Well, you can hide the ticker by using a custom style sheet in the Safari web browser. By creating your own style sheet, you can override the tickerActivityStories class defined in Facebook&#8217;s CSS and hide the ticker. Step 1: Open [...]]]></description>
			<content:encoded><![CDATA[<p>Facebook recently released a new homepage ticker which, for some, is not a welcome change. Well, you can hide the ticker by using a custom style sheet in the <a href="http://www.apple.com/safari/" target="_blank">Safari</a> web browser. By creating your own style sheet, you can override the <em>tickerActivityStories</em> class defined in Facebook&#8217;s CSS and hide the ticker.</p>
<p><strong>Step 1</strong>: Open up a text editor like TextEdit, BBEdit, TextMate, etc. Place the following CSS code in the document: </p>
<pre class="brush: css">

.tickerActivityStories {
	height: 0;
	display: none;
}
</pre>
<p><strong>Step 2</strong>: Save the document as a text file and name it, fb_styles.css (you can name it anything you want, just make sure it has the &#8216;.css&#8217; extension.) </p>
<p><strong>Step 3</strong>: Open Safari and go to Preferences/Advanced. From the Style Sheet drop down menu select &#8216;Other&#8230;&#8217; and choose the fb_styles.css file. Quit Safari and then reopen it.</p>
<p>That&#8217;s it. The ticker should vanish from the sidebar the when you are on Facebook. </p>
<p><em>Note: This only works in Apple&#8217;s Safari browser. If your browser supports custom style sheets, then these instructions may work for you. Additionally, browser plugins exist that can do the same thing.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://dixson.org/2011/09/custom-safari-style-sheets-using-css-to-remove-facebook-ticker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The software install cascade</title>
		<link>http://dixson.org/2011/03/the-software-install-cascade/</link>
		<comments>http://dixson.org/2011/03/the-software-install-cascade/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 22:00:53 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Tech]]></category>

		<guid isPermaLink="false">http://dixson.org/?p=413</guid>
		<description><![CDATA[When it comes to running development software, I always fall victim to the time-consuming, software install cascade effect. It begins innocently. You download a software package then realize it depends on another, which depends on another and so on down the line. The software trip I took this morning was a textbook example of the [...]]]></description>
			<content:encoded><![CDATA[<p>When it comes to running development software, I always fall victim to the time-consuming, software install cascade effect. It begins innocently. You download a software package then realize it depends on another, which depends on another and so on down the line. The software trip I took this morning was a textbook example of the cascade in action. It began with downloading and installing <a href="http://www.adobe.com/products/coldfusion/" target="_blank">ColdFusion 9</a> then&#8230;</p>
<ul>
<li>upgrading to <a href="http://www.mysql.com/" target="_blank">MySQL 5</a> (my Mac had an ancient 4.0 version since I&#8217;ve fallen for <a href="http://www.sqlite.org/" target="_blank">SQLite</a> and haven&#8217;t used MySQL in a long, long time.)</li>
<li>installing <a href="http://dev.mysql.com/downloads/workbench/" target="_blank">MySQL Workbench</a> since the DB tool I had been using wouldn&#8217;t work with MySQL 5.x.</li>
<li>installing <a href="http://cfwheels.org/" target="_blank">ColdFusion on Wheels</a>.</li>
<li>making changes to my bash_profile to set the correct $PATH since I mucked it up weeks ago configuring Ruby Version Manager (<a href="http://rvm.beginrescueend.com/" target="_blank">RVM</a>.)</li>
<li>updating RVM to 1.2.8 (this had nothing to do with getting ColdFusion running but while I&#8217;m at the command line, might as well fix it.)</li>
</ul>
<p>All set. I can start coding!</p>
<p>Not so fast. <a href="http://www.barebones.com/products/bbedit/" target="_blank">BBEdit</a> and <a href="http://macromates.com/" target="_blank">TextMate</a>, my text editors of choice, don&#8217;t recognize <a href="http://en.wikipedia.org/wiki/ColdFusion_Markup_Language" target="_blank">CFML</a> (no syntax coloring, text completion, etc.) So I next,</p>
<ul>
<li>fail to locate a bundle or extension that makes either editor CFML-aware<strong>*</strong>.</li>
<li>install <a href="http://www.eclipse.org/downloads/" target="_blank">Eclipse</a> instead.</li>
<li>configure <a href="http://www.cfeclipse.org/" target="_blank">CFEclipse</a>.</li>
</ul>
<p>Great. But then,</p>
<ul>
<li><a href="http://subversion.apache.org/" target="_blank">Subversion</a> isn&#8217;t behaving so off to subversion.apache.org to <a href="http://www.urbandictionary.com/define.php?term=RTFM" target="_blank">RTFM</a>.</li>
<li>While skimming the Subversion packages, I end up at Apple&#8217;s Developer Tools area and discover that <a href="http://itunes.apple.com/us/app/xcode/id422352214?mt=12" target="_blank">Xcode 4 is available today</a>.</li>
</ul>
<p>Xcode 4 is downloading now and I&#8217;m off to write some CFML. At five o&#8217;clock.</p>
<p><strong>*</strong><em>A friend sent me a bundle for TextMate that added support for CFML. Thank you Louis.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://dixson.org/2011/03/the-software-install-cascade/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Cocoa &amp; Obj-C Books</title>
		<link>http://dixson.org/2010/04/cocoa-obj-c-books/</link>
		<comments>http://dixson.org/2010/04/cocoa-obj-c-books/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 18:00:16 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac Development]]></category>

		<guid isPermaLink="false">http://dixson.org/?p=382</guid>
		<description><![CDATA[Friends have asked for resources to learn Cocoa and Objective-C. Below is a short list of books with links to Amazon. Cocoa Programming for Mac OS X Cocoa Design Patterns Programming in Objective-C 2.0 Learning Cocoa with Objective-C Beginning iPhone Development: Exploring the iPhone SDK and the bible, C Programming Language]]></description>
			<content:encoded><![CDATA[<p>Friends have asked for resources to learn Cocoa and Objective-C. Below is a short list of books with links to Amazon.</p>
<p><strong><a href="http://tinyurl.com/2fvyqnu">Cocoa Programming for Mac OS X</a></strong></p>
<p><strong><a href="http://tinyurl.com/39ouz57">Cocoa Design Patterns</a></strong></p>
<p><strong><a href="http://tinyurl.com/24wys7m">Programming in Objective-C 2.0</a></strong></p>
<p><strong><a href="http://tinyurl.com/2jwm2a">Learning Cocoa with Objective-C</a></strong></p>
<p><strong><a href="http://tinyurl.com/3a46d3p">Beginning iPhone Development: Exploring the iPhone SDK</a></strong></p>
<p>and the bible,</p>
<p><strong><a href="http://tinyurl.com/yljmyk4">C Programming Language</a></strong> </p>
]]></content:encoded>
			<wfw:commentRss>http://dixson.org/2010/04/cocoa-obj-c-books/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone for the Holidays</title>
		<link>http://dixson.org/2007/12/iphone-for-the-holidays/</link>
		<comments>http://dixson.org/2007/12/iphone-for-the-holidays/#comments</comments>
		<pubDate>Sat, 15 Dec 2007 18:25:12 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Family]]></category>

		<guid isPermaLink="false">http://www.dixson.org/?p=65</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.dixson.org/img/iphone.gif" width="52" height="97" style="float: left; border: 1px #999; margin:0px 15px 0 0" alt="" /></a>Kirsten and I picked up iPhones at the local Apple store yesterday (Christmas gifts to each other.) Everything about the phone has worked flawlessly and I&#8217;m building a family &#8216;to-do&#8217; list Web-app in <a href="http://www.rubyonrails.org/">ROR</a>, to access from the iPhone,  for kicks.</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://dixson.org/2007/12/iphone-for-the-holidays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Steve Jobs a happy man this morning</title>
		<link>http://dixson.org/2006/03/steve-jobs-a-happy-man-this-morning/</link>
		<comments>http://dixson.org/2006/03/steve-jobs-a-happy-man-this-morning/#comments</comments>
		<pubDate>Fri, 24 Mar 2006 12:08:29 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://www.dixson.org/?p=29</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p>An interesting piece by Daniel Lyons of Forbes.com, <a href="http://www.forbes.com/technology/2006/03/22/vista-microsoft-ballmer_cz_dl_0322microsoft.html">Microsoft Vista: Not &#8216;People Ready&#8217;</a></p>
<p>To quote the author,</p>
<blockquote><p>
&#8220;Why not at least switch to an Apple Computer Mac? Apple&#8217;s new operating system is stable, reliable and easy to use. The applications are simple, gorgeous and work well together. And they&#8217;re here. Today. Steve Jobs must be waking up a happy man this morning.&#8221;
</p></blockquote>
<p>When all <em>six</em> versions of Windows Vista (yes, <a href="http://www.informationweek.com/windows/showArticle.jhtml?articleID=183702009&#038;pgno=1">six versions</a>) finally ship, I&#8217;m betting it will be at least 5 years before 25% of the US Windows market has adopted Vista.</p>
<p>Have you considered the <a href="http://www.eweek.com/article2/0,1895,1843945,00.asp">hardware</a> <a href="http://www.apcstart.com/teched/pivot/entry.php?id=6">upgrades</a> you might need to run Vista in all its glory? Start saving.</p>
]]></content:encoded>
			<wfw:commentRss>http://dixson.org/2006/03/steve-jobs-a-happy-man-this-morning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple passes Dell in total market valuation</title>
		<link>http://dixson.org/2006/01/apple-passes-dell-in-total-market-valuation/</link>
		<comments>http://dixson.org/2006/01/apple-passes-dell-in-total-market-valuation/#comments</comments>
		<pubDate>Sat, 14 Jan 2006 10:42:00 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://www.dixson.org/?p=22</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p>As of yesterday, Apple (AAPL) is &#8220;worth more&#8221; than Dell.</p>
<p>Apple up 1.29 to $85.58, Market Cap: $72.13B<br />
Dell down 0.15 to $30.58, Market Cap: $71.97B</p>
<p>Hey, Michael, still think <a href="http://news.com.com/Dell+Apple+should+close+shop/2100-1001_3-203937.html">Apple should close shop</a>?  <img src='http://dixson.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://dixson.org/2006/01/apple-passes-dell-in-total-market-valuation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPod 30GB</title>
		<link>http://dixson.org/2005/12/ipod-30gb/</link>
		<comments>http://dixson.org/2005/12/ipod-30gb/#comments</comments>
		<pubDate>Mon, 26 Dec 2005 20:41:25 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://www.dixson.org/?p=19</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img src="/img/ipod_blk.jpg" title="Apple iPod" width="50" height="75" border="0" align="left">Got myself a black <a href="http://www.apple.com/ipod/ipod.html">iPod 30GB</a> at the Rockingham Park Apple Store today. It&#8217;s my first iPod so it only took a bit more than four years to finally get one (the iPod debuted on Oct 23, 2001.) Loaded it up with 700 songs, 865 photos and 2 music videos which took up 4.6 GB. Only 23.3 GB left.</p>
]]></content:encoded>
			<wfw:commentRss>http://dixson.org/2005/12/ipod-30gb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple&#8217;s brand is about being different&#8230;</title>
		<link>http://dixson.org/2005/10/apples-brand-is-about-being-different/</link>
		<comments>http://dixson.org/2005/10/apples-brand-is-about-being-different/#comments</comments>
		<pubDate>Tue, 25 Oct 2005 18:09:50 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Brandego]]></category>

		<guid isPermaLink="false">http://www.dixson.org/?p=15</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p>&#8220;Apple&#8217;s brand is about being different, not about building scratch-resistant products&#8221;<br />
<br />William Arruda, our friend and <a href="http://www.brandego.com/">Brandego</a>  &amp; <a href="http://www.reachbrandingclub.com/">RBC</a> biz partner <a href="http://www.ecommercetimes.com/story/ifA5Ui42ZjcA6X/Nano-Lawsuit-Unlikely-to-Mar-Apples-Image-Analysts-Say.xhtml">contributed to this article&#8230;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dixson.org/2005/10/apples-brand-is-about-being-different/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Powerbook G4</title>
		<link>http://dixson.org/2005/03/powerbook-g4/</link>
		<comments>http://dixson.org/2005/03/powerbook-g4/#comments</comments>
		<pubDate>Thu, 24 Mar 2005 18:38:12 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://www.dixson.org/?p=6</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img alt="powerbook.jpg" src="/img/powerbook.jpg" width="212" height="110" align="left" /> Picked up an Apple PowerBook G4 today. It&#8217;s the smallest of the PowerBook family with a 12&#8243; screen and ideal for my needs. I wanted something compact to take on the road and still be able to cable it via DVI to an external LCD Studio Display. Connected it via FireWire to my desktop Power Mac G4 and within 50 minutes, the Apple Setup Assistant had transferred all my apps, settings, documents, music (but not my iTunes purchased music), iCal data and iPhoto images. Started up the PowerBook and I had a nearly identical setup as my desktop machine. Very nice. Wireless networking and Bluetooth have been flawless. I highly recommend <a href="http://www.econtechnologies.com/site/Pages/ChronoSync/chrono_overview.html" taget="_blank">ChronoSync</a> by Econ Technologies. ChronoSync has been great for syncing my project files between machines. Run it in Target Disk Mode using FireWire and syncing takes very little time.</p>
]]></content:encoded>
			<wfw:commentRss>http://dixson.org/2005/03/powerbook-g4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

