Skip to content

Instantly share code, notes, and snippets.

@wilfriedE
Last active December 16, 2015 03:29
Show Gist options
  • Save wilfriedE/5369930 to your computer and use it in GitHub Desktop.
Save wilfriedE/5369930 to your computer and use it in GitHub Desktop.
About me. Though mainly ruby, has some mix language references.
class Me
def class
return "Human"
end
def greetings
print "HELLO WORLD"
puts
print "A little about me."
puts
end
def name
"Wilfired H."
end
def education
print 'Current => "Rochester Institute of Technology"'
puts
print 'Previous: "McKinley Technology HS"'
end
def skills
skills = []
skills.push("RUBY");
skills.push("PYTHON");
skills.push("ROBOTC");
skills.push("Javascript");
skills.push("HTML");
skills.push("CSS");
skills.push("PHP");
skills.push("Google AppEngine");
skills.push("RubyOnRails Framework");
skills.push("GIT");
skills.push("SVN");
skills.push("SQL");
skills.push("Labview for Mindstorm");
skills.push("Labview for FRC");
p skills
end
def fav_links
links = {
"TED" => "http://www.ted.com/",
"Team_1915" => "http://mckinleyfirebirds.com/",
"USFIRST" => "http://www.usfirst.org/",
"CodeNow" => "http://codenow.org/",
"CSSI-2014" => "http://www.cssi-profiles.appspot.com",
"CO-Labs" => "http://www.co-labs.appspot.com",
"Me" => "http://wilfriede.me",
"school" => "http://mckinleytech.org/"
}
p links
end
def bye(lang)
case lang;
when 'Chinese'
print "Zàijiàn"
when 'English'
print 'Good Bye'
when 'Spanish'
print '¡Adiós!'
when 'French'
print 'Au revoir!'
else
print "--------exit-----"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment