Likebees Presentation at MiniBar

I gave a short talk at the MiniBar Finance Innovation conference last week.

MiniBar is a monthly tech and business conference which invites innovators and entrepreneurs to get together and share their ideas. This month, the event was sponsored by PayPal X and the six guest speakers each gave a 5-minute talk about innovation in payment systems. I used my slot to explain how we utilized the PayPal Adaptive Payments API when developing a group-buying application for our client, Likebees.

Likebees operates by offering users the chance to buy vouchers for substantial discounts for local services, such as restaurants or hairdressers. The catch is that the discount only becomes activated if enough people buy it, and this is where the pre-approval API becomes necessary. Instead of allowing each transaction go through so that they then have to be cancelled manually if the target number of buyers is not met, the API ensures that buyers are only charged when the deal reaches its 'tipping point'.

Anthony Hicks from PayPal cornered me for a quick interview afterwards:

Yannick, our client and Likebees co-founder also got caught on camera and explained the business side of Likebees in more detail:

Filed under  //  API   presentation  
Comments (0)
Posted by Matthew Ford 

XML to JSON API Proxy for Quick Mash-ups

While building our company dashboard, which was mentioned in our previous blog post on SVG with Raphael, I came across a problem with the project management tool we use, Pivotal Tracker. 

The Pivotal Tracker API is only in XML, which means you can't do cross-domain requests and access the API via javascript. This meant that, if I wanted to extract data about the status of our user stories, I would have to do it on the server side. As everything so far had been done with javascript on the client side, I was reluctant to start making things more complicated.

I contacted Pivotal, who said they might think about adding JSON at some point, but I didn't want to wait for them to sort it out. Instead, I built a quick API proxy that allows you to make a request to a XML API and get back JSON. So, now, I can do this in my javascript:

It will proxy the GET request to the API and convert the XML response into JSON, via http://xml2json.heroku.com (supports JSONP). I've put the code on GitHub http://github.com/bitzesty/xml2jsonp in case anyone else needs to do the same thing.

Filed under  //  API   javascript   open source   xml  
Comments (6)
Posted by Matthew Ford 

How to Get the Most Value out of Web Development

Increasingly, clients wanting an application built on a tight budget are drawing up extravagant feature lists which are incompatible with the amount they are prepared to pay. This tension between the client's budget and needs can lead to dissatisfaction with the end product or conflict with the development team. However, it doesn't always have to end in deadlock.

One way to overcome the issue is by building and releasing the application in stages. This method suits clients with a limited cash flow and has the additional advantage of allowing you to get user feedback quickly. This information can then be used to help you decide which features you need to build next.

Yet sometimes there's simply no need to shell out for a fully bespoke system, particularly when there are viable off-the-shelf solutions available at a fraction of the cost. But what do you do if an off-the-shelf system doesn't quite fit your needs and a fully bespoke one is out of budget? I see three options:

Open Source
Customizing an existing open source application (if one is available) will cost considerably less than a bespoke system, as you only need to pay for the new features.

API Extensions / Plug-ins / Widgets

It is possible to build bespoke applications which use third party APIs, a good compromise which not only saves on development time but also provides the client with a more feature-complete solution. For example, MailChimp can be added for email marketing, Intense Debate or Disqus for commenting, and Get Satisfaction or Zendesk for support and help-desk functionality.

Application Platforms
If you use an existing paid application platform, it may sometimes be possible to extend it with existing plug-ins or develop your own one to suit your needs. For example, Shopify allows users to customize their e-commerce sites with a range of additional apps, as well as giving option for developers to build custom features.

People beginning online business ventures rarely have money to spare, so there is no point in pushing the boat out on bespoke applications when the same results can be achieved for much less. The existence of open source applications, plug-ins and API extensions on the internet is a gift to clients on a tight budget, and it should be exploited accordingly.

 

Bit Zesty - Ruby on Rails app development London

Filed under  //  API   SaaS   open source   project management  
Comments (0)
Posted by Matthew Ford