The Artima Developer Community
Sponsored Link

Ruby Buzz Forum
adding search engine feeds to netnewswire

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Ryan Davis

Posts: 651
Nickname: zenspider
Registered: Oct, 2004

Ryan Davis is a ruby nerd.
adding search engine feeds to netnewswire Posted: Feb 1, 2008 1:18 PM
Reply to this message Reply

This post originated from an RSS feed registered with Ruby Buzz by Ryan Davis.
Original Post: adding search engine feeds to netnewswire
Feed Title: Polishing Ruby
Feed URL: http://blog.zenspider.com/index.rdf
Feed Description: Musings on Ruby and the Ruby Community...
Latest Ruby Buzz Posts
Latest Ruby Buzz Posts by Ryan Davis
Latest Posts From Polishing Ruby

Advertisement

This adds uniform search across blogdigger, yahoo, and google. findory is dead. feedster and daypop simply suck and weren't worth all the timeouts.

tell application "NetNewsWire"
  activate
  set search_terms to {"%22Eric+Hodel%22", "%22Ryan+Davis%22", "ImageScience", "ParseTree", "RubyInline", "ZenHacks", "autotest", "image_science", "ruby+heckle", "ruby+obfuscator", "ruby2c", "vlad+ruby", "zenspider", "zentest"}
  repeat with search_term in search_terms
    set the_url to "http://www.blogdigger.com/rss.jsp?queryString=" & search_term & "&sortby=date&days=20"
    subscribe to the_url

    set the_url to "http://news.search.yahoo.com/news/rss?p=" & search_term
    subscribe to the_url

    set the_url to "http://blogsearch.google.com/blogsearch_feeds?hl=en&tab=wb&q=" & search_term & "&ie=utf-8&num=10&output=rss"
    subscribe to the_url

    -- dead
    -- set the_url to "http://www.findory.com/rss/Blogs?q=" & search_term
    -- subscribe to the_url

    -- sucks
    -- set the_url to "http://feedster.com/search.php?q=" & search_term & "&sort=date&ie=UTF-8&limit=15&type=rss"
    -- subscribe to the_url

    -- sucks
    -- set the_url to "http://www.daypop.com/search?q=" & search_term & "&s=1&c=10&t=a&o=rss"
    -- subscribe to the_url
  end repeat
end tell

Read: adding search engine feeds to netnewswire

Topic: Tip: Save your users 15+ seconds of their day Previous Topic   Next Topic Topic: Don't Turn Off the Fire Alarm!

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use