Skip to content

Instantly share code, notes, and snippets.

@erithmetic
Created July 16, 2010 02:34
Show Gist options
  • Save erithmetic/477843 to your computer and use it in GitHub Desktop.
Save erithmetic/477843 to your computer and use it in GitHub Desktop.
<?php
# flickr.php
public function photos() {
return ($this->_photos) ?
$this->_photos :
$this->_photos = $this->flickr()->
groups_pools_getPhotos('1362691@N20', NULL, NULL, NULL, $this->num(), 1);
}
# flickr.rb
def photos
@photos ||= flickr.groups_pools_getPhotos('1362691@N20', NULL, NULL, NULL, num, 1)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment