[Rails] Re: What is the best book to read after Practical Object-Oriented Design In Ruby and Rails Antipatterns?

2015-06-20 Thread Brent
"Level Up!" by Steven Talcott Smith is a great book for aspiring software developers. Rails is the main example used in the book, since it is the platform upon which the author crafted his own career. The book describes a path to excellence in software development, describing skillets and pract

Re: [Rails] Re: How can I get number of AdWords Advertiser in top and right side position in Google search result.

2015-06-20 Thread Elizabeth McGurty
>From top I don't think that it matters. You just have to use Nokogiri/JQuery/CSS to find the AdWord element in the HTML. Just code for the exception that it is not there. On Saturday, June 20, 2015 at 11:02:45 AM UTC-4, Edsil Basadre wrote: > > Hi Elizabeth, > > Thank you for this, i

[Rails] What is the best book to read after Practical Object-Oriented Design In Ruby and Rails Antipatterns?

2015-06-20 Thread Михаил Дорохович
"Metaprogramming Ruby" is the best book to understendig how ruby work in rails, sinatra or any other system. You can understand how work activerecord or any other "magic" gem -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscrib

Re: [Rails] Re: How can I get number of AdWords Advertiser in top and right side position in Google search result.

2015-06-20 Thread Edsil Basadre
Hi Elizabeth, Thank you for this, it really helps to me. But one thing I am confused how canI check if the adWork is from top position and right position. Thanks you so much liz. On Sat, Jun 20, 2015 at 7:42 PM, Elizabeth McGurty wrote: > Once you load the Google results, presumably by some No

[Rails] Re: How can I get number of AdWords Advertiser in top and right side position in Google search result.

2015-06-20 Thread Elizabeth McGurty
Once you load the Google results, presumably by some Nokogiri call like: Nokogiri::HTML(open...) the html will be stored to some (XML?) source, let's call it google_results_doc. Then you need to use Nokogiri css methods to locate your AdWord html. First you need to take a look at Source Code un

[Rails] How can I get number of AdWords Advertiser in top and right side position in Google search result.

2015-06-20 Thread Edsil Basadre
I'm trying to build a simple application in rails that getting all search result in google and count the number of AdWords advertiser in top and right side position. I already get all the query result using Nokogiri but I don't know how can I get the number of AdWords advertiser. Is there any