<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  version="2.0"
  xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>inessential.com</title>
    <link>http://inessential.com/</link>
    <description>Brent Simmons’s weblog.</description>
    <item>
      <title>NickB Snatched Up by Blog Company</title>
      <link>http://nick.typepad.com/blog/2013/05/i-joined-automattic.html</link>
      <description>&lt;p&gt;Nick Bradbury — my friend, co-worker at NewsGator and Sepia Labs, developer of HomeSite, TopStyle, FeedDemon, and Glassboard — &lt;a href=&quot;http://nick.typepad.com/blog/2013/05/i-joined-automattic.html&quot;&gt;starts work at Automattic on Monday&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Congratulations to Automattic on hiring a great developer!&lt;/p&gt;</description>
      <pubDate>Sat, 18 May 2013 14:51:58 -0700</pubDate>
      <guid>http://inessential.com/2013/05/18/nickb_snatched_up_by_blog_company</guid>
      <dc:date>2013-05-18T14:51:58-07:00</dc:date>
    </item>
    <item>
      <title>Identical Cousins 16</title>
      <link>http://identicalcousins.net/2013/05/14/identical_cousins_16</link>
      <description>&lt;p&gt;In this episode, Michael and I have the fun of &lt;a href=&quot;http://identicalcousins.net/2013/05/14/identical_cousins_16&quot;&gt;interviewing Chris Liscio&lt;/a&gt;, who makes the super-mega-ultra-groovy audio apps &lt;a href=&quot;http://supermegaultragroovy.com/products/Capo/&quot;&gt;Capo&lt;/a&gt;, &lt;a href=&quot;http://supermegaultragroovy.com/products/FuzzMeasure/&quot;&gt;FuzzMeasure&lt;/a&gt;, and &lt;a href=&quot;http://tapedeckapp.com&quot;&gt;TapeDeck&lt;/a&gt;.&lt;/p&gt;</description>
      <pubDate>Tue, 14 May 2013 12:31:00 -0700</pubDate>
      <guid>http://inessential.com/2013/05/14/identical_cousins_16</guid>
      <dc:date>2013-05-14T12:31:00-07:00</dc:date>
    </item>
    <item>
      <title>Brentsplitting</title>
      <link>http://bitsplitting.org/podcast/episode-5-brent-simmons/</link>
      <description>&lt;p&gt;I was a guest on Daniel Jalkut’s &lt;a href=&quot;http://bitsplitting.org/podcast/episode-5-brent-simmons/&quot;&gt;Bitsplitting podcast&lt;/a&gt;. It was fun! Many thanks to Daniel.&lt;/p&gt;</description>
      <pubDate>Fri, 10 May 2013 19:51:23 -0700</pubDate>
      <guid>http://inessential.com/2013/05/10/brentsplitting</guid>
      <dc:date>2013-05-10T19:51:23-07:00</dc:date>
    </item>
    <item>
      <title>30 Minutes To Sync</title>
      <link>http://atomicbird.com/blog/icloud-complications-part-3</link>
      <description>&lt;p&gt;Tom Harrington continues his series of &lt;a href=&quot;http://atomicbird.com/blog/icloud-complications-part-3&quot;&gt;posts on iCloud and Core Data&lt;/a&gt;.&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;I’ve seen &lt;code&gt;addPersistentStoreWithType:&amp;#8203;etcetera:&lt;/code&gt; block for 30 minutes.&lt;/strong&gt; And keep in mind, &lt;em&gt;this is when iCloud is working normally&lt;/em&gt;. This is not an error condition, this is “working as designed.”&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;He suggests a solution: using two separate databases, one for normal use and one just for syncing, with custom code that shuttles data between the two.&lt;/p&gt;

&lt;p&gt;That solution points to what bothers me about the whole thing, which is that this is all too tightly-coupled. Ideally your storage system and syncing system are not the same thing, and you could swap out one for another.&lt;/p&gt;

&lt;p&gt;This would allow for flexibility and efficiencies that you can’t get when you just say “here’s my database; please sync it, iCloud.”&lt;/p&gt;

&lt;h4&gt;Apple and Backend Services for Apps&lt;/h4&gt;

&lt;p&gt;Imagine Apple announced something that worked like this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;You go to a website somewhere at apple.com and set up a backend for your app.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You create a database for it and a custom https API. You might have to write some code — but it would be in a popular scripting language, nothing weird. All this with a browser-based UI.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Apple provides a client framework for making calls to the server.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Authentication is completely taken care of — the system uses iCloud credentials, and your app doesn’t have to do anything. (It just knows if you’re authenticated or not.) In your app a user never has to sign in or create an account or anything like that.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Everything Apple stores is automatically encrypted. Apple’s server takes care of encrypting/decrypting automatically, so your code (in the client or on the server) never has to deal with that.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Apple’s system provides the ability run periodic tasks (like polling Twitter, App.net, or RSS feeds).&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;This would be more general than just a syncing solution, but you could use it just for syncing. Or you could add more sophisticated backend services. (You could write an RSS reader with this or something social like Glassboard.)&lt;/p&gt;

&lt;p&gt;It would have to cost money, of course.&lt;/p&gt;

&lt;p&gt;And you’d have to write code; you’d have to design your syncing system. But it would give you abilities you don’t have with iCloud Core Data syncing, and it would decouple your database and syncing, which is the right way to go.&lt;/p&gt;

&lt;p&gt;I’ve mentioned &lt;a href=&quot;http://www.windowsazure.com/ios&quot;&gt;Azure Mobile Services&lt;/a&gt; before, which I like because it’s in spitting-distance of an idealized Apple service. I would go so far as to suggest that Apple and Microsoft should partner to provide this service. Play to each company’s strengths.&lt;/p&gt;

&lt;p&gt;(Disclaimer: Mobile Services paid me to do some videos for them and has sponsored my podcast.)&lt;/p&gt;

&lt;h4&gt;Syncing is only part of the future&lt;/h4&gt;

&lt;p&gt;Even if Apple works out syncing — somehow — that’s just not enough. That just gets us to where we should have been in 2008. The future belongs to apps with more sophisticated services.&lt;/p&gt;

&lt;p&gt;And the future belongs (in part) to whoever provides those services. If you’re an iOS or Mac developer, you’d like it to be Apple.&lt;/p&gt;

&lt;p&gt;Here’s what should worry folks at Apple: that Google provides something like the above for Android developers. Google obviously has the expertise, and it wants to make Android more attractive to developers.&lt;/p&gt;

&lt;p&gt;(Yes, there’s Google App Engine, but I’m imagining something easier.)&lt;/p&gt;

&lt;p&gt;Or, put another way: the backend system will become nearly as important as the UI frameworks, and plain-old-syncing isn’t enough.&lt;/p&gt;</description>
      <pubDate>Tue, 07 May 2013 12:21:20 -0700</pubDate>
      <guid>http://inessential.com/2013/05/07/30_minutes_to_sync</guid>
      <dc:date>2013-05-07T12:21:20-07:00</dc:date>
    </item>
    <item>
      <title>What Is a River of News Reader?</title>
      <link>http://threads2.scripting.com/2013/may/whatIsARiverOfNews</link>
      <description>&lt;p&gt;I wasn’t clear on it completely. So I asked Dave, and &lt;a href=&quot;http://threads2.scripting.com/2013/may/whatIsARiverOfNews&quot;&gt;he answered&lt;/a&gt;.&lt;/p&gt;</description>
      <pubDate>Tue, 07 May 2013 10:40:42 -0700</pubDate>
      <guid>http://inessential.com/2013/05/07/what_is_a_river_of_news_reader_</guid>
      <dc:date>2013-05-07T10:40:42-07:00</dc:date>
    </item>
    <item>
      <title>AltWWDC</title>
      <link>http://altwwdc.com/</link>
      <description>&lt;p&gt;WWDC sold out in three minutes. (Or less.) I didn’t manage to get a ticket, though I did try.&lt;/p&gt;

&lt;p&gt;I have a feeling that &lt;a href=&quot;http://altwwdc.com/&quot;&gt;AltWWDC&lt;/a&gt; is gonna be huge this year. (I’ll be there — I’m &lt;a href=&quot;http://altwwdc.com/speakers/&quot;&gt;speaking&lt;/a&gt;. I’d be there even if I weren’t.)&lt;/p&gt;

&lt;p&gt;It was only a few years ago when WWDC didn’t sell out at all. It even had Early Bird pricing.&lt;/p&gt;</description>
      <pubDate>Thu, 25 Apr 2013 10:40:51 -0700</pubDate>
      <guid>http://inessential.com/2013/04/25/altwwdc</guid>
      <dc:date>2013-04-25T10:40:51-07:00</dc:date>
    </item>
    <item>
      <title>Identical Cousins 15</title>
      <link>http://identicalcousins.net/2013/04/23/identical_cousins_15</link>
      <description>&lt;p&gt;Michael and I just winged it with &lt;a href=&quot;http://identicalcousins.net/2013/04/23/identical_cousins_15&quot;&gt;episode 15&lt;/a&gt;.&lt;/p&gt;</description>
      <pubDate>Tue, 23 Apr 2013 11:40:45 -0700</pubDate>
      <guid>http://inessential.com/2013/04/23/identical_cousins_15</guid>
      <dc:date>2013-04-23T11:40:45-07:00</dc:date>
    </item>
    <item>
      <title>Identical Cousins Sponsorship Slots Open</title>
      <link>http://inessential.com/2013/04/19/identical_cousins_sponsorship_slots_open</link>
      <description>&lt;p&gt;We have some sponsorship slots open for future episodes of &lt;a href=&quot;http://identicalcousins.net&quot;&gt;Identical Cousins&lt;/a&gt;, the podcast I do with Michael Simmons.&lt;/p&gt;

&lt;p&gt;If you might be interested, contact me or Michael. (There’s Twitter info on the site. Or you can email me using brent plus the domain name of the business I own.)&lt;/p&gt;

&lt;p&gt;Past sponsors have included &lt;a href=&quot;http://www.windowsazure.com/ios&quot;&gt;Windows Azure Mobile Services&lt;/a&gt;, &lt;a href=&quot;http://www.fastspring.com/&quot;&gt;FastSpring&lt;/a&gt;, and &lt;a href=&quot;https://itunes.apple.com/us/app/pinbook-for-pinboard/id564452716?mt=8&quot;&gt;Pinbook&lt;/a&gt;. You’d be in great company.&lt;/p&gt;</description>
      <pubDate>Fri, 19 Apr 2013 15:55:52 -0700</pubDate>
      <guid>http://inessential.com/2013/04/19/identical_cousins_sponsorship_slots_open</guid>
      <dc:date>2013-04-19T15:55:52-07:00</dc:date>
    </item>
    <item>
      <title>RSS Reader Market Size</title>
      <link>http://www.rumproarious.com/2013/04/18/how-large-will-the-payed-feed-reader-market-be/</link>
      <description>&lt;p&gt;Alex Kessinger estimates the &lt;a href=&quot;http://www.rumproarious.com/2013/04/18/how-large-will-the-payed-feed-reader-market-be/&quot;&gt;size of market that will pay for an RSS reader&lt;/a&gt;.&lt;/p&gt;</description>
      <pubDate>Thu, 18 Apr 2013 10:57:36 -0700</pubDate>
      <guid>http://inessential.com/2013/04/18/rss_reader_market_size</guid>
      <dc:date>2013-04-18T10:57:36-07:00</dc:date>
    </item>
    <item>
      <title>Fargo</title>
      <link>http://threads2.scripting.com/2013/april/introducingFargo</link>
      <description>&lt;p&gt;Small Picture, Dave Winer’s new company, &lt;a href=&quot;http://threads2.scripting.com/2013/april/introducingFargo&quot;&gt;introduced Fargo today&lt;/a&gt;. It’s an outliner that runs in your browser and saves to Dropbox. The file format is OPML, so you can edit those documents in other apps (such as &lt;a href=&quot;http://www.omnigroup.com/products/omnioutliner/&quot;&gt;OmniOutliner&lt;/a&gt;) that support OPML.&lt;/p&gt;</description>
      <pubDate>Wed, 17 Apr 2013 11:58:14 -0700</pubDate>
      <guid>http://inessential.com/2013/04/17/fargo</guid>
      <dc:date>2013-04-17T11:58:14-07:00</dc:date>
    </item>
    <item>
      <title>With Nick Bradbury</title>
      <link>http://identicalcousins.net/2013/04/09/identical_cousins_14</link>
      <description>&lt;p&gt;Michael and I talk to Nick Bradbury in &lt;a href=&quot;http://identicalcousins.net/2013/04/09/identical_cousins_14&quot;&gt;Identical Cousins 14: Partners in Crime&lt;/a&gt;.&lt;/p&gt;</description>
      <pubDate>Tue, 09 Apr 2013 11:36:18 -0700</pubDate>
      <guid>http://inessential.com/2013/04/09/with_nick_bradbury</guid>
      <dc:date>2013-04-09T11:36:18-07:00</dc:date>
    </item>
    <item>
      <title>Join App.net</title>
      <link>http://inessential.com/2013/04/08/join_app_net</link>
      <description>&lt;p&gt;I have a whole bunch of invitations to App.net — &lt;a href=&quot;https://join.app.net/from/simmons&quot;&gt;you can sign up here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;If you don’t know much about App.net, check out the &lt;a href=&quot;http://blog.app.net&quot;&gt;weblog&lt;/a&gt;, where they promote third-party apps, link to their podcast, and talk about the APIs they’re building. It would be wrong to call it a Twitter alternative — it’s very much its own thing, and worth checking out.&lt;/p&gt;

&lt;p&gt;I’m a fan. Love the vibe. I’m &lt;a href=&quot;https://alpha.app.net/brentsimmons&quot;&gt;@brentsimmons&lt;/a&gt; there.&lt;/p&gt;</description>
      <pubDate>Mon, 08 Apr 2013 10:36:12 -0700</pubDate>
      <guid>http://inessential.com/2013/04/08/join_app_net</guid>
      <dc:date>2013-04-08T10:36:12-07:00</dc:date>
    </item>
    <item>
      <title>Debug Roundtable on iCloud Core Data Sync</title>
      <link>http://www.imore.com/debug-12-icloud-core-data-sync</link>
      <description>&lt;p&gt;I appeared on the &lt;a href=&quot;http://www.imore.com/debug-12-icloud-core-data-sync&quot;&gt;Debug podcast&lt;/a&gt; along with &lt;a href=&quot;http://blackpixel.com&quot;&gt;Daniel Pasco&lt;/a&gt; and &lt;a href=&quot;http://carpeaqua.com&quot;&gt;Justin Williams&lt;/a&gt;.&lt;/p&gt;</description>
      <pubDate>Fri, 05 Apr 2013 10:14:07 -0700</pubDate>
      <guid>http://inessential.com/2013/04/05/debug_roundtable_on_icloud_core_data_syn</guid>
      <dc:date>2013-04-05T10:14:07-07:00</dc:date>
    </item>
    <item>
      <title>Will Apple Be Whitelisted for CalDAV?</title>
      <link>http://inessential.com/2013/04/04/will_apple_be_whitelisted_for_caldav_</link>
      <description>&lt;p&gt;The &lt;a href=&quot;http://www.chromium.org/blink&quot;&gt;Blink fork of WebKit&lt;/a&gt; has me wondering about Apple’s and Google’s tactics.&lt;/p&gt;

