Skip to content

Instantly share code, notes, and snippets.

@profnandaa
Last active January 30, 2017 20:01
Show Gist options
  • Save profnandaa/fe9fb6b3e7560a6d9d99f838d0763b8b to your computer and use it in GitHub Desktop.
Save profnandaa/fe9fb6b3e7560a6d9d99f838d0763b8b to your computer and use it in GitHub Desktop.
const Developer = require('developer');
let months = 'Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec'.split(' ');
let year = (new Date()).getFullYear();
let you = new Developer();
while (year >= 2016) {
months.forEach((m, i) => {
you.attendMonthlyForLoopEvent(m);
you.shareExperience();
you.goPractice();
you.inviteSomeoneToEvent(months[i + 1]);
});
year += 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment