public PartialViewResult GetSkills(string username)
 {
     return(PartialView(SkillsHelper.GetSkills(username)));
 }
 public ActionResult Index()
 {
     return(View(SkillsHelper.GetSkills("rens0n")));
     // TODO: Return the skills of the logged in user or redirect to a join page
 }