User login

Drupal

GoodReads has an API

We have an API for developers like yourself. To let your users post
reviews to goodreads, check out this method:

http://www.goodreads.com/api#review.create

If you end up building a Drupal module, we'd love to see it! We don't
have a PHP example for using our API either, so if you end up writing
something like that, we'd be grateful.

Features module notes

  • Features Extra block (fe_block) does not export block cache settings (from the contrib module).
  • Views export is either broken or, more likely, it knows when they are already defined by a module.

Use echo instead of print in themes for speed?

Hat tip to RobLoach who noted this in the #drupal IRC channel-- if we want to squeeze hundredths of a millisecond more out of our Drupal modules and themes, we should use echo instead of print for getting the data to the screen.

UPDATE: The PHP developers don't recommend switching from print to echo for speed reasons, suggesting that the difference can be dependent on the setup of your environment.

Random more useful PHP code speed improvements:

Syndicate content