Last active
August 25, 2016 21:19
-
-
Save SIRHAMY/bfbb934a4235a0bee9a2017503cfa7d6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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