Updated – API 1.0 blackout dates and EOL
We uncovered an issue during our previous blackout dates. We have addressed this and will continue with a further series of API 1.0 blackouts this week. On the following dates requests to API 1.0 will be rejected: 28 January 2014 08:00 GMT - 29 January 2014 08:00 GMT 30 January 2014 08:00 GMT - 31 January 2014 08:00 GMT Assuming no issues are identified during these blackouts, the official end… Continue reading
Upcoming API 1.0 blackout dates and EOL
Back in October last year I wrote about sunsetting our legacy API at the end of 2013. We're now into the final stage of this decomissioning process. To make this as pain-free as possible, we're going to be running a series of API 1.0 blackouts over the next week. This means that on the following dates requests to API 1.0 will be rejected: 09 January 2014 14:00-16:00 GMT 13 January… Continue reading
Sunsetting API 1.0
We launched the first FreeAgent API back in February 2008. It served us well but 18 months ago we launched our second-generation API. The vast majority of third party apps that integrate with FreeAgent have now migrated over to API 2.0, so we will be shutting down API 1.0 by the end of 2013. We have announced this to our API community already, but we're now reaching out to our… Continue reading
Staying On Track
We were fortunate to start FreeAgent at a point in time when things had just taken a turn for the better for web developers. Prior to 2005, I was writing web apps in Java using technologies such as Spring, Velocity and (sorry for swearing) Struts. Then along came Ruby on Rails. Rails was perfect for our bootstrapped startup. Its conventions allowed us to focus on rapidly developing the core functionality… Continue reading
Revving the engine
At FreeAgent we deal with a lot of accounting data - every invoice, bank transaction, expense and VAT return in the system must be processed, and its tax and accounting effects calculated and recorded. In the early days of FreeAgent this was something that was baked directly into the business objects – reporting data was pulled directly from the day-to-day business records. As the number of users grew and the… Continue reading
Switching wings mid-flight
How would you choose to release a completely redesigned version of your web application? Capistrano? Git hooks? Copying files over SFTP? Now imagine your application serves over 21,000 active, multi-user accounts. It’s a very busy app, and forms the backbone of many of those users’ livelihoods. At that point, the question perhaps becomes less about “how”, and more about “when”. 1am? And how long is the downtime going to be?… Continue reading
Conference Pairs
At FreeAgent we strive to create the best working environment we can for our Engineering team. A happy employee is a productive employee and, as an engineer myself, I understand that there's little that makes us happier than fast interwebs, great coffee (or tea, served from a teapot, naturally), free beer (or Irn Bru), shiny new toys and an endless supply of challenging code to craft. This is why we… Continue reading
CoffeeScript with jQuery sprinkles
This is part two of a two part intro to CoffeeScript. part one part two So my last article on CoffeeScript certainly seemed to provoke some thought. Some of you even found it useful, which is all sorts of awesome. If you haven't had a look at that article, I'd advise doing that first, as this one builds on it. There is one more thing I’d like to touch on… Continue reading
! ‘CoffeeScript: two sugars, no bitter aftertaste’
This is part one of a two part intro to CoffeeScript. part one part two The FreeAgent web application runs on Rails, and around the corner for us is an upgrade to Rails 3.1. This will bring many benefits to performance, but one of the things I'm most excited about is the asset pipeline. This makes JS and CSS assets first-class Rails citizens, and as a bonus, allows us built-in… Continue reading
Understanding the Rails Logger
I've lost track of why now, but I've spent a bit of time this afternoon trying to understand how the Rails logger works in production. For years we've been using a Hodel 3000 Compliant Logger, which is dead straightforward. Recently, though, we switched back to using the built in logger with Rails, which is a little more subtle. The default logger in Rails is the BufferedLogger from ActiveSupport. It can… Continue reading