Skip to content

Instantly share code, notes, and snippets.

@SIRHAMY
Last active August 25, 2016 21:19
Show Gist options
  • Save SIRHAMY/bfbb934a4235a0bee9a2017503cfa7d6 to your computer and use it in GitHub Desktop.
Save SIRHAMY/bfbb934a4235a0bee9a2017503cfa7d6 to your computer and use it in GitHub Desktop.
var insertGreeting = function(Reader) {
if(Reader.isNew()) {
return (
"Hi, my name's Hamilton. I'm entering my last " +
"semester at Georgia Tech where I'm majoring in " +
"Computer Science. For the past year, I've made " +
"it a habit to publish my accomplishments and " +
"aspirations at the end of each semester. I use " +
"it, primarily, to track my progress with respect " +
"to my short-term goals and long-term growth. " +
"Its auxiliary function is to help me keep in " +
"touch with my network, publicizing my " +
"accomplishments and inviting others to join in. Enjoy!"
);
} else {
return "Waddup?";
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment