Mathematica, 50 bytes
n=Today["YearShort"];{.1*(61+n-Floor[n/4]),280+3n} Note that this is dependent on having a Wolfram Engine with Version number 10+ (released 2014) due to dependence on DateObjects.
R, 7064 bytes
n<-asn=as.numeric(format(Sys.time(),"%y")) c(.1*(61+n-floor(nn%/4)%4),280+3*n) Direct port of Mathematica code, think I had a shorter solution but dependent on packages whereas this works with base R.