Tweet 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 [...]
Tag Archives: web development
Firefox caching iframe data
Tweet 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 [...]
How to disable previous days in DHTML JS Calendar
Tweet If you are using the DHTML JS Calendar and is trying to disable the previous days, by doing so function dateRange(date) { var now = new Date(); return (date.getTime() <= now.getTime() ) } Calendar.setup({ inputField : “calendar”, ifFormat : “%m/%d/%Y %H:%M %p”, dateStatusFunc : dateRange, showsTime : true, timeFormat : “12″ }); you’ll notice [...]