List of Newspapers Op-Eds

Trying to get some exposure for your business or organization?

I’ve compiled a few:

here are actual email addresses of some of these media people… but : a lot of them will probably bounce as they look kinda old:
http://www.opednews.com/mediacontact.htm
OpEdGuide (opens in google docs)
http://www.theopedproject.org/index.php?option=com_content&view=article&id=47&Itemid=65
http://berkeley.edu/news/media/cc/oped-contact.shtml

http://en.wikipedia.org/wiki/List_of_newspapers_in_the_United_States_by_circulation

How to Scrape Images on Any Site

1) Auto-click with imacro on FireFox. Make sure u give it enough time to “sleep” between iterations.
2) Save the cached images onto your disk (use CacheViewer)

Kachiiiing!

Poor Man’s Google Scrape Technique

How to scrape for links on Google using notepad..

This requires cygwin or some sorta shell interpreter with grep/sed capability.

1) Search for whatever you wish.  Make sure you get 100 results per page (under “advanced search”)

2) Copy paste the entire screen

  • Ctrl+A  - this selects all text
  • Ctrl+C – copies text onto buffer
  • Open Notepad (or your fav. text editor), press Ctrl + V – pastes text onto editor
  • Save (i.e. urls.txt).

3) Run this command on the file

 grep “Cached” urls.txt | sed -e ‘s/ – .*//g’ -e ‘s/\?.*//g’ -e ‘s/^      //g’ | sort | unq

 

Voila