another thing that confused me in the past was the Date.GetDay is day of the week (0-6)
Date.GetDate is the day of the current month (1-31)
so make sure you use GetDate, not GetDay
Got it working thanks, it's actually pretty easy. The Date plugin uses Unix Epoch Time anyway, so it was just a matter of using some of built in expression.
Like Date.ToDateString(timeStamp)
I ended up not going with the 3 days ago, etc. Wasn't really needed and I think an actual date works better for my needs.
Thanks for your help.