<?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>www.idevelopsoftware.com &#187; Apple</title>
	<atom:link href="http://www.idevelopsoftware.com/topic/blog/apple/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.idevelopsoftware.com</link>
	<description>Homepage</description>
	<lastBuildDate>Sat, 03 Dec 2011 17:36:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Capturing AirPort Extreme Log with Lion Server Syslog</title>
		<link>http://www.idevelopsoftware.com/2011/08/capturing-airport-extreme-log-with-lion-server-syslog/</link>
		<comments>http://www.idevelopsoftware.com/2011/08/capturing-airport-extreme-log-with-lion-server-syslog/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 14:42:05 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[System Administration]]></category>

		<guid isPermaLink="false">http://www.idevelopsoftware.com/?p=472</guid>
		<description><![CDATA[Mac OS X Lion Server can be used as a syslog server to capture the log messages from an Apple AirPort Extreme wireless router. The instructions below walk you through setting this up. Syslog is controlled by a plist file found in the launch daemons directory. The full path to the file is: /System/Library/LaunchDaemons/com.apple.syslogd.plist You [...]]]></description>
			<content:encoded><![CDATA[<p>Mac OS X Lion Server can be used as a syslog server to capture the log messages from an Apple AirPort Extreme wireless router.  The instructions below walk you through setting this up.</p>
<p>Syslog is controlled by a plist file found in the launch daemons directory. The full path to the file is:</p>
<pre>
/System/Library/LaunchDaemons/com.apple.syslogd.plist
</pre>
<p>You need to edit this file to add a network listener. The plist is stored in a binary format so you need to use the plutil to convert it to XML using this command:</p>
<pre>
$ pushd /System/Library/LaunchDaemons
$ sudo plutil -convert xml1 /System/Library/LaunchDaemons/com.apple.syslogd.plist
$ sudo vim /System/Library/LaunchDaemons/com.apple.syslogd.plist
$ sudo plutil -convert binary1 /System/Library/LaunchDaemons/com.apple.syslogd.plist
$ sudo launchctl unload /System/Library/LaunchDaemons/com.apple.syslogd.plist
$ sudo launchctl load /System/Library/LaunchDaemons/com.apple.syslogd.plist
</pre>
<p>Here is a complete example of the modified plist file. The new key is the NetworkListener. Be sure you add it nested inside the Sockets key or it will not work.</p>
<div id="gist-1134216" class="gist">

        <div class="gist-file">
          <div class="gist-data gist-syntax">
              <div class="highlight"><pre><div class='line' id='LC1'><span class="cp">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;</span></div><div class='line' id='LC2'><span class="cp">&lt;!DOCTYPE plist PUBLIC &quot;-//Apple//DTD PLIST 1.0//EN&quot; &quot;http://www.apple.com/DTDs/PropertyList-1.0.dtd&quot;&gt;</span></div><div class='line' id='LC3'><span class="nt">&lt;plist</span> <span class="na">version=</span><span class="s">&quot;1.0&quot;</span><span class="nt">&gt;</span></div><div class='line' id='LC4'><span class="nt">&lt;dict&gt;</span></div><div class='line' id='LC5'>	<span class="nt">&lt;key&gt;</span>EnableTransactions<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC6'>	<span class="nt">&lt;true/&gt;</span></div><div class='line' id='LC7'>	<span class="nt">&lt;key&gt;</span>EnvironmentVariables<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC8'>	<span class="nt">&lt;dict&gt;</span></div><div class='line' id='LC9'>		<span class="nt">&lt;key&gt;</span>ASL_DISABLE<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC10'>		<span class="nt">&lt;string&gt;</span>1<span class="nt">&lt;/string&gt;</span></div><div class='line' id='LC11'>	<span class="nt">&lt;/dict&gt;</span></div><div class='line' id='LC12'>	<span class="nt">&lt;key&gt;</span>HopefullyExitsLast<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC13'>	<span class="nt">&lt;true/&gt;</span></div><div class='line' id='LC14'>	<span class="nt">&lt;key&gt;</span>JetsamProperties<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC15'>	<span class="nt">&lt;dict&gt;</span></div><div class='line' id='LC16'>		<span class="nt">&lt;key&gt;</span>JetsamMemoryLimit<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC17'>		<span class="nt">&lt;integer&gt;</span>300<span class="nt">&lt;/integer&gt;</span></div><div class='line' id='LC18'>		<span class="nt">&lt;key&gt;</span>JetsamPriority<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC19'>		<span class="nt">&lt;integer&gt;</span>-49<span class="nt">&lt;/integer&gt;</span></div><div class='line' id='LC20'>	<span class="nt">&lt;/dict&gt;</span></div><div class='line' id='LC21'>	<span class="nt">&lt;key&gt;</span>Label<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC22'>	<span class="nt">&lt;string&gt;</span>com.apple.syslogd<span class="nt">&lt;/string&gt;</span></div><div class='line' id='LC23'>	<span class="nt">&lt;key&gt;</span>MachServices<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC24'>	<span class="nt">&lt;dict&gt;</span></div><div class='line' id='LC25'>		<span class="nt">&lt;key&gt;</span>com.apple.system.logger<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC26'>		<span class="nt">&lt;true/&gt;</span></div><div class='line' id='LC27'>	<span class="nt">&lt;/dict&gt;</span></div><div class='line' id='LC28'>	<span class="nt">&lt;key&gt;</span>OnDemand<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC29'>	<span class="nt">&lt;false/&gt;</span></div><div class='line' id='LC30'>	<span class="nt">&lt;key&gt;</span>ProgramArguments<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC31'>	<span class="nt">&lt;array&gt;</span></div><div class='line' id='LC32'>		<span class="nt">&lt;string&gt;</span>/usr/sbin/syslogd<span class="nt">&lt;/string&gt;</span></div><div class='line' id='LC33'>	<span class="nt">&lt;/array&gt;</span></div><div class='line' id='LC34'>	<span class="nt">&lt;key&gt;</span>Sockets<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC35'>	<span class="nt">&lt;dict&gt;</span></div><div class='line' id='LC36'>		<span class="nt">&lt;key&gt;</span>NetworkListener<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC37'>		<span class="nt">&lt;dict&gt;</span></div><div class='line' id='LC38'>			<span class="nt">&lt;key&gt;</span>SockServiceName<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC39'>			<span class="nt">&lt;string&gt;</span>syslog<span class="nt">&lt;/string&gt;</span></div><div class='line' id='LC40'>			<span class="nt">&lt;key&gt;</span>SockType<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC41'>			<span class="nt">&lt;string&gt;</span>dgram<span class="nt">&lt;/string&gt;</span></div><div class='line' id='LC42'>		<span class="nt">&lt;/dict&gt;</span></div><div class='line' id='LC43'>		<span class="nt">&lt;key&gt;</span>AppleSystemLogger<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC44'>		<span class="nt">&lt;dict&gt;</span></div><div class='line' id='LC45'>			<span class="nt">&lt;key&gt;</span>SockPathMode<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC46'>			<span class="nt">&lt;integer&gt;</span>438<span class="nt">&lt;/integer&gt;</span></div><div class='line' id='LC47'>			<span class="nt">&lt;key&gt;</span>SockPathName<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC48'>			<span class="nt">&lt;string&gt;</span>/var/run/asl_input<span class="nt">&lt;/string&gt;</span></div><div class='line' id='LC49'>		<span class="nt">&lt;/dict&gt;</span></div><div class='line' id='LC50'>		<span class="nt">&lt;key&gt;</span>BSDSystemLogger<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC51'>		<span class="nt">&lt;dict&gt;</span></div><div class='line' id='LC52'>			<span class="nt">&lt;key&gt;</span>SockPathMode<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC53'>			<span class="nt">&lt;integer&gt;</span>438<span class="nt">&lt;/integer&gt;</span></div><div class='line' id='LC54'>			<span class="nt">&lt;key&gt;</span>SockPathName<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC55'>			<span class="nt">&lt;string&gt;</span>/var/run/syslog<span class="nt">&lt;/string&gt;</span></div><div class='line' id='LC56'>			<span class="nt">&lt;key&gt;</span>SockType<span class="nt">&lt;/key&gt;</span></div><div class='line' id='LC57'>			<span class="nt">&lt;string&gt;</span>dgram<span class="nt">&lt;/string&gt;</span></div><div class='line' id='LC58'>		<span class="nt">&lt;/dict&gt;</span></div><div class='line' id='LC59'>	<span class="nt">&lt;/dict&gt;</span></div><div class='line' id='LC60'><span class="nt">&lt;/dict&gt;</span></div><div class='line' id='LC61'><span class="nt">&lt;/plist&gt;</span></div><div class='line' id='LC62'><br/></div></pre></div>
          </div>

          <div class="gist-meta">
            <a href="https://gist.github.com/raw/1134216/206305eff1bcd3f621210054620d08d55519251d/com.apple.syslogd.plist" style="float:right;">view raw</a>
            <a href="https://gist.github.com/1134216#file_com.apple.syslogd.plist" style="float:right;margin-right:10px;color:#666">com.apple.syslogd.plist</a>
            <a href="https://gist.github.com/1134216">This Gist</a> brought to you by <a href="http://github.com">GitHub</a>.
          </div>
        </div>
</div>

<p>Once you have updated the plist the next step is to update the configuration of your AirPort Extreme. Under Applications => Utilities open the AirPort Utility and connect to your AirPort Extreme.  On the Advanced tab select the &#8220;Logging &#038; Statistics&#8221; panel. Enter the IP address of your Mac OS X Lion Server in &#8220;Syslog Destination Address:&#8221; and select &#8220;6 &#8211; Informational&#8221; for the &#8220;Syslog Level:&#8221;.  You can see a screenshot of the AirPort Utility settings below.  Update the settings on the AirPort Extreme.</p>
<div>
<img style="display:block; margin-left:auto; margin-right:auto;" src="http://www.idevelopsoftware.com/wp-content/uploads/2011/08/2011-08-09083214-AirPort-Utility-Focal-Shift-AirPort-Extreme.png" alt="AirPort Extreme Advanced Configuration" title="[2011-08-09083214]  AirPort Utility-Focal Shift AirPort Extreme.png" border="0" width="320" height="318" />
</div>
<p>Now, you probably want to verify that the logging is actually happening. Open Console.app on your server and look at &#8220;All Messages&#8221;.  While looking at the logs go to another machine (I used my MacBook Air with a wireless connection to the AirPort Extreme) and open System Preferences and then Network.  Select your network adapter and ask for it to renew the DHCP lease.  You should see some activity in the log.</p>
<p>Another way to verify the logging is to turn wifi off on your laptop. You should see a message like this:</p>
<pre>
8/9/11 8:43:09.000 AM 80211: Disassociated with station 60:33:4b:2c:de:c0
</pre>
<p>When you turn wifi back on you will see something similar to this:</p>
<pre>
8/9/11 8:43:10.000 AM 80211: Rotated TKIP group key.
8/9/11 8:43:21.000 AM 80211: Associated with station 60:33:4b:2c:de:c0
8/9/11 8:43:21.000 AM 80211: Authenticating station 60:33:4b:2c:de:c0 to RADIUS.
8/9/11 8:43:21.000 AM 80211: Installed unicast CCMP key for supplicant 60:33:4b:2c:de:c0
8/9/11 8:43:21.000 AM natpmp: Binding added for udp, 173.164.164.17:32770 to 10.0.1.104:4500 with lifetime 7200
8/9/11 8:43:21.000 AM natpmp: Binding added for udp, 173.164.164.17:32771 to 10.0.1.104:5353 with lifetime 7200
</pre>
<p>That&#8217;s it. You now have syslog data being captured on your Mac OS X Lion server from your AirPort Extreme base station!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.idevelopsoftware.com/2011/08/capturing-airport-extreme-log-with-lion-server-syslog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Heading to Big Nerd Ranch later this month!</title>
		<link>http://www.idevelopsoftware.com/2010/10/heading-to-big-nerd-ranch-later-this-month/</link>
		<comments>http://www.idevelopsoftware.com/2010/10/heading-to-big-nerd-ranch-later-this-month/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 03:45:57 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[Xcode]]></category>
		<category><![CDATA[big nerd ranch]]></category>
		<category><![CDATA[bnr]]></category>
		<category><![CDATA[cocoa]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[objc]]></category>

		<guid isPermaLink="false">http://www.idevelopsoftware.com/?p=427</guid>
		<description><![CDATA[One of the podcasts I listen to on a regular basis is called MacBreak. The hosts are Leo Leporte, Alex Lindsay, Andy Ihnatko and a rotating list of other Mac/Apple/iOS luminaries. If you aren&#8217;t familiar with it head over to http://twit.tv/mbw and have a listen. It is highly recommended for anyone interested in all things [...]]]></description>
			<content:encoded><![CDATA[<p>One of the podcasts I listen to on a regular basis is called MacBreak. The hosts are Leo Leporte, Alex Lindsay, Andy Ihnatko and a rotating list of other Mac/Apple/iOS luminaries. If you aren&#8217;t familiar with it head over to <a href="http://twit.tv/mbw">http://twit.tv/mbw</a> and have a listen.  It is highly recommended for anyone interested in <i>all things Macintosh (and iOS too)</i>.</p>
<p>A few episodes ago Alex Lindsay mentioned that his company was going to be hosting a one week <i>Commuter iOS Class</i> at their San Francisco offices so their team could come up to speed developing applications for iOS devices. The class would be taught by the folks from <a href="http://www.bignerdranch.com/">Big Nerd Ranch</a>. Usually the BNR folks teach classes from their <i>monastery</i> at a secret location just outside Atlanta, Georgia. Having them venture out to San Francisco; wow, what an opportunity. Oh, did I mention that Alex Lindsay also announced that there were a limited number of spots open to <i>the unwashed masses</i> to attend and the class would be held from 2:00 p.m. until 10:00 p.m. each day so folks could continue to do at least part of their day jobs.</p>
<p>All in all this just sounded too good to pass up so I fired off an e-mail to the folks at BNR to let them know I wanted to attend. My fingers were crossed because I know how quickly their classes fill up. Needless to say I wouldn&#8217;t be writing this post if I didn&#8217;t get in.  <img src='http://www.idevelopsoftware.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>So, I&#8217;m off to the <a href="http://www.pixelcorps.com/">Pixel Corps</a> offices later this month to soak up some more iOS goodness.  Hope to see a few of you there too.</p>
<p>BTW: Here is a link to the <a href="http://www.bignerdranch.com/classes/commuter_ios_class_with_macbreak_2pm-10pm">course description</a> for anyone curious. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.idevelopsoftware.com/2010/10/heading-to-big-nerd-ranch-later-this-month/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MacBook Pro Development Environment</title>
		<link>http://www.idevelopsoftware.com/2010/10/macbook-pro-development-environment/</link>
		<comments>http://www.idevelopsoftware.com/2010/10/macbook-pro-development-environment/#comments</comments>
		<pubDate>Sat, 02 Oct 2010 04:09:13 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tips from the Trenches]]></category>
		<category><![CDATA[Tools I Use]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[django-nonrel]]></category>
		<category><![CDATA[gae]]></category>
		<category><![CDATA[google app engine]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.idevelopsoftware.com/?p=421</guid>
		<description><![CDATA[This article covers the steps I went through to setup my MacBook Pro for Google App Engine (GAE) development. I am using the Python runtime in GAE so the focus here is on a Python development environment. Python Setting Python 2.5 as Default My MacBook Pro is running Snow Leopard. I am planning to host [...]]]></description>
			<content:encoded><![CDATA[<p>This article covers the steps I went through to setup my MacBook Pro for Google App Engine (GAE) development. I am using the Python runtime in GAE so the focus here is on a Python development environment. </p>
<h1>Python</h1>
<h2>Setting Python 2.5 as Default</h2>
<p>My MacBook Pro is running Snow Leopard. I am planning to host my projects on Google App Engine and it requires Python 2.5. Snow Leopard ships with Python 2.6 as the default. You can switch to Python 2.5 using a few simple commands, as follows:</p>
<pre>
$ defaults write com.apple.versioner.python Version 2.5
$ sudo defaults write /Library/Preferences/com.apple.versioner.python Version 2.5
</pre>
<p>After issuing these commands you should logout and login, launch a Terminal window and issue the command</p>
<pre>
$ python --version
</pre>
<p>It should report <tt>Python 2.5.4</tt> as the result. If it still says <tt>Python 2.6.1</tt> then your change did not take effect. To troubleshoot the problem start with <tt>man python</tt>. It includes information on how to switch the default version of Python on your system.</p>
<h2>Additional Python Modules</h2>
<p>Google App Engine expects that the ssl module is installed. This is so it can verify the identity of the GAE servers when trying to deploy your projects. Install it like this:</p>
<pre>
$ curl http://pypi.python.org/packages/source/s/ssl/ssl-1.15.tar.gz --output ssl-1.15.tar.gz
$ tar xvf ssl-1.15.tar.gz
$ cd ssl-1.15
$ sudo python setup.py install
</pre>
<p>If you want to use the GAE image manipulation classes while running on the local development server you will need to install PIL using the following command.</p>
<pre>
$ sudo easy_install pil
</pre>
<p>The following will be necessary for building some other python libraries later in the process.</p>
<pre>
$ sudo easy_install docutils
</pre>
<p>The following modules are necessary if you choose to install IPython (see next section). If you are planning on skipping the IPython installation these can be skipped as well.</p>
<pre>
$ sudo easy_install readline
$ sudo easy_install nose
$ sudo easy_install pexpect
</pre>
<h2>IPython</h2>
<p>The IPython interactive interpreter is a good addition to your Python development environment. It does not come pre-installed on Snow Leopard. You can download the latest stable version using this command:</p>
<pre>
$ curl http://ipython.scipy.org/dist/0.10/ipython-0.10.tar.gz --output ipython-0.10.tar.gz
$ tar -xzf ipython-0.10.tar.gz
$ cd ipython
$ sudo python setup.py install
</pre>
<h1>Google App Engine SDK</h1>
<p>The Google App Engine SDK for Python is available at http://code.google.com/appengine/downloads.html. As of this writing you can use the following command to grab the latest version:</p>
<pre>
$ curl http://googleappengine.googlecode.com/files/GoogleAppEngineLauncher-1.3.7.dmg --output GoogleAppEngineLauncher-1.3.7.dmg
</pre>
<p>Once you download the <tt>dmg</tt> file open it in Finder and run the installer. It will place all of the necessary files on your machine. Once complete locate the <i>GoogleAppEngineLauncher.app</i> icon in Finder and double-click on it. This application provides a nice UI for managing your GAE projects.</p>
<h1>Source Code Management Tools</h1>
<h2>Git</h2>
<p>I am planning on managing the source code for my projects with <tt>git</tt> and will store my master repositories on <a href="http://github.com">http://github.com</a>. Apple does not include a copy of <tt>git</tt> on the machine by default. An installer is available at <a href="http://help.github.com/mac-git-installation/">http://help.github.com/mac-git-installation/</a>. While you are at it also create an account on github if you don&#8217;t already have one. It is useful for <i>social coding</i> in the wider open-source community.</p>
<h2>Mercurial</h2>
<p>Some of the Django open source software I plan on using is maintained using a distributed source control management tool called Mercurial. An installer for this is available at <a href="http://mercurial.selenic.com">http://mercurial.selenic.com</a>. Download and install the software.</p>
<pre>
$ curl http://mercurial.selenic.com/release/mercurial-1.6.3.tar.gz --output mercurial-1.6.3.tar.gz
$ tar xvf mercurial-1.6.3.tar.gz
$ cd mercurial-1.6.3
$ make PREFIX=/System/Library/Frameworks/Python.framework/Versions/2.5 all
$ sudo make PREFIX=/System/Library/Frameworks/Python.framework/Versions/2.5 install
$ hg version
</pre>
<h1>Django-nonrel</h1>
<p>I plan on implementing my web applications on top of the Django framework. Some modifications are required in order for this framework to run properly on GAE since Google uses <i>Big Table</i> for data storage instead of a relational database. Everything necessary to get Django working in GAE is included as part of the <a href="http://www.allbuttonspressed.com/projects/django-nonrel">Django-nonrel</a> project. Specific instructions for GAE are available at <a href="http://www.allbuttonspressed.com/projects/djangoappengine">http://www.allbuttonspressed.com/projects/djangoappengine</a>.</p>
<p>Use the commands listed below to install copies of all the necessary components onto your machine. Everything will be stored in a folder called <tt>DjangoStuff</tt> under your home directory. </p>
<pre>
$ mkdir $HOME/DjangoStuff
$ cd $HOME/DjangoStuff
$ hg clone https://bitbucket.org/wkornewald/django-nonrel
$ hg clone https://bitbucket.org/wkornewald/djangoappengine
$ hg clone https://bitbucket.org/wkornewald/djangotoolbox
$ hg clone https://bitbucket.org/wkornewald/django-dbindexer
$ hg clone https://bitbucket.org/wkornewald/django-testapp
</pre>
<p>Now, pick another folder where you want to setup a practice application.  I am calling mine <tt>cs-practice</tt> since this is also the name of my Google App Engine application. </p>
<p>Use the following commands to configure the practice application for Django-nonrel development.</p>
<pre>
$ mkdir $HOME/cs-practice
$ cd $HOME/cs-practice
$ ln -s $HOME/DjangoStuff/django-nonrel/django django
$ ln -s $HOME/DjangoStuff/djangoappengine djangoappengine
$ ln -s $HOME/DjangoStuff/djangotoolbox/djangotoolbox djangotoolbox
$ ln -s $HOME/DjangoStuff/django-dbindexer/dbindexer dbindexer
$ cp -r $HOME/DjangoStuff/django-testapp/* .
</pre>
<p>Once you have the practice folder setup you need to edit the <tt>app.yaml</tt> file and change the application name to reflect the Google App Engine application name you selected when registering on <a href="http://appengine.google.com">http://appengine.google.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.idevelopsoftware.com/2010/10/macbook-pro-development-environment/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>iMac bluetooth problems gone, but how?</title>
		<link>http://www.idevelopsoftware.com/2010/08/imac-bluetooth-problems-gone-but-how/</link>
		<comments>http://www.idevelopsoftware.com/2010/08/imac-bluetooth-problems-gone-but-how/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 06:10:08 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://www.idevelopsoftware.com/?p=412</guid>
		<description><![CDATA[My 27&#8243; iMac has been having some very strange bluetooth problems lately. As mentioned in a recent blog post, all bluetooth devices were unavailable according to the operating system. Reboots didn&#8217;t fix the problem. Checking through the console logs turned up messages about the bluetooth drivers not working properly. Fortunately I had a USB keyboard [...]]]></description>
			<content:encoded><![CDATA[<p>My 27&#8243; iMac has been having some very strange bluetooth problems lately. As mentioned in a recent blog post, all bluetooth devices were <i>unavailable</i> according to the operating system. Reboots didn&#8217;t fix the problem. Checking through the console logs turned up messages about the bluetooth drivers not working properly.  Fortunately I had a USB keyboard so I was able to make a full backup of the system before scheduling an appointment with the genius at the Apple Store.</p>
<p>Now it has been a couple weeks and I have the machine back and Apple didn&#8217;t find anything wrong. In fact, they say the bluetooth works fine.  I turned everything on and it works fine here too.  I had a hunch that this might be the case. Last week my 13&#8243; MBP had the exact same issue. No bluetooth devices would work with it.  In this case a full reboot did correct the problem.  </p>
<p>So, what bluetooth devices do I have, and which one is misbehaving and causing all of these problems?  I don&#8217;t know for sure, but I suspect either the new iPhone 4 or the Plantronics Bluetooth Headset I have.  The Apple Bluetooth Keyboard and Magic Mouse seem to be working fine. I have noticed other issues with the bluetooth on the iPhone 4 when it syncs with the Alpine IWA-505 head unit in my truck so my money is on the iPhone 4 being the cause in all of these bluetooth problems.  Time will tell.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.idevelopsoftware.com/2010/08/imac-bluetooth-problems-gone-but-how/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wireless Keyboards and Mice are Great Until&#8230;.</title>
		<link>http://www.idevelopsoftware.com/2010/07/wireless-keyboards-and-mice-are-great-until/</link>
		<comments>http://www.idevelopsoftware.com/2010/07/wireless-keyboards-and-mice-are-great-until/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 04:40:17 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://www.idevelopsoftware.com/?p=404</guid>
		<description><![CDATA[Tonight I sat down at my 27&#8243; iMac to get a little work done. The first thing I do is tap the keyboard and move the mouse to wake the machine from sleep mode. The machine awoke and then quickly displayed the Connection Lost graphics in the middle of the screen for both the mouse [...]]]></description>
			<content:encoded><![CDATA[<p>
Tonight I sat down at my 27&#8243; iMac to get a little work done. The first thing I do is tap the keyboard and move the mouse to wake the machine from sleep mode.  The machine awoke and then quickly displayed the <i>Connection Lost</i> graphics in the middle of the screen for both the mouse and keyboard.  My first thought; no problem, it&#8217;s just the batteries so I replaced them. Still no connection (and it did seem kind of odd for both the mouse and keyboard batteries to be dead at the same time.)  Looking up at the system tray I see an odd Bluetooth icon.  Here&#8217;s a closeup of what I found:
</p>
<div style="text-align:center;"><img src="http://www.idevelopsoftware.com/wp-content/uploads/2010/07/LittleSnapper.png" alt="LittleSnapper.png" border="0" width="280" height="69" align="center" /></div>
<p>
The <i>Bluetooth: Not Available</i> message in the system tray is not a good sign. Next I opened up <i>Console.app</i> to see if there were any indications of what the root cause for this behavior was.  It appears there is truly something wrong with the Bluetooth Module.  Here is what it showed:
</p>
<div style="text-align:center;"><img src="http://www.idevelopsoftware.com/wp-content/uploads/2010/07/Console2.png" alt="[AppleUSBBluetoothHCIController][FindInterfaces] some interface pipes were not found. Device is no good a a transport" border="0" width="730" height="124" align="center" /></div>
<p>
A visit to the support forums at Apple led me to an idea to reset the SMC on the iMac.  I tried that and still nothing. At this point I&#8217;m not a happy camper. It is looking like the Bluetooth Module in my iMac has given up the ghost.
</p>
<p>
Next step, the iPhone Apple AppStore application to make a Genius Bar appointment.
</p>
<div style="text-align:center;"><img src="http://www.idevelopsoftware.com/wp-content/uploads/2010/07/genius.png" alt="genius.png" border="0" width="213" height="320" align="center" /></div>
<p>
If you have read this far then you might be wondering why I&#8217;m telling you all of this.  The reason is simple.  Without a USB keyboard and mouse laying around somewhere none of the troubleshooting above would have been possible.  Having a wireless bluetooth keyboard and mouse ship by default with the iMac is a really odd choice on Apple&#8217;s part.
</p>
<p>
Thankfully I have a keyboard and mouse from the Xserve in my garage. In case you forgot what these old fashion beasts look like, here&#8217;s a picture of the dynamic duo that saved my bacon tonight!
</p>
<div style="txt-align:center;"><img src="http://www.idevelopsoftware.com/wp-content/uploads/2010/07/backup_plan.png" alt="backup_plan.png" border="0" width="640" height="478" align="center" /></div>
]]></content:encoded>
			<wfw:commentRss>http://www.idevelopsoftware.com/2010/07/wireless-keyboards-and-mice-are-great-until/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Busy Folks at Big Nerd Ranch!</title>
		<link>http://www.idevelopsoftware.com/2010/05/busy-folks-at-big-nerd-ranch/</link>
		<comments>http://www.idevelopsoftware.com/2010/05/busy-folks-at-big-nerd-ranch/#comments</comments>
		<pubDate>Sun, 02 May 2010 04:58:01 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective-C]]></category>

		<guid isPermaLink="false">http://www.idevelopsoftware.com/?p=385</guid>
		<description><![CDATA[The folks over at Big Nerd Ranch are really busy these days. In addition to building a new learning center it looks like they are writing no less than three new books to be released this year. If you have ever read through Cocoa Programming for Mac OS X by Aaron Hillegass or had the [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right;">
<a href="http://www.amazon.com/iPhone-Programming-Ranch-Guide-ebook/dp/B003EINO1W/ref=pd_rhf_p_t_1"><img src="http://wp-media.s3.amazonaws.com/wp-content/uploads/2010/05/iphone_programming_bnr.jpg" alt="" title="iphone_programming_bnr" width="320" height="320" class="alignleft size-full wp-image-338" /></a>
</div>
<p>The folks over at <a href="http://www.bignerdranch.com">Big Nerd Ranch</a> are really busy these days. In addition to building a new learning center it looks like they are writing no less than three new books to be released this year. If you have ever read through <i>Cocoa Programming for Mac OS X</i> by Aaron Hillegass or had the fortune to attend one of his classes then you already know that these new books will likely become a core part of your programming library in the future. </p>
<p>The first new title is <a href="http://www.bignerdranch.com/book/iphone_programming_the_big_nerd_ranch_guide"><i>iPhone Programming: The Big Nerd Ranch Guide</i>, written by Joe Conway and Aaron Hillegass</a>. According to Amazon this book will be available for purchase on May 4th in paper form and May 6th for the Kindle. You can pre-order it now.</p>
<div style="float: left;"><a href="http://www.amazon.com/More-Cocoa-Programming-Mac-OS/dp/0321706269/ref=pd_rhf_p_t_3"><img src="http://wp-media.s3.amazonaws.com/wp-content/uploads/2010/05/more_cocoa_programming_bnr.jpg" alt="" title="more_cocoa_programming_bnr" width="300" height="300" class="alignleft size-full wp-image-386" /></a>
</div>
<p>The second new book is titled <a href="http://www.amazon.com/More-Cocoa-Programming-Mac-OS/dp/0321706269/ref=pd_rhf_p_t_3"><i>More Cocoa Programming for Mac OS X: The Big Nerd Ranch Guide</i></a> and is being written by Aaron Hillegass and Juan Pablo Claude. According to Amazon&#8217;s web site this book will be available in mid-July, 2010. At this point it appears the book will only be available in print form. Hopefully this will change and a Kindle version will be made available.</p>
<p>The third new book will be titled <a href="http://www.amazon.com/Objective-C-Programming-Ranch-Guide-Guides/dp/0321706285/ref=pd_sim_b_40"><i>Objective-C Programming: The Big Nerd Ranch Guide</i></a> and is being written by Aaron Hillegass and Mark Fenoglio. Amazon pegs the release of this book sometime in December, 2010. Cover art for this book has not been released yet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.idevelopsoftware.com/2010/05/busy-folks-at-big-nerd-ranch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPad Review &#8211; First 24 hours</title>
		<link>http://www.idevelopsoftware.com/2010/04/ipad-review-first-24-hours/</link>
		<comments>http://www.idevelopsoftware.com/2010/04/ipad-review-first-24-hours/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 22:03:51 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Advance of Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.idevelopsoftware.com/?p=331</guid>
		<description><![CDATA[My experience with it so far is mixed. Like you I tried to touch-type on the keyboard and that really didn&#8217;t work at all. I have tried to do the two finger plus thumbs approach and am not that fast typing like that. The keyboard is big enough that I find it kind of weird [...]]]></description>
			<content:encoded><![CDATA[<p>My experience with it so far is mixed. Like you I tried to touch-type on the keyboard and that really didn&#8217;t work at all. I have tried to do the two finger plus thumbs approach and am not that fast typing like that. The keyboard is big enough that I find it kind of weird to hold it in one hand and type with the other. My hand has to move too far to get all the keys unlike on the iPhone where everything is much closer together. I have not tried to hook up a bluetooth keyboard yet either. I expect that to work much better for things like typing e-mails.</p>
<p>I ended up purchasing the 64GB version instead of the 16GB version. The change was based on a recommendation I heard on MacBreak Weekly. They mentioned that based on their preview use (had it for about a week before April 3rd) they feel that if you are going to use it to read books then you will easily fill the 16GB and then have to pick/choose which items to sync to your iPad. With the 64GB version you can just dump all the books/PDFs you want on it and not worry about running out of space.</p>
<p>I have the Kindle for iPad application on it and pulled down all my Kindle books. Very cool!  It just works!  I also downloaded the iBooks application from the App Store. That application reads the ePub format. I have purchased a number of technical books in the past few years from Pragmatic Programmers. All of their books are available in ePub format so I downloaded that version and loaded them into the iPad too. </p>
<p>So far I really like having all of my technical books in one place like this. I have not tried reading out in full sunlight, but expect it will be an issue. For reading indoors it works fine. Not as easy on the eyes as the Kindle, but it shows all of the technical illustrations in the books in full color which is much better. </p>
<p>I purchased the Pages, Numbers and Keynote applications from Apple also. They really show off the sort of things you can accomplish with the iPad, but the crash a lot. I feel more like a beta tester of these apps than just a user. Sort of a let down, but then I have been here before with other Apple products. Eventually these will be great applications.</p>
<p>With the iPad I also purchased the Apple case for the iPad. I was really surprised when I opened it up at home. The quality of the case is really bad. It only cost $39, but it sucks compared to the case that Amazon sells for the Kindle. After about 2 hours of using the iPad in the case I got so annoyed with it that now I am using the iPad without a case. I am shopping for a different case now.</p>
<p>I have had Safari crash on me more than once now on the iPad. It seems like the crashes were always on very long (lots of scrolling) web pages so maybe it is a memory issue. I&#8217;m not sure, but the end result is you are just reading along on the page and all of a sudden you are back to the menu of icons wondering how you got there.</p>
<p>Even more surprising than the crashes of apps on the device is the crash I experienced this morning of the Xcode development environment on the desktop. Apple released an update to Xcode that includes all of the iPad development tools yesterday. I was working on a sample application this morning, following the instructions on how to build an app when all of a sudden Xcode just up and crashed on me. This is very unusual. Earlier versions of Xcode have been very stable for years.</p>
<p>Over all I think purchasing one as a developer at this point is a good move, but for basic consumers it is probably more sensible to wait about 3 months before jumping on the iPad bandwagon. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.idevelopsoftware.com/2010/04/ipad-review-first-24-hours/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac Market Share Increasing!</title>
		<link>http://www.idevelopsoftware.com/2009/01/mac-market-share-increasing/</link>
		<comments>http://www.idevelopsoftware.com/2009/01/mac-market-share-increasing/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 21:43:54 +0000</pubDate>
		<dc:creator>bsmith</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[LinkedIn]]></category>

		<guid isPermaLink="false">http://blog.idevelopsoftware.com/?p=162</guid>
		<description><![CDATA[I was at the local library today to do a couple hours programming in a quiet environment without the normal distractions of my home office. To my surprise when I looked around I saw a sea of Apple MacBook and MacBook Pro laptops. Sure, there were a few Toshiba or HP laptops too, but the [...]]]></description>
			<content:encoded><![CDATA[<p>I was at the local library today to do a couple hours programming in a quiet environment without the normal distractions of my home office. To my surprise when I looked around I saw a sea of Apple MacBook and MacBook Pro laptops. Sure, there were a few Toshiba or HP laptops too, but the majority of the machines in the room had shinning bright Apple logos on the screens.</p>
<p>My <i>unscientific</i> survey in the library today yielded the following numbers:</p>
<div align="center">
<table width="70%">
<tr>
<th align="left" width="75%">System</th>
<th align="left" width="25%">Count</th>
</tr>
<tr>
<td>White MacBook</td>
<td>2</td>
</tr>
<tr>
<td>Unibody 13&#8243; Macbook</td>
<td>1</td>
</tr>
<tr>
<td>15&#8243; MacBook Pro</td>
<td>2</td>
</tr>
<tr>
<td>12&#8243; PowerBook</td>
<td>1</td>
</tr>
<tr>
<td>Toshiba</td>
<td>1</td>
</tr>
<tr>
<td>HP</td>
<td>2</td>
</tr>
<tr>
<td>IBM</td>
<td>1</td>
</tr>
</table>
</div>
<p>That breaks down to 60% Apple, 40% Microsoft.</p>
<p>Now that&#8217;s what I like to see!  Maybe the recent discussion on the macsb about Mac market share isn&#8217;t so far fetched after all.  Here are a few interesting links:</p>
<ul>
<li><a href="http://successfulsoftware.net/2009/01/09/macosx-market-share/">Mac OS X Market Share</a></li>
<li><a href="http://blog.wired.com/business/2008/01/gartner-says-ma.html">Mac Market Share to Double in Three Years</a></li>
</ul>
<p>Who knows if this is all true or not. With the recent announcement that Steve Jobs will be taking a six month leave of absense from Apple due to health concerns the future for Apple is less clear than it once was. I&#8217;m sure Apple will do just fine over the next 12-18 months since there are a number of products already in development. The big concern has to be about the sort of innovations that Apple can concieve of and execute on <b>after</b> the current pipeline runs dry. Will there be other folks at Apple with the same vision and forsight as Steve Jobs?  Probably, but it is far from certain.</p>
<p>Atleast for now it seems like the market share for Apple will continue to climb. Microsoft will have to hit a home run with the new Windows 7 operating system if they want to fend off the onslaught of Mac OS X.  Being a long time developer on both platforms I can say that from my point of view having more users on the Mac makes me happy!  I look forward to developing, releasing and selling more applications on the Mac platform.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.idevelopsoftware.com/2009/01/mac-market-share-increasing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Software Design: Want vs. Need</title>
		<link>http://www.idevelopsoftware.com/2009/01/software-design-want-vs-need/</link>
		<comments>http://www.idevelopsoftware.com/2009/01/software-design-want-vs-need/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 18:52:29 +0000</pubDate>
		<dc:creator>bsmith</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Death March]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Architecture]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[Software Design]]></category>

		<guid isPermaLink="false">http://idvlpsw.wordpress.com/?p=74</guid>
		<description><![CDATA[I am always surprised at how short-sighted some folks are who design software. It seems like there is no shortage of people who feel that you just have to listen to your customers to build great software. In my experience, if all you do is build what the customer says he/she wants then your software [...]]]></description>
			<content:encoded><![CDATA[<p>I am always surprised at how short-sighted some folks are who design software. It seems like there is no shortage of people who feel that you just have to <em>listen to your customers</em> to build great software. In my experience, if all you do is build what the customer says he/she wants then your software will likely be obsolete in a year (maybe even less time) and your customers will ultimately be very unhappy with you.</p>
<p>To build great software you have to listen intently to what the customer is saying so you can identify the pain and suffering that usually lies unexpressed just below the surface of comments like &#8220;All I need is a widget that does X.&#8221;</p>
<p>Check out what BusinessWeek magazine had to say about this phenomenon:</p>
<blockquote><p>
&#8220;It&#8217;s really hard to design products by focus groups. A lot of times, people don&#8217;t know what they want until you show it to them.&#8221;<br />
&#8211; BusinessWeek, May 25 1998
</p></blockquote>
<p>Probably my favorite quote about building great software came from someone on the team that built the NeXT computer.  I think they really understood what it takes to build quality systems (software and hardware) that last.</p>
<blockquote><p>
&#8220;It took us three years to build the NeXT computer. If we&#8217;d given customers what they said they wanted, we&#8217;d have built a computer they&#8217;d have been happy with a year after we spoke to them &#8211; not something they&#8217;d want now.&#8221;<br />
&#8211; Someone on the NeXT Team
</p></blockquote>
<p>It all comes down to making a decision to apply your knowledge and understanding of technology to address the immediate problems for the customer and to push beyond so you can give the customer a system they can grow with.  The ultimate measure of success is when a user says &#8220;Hey, now I need to do Y with the widget.&#8221; and you can reply with something like &#8220;Okay, this is how you do that with the system we built.&#8221;  If you find yourself replying with something more like &#8220;Hmmm, we could add that to the software but it will cost you.&#8221; then you are doing it wrong!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.idevelopsoftware.com/2009/01/software-design-want-vs-need/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MobileMe Mail Error</title>
		<link>http://www.idevelopsoftware.com/2008/07/mobileme-mail-error/</link>
		<comments>http://www.idevelopsoftware.com/2008/07/mobileme-mail-error/#comments</comments>
		<pubDate>Sat, 12 Jul 2008 21:31:33 +0000</pubDate>
		<dc:creator>bsmith</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://idvlpsw.wordpress.com/?p=98</guid>
		<description><![CDATA[Here we go again. Software Update just notified me that &#8220;.mac is now MobileMe&#8221; and that an update to Mac OS X was available. Being a masochist I went ahead and ran the update. Everything went smoothly for the most part. I was even able to connect to MobileMe Mail using Safari. I logged in [...]]]></description>
			<content:encoded><![CDATA[<p>Here we go again.  Software Update just notified me that &#8220;.mac is now MobileMe&#8221; and that an update to Mac OS X was available.  Being a masochist I went ahead and ran the update.  Everything went smoothly for the most part. I was even able to connect to MobileMe Mail using Safari.  I logged in successfully and started poking around the web interface.  Guess what&#8230;.</p>
<p>Yup, once again Apple&#8217;s servers are not up to the task.  Here is the message I was greeted with shortly after the initial user interface was displayed in the browser window:</p>
<div style="text-align:center;"><img src="http://idvlpsw.files.wordpress.com/2008/07/picture-1.png" alt="Picture 1.png" border="0" width="435" height="149" /></div>
<p>Apple builds some killer hardware, a great desktop OS, a great music device, some excellent applications, and a really cool phone.  They just don&#8217;t seem to be able to get server computing right though.</p>
<p>I&#8217;m not sure if it&#8217;s that they don&#8217;t allocate sufficient engineering resources to the problems, or if their data centers are under-powered or what, but these problems just aren&#8217;t acceptable.  This isn&#8217;t new territority.  Companies in the on-line space such as Google, Amazon, eBay and AOL have been doing this for years. Building scalable, robust server farms that can handle the kind of load .mac subscribers (oops, I meant MobileMe) exert on the infrastructure just isn&#8217;t rocket science.</p>
<p>The new user interface in MobileMe looks promising. I just want it to work reliably and to always be there when I need it.</p>
<p>Come on Apple.  You make great XServe servers. Throw more of them at the problem if it&#8217;s just a resource issue.  Looking at the growth of Apple stock share prices, the increased sales of Mac desktop and notebook computers, and the insanely successful iPhone I think you can afford to hire some top-gun server developers if what you need is more engineering talent to correct this problem.</p>
<p>Please, make MobileMe something everyone loves and can&#8217;t live without.  Show the rest of the on-line world you mean business here!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.idevelopsoftware.com/2008/07/mobileme-mail-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

