similar to: flickr

Displaying 20 results from an estimated 30000 matches similar to: "flickr"

2006 Mar 27
1
Rad Rails IDE
Hi, Doe''s any one know how to configure RAD Rails to show only the methods of the current object and not all the rails methods? Sharon. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060327/fc4d5d8e/attachment.html
2006 Apr 26
10
Rails Document must be more detailed otherwise...
In java/c++ the method signature provide a good details on which parameters the method accept, but in rails the ability to send hash as parameters make it impossible to know which parameters can be send. This ability make the rails API doc a must to be full of details and not supply partial examples of usage. When for example I see *link_to_remote*(name, options = {}, html_options = {}) I would
2005 Dec 20
1
Problems w/ Flickr demo
I''m trying to alongside the Flickr demo, and I''m getting the following error. I''m not sure why, as my code matches up exactly with what''s in the video. I''d appreciate any help. RgBJA ----- OpenSSL::SSL::SSLError in Flickr#search SSL_CTX_new:: library has no ciphers RAILS_ROOT: script/../config/.. Application Trace | Framework Trace | Full Trace
2006 Jun 24
2
using flickr.rb
Does anyone have any experience with using flickr.rb? Seems the only thing which is documented for it is searching through your photos. Anyway, all I''m trying to do is return a list of my 20 most recent photos, but nothing seems to work. doing this returns 100 photos for a given user (which takes all day to load) @flickr = Flickr.new ''API KEY'' @user =
2006 Jul 19
1
flickr.rb error
hi all, i am trying to put flickr on my ruby app using the famous "Putting flickr on Rails" tutorial...i followed all the steps what was given there...but the followoing error always come... Error Message: NoMethodError in FlickrController#search private method `gsub'' called for 24:FixnumRAILS_ROOT: C:/rails/flickr/config/.. Application Trace | Framework Trace | Full
2006 Mar 07
6
Flickr - Tutorial
So I''ve pretty much followed the steps in the video tutorial on RoR.com for creating a small app, to search for photos on flickr.com - all is good, and works as intended to.. How would I go about adding validation, so if no tags are specified it will fail. I know I have to use validates_presence_of :tags - but not in the controller.. so I tried to generate a model called
2005 Dec 17
2
Testing flickr
Hi, I watched the flickr demo video some days ago and I was impressed of Rails so I decided to test it my self.. I put it on my web server on windows (Apache2/fcgi/Rails1.0). All works well but I have this in my log: Processing FlickrController#search (for 127.0.0.1 at 2005-12-17 15:00:02) [POST] Parameters: {"commit"=>"Find", "tags"=>"flower",
2006 Jul 20
3
Flickr API and Ruby Question...
I have a local version of the flickr.rb file installed and working properly, but apparently I''m having issues installing it on my Dreamhost server. So, does anyone know how to do it the normal way? Just interfacing directly with the flickr/api without using the gem ''flickr.rb''? Any tips in the right direction would help me tremendously! Thanks! -- Posted via
2006 Jul 20
1
Installing flickr.rb on Dreamhost Error - HELP
I tried to install flickr.rb on my Dreamhost server, and I got an error. This is what I did to install it: $> gem install flickr I''m not sure if there are any other parameters... does anyone know why I got errors when trying to install this? What does it mean when it asks "Install required dependency xml-simple?" By the way, here''s the results: [myserver]$
2006 Jul 21
3
Interface with Flickr
Does anyone know how to get going with the flickr api WITHOUT using the ''flickr.rb'' gem? I''m wanting to just use the REXML and ''net/http'' stuff. I''m just wondering how to send requests to the api and handle the response. Any tips would be great! Thanks! -- Posted via http://www.ruby-forum.com/.
2006 Jan 21
2
flickr demo
hi -- i''m a beginner to rails, so thanks for your patience. i was following the flickr video demo step-by-step (http://media.rubyonrails.org/video/flickr-rails-ajax.mov). i''m using ruby 1.8.2 on mac OS X. i keep getting this error message after typing in a tag and submitting the form: ArgumentError in Flickr#search wrong number of arguments (1 for 0) RAILS_ROOT:
2006 Feb 12
3
Flickr demo screencast
Hi, I''m new to Ruby and Ruby on Rails. Yesterday I just received the Agile Web Development with Rails book. Now I wanted to recreate the Flickr demo screencast (http://www.rubyonrails.com/screencasts) just for fun to see it live. But unfortunately when I start my server I get some warnings: g5:~/ruby/flickr mw$ ruby script/server => Booting lighttpd (use ''script/server
2006 May 22
8
flickr tag question
hey, i am using the flickr wrapper for ruby and need to access the tags of a specific photo. i got all the rest working. i must admit i am kind of new to ruby, but i tried and tried and couldn''t figure it out. among other things i want to read geotags like in my example here: http://www.flickr.com/photos/whoisstan/146634506/ i''m sure it is deadsimple and i just overlooked it.
2006 May 19
1
flickr like DST timezone management
Hello everyone I wonder if anyone can point me to the library for timezone management with DST support, which has timezones, like flickr has. I know that there is TZInfo, but it''s a bit different for it has huge list of available timezones in ''Continent/City'' format. I would like my application to have timezones list more like on flickr (or windows regional settings) -
2006 Feb 07
3
Problems with flickr gem: already initialized constant
New to rails so please bear with me. Am having difficulties with the flickr plugin. trying to follow the video as a starter, and keep hitting the following problem when I require ''flickr'' in the environment.rb file testbed:/srv/www/htdocs/carstuff # ruby script/server => Booting WEBrick... /usr/local/lib/ruby/gems/1.8/gems/xml-simple-1.0.7/lib/xmlsimple.rb:274: warning:
2007 Jan 15
1
Flickr.rb - displaying tags
Maybe I''m having a "slow day" but I can''t for the life of me figure out how to print a photo''s tags using the flickr gem (flickr.rb). Consider this: <% @photos.each do |photo| %> Tags: <%= debug(photo.tags) %> <% end %> ...Gives the following output: tag: - authorname: gmacgregor author: 62682519@N00 id: 4181224-280985155-130
2011 Jan 16
4
Flickr Uploader Unable to Read From SD Card
Hi, recently my installation of Flickr Uploader (v2.5) has stopped being able to read JPGs from the SD card. I can still browse and select the file, and I can still open the files in other applications (ie, I am pretty sure it's not a permissions issue), but Flickr Uploader reports that the file is not in a supported format. However, if I copy the file to my hard drive the Uploader opens it
2005 Dec 16
3
Purpose of ''yield'' in layout file in Flickr video?
During the excellent flickr video, the presenter adds the following to the applications layout file: <body> <%= yield %> </body> What is the purpose of the ''yield'' line? I would think there would be a content_for_layout tag there instead. Thanks, Don -- Posted via http://www.ruby-forum.com/.
2006 Jul 19
3
Flickr.rb - Limiting photo results!
I''m returning my photos to my site, but I''m want to limit the result to like 5 photos or something. Right now, it''s returning all of my public photos. What I''m attempting is to do some sort of counter loop in the view to limit this, but it seems like the API would have a count or a limit option. Does anyone know how to limit the photos returned by
2006 Mar 07
7
Help me (php dev) choose Ruby on Rails. Few questions.
Hi, This is my first post and I have been waiting to try Ruby on Rails since a long time now. I have a few questions that I am looking an answer for: 1. I am intermediate level PHP developer, I have a small project in hand which I need to finish in 3 weeks. 3 weeks sounds doable in PHP. However, I want to take an opportunity to learn Ruby On Rails. I have no experience with Ruby but I just