A Developer’s Resume

I saw some alternate resumes for designers and I thought I would do an alternate resume for a developer. Make sure that if you use this, you are applying at a company that will appreciate it and not just throw the resume away.

namespace Resume {
  public class Candidate {
  
    public ContactInfo Info {
      get { return new Person {FirstName = "Jared", LastName = "Barneck", 
                Street = "9110 Rigewood Place", City = "West Jordan", 
                State = "Utah", Zip = "84088", Email = "Rhyous@yahoo.com"}
      }
    }
    public List<Experience> WorkHistory {
      get { List<Experience> exp = new List<Experience>(); 
            exp.Add(new Experience() { Start = "3/2012", End = "Present",
              Company = "Caradigm",
              Positions = new string [] { "Lead Software Developer"};

            exp.Add(new Experience() { Start = "9/2004", End = "3/2012",
              Company = "LANDesk",
              Positions = new string [] { "Software Developer", 
                "Systems Analyst Developer", "Product Support Expert/Lead",
                "Channel Support Manager"}};
           
            exp.Add(new Experience() { Start = "1/2000", End = "9/2004",
              Company = "Convergys – Nortel Networks Account",
              Positions = new string [] { "Advanced Networking Trainer", 
              "Technical Lead", "Support Engineer"}};

	      return experience;
      }
    } 
    public List<Education> Education {
      get { List<Education> edu = new List<Education>(); 
            edu.Add(new Education() { Start = "8/1999", End = "8/2004"
              College = "Brigham Young University",
              Degree = "BA – Technical Writing"};

            edu.Add(new Education() { Start = "9/2006", End = "4/2009"
              College = "Brigham Young University",
              Description = "Various Computer Science courses"};

            return edu;
      }
    }
    public List<String> Certifications {
      get { List<String> cert = new List<String>(); 
            cert.Add("Certified LANDesk Engineer");
            cert.Add("Nortel Networks - Routers");
            cert.Add("Nortel Networks – L3 Switches");
            cert.Add("MSCE NT 4.0" };
            return cert;
      }
    }
    public List<String> Skills {
      get { List<String> skills = new List<String>(); 
            skills.Add("C#"); skills.Add("WPF"); skills.Add( "MVVM");
            skills.Add("PHP"); skills.Add("MySQL"); skills.Add("Apache");
            skills.Add("Shell Scripts"); skills.Add("Batch Files");
            skills.Add("FreeBSD"); skills.Add("Linux"); skills.Add("Mono");
            return skills;
      }
    }
  }
}

Leave a Reply

How to post code in comments?