Assuming this is how you get the current time in Joda time:
DateTime now = new DateTime();
How do you calculate values for the variables
if((sinceDate.getDayOfYear() == now.getDayOfYear()) && (sinceDate.year() == now.year())) //yep, do something today;
works for me.