Announcing Sightglass Bingo to San Francisco (and open sourcing it)

Today I am happy to report that an iPhone app that I built for fun several Saturdays ago with my cofounder Caleb Elston has been approved for the app store by Apple!  The app is called Sightglass Bingo and is played by spotting items in real life at Sightglass Coffee in San Francisco and marking them on a card to try to score a bingo. Share your victory out to Facebook/Twitter or just play for fun. We at Yobongo grab afternoon coffee far too often considering we have perfectly good beans/grinder/press in the office, so we decided to add a little more pizazz to our coffee trips.

Beyond wanting to play the app myself I had two other goals for the project. The first was to create an app using the sdk provided by the recently launched YC company Parse (http://parse.com). The second was to open source the app, both as a demo of how easy Parse is to use for something like this, as well as to gain the experience of open sourcing my first app. I hope that people will take the code I've written and take it far beyond what I have started. Go crazy and customize it for your own coffee shop, office, event, whatever you can think of. Port it to Android. Genericize (sp?) it and make a customizable version. Add a high scores list. The world is your oyster as a software engineer :)

Download the app at http://app.net/sightglassbingo and check out the code at https://github.com/dkasper/Sightglass-Bingo

The SMS Bridge on iPhone

It's 10:45 am on Sunday and I'm headed to Mission Beach Cafe for brunch. Turns out there is a 30 minute wait. Par for the course. I'm early so I figure I'll open up Yobongo and kill a few minutes talking to people while I wait for my friends to arrive. Only one problem, I've got one bar on my phone and the data connection isn't working. Text messaging still works though I notice as I receive an sms saying one of my friends is 5 minutes away.

And therein lies one of the reasons why so many apps are building on top of sms: it works when your data connection doesn't. To be clear mobile internet connection coverage will surely improve and likely at some point obsolete sms entirely (hence the reason it's not much of a concern to Yobongo long term). But in the meantime sms could be a good stopgap were it not for that fact that in order to work over sms apps are forced to effectively shell out to the Messages app on the iPhone, and once you're in Messages every app has effectively the same experience. Not only is there no way to differentiate visually, but the interaction between the user and the service is limited to sending 140 characters of text. It's like being thrown back into the command line days of computers. This is 2011 on a mobile device with one of the most beautiful displays available and we're stuck with the green bubbles with text in them.

There are two pieces to the sms equation: sending and receiving.The sending part already partially exists. There is a component in the iOS sdk that basically presents a pre-filled sms window in which the user has to click send to actually send the sms. Apple doesn't let you send text messages on behalf of the user except using their prebuilt control because otherwise malevolent apps could spam all your friends using your phone number and sms quota. It would be even nicer if you could send an sms and just have an alert pop up like an in app purchase, but it is at least technically possible to send an sms from an app. Consider this half of the equation to be half finished.

On the receiving end there is currently no solution. Your server can respond via sms, but that sms goes straight to the messages app into which your app has no visibility. This effectively makes it so that sms can only be used for outbound communication. Hopefully, as part of revamping the way push notifications work on iOS, Apple will build a way for apps to be notified of a text message sent by a specific number. That way when your server sends the response message the app will get a callback and can handle it. With this piece in place the circle is complete and we can use sms from within the app. I have a feeling a lot of people would send sms notifications instead of push notifications in that case despite the cost just because sms notifications can't be turned off. Obviously this is a potential avenue for abuse the most likely solution to which would be to build an sms blocking feature for the phone on a number by number basis. However it's actually irrelevant to this feature discussion, since any app that has your phone number can already spam you, making the app aware of incoming sms just adds a little more honey to the pot.

If that's not enough, my real dream is for a socket connection that degrades gracefully to sms if the data connection is lost. In essence sms would become a protocol over which data is sent the same as tcp. It would be slow, but it would be better than nothing. It reminds me of the "IP over Avian Carriers" protocol that was designed to carry internet traffic by homing pigeon (See RFC 1149 from April 1, 1990). Joking aside, being able to get a notification on an incoming sms is a serious feature request that I feel could add great value to many communication apps until we finally get reliable 3g coverage everywhere.

 

Apple could kill sign up forms on iPhone.

If I have to code one more sign up form for iPhone I'm going to punch a hole in a wall. Heck, if I have to fill out one more sign up form on iPhone I'm going to go ballistic. Sign up forms are tedious, and it doesn't help that every app's flow is different and most are poorly designed.

 

But Apple has the power to solve this by making sign up forms one click. They can supply the email address of a user, as well as a name, birthday, and whatever else iTunes knows about us. They wouldn't need to give the user's password, just give a hashed version or use the UDID. If I had to enter my credit card information every time I had to buy and app I would almost never buy apps. If I didn't have to fill out the same freaking form every time I download an app I would try out more apps.

 

This is not just a viable alternative to Facebook connect, it would be better because every single person with an iPhone has an iTunes account and not everyone has Facebook (or wants to use it). Moreover this information will already be validated by Apple and will have far less typos. If I had 10¢ for every time someone typed gmail.cm instead of gmail.com into our signup form at Yobongo we could probably IPO.

 

Screen_shot_2011-03-29_at_2

 

We spent a rather ridiculous amount of time on our sign up flow at Yobongo (which incidentally has had overwhelming positive response), but I can't help thinking how much better it would be to eliminate the sign up form altogether.

 

 

***Update

I realize this is similar to gamecenter. I'm suggesting that they expand the concept into something which would be more generally applicable.

 

Welcome To My World

For the past 12 months I've been working on Yobongo as it has grown from a random name my cofounder Caleb Elston blurted out, to a side project, to a full time project, to a funded growing startup. Every line of code and every server in use by Yobongo was set up by me, and I work day and night literally to make Yobongo better. Stay tuned for lessons, thoughts, war stories, inspiration, and general pontificating about technology. Enjoy.