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!
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!
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
3) Run this command on the file
grep “Cached” urls.txt | sed -e ‘s/ – .*//g’ -e ‘s/\?.*//g’ -e ‘s/^ //g’ | sort | unq
Voila
Ok this is a repost cuz of stinkin’ DreamHost.
If you have an auto-generated iframe from a javascript, and this iframe has dynamic data, FireFox (but not IE) wll cache your data. Even if you have
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
After days of pulling out my hair (or what little I have left), i found out the only way around this is by calling this in your JavaScript:
iframe.src = iframe.src;
This basically forces the browsers to reload. Not the most efficient solution but it works. Also, I haven’t tested to see if I could remove this with FireFox 3 coming out but no matter. The rest of the world is gonna take 1-2 years to download FF3 anyway.
PS: Hairloss is not due to masturbation. Thank god for that.