Skip to content

Instantly share code, notes, and snippets.

@arunelias
arunelias / imacros_snippets.iim
Last active June 18, 2020 22:13
iMacros Snippets
VERSION BUILD=8970419 RECORDER=FX
TAB T=1
'//--------------------------------
'// Todays Date in M/D/YYYY format
SET todaysdate EVAL("var d = new Date();var result = (d.getMonth()+1)+'/'+d.getDate()+'/'+(d.getYear()+1900); result;")
PROMPT {{todaysdate}}
'//--------------------------------
'// Tomorrows Date in M/D/YYYY format
SET tomorowsdate EVAL("var t = new Date(); var d = new Date(); d.setDate(t.getDate()+1); var result = (d.getMonth()+1)+'/'+d.getDate()+'/'+(d.getYear()+1900); result;")
PROMPT {{tomorrowsdate}}
@arunelias
arunelias / Link_Validator.py
Created January 31, 2022 08:25
An efficient Link Validator written in Python using the Python modules Pandas and Requests.