• Does anyone noticed this logic:

    Month < 8 AND month <> 2 => days_in_month = 30 + (month & 1)

    Month >= 8 => days_in month = 30 + ((month+1) & 1)

    Of course, there is standard for the February