&lt;p&gt;Specifically, I think back to Google’s &lt;a href=&quot;http://googleblog.blogspot.com/2013/03/a-second-spring-of-cleaning.html&quot;&gt;recent spring cleaning&lt;/a&gt;, where it said that the CalDAV API will be available for whitelisted developers only.&lt;/p&gt;

&lt;p&gt;I wonder if Apple will be on that whitelist.&lt;/p&gt;</description>
      <pubDate>Thu, 04 Apr 2013 16:53:43 -0700</pubDate>
      <guid>http://inessential.com/2013/04/04/will_apple_be_whitelisted_for_caldav_</guid>
      <dc:date>2013-04-04T16:53:43-07:00</dc:date>
    </item>
    <item>
      <title>Tom’s iCloud State of the Union</title>
      <link>http://www.atomicbird.com/blog/icloud-sotu</link>
      <description>&lt;p&gt;&lt;a href=&quot;http://www.atomicbird.com/blog/icloud-sotu&quot;&gt;atomicbird&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;Users hear about how great iCloud is and how apps can use it to sync their own data. They quite reasonably wonder why your app isn’t using it. Syncing data is a great idea, Apple gives you iCloud, why aren’t you using it, dammit? But if you did use it, the app would be so unreliable that users would (again, quite reasonably) complain that it was a &lt;em&gt;steaming pile of shit&lt;/em&gt;.&lt;/p&gt;&lt;/blockquote&gt;</description>
      <pubDate>Wed, 03 Apr 2013 15:02:27 -0700</pubDate>
      <guid>http://inessential.com/2013/04/03/toms_icloud_state_of_the_union</guid>
      <dc:date>2013-04-03T15:02:27-07:00</dc:date>
    </item>
    <item>
      <title>Regressing</title>
      <link>https://medium.com/future-tech-future-market/7b1a7ddb6ffe</link>
      <description>&lt;p&gt;Ryan Holiday writes in &lt;a href=&quot;https://medium.com/future-tech-future-market/7b1a7ddb6ffe&quot;&gt;Our Regressive Web&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;Google Alerts, Delicious and RSS were designed in blogging’s early days as innovations to help readers reduce this noise—to help improve their reading experience. But now those gains are disappearing. I feel that the tech press has allowed this to happen.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;I had not realized that &lt;a href=&quot;http://venturebeat.com/2013/03/21/google-alerts-broken-useless-and-slowed-to-a-trickle/&quot;&gt;Google Alerts was having problems&lt;/a&gt;. But it doesn’t surprise me.&lt;/p&gt;

&lt;p&gt;I wonder if it will go away on the same day as Feedburner, or whether the two will succumb in separate clean-outs.&lt;/p&gt;</description>
      <pubDate>Tue, 02 Apr 2013 17:24:02 -0700</pubDate>
      <guid>http://inessential.com/2013/04/02/regressing</guid>
      <dc:date>2013-04-02T17:24:02-07:00</dc:date>
    </item>
    <item>
      <title>Identical Cousins 13</title>
      <link>http://identicalcousins.net/2013/04/02/identical_cousins_13</link>
      <description>&lt;p&gt;On &lt;a href=&quot;http://identicalcousins.net/2013/04/02/identical_cousins_13&quot;&gt;Identical Cousins 13&lt;/a&gt; we talk about Google Reader, iCloud, Microsoft, Dave Morin, and Summly and other things. It’s a grab bag.&lt;/p&gt;

&lt;p&gt;It’s also our best audio quality. We’re getting the hang of this.&lt;/p&gt;</description>
      <pubDate>Tue, 02 Apr 2013 11:38:20 -0700</pubDate>
      <guid>http://inessential.com/2013/04/02/identical_cousins_13</guid>
      <dc:date>2013-04-02T11:38:20-07:00</dc:date>
    </item>
    <item>
      <title>A Clarification Regarding Web Services and Control</title>
      <link>http://inessential.com/2013/03/28/a_clarification_regarding_web_services</link>
      <description>&lt;p&gt;Responding to &lt;a href=&quot;http://inessential.com/2013/03/27/why_developers_shouldnt_use_icloud_sy&quot;&gt;yesterday’s post&lt;/a&gt;, a number of people pointed out to me that it sounded weird if one minute I suggest checking out Azure &lt;a href=&quot;http://www.windowsazure.com/ios&quot;&gt;Mobile Services&lt;/a&gt; and the next minute tell developers they should take control of their app’s web services.&lt;/p&gt;

&lt;p&gt;I meant no contradiction, but I could have explained better.&lt;/p&gt;

&lt;p&gt;When creating web services, you should consider high-level systems, low-level systems, and everything in between, and figure out what makes sense for you.&lt;/p&gt;

&lt;p&gt;Here are some — not necessarily all — of the things to consider when choosing:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Does it support iOS, Android, and browser-based apps? (Knowing that you may — may — want to move beyond just iOS.)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Can you create a social component?&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Can you add additional services — push notifications, feed-polling, sending email, whatever — to the system?&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Can you get aggregate data and learn how people use your app?&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Perhaps most importantly: is it possible to migrate to something else (even if takes some work)?&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;The answer is yes to all of these for Mobile Services. (While the answer is no to all of them for iCloud syncing.)&lt;/p&gt;

&lt;p&gt;The answer is also yes if you want to work at a low level — it’s yes if you get a virtual server on &lt;a href=&quot;http://www.linode.com&quot;&gt;Linode&lt;/a&gt; and run Ruby on Rails and MySQL.&lt;/p&gt;

&lt;p&gt;And it’s also yes if you work at a medium level and deploy apps using services like &lt;a href=&quot;http://www.heroku.com&quot;&gt;Heroku&lt;/a&gt;, &lt;a href=&quot;https://www.engineyard.com&quot;&gt;Engine Yard&lt;/a&gt;, &lt;a href=&quot;http://aws.amazon.com&quot;&gt;Amazon&lt;/a&gt;, and &lt;a href=&quot;https://developers.google.com/appengine/&quot;&gt;Google App Engine&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;At some point you have to outsource some things, right? You’re not going to build your own server machine that runs your own operating system in a data center you constructed with hammers and saws that you made.&lt;/p&gt;

&lt;p&gt;So you choose what makes sense. And if it can be a high-level system, that’s cool — it will probably save you time and be easier to maintain. But you might have good reasons to choose something medium or low level, and that’s cool too.&lt;/p&gt;

&lt;p&gt;The key is this: &lt;em&gt;you need control of the data&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;iCloud Core Data syncing is, once again, completely opaque and outside your control. It fits &lt;em&gt;none&lt;/em&gt; of the criteria listed above.&lt;/p&gt;</description>
      <pubDate>Thu, 28 Mar 2013 10:33:59 -0700</pubDate>
      <guid>http://inessential.com/2013/03/28/a_clarification_regarding_web_services</guid>
      <dc:date>2013-03-28T10:33:59-07:00</dc:date>
    </item>
    <item>
      <title>Why Developers Shouldn’t Use iCloud Syncing, Even If It Worked</title>
      <link>http://inessential.com/2013/03/27/why_developers_shouldnt_use_icloud_sy</link>
      <description>&lt;p&gt;Yesterday the Verge posted &lt;a href=&quot;http://www.theverge.com/2013/3/26/4148628/why-doesnt-icloud-just-work&quot;&gt;Apple’s broken promise: why doesn’t iCloud ‘just work’?&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It’s not the first article on the topic — &lt;a href=&quot;http://storify.com/Jury/the-trials-of-icloud&quot;&gt;bits&lt;/a&gt; &lt;a href=&quot;http://www.jumsoft.com/2013/01/response-to-sync-issues/&quot;&gt;and&lt;/a&gt; &lt;a href=&quot;http://createlivelove.com/246&quot;&gt;pieces&lt;/a&gt; of this issue have come up before. But The Verge did an excellent job putting it all together. Good reporting.&lt;/p&gt;

&lt;p&gt;Here’s the thing: if you’re a developer, you shouldn’t use iCloud syncing anyway. I’ll explain.&lt;/p&gt;

&lt;h4&gt;Android and the web&lt;/h4&gt;

&lt;p&gt;You may think you’ll never want an Android or browser-based version of your app. But are you sure? Really, really sure?&lt;/p&gt;

&lt;p&gt;You hope your app will be a hit. (If not, then quit writing it and choose something else.) If it’s a hit on iOS, it could be a hit on Android too — and you can bet that customers will ask for a web app version.&lt;/p&gt;

&lt;p&gt;You don’t want to limit the success of your app just because you didn’t want to write your own server.&lt;/p&gt;

&lt;p&gt;And even if you’re sure that you’ll never want an Android or web version, is it possible you’d want a Mac version that isn’t sold on the App Store? (Only App Store builds are allowed to do iCloud syncing.)&lt;/p&gt;

&lt;h4&gt;Social software&lt;/h4&gt;

&lt;p&gt;We’ve been living in a social world for years. But iCloud syncing is not social: it’s per-user syncing.&lt;/p&gt;

&lt;p&gt;If you write your own server, you can write the social bits, so your users can share recipes, weather forecasts (look, Mom, it’s going to be sunny on Thursday!), favorite articles, or whatever-it-is your app does.&lt;/p&gt;

&lt;p&gt;People &lt;em&gt;expect&lt;/em&gt; social.&lt;/p&gt;

&lt;h4&gt;Additional services&lt;/h4&gt;

&lt;p&gt;If you’re writing an RSS reader, you can’t ask iCloud to download feeds.&lt;/p&gt;

&lt;p&gt;iCloud can’t poll Twitter to see if your follower count has gone up or down. iCloud can’t &lt;a href=&quot;http://forecast.io/&quot;&gt;generate weather forecasts&lt;/a&gt;. iCloud can’t &lt;a href=&quot;http://www.sailwx.info/&quot;&gt;track ships&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;There are all kinds of services that make sense on the server side. You could do some of them on a client, but at the expense of timeliness and battery life. If it’s a good idea, and you don’t do it on a server, your competition just has to write a server that does it, and your app is finished.&lt;/p&gt;

&lt;h4&gt;Learning how people use your app&lt;/h4&gt;

&lt;p&gt;You shouldn’t look at private data.&lt;/p&gt;

&lt;p&gt;With Glassboard we made the decision — there was no debate — to encrypt messages in the database, so that we couldn’t see private data.&lt;/p&gt;

&lt;p&gt;But we could still look at aggregate data. It was interesting to know how many boards were created each day, how often people used invitation codes, and so on.&lt;/p&gt;

&lt;p&gt;There’s no substitute for learning about how people use your app. You can &lt;em&gt;guess&lt;/em&gt; how people use your app. You can — and should — get all the feedback you can via email, Twitter, and App Store reviews.&lt;/p&gt;

&lt;p&gt;But seeing actual data makes a real difference, because it helps you figure out where your resources need to go.&lt;/p&gt;

&lt;h4&gt;Costs&lt;/h4&gt;

&lt;p&gt;It used to be expensive to develop, run, and maintain your own server. You’d buy a machine or a few machines, get them installed in a data center, figure out how Apache works, install MySQL, and write a ton of scripts. Perl or PHP scripts, most likely. (Ugh.)&lt;/p&gt;

&lt;p&gt;You’d use Subversion (if you were lucky) or cvs. You’d write your own testing system from scratch. You’d write a bash script that copied the files up to the server.&lt;/p&gt;

&lt;p&gt;And you’d spend a bunch of money.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Everything&lt;/em&gt; has gotten easier and cheaper. These days you’d run services on &lt;a href=&quot;http://aws.amazon.com&quot;&gt;Amazon&lt;/a&gt;, &lt;a href=&quot;http://www.windowsazure.com/en-us/&quot;&gt;Azure&lt;/a&gt;, &lt;a href=&quot;https://www.engineyard.com&quot;&gt;Engine Yard&lt;/a&gt;, or &lt;a href=&quot;http://www.heroku.com&quot;&gt;Heroku&lt;/a&gt;. Or get a virtual server on &lt;a href=&quot;http://www.linode.com&quot;&gt;Linode&lt;/a&gt;. You’d choose from one of the many excellent systems like &lt;a href=&quot;http://rubyonrails.org&quot;&gt;Ruby on Rails&lt;/a&gt;, &lt;a href=&quot;http://www.sinatrarb.com&quot;&gt;Sinatra&lt;/a&gt;, &lt;a href=&quot;http://nodejs.org&quot;&gt;Node.js&lt;/a&gt;, and &lt;a href=&quot;https://www.djangoproject.com&quot;&gt;Django&lt;/a&gt;. You’d deploy via &lt;a href=&quot;http://git-scm.com&quot;&gt;git&lt;/a&gt; or &lt;a href=&quot;http://mercurial.selenic.com&quot;&gt;Mercurial&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;If you can learn Cocoa, you can learn this stuff. (And so much of it is wonderful — you’ll &lt;em&gt;enjoy&lt;/em&gt; learning it.)&lt;/p&gt;

&lt;h4&gt;Control&lt;/h4&gt;

&lt;p&gt;Tim Wood, CTO of The Omni Group, tweeted the very wise words: &lt;a href=&quot;https://twitter.com/tjw/status/289230416064425984&quot;&gt;Own the Wheel&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Here’s the thing: half the mobile revolution is about designing and building apps for smartphones and tablets.&lt;/p&gt;

&lt;p&gt;The other half is about writing the web services that power those apps.&lt;/p&gt;

&lt;p&gt;How comfortable are you with outsourcing half your app to another company? The answer should be: not at all comfortable.&lt;/p&gt;

&lt;p&gt;Do it yourself.&lt;/p&gt;</description>
      <pubDate>Wed, 27 Mar 2013 12:37:28 -0700</pubDate>
      <guid>http://inessential.com/2013/03/27/why_developers_shouldnt_use_icloud_sy</guid>
      <dc:date>2013-03-27T12:37:28-07:00</dc:date>
    </item>
    <item>
      <title>The Small Town Volunteer Fire Department</title>
      <link>http://adventuresinnewfield.blogspot.com/2013/03/aah-joys-oops-downers-of-living-in.html</link>
      <description>&lt;p&gt;My &lt;a href=&quot;http://adventuresinnewfield.blogspot.com/2013/03/aah-joys-oops-downers-of-living-in.html&quot;&gt;Mom has the scoop&lt;/a&gt; on goings-on in Newfield, a small town in south Jersey where my family comes from, where my Mom lives, where my grandfather was chief of the volunteer fire department.&lt;/p&gt;

&lt;p&gt;The city council wanted — for stupid reasons — to shut down the fire department, which had been serving the town for more than 100 years. The council voted to shut it down before changing its mind. Narrowly.&lt;/p&gt;

&lt;p&gt;Mom writes:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;All I can think about is that this mess marks the passing of the two important groups - those responsible for the original Borough bargain of lower taxes thru volunteerism and the Great Generation that Ever Was.  Political/social decision making has passed into the hands of the baby boomers and we are not prioritizing the welfare of the town, state, nation, world above our own petty egos. This is not the legacy past generations wanted us to embrace.&lt;/p&gt;&lt;/blockquote&gt;</description>
      <pubDate>Sun, 24 Mar 2013 14:30:06 -0700</pubDate>
      <guid>http://inessential.com/2013/03/24/the_small_town_volunteer_fire_department</guid>
      <dc:date>2013-03-24T14:30:06-07:00</dc:date>
    </item>
  </channel>
</rss>
