Koala 1.3 is out!

January 12, 2012

Hey everyone, Happy new year!  I hope you’ve all had a great start to 2012 — and what better way to kick the year off than with a new version of Koala? Goodbye, REST API, someday Facebook has finally ported over the last of the REST API functions to the Graph API, meaning that anything [...]

0

Koala 1.3.0rc1 released!

November 14, 2011

Hey all, I’m happy to announce the release of Koala 1.3.0rc1! New Features 1.3.0rc1 provides support for several new Facebook features, a number of bug fixes, and other improvements: API#set_app_restrictions uses the new Graph API to set Facebook app restrictions OAuth#url_for_dialog builds the URLs for the various Facebook dialogs GraphCollection.parse_page_url now exposes useful functionality for [...]

1

My CSS Wishlist #2

August 23, 2011

Extreme Specificity So, another project that I am working on has some specificity issues. Take a look at this selector: .col-left div.topic-unit ol li div div.topic-unit-ol-image div The stylesheet uses these types of selectors everywhere. The problem is that if someone comes in and tries to add a “div” as a child to the last [...]

0

My CSS Wishlist #1

August 22, 2011

Font-size and Inheritance I’ve been working on this project recently and have had some problems with font-size inheriting. After a few minutes of investigation, it turns out that the following rule was being declared (unfortunately in a place where I can not touch it): html, body, div, p, h2, h3, h4, ul, ol, span, a, [...]

1

My CSS Wishlist

August 22, 2011

Hey all, miley here, I have been wading deep, recently, in other people’s CSS and dealing with the little peeves that I have run across. I decided to make a trial run at series of quick entries entitled “My CSS Wishlist.” They will be titled as such and have a nugget of wisdom within.

0

Koala 1.2beta1 is out!

August 17, 2011
Tags:

Hey everyone, I’m excited to announce the release of Koala 1.2 beta1! This has been a big, fun release, with some big internal changes. Faraday As of 1.2beta1, we use (and depend on) the Faraday library to make HTTP requests, replacing our homebrew Typhoeus and Net::HTTP adapters. This is a big change, so let’s go [...]

0

Koala 1.1 is out!

July 19, 2011

Hey everyone, I’m happy to announce the release of Koala 1.1!  Don’t crowd — there’re plenty of new features for everyone.   Batch API Support Perhaps our most significant new features is support for Facebook’s Batch Requests, which lets you make multiple requests in a single request.  The Batch API is incredibly powerful, and we’re [...]

0

Koala 1.1rc3 released!

June 30, 2011

Hey everyone, I’m happy to announce the release of Koala 1.1rc3!  Looking back, the previous release should have been a beta, since we’ve made a number of changes and improvements. Batch API Interface Change Most significantly, we’ve made a breaking change to the Batch API interface.  This was not an easy choice, but the original implementation [...]

0

Koala 1.1rc released!

June 6, 2011

Hey everyone, I’m excited to announce the release of the Koala 1.1 release candidate! The big news here is support for Facebook’s batch API, which lets you bundle a number of operations into one request from Facebook: me, friends = Koala::Facebook::GraphAPI.batch do @api.get_object(‘me’) @api.get_connections(‘me’, ‘friends’) end We’ve also added new convenience methods, improved others, and [...]

2

Making Rack::Offline useful in uncached mode

June 1, 2011

In which we play around with mobile. I’ve been playing around with mobile websites for the last two months — learning about app caches and localStorage, hacking around with jQuery mobile, discovering the limits of mobile devices.  It’s a huge, complicated, fascinating wilderness, and along my way  I’ve come up with or stumbled upon a few [...]

0