sovren 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.gitignore +19 -0
- data/Gemfile +14 -0
- data/LICENSE.txt +22 -0
- data/README.md +41 -0
- data/Rakefile +7 -0
- data/lib/sovren.rb +30 -0
- data/lib/sovren/achievement.rb +16 -0
- data/lib/sovren/association.rb +17 -0
- data/lib/sovren/certification.rb +18 -0
- data/lib/sovren/client.rb +45 -0
- data/lib/sovren/competency.rb +18 -0
- data/lib/sovren/contact_information.rb +33 -0
- data/lib/sovren/education.rb +30 -0
- data/lib/sovren/employment.rb +29 -0
- data/lib/sovren/language.rb +31 -0
- data/lib/sovren/military.rb +19 -0
- data/lib/sovren/patent.rb +19 -0
- data/lib/sovren/publication.rb +35 -0
- data/lib/sovren/reference.rb +18 -0
- data/lib/sovren/resume.rb +28 -0
- data/lib/sovren/version.rb +3 -0
- data/sovren.gemspec +30 -0
- data/spec/sovren/achievement_spec.rb +24 -0
- data/spec/sovren/association_spec.rb +25 -0
- data/spec/sovren/certification_spec.rb +26 -0
- data/spec/sovren/client_spec.rb +28 -0
- data/spec/sovren/competency_spec.rb +26 -0
- data/spec/sovren/contact_information_spec.rb +73 -0
- data/spec/sovren/education_spec.rb +48 -0
- data/spec/sovren/employment_spec.rb +45 -0
- data/spec/sovren/language_spec.rb +27 -0
- data/spec/sovren/military_spec.rb +29 -0
- data/spec/sovren/patent_spec.rb +27 -0
- data/spec/sovren/publication_spec.rb +70 -0
- data/spec/sovren/reference_spec.rb +34 -0
- data/spec/sovren/resume_spec.rb +42 -0
- data/spec/sovren_spec.rb +4 -0
- data/spec/spec_helper.rb +17 -0
- data/spec/support/ResumeSample.doc +0 -0
- data/spec/support/_resume.xml +970 -0
- data/spec/support/achievements.xml +5 -0
- data/spec/support/associations.xml +8 -0
- data/spec/support/certifications.xml +23 -0
- data/spec/support/competencies.xml +353 -0
- data/spec/support/competencies_sparse.xml +3 -0
- data/spec/support/contact_information.xml +69 -0
- data/spec/support/contact_information_sparse.xml +10 -0
- data/spec/support/education.xml +81 -0
- data/spec/support/education_sparse.xml +10 -0
- data/spec/support/employment.xml +179 -0
- data/spec/support/employment_sparse.xml +11 -0
- data/spec/support/languages.xml +23 -0
- data/spec/support/military.xml +19 -0
- data/spec/support/patents.xml +14 -0
- data/spec/support/publications.xml +60 -0
- data/spec/support/references.xml +36 -0
- data/spec/support/resume.json +466 -0
- data/spec/support/resume.xml +1072 -0
- data/spec/support/speaking_events.xml +7 -0
- data/spec/vcr/parsed_resume.yml +3695 -0
- metadata +215 -0
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Sovren::Military do
|
4
|
+
use_natural_assertions
|
5
|
+
|
6
|
+
context ".parse" do
|
7
|
+
context "a full resume" do
|
8
|
+
Given(:raw_xml) { File.read(File.expand_path(File.dirname(__FILE__) + '/../support/military.xml')) }
|
9
|
+
Given(:xml) { Nokogiri::XML.parse(raw_xml) }
|
10
|
+
|
11
|
+
When(:result) { Sovren::Military.parse(xml) }
|
12
|
+
|
13
|
+
Then { result.country_served == "US" }
|
14
|
+
Then { result.branch == "Army" }
|
15
|
+
Then { result.rank_achieved == "FIRST LIEUTENANT" }
|
16
|
+
Then { result.recognition_achieved == "Purple Heart" }
|
17
|
+
Then { result.discharge_status == "Honorable" }
|
18
|
+
Then { result.start_date == Date.new(1966,1,1) }
|
19
|
+
Then { result.end_date == Date.new(1967,1,1) }
|
20
|
+
end
|
21
|
+
|
22
|
+
context "no military history" do
|
23
|
+
When(:result) { Sovren::Military.parse(nil) }
|
24
|
+
|
25
|
+
Then { result == Array.new }
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Sovren::Patent do
|
4
|
+
use_natural_assertions
|
5
|
+
|
6
|
+
context ".parse" do
|
7
|
+
context "a full resume" do
|
8
|
+
Given(:raw_xml) { File.read(File.expand_path(File.dirname(__FILE__) + '/../support/patents.xml')) }
|
9
|
+
Given(:xml) { Nokogiri::XML.parse(raw_xml) }
|
10
|
+
|
11
|
+
When(:result) { Sovren::Patent.parse(xml) }
|
12
|
+
|
13
|
+
Then { result.length == 1 }
|
14
|
+
Then { result.first.title == "Method and Apparatus for Removing Corn Kernels From Dentures" }
|
15
|
+
Then { result.first.description == "George Doam and Neil Griffin, inventors, \"Method and Apparatus for Removing Corn Kernels From Dentures\", Patent 1,064,098." }
|
16
|
+
Then { result.first.inventor_name == "George Doam and Neil Griffin" }
|
17
|
+
Then { result.first.patent_id == "1064098" }
|
18
|
+
end
|
19
|
+
|
20
|
+
context "no patents" do
|
21
|
+
When(:result) { Sovren::Patent.parse(nil) }
|
22
|
+
|
23
|
+
Then { result == Array.new }
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
@@ -0,0 +1,70 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Sovren::Publication do
|
4
|
+
use_natural_assertions
|
5
|
+
|
6
|
+
When(:publication) { Sovren::Publication.new }
|
7
|
+
|
8
|
+
Then { publication.should respond_to :type }
|
9
|
+
Then { publication.should respond_to :title }
|
10
|
+
Then { publication.should respond_to :role }
|
11
|
+
Then { publication.should respond_to :publication_date }
|
12
|
+
Then { publication.should respond_to :journal_or_serial_name }
|
13
|
+
Then { publication.should respond_to :volume }
|
14
|
+
Then { publication.should respond_to :issue }
|
15
|
+
Then { publication.should respond_to :page_number }
|
16
|
+
Then { publication.should respond_to :abstract }
|
17
|
+
Then { publication.should respond_to :copyright_date }
|
18
|
+
Then { publication.should respond_to :copyright_text }
|
19
|
+
Then { publication.should respond_to :edition }
|
20
|
+
Then { publication.should respond_to :isbn }
|
21
|
+
Then { publication.should respond_to :publisher_name }
|
22
|
+
Then { publication.should respond_to :publisher_location }
|
23
|
+
Then { publication.should respond_to :event_name }
|
24
|
+
Then { publication.should respond_to :conference_date }
|
25
|
+
Then { publication.should respond_to :conference_location }
|
26
|
+
Then { publication.should respond_to :comments }
|
27
|
+
Then { publication.should respond_to :number_of_pages }
|
28
|
+
|
29
|
+
context ".parse" do
|
30
|
+
context "a full resume" do
|
31
|
+
Given(:raw_xml) { File.read(File.expand_path(File.dirname(__FILE__) + '/../support/publications.xml')) }
|
32
|
+
Given(:xml) { Nokogiri::XML.parse(raw_xml) }
|
33
|
+
|
34
|
+
When(:result) { Sovren::Publication.parse(xml) }
|
35
|
+
|
36
|
+
Then { result.length == 4 }
|
37
|
+
Then { result[0].type == "Article" }
|
38
|
+
Then { result[1].type == "Book" }
|
39
|
+
Then { result[2].type == "ConferencePaper" }
|
40
|
+
Then { result[3].type == "Thesis" }
|
41
|
+
|
42
|
+
Then { result.first.title == "Designing Interfaces for Youth Services Information Management" }
|
43
|
+
Then { result.first.role == "author" }
|
44
|
+
Then { result.first.publication_date == "1996-06" }
|
45
|
+
Then { result.first.journal_or_serial_name == "1996 Human-Computer Interaction Laboratory Video Reports" }
|
46
|
+
Then { result.first.volume == "2" }
|
47
|
+
Then { result.first.issue == "3" }
|
48
|
+
Then { result.first.page_number == "319-329" }
|
49
|
+
Then { result[1].abstract == "A very readable introduction to XML." }
|
50
|
+
Then { result[1].copyright_date == "2001" }
|
51
|
+
Then { result[1].copyright_text == "Copyright 2nd edition" }
|
52
|
+
Then { result[1].edition == "2nd Edition" }
|
53
|
+
Then { result[1].isbn == "0596000222" }
|
54
|
+
Then { result[1].publisher_name == "O'Malley Associates" }
|
55
|
+
Then { result[1].publisher_location == "Garden City, NY, US" }
|
56
|
+
Then { result[2].event_name == "SHRM 55th Annual Conference and Exposition" }
|
57
|
+
Then { result[2].conference_date == Date.new(2003,06,10) }
|
58
|
+
Then { result[2].conference_location == "Orlando, FL" }
|
59
|
+
Then { result[3].comments == "Ph.D., University of California" }
|
60
|
+
Then { result[3].number_of_pages == 158 }
|
61
|
+
end
|
62
|
+
|
63
|
+
context "no publications" do
|
64
|
+
When(:result) { Sovren::Publication.parse(nil) }
|
65
|
+
|
66
|
+
Then { result == Array.new }
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Sovren::Reference do
|
4
|
+
use_natural_assertions
|
5
|
+
|
6
|
+
When(:reference) { Sovren::Reference.new }
|
7
|
+
|
8
|
+
Then { reference.should respond_to :name }
|
9
|
+
Then { reference.should respond_to :title }
|
10
|
+
Then { reference.should respond_to :email }
|
11
|
+
Then { reference.should respond_to :phone_number }
|
12
|
+
|
13
|
+
context ".parse" do
|
14
|
+
context "a full resume" do
|
15
|
+
Given(:raw_xml) { File.read(File.expand_path(File.dirname(__FILE__) + '/../support/references.xml')) }
|
16
|
+
Given(:xml) { Nokogiri::XML.parse(raw_xml) }
|
17
|
+
|
18
|
+
When(:result) { Sovren::Reference.parse(xml) }
|
19
|
+
|
20
|
+
Then { result.length == 1 }
|
21
|
+
Then { result.first.name == "Babs Smith" }
|
22
|
+
Then { result.first.title == "Manager" }
|
23
|
+
Then { result.first.email == "babs@somers.com" }
|
24
|
+
Then { result.first.phone_number == "845-876-0988" }
|
25
|
+
end
|
26
|
+
|
27
|
+
context "no references" do
|
28
|
+
When(:result) { Sovren::Reference.parse(nil) }
|
29
|
+
|
30
|
+
Then { result == Array.new }
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Sovren::Resume do
|
4
|
+
Given(:resume) { Sovren::Resume.new }
|
5
|
+
|
6
|
+
Then { resume.should respond_to :executive_summary }
|
7
|
+
Then { resume.should respond_to :objective }
|
8
|
+
Then { resume.should respond_to :contact_information }
|
9
|
+
Then { resume.should respond_to :education_history }
|
10
|
+
Then { resume.should respond_to :employment_history }
|
11
|
+
Then { resume.should respond_to :competencies }
|
12
|
+
Then { resume.should respond_to :achievements }
|
13
|
+
Then { resume.should respond_to :associations }
|
14
|
+
Then { resume.should respond_to :certifications }
|
15
|
+
Then { resume.should respond_to :languages }
|
16
|
+
Then { resume.should respond_to :military_history }
|
17
|
+
Then { resume.should respond_to :patent_history }
|
18
|
+
Then { resume.should respond_to :publication_history }
|
19
|
+
Then { resume.should respond_to :references }
|
20
|
+
|
21
|
+
context '.parse' do
|
22
|
+
use_natural_assertions
|
23
|
+
Given(:raw_xml) { File.read(File.expand_path(File.dirname(__FILE__) + '/../support/resume.xml')) }
|
24
|
+
|
25
|
+
When(:result) { Sovren::Resume.parse(raw_xml) }
|
26
|
+
|
27
|
+
Then { result.executive_summary.length == 119 }
|
28
|
+
Then { result.objective.length == 84 }
|
29
|
+
Then { result.contact_information.should_not be_nil }
|
30
|
+
Then { result.education_history.length == 2 }
|
31
|
+
Then { result.employment_history.length == 3 }
|
32
|
+
Then { result.competencies.length == 54 }
|
33
|
+
Then { result.achievements.length == 1 }
|
34
|
+
Then { result.associations.length == 1 }
|
35
|
+
Then { result.certifications.length == 4 }
|
36
|
+
Then { result.languages.length == 3 }
|
37
|
+
Then { result.military_history.class == Sovren::Military }
|
38
|
+
Then { result.patent_history.length == 1 }
|
39
|
+
Then { result.publication_history.length == 4 }
|
40
|
+
Then { result.references.length == 1 }
|
41
|
+
end
|
42
|
+
end
|
data/spec/sovren_spec.rb
ADDED
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'bundler/setup'
|
3
|
+
require 'rspec/given'
|
4
|
+
require 'httpclient'
|
5
|
+
require 'vcr'
|
6
|
+
require 'sovren'
|
7
|
+
require 'webmock'
|
8
|
+
|
9
|
+
VCR.configure do |c|
|
10
|
+
c.cassette_library_dir = 'spec/vcr'
|
11
|
+
c.hook_into :webmock
|
12
|
+
c.configure_rspec_metadata!
|
13
|
+
end
|
14
|
+
|
15
|
+
RSpec.configure do |config|
|
16
|
+
config.treat_symbols_as_metadata_keys_with_true_values = true
|
17
|
+
end
|
Binary file
|
@@ -0,0 +1,970 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<Resume xmlns="http://ns.hr-xml.org/2006-02-28" xmlns:sov="http://sovren.com/hr-xml/2006-02-28" xml:lang="en">
|
3
|
+
<ResumeId>
|
4
|
+
<IdValue/>
|
5
|
+
</ResumeId>
|
6
|
+
<StructuredXMLResume>
|
7
|
+
<ContactInfo>
|
8
|
+
<PersonName>
|
9
|
+
<FormattedName>John F. Adams, III</FormattedName>
|
10
|
+
<GivenName>John</GivenName>
|
11
|
+
<MiddleName>F.</MiddleName>
|
12
|
+
<FamilyName>Adams</FamilyName>
|
13
|
+
<Affix type="generation">III</Affix>
|
14
|
+
</PersonName>
|
15
|
+
<ContactMethod>
|
16
|
+
<WhenAvailable>anytime</WhenAvailable>
|
17
|
+
<PostalAddress type="undefined">
|
18
|
+
<CountryCode>US</CountryCode>
|
19
|
+
<PostalCode>92075</PostalCode>
|
20
|
+
<Region>CA</Region>
|
21
|
+
<Municipality>Solana Beach</Municipality>
|
22
|
+
<DeliveryAddress>
|
23
|
+
<AddressLine>930 Via Mil Cumbres Unit 119</AddressLine>
|
24
|
+
</DeliveryAddress>
|
25
|
+
</PostalAddress>
|
26
|
+
</ContactMethod>
|
27
|
+
<ContactMethod>
|
28
|
+
<Use>personal</Use>
|
29
|
+
<Location>onPerson</Location>
|
30
|
+
<WhenAvailable>anytime</WhenAvailable>
|
31
|
+
<Mobile>
|
32
|
+
<FormattedNumber>(858) 555-1001</FormattedNumber>
|
33
|
+
</Mobile>
|
34
|
+
</ContactMethod>
|
35
|
+
<ContactMethod>
|
36
|
+
<Telephone>
|
37
|
+
<FormattedNumber>(858) 555-1000</FormattedNumber>
|
38
|
+
</Telephone>
|
39
|
+
</ContactMethod>
|
40
|
+
<ContactMethod>
|
41
|
+
<WhenAvailable>anytime</WhenAvailable>
|
42
|
+
<Fax>
|
43
|
+
<FormattedNumber>(858) 555-1002</FormattedNumber>
|
44
|
+
</Fax>
|
45
|
+
</ContactMethod>
|
46
|
+
<ContactMethod>
|
47
|
+
<Use>personal</Use>
|
48
|
+
<Location>onPerson</Location>
|
49
|
+
<WhenAvailable>anytime</WhenAvailable>
|
50
|
+
<InternetEmailAddress>johnadams@yamoo.com</InternetEmailAddress>
|
51
|
+
</ContactMethod>
|
52
|
+
<ContactMethod>
|
53
|
+
<Use>businessDirect</Use>
|
54
|
+
<Location>home</Location>
|
55
|
+
<WhenAvailable>anytime</WhenAvailable>
|
56
|
+
<InternetWebAddress>http://www.linkedin.com/in/johnadams</InternetWebAddress>
|
57
|
+
</ContactMethod>
|
58
|
+
</ContactInfo>
|
59
|
+
<ExecutiveSummary>Development manager with 10 years of hands-on experience, specializing in Internet marketing and data-driven web sites.</ExecutiveSummary>
|
60
|
+
<Objective>HRIS Applications development manager for a large ATS vendor or ASP in the HR space.</Objective>
|
61
|
+
<EmploymentHistory>
|
62
|
+
<EmployerOrg>
|
63
|
+
<EmployerOrgName>Technical Difference</EmployerOrgName>
|
64
|
+
<PositionHistory positionType="directHire" currentEmployer="true">
|
65
|
+
<Title>Director of Web Applications Development</Title>
|
66
|
+
<OrgName>
|
67
|
+
<OrganizationName>Technical Difference</OrganizationName>
|
68
|
+
</OrgName>
|
69
|
+
<OrgInfo>
|
70
|
+
<PositionLocation type="undefined">
|
71
|
+
<CountryCode>US</CountryCode>
|
72
|
+
<Region>CA</Region>
|
73
|
+
<Municipality>Encinitas</Municipality>
|
74
|
+
</PositionLocation>
|
75
|
+
</OrgInfo>
|
76
|
+
<Description>Technical Difference, Encinitas, CA October 2004 - Current
|
77
|
+
Director of Web Applications Development
|
78
|
+
• Managed email marketing campaigns to attract new sales and retain customers.
|
79
|
+
• Add new technology to website to manage leads, increase response time and provide pertinent information to new customers.
|
80
|
+
• Convert current HRIS from VB to ASP to create complete web based solution.
|
81
|
+
• Added custom encryption coding to SQL and ASP web applications.
|
82
|
+
• Designed custom applicant tracking ASP program for large client.
|
83
|
+
• Designed customer support application to receive requests/files from clients, divert to appropriate support staff, and track issue from open to resolve.
|
84
|
+
• Supervised 15 employees.</Description>
|
85
|
+
<StartDate>
|
86
|
+
<AnyDate>2004-10-01</AnyDate>
|
87
|
+
</StartDate>
|
88
|
+
<EndDate>
|
89
|
+
<AnyDate>2013-04-29</AnyDate>
|
90
|
+
</EndDate>
|
91
|
+
<JobCategory>
|
92
|
+
<TaxonomyName>DEPARTMENT</TaxonomyName>
|
93
|
+
<CategoryCode>196</CategoryCode>
|
94
|
+
</JobCategory>
|
95
|
+
<JobCategory>
|
96
|
+
<TaxonomyName>JOBCATEGORY</TaxonomyName>
|
97
|
+
<CategoryCode>Executive (VP, Dept Head)</CategoryCode>
|
98
|
+
</JobCategory>
|
99
|
+
<UserArea>
|
100
|
+
<sov:PositionHistoryUserArea>
|
101
|
+
<sov:Id>POS-1</sov:Id>
|
102
|
+
<sov:CompanyNameProbability>27</sov:CompanyNameProbability>
|
103
|
+
<sov:PositionTitleProbability>34</sov:PositionTitleProbability>
|
104
|
+
<sov:OffsetOfFarthestDataFound>98</sov:OffsetOfFarthestDataFound>
|
105
|
+
<sov:NumberOfEmployeesSupervised>15</sov:NumberOfEmployeesSupervised>
|
106
|
+
</sov:PositionHistoryUserArea>
|
107
|
+
</UserArea>
|
108
|
+
</PositionHistory>
|
109
|
+
</EmployerOrg>
|
110
|
+
<EmployerOrg>
|
111
|
+
<EmployerOrgName>Convergence Inc. LLC</EmployerOrgName>
|
112
|
+
<PositionHistory positionType="directHire">
|
113
|
+
<Title>Senior Web Developer/DBA</Title>
|
114
|
+
<OrgName>
|
115
|
+
<OrganizationName>Convergence Inc. LLC</OrganizationName>
|
116
|
+
</OrgName>
|
117
|
+
<OrgInfo>
|
118
|
+
<PositionLocation type="undefined">
|
119
|
+
<CountryCode>US</CountryCode>
|
120
|
+
<Region>CA</Region>
|
121
|
+
<Municipality>Del Mar</Municipality>
|
122
|
+
</PositionLocation>
|
123
|
+
</OrgInfo>
|
124
|
+
<Description>Convergence Inc. LLC, Del Mar, CA March 2003 - December 2004
|
125
|
+
Senior Web Developer/DBA
|
126
|
+
• Developed special package sales on website for the Mighty Ducks of Anaheim.
|
127
|
+
• Managed email marketing campaigns for Mighty Ducks of Anaheim to generate interest in season passes, group sales, and special promotions.
|
128
|
+
• Developed event registration sites for Mazda, Mercedes, Volvo, Cadillac Mitsubishi.
|
129
|
+
• Developed web-based email tracking system for bulk mail sends to track all consumer actions upon opening an email sent from the system.
|
130
|
+
• Developed analytical reporting tool for clients to access results of bulk mail sends.
|
131
|
+
• Set up/deployed bulk mail campaigns for various companies through Exact Target.
|
132
|
+
• Consulted with clients about bulk mail results to help find their target audience.
|
133
|
+
• Helped customers to build their email database through various bulk mail promotions.
|
134
|
+
• Developed web-based contest applications for various seasonal marketing campaigns that included Email Marketing, Web Registration, Email Tracking, and Contest Reporting for the State of Connecticut Tourism Department.
|
135
|
+
• Developed Meeting Planner marketing tool for customers to plan/book meetings at any of over 200 hotels in Connecticut for the Connecticut Tourism Department.
|
136
|
+
• Primary contact for Automotive Ride Drive Marketing Campaigns.
|
137
|
+
• DBA SQL Server 7 2000.</Description>
|
138
|
+
<StartDate>
|
139
|
+
<AnyDate>2003-03-01</AnyDate>
|
140
|
+
</StartDate>
|
141
|
+
<EndDate>
|
142
|
+
<AnyDate>2004-12-01</AnyDate>
|
143
|
+
</EndDate>
|
144
|
+
<JobCategory>
|
145
|
+
<TaxonomyName>DEPARTMENT</TaxonomyName>
|
146
|
+
<CategoryCode>193</CategoryCode>
|
147
|
+
</JobCategory>
|
148
|
+
<JobCategory>
|
149
|
+
<TaxonomyName>JOBCATEGORY</TaxonomyName>
|
150
|
+
<CategoryCode>Experienced (non-manager)</CategoryCode>
|
151
|
+
</JobCategory>
|
152
|
+
<UserArea>
|
153
|
+
<sov:PositionHistoryUserArea>
|
154
|
+
<sov:Id>POS-2</sov:Id>
|
155
|
+
<sov:CompanyNameProbability>28</sov:CompanyNameProbability>
|
156
|
+
<sov:PositionTitleProbability>28</sov:PositionTitleProbability>
|
157
|
+
<sov:OffsetOfFarthestDataFound>84</sov:OffsetOfFarthestDataFound>
|
158
|
+
</sov:PositionHistoryUserArea>
|
159
|
+
</UserArea>
|
160
|
+
</PositionHistory>
|
161
|
+
</EmployerOrg>
|
162
|
+
<EmployerOrg>
|
163
|
+
<EmployerOrgName>Avalon Digital Marketing Systems, Inc</EmployerOrgName>
|
164
|
+
<PositionHistory positionType="contract">
|
165
|
+
<Title>Contractor - Web Development</Title>
|
166
|
+
<OrgName>
|
167
|
+
<OrganizationName>Avalon Digital Marketing Systems, Inc</OrganizationName>
|
168
|
+
</OrgName>
|
169
|
+
<Description>Avalon Digital Marketing Systems, Inc. May 2002 - March 2003
|
170
|
+
Contractor - Web Development
|
171
|
+
• Designed developed web-based gift fulfillment system for use by Mazda and their affiliates to intake consumer information from bulk mail sends, accept orders from consumers who completed their incentive program, and to report on all activity.
|
172
|
+
• Designed developed web-based event registration systems for Mercedes and Volvo including comprehensive reporting on system activity.
|
173
|
+
• Primary contact for Automotive Ride Drive Marketing Campaigns.</Description>
|
174
|
+
<StartDate>
|
175
|
+
<AnyDate>2002-05-01</AnyDate>
|
176
|
+
</StartDate>
|
177
|
+
<EndDate>
|
178
|
+
<AnyDate>2003-03-01</AnyDate>
|
179
|
+
</EndDate>
|
180
|
+
<JobCategory>
|
181
|
+
<TaxonomyName>DEPARTMENT</TaxonomyName>
|
182
|
+
<CategoryCode>460</CategoryCode>
|
183
|
+
</JobCategory>
|
184
|
+
<JobCategory>
|
185
|
+
<TaxonomyName>JOBCATEGORY</TaxonomyName>
|
186
|
+
<CategoryCode>Experienced (non-manager)</CategoryCode>
|
187
|
+
</JobCategory>
|
188
|
+
<UserArea>
|
189
|
+
<sov:PositionHistoryUserArea>
|
190
|
+
<sov:Id>POS-3</sov:Id>
|
191
|
+
<sov:CompanyNameProbability>19</sov:CompanyNameProbability>
|
192
|
+
<sov:PositionTitleProbability>22</sov:PositionTitleProbability>
|
193
|
+
<sov:OffsetOfFarthestDataFound>88</sov:OffsetOfFarthestDataFound>
|
194
|
+
</sov:PositionHistoryUserArea>
|
195
|
+
</UserArea>
|
196
|
+
</PositionHistory>
|
197
|
+
</EmployerOrg>
|
198
|
+
<EmployerOrg>
|
199
|
+
<EmployerOrgName>Avalon Digital Marketing Systems, Inc</EmployerOrgName>
|
200
|
+
<PositionHistory positionType="directHire">
|
201
|
+
<Title>Web Developer/Junior DBA</Title>
|
202
|
+
<OrgName>
|
203
|
+
<OrganizationName>European Division</OrganizationName>
|
204
|
+
</OrgName>
|
205
|
+
<Description>Avalon Digital Marketing Systems, Inc. (European Division) May 2000 - April 2002
|
206
|
+
Web Developer/Junior DBA
|
207
|
+
• Designed and developed reporting system for use by 200+ customers to retrieve analytical analysis of their bulk mail campaigns.
|
208
|
+
• Designed developed sales reporting tool to analyze and present information about industry and client specific productivity of email marketing campaigns.
|
209
|
+
• Engineered various email campaigns to provide comprehensive tracking.
|
210
|
+
• Primary contact for Automotive Ride Drive Marketing Campaigns.
|
211
|
+
• Designed developed time keeping/project tracking system for use by all employees.
|
212
|
+
• Junior DBA SQL Server 7/2000.
|
213
|
+
|
214
|
+
Technical:</Description>
|
215
|
+
<StartDate>
|
216
|
+
<AnyDate>2000-05-01</AnyDate>
|
217
|
+
</StartDate>
|
218
|
+
<EndDate>
|
219
|
+
<AnyDate>2002-04-01</AnyDate>
|
220
|
+
</EndDate>
|
221
|
+
<JobCategory>
|
222
|
+
<TaxonomyName>DEPARTMENT</TaxonomyName>
|
223
|
+
<CategoryCode>193</CategoryCode>
|
224
|
+
</JobCategory>
|
225
|
+
<JobCategory>
|
226
|
+
<TaxonomyName>JOBCATEGORY</TaxonomyName>
|
227
|
+
<CategoryCode>Entry Level</CategoryCode>
|
228
|
+
</JobCategory>
|
229
|
+
<UserArea>
|
230
|
+
<sov:PositionHistoryUserArea>
|
231
|
+
<sov:Id>POS-4</sov:Id>
|
232
|
+
<sov:CompanyNameProbability>19</sov:CompanyNameProbability>
|
233
|
+
<sov:PositionTitleProbability>22</sov:PositionTitleProbability>
|
234
|
+
<sov:OffsetOfFarthestDataFound>104</sov:OffsetOfFarthestDataFound>
|
235
|
+
</sov:PositionHistoryUserArea>
|
236
|
+
</UserArea>
|
237
|
+
</PositionHistory>
|
238
|
+
</EmployerOrg>
|
239
|
+
</EmploymentHistory>
|
240
|
+
<EducationHistory>
|
241
|
+
<SchoolOrInstitution schoolType="university">
|
242
|
+
<School>
|
243
|
+
<SchoolName>California State University</SchoolName>
|
244
|
+
</School>
|
245
|
+
<PostalAddress type="undefined">
|
246
|
+
<CountryCode>US</CountryCode>
|
247
|
+
<Region>CA</Region>
|
248
|
+
<Municipality>Chico</Municipality>
|
249
|
+
</PostalAddress>
|
250
|
+
<Degree degreeType="bachelors">
|
251
|
+
<DegreeName>B.S.</DegreeName>
|
252
|
+
<DegreeDate>
|
253
|
+
<AnyDate>1999-01-01</AnyDate>
|
254
|
+
</DegreeDate>
|
255
|
+
<DegreeMajor>
|
256
|
+
<Name>Business Administration</Name>
|
257
|
+
</DegreeMajor>
|
258
|
+
<DegreeMinor>
|
259
|
+
<Name>American History</Name>
|
260
|
+
</DegreeMinor>
|
261
|
+
<DegreeMeasure>
|
262
|
+
<EducationalMeasure>
|
263
|
+
<MeasureSystem>GPA</MeasureSystem>
|
264
|
+
<MeasureValue>
|
265
|
+
<StringValue>3.66</StringValue>
|
266
|
+
</MeasureValue>
|
267
|
+
<LowestPossibleValue>
|
268
|
+
<StringValue>0</StringValue>
|
269
|
+
</LowestPossibleValue>
|
270
|
+
<HighestPossibleValue>
|
271
|
+
<StringValue>4.0</StringValue>
|
272
|
+
</HighestPossibleValue>
|
273
|
+
</EducationalMeasure>
|
274
|
+
</DegreeMeasure>
|
275
|
+
<DatesOfAttendance>
|
276
|
+
<StartDate>
|
277
|
+
<AnyDate>1996-01-01</AnyDate>
|
278
|
+
</StartDate>
|
279
|
+
<EndDate>
|
280
|
+
<AnyDate>1999-01-01</AnyDate>
|
281
|
+
</EndDate>
|
282
|
+
</DatesOfAttendance>
|
283
|
+
<Comments>California State University, Chico, CA 1996 - 1999
|
284
|
+
B.S. Business Administration
|
285
|
+
MINOR: American History
|
286
|
+
GPA: 3.66/4.0</Comments>
|
287
|
+
<UserArea>
|
288
|
+
<sov:DegreeUserArea>
|
289
|
+
<sov:Id>DEG-1</sov:Id>
|
290
|
+
<sov:NormalizedGPA>0.915</sov:NormalizedGPA>
|
291
|
+
</sov:DegreeUserArea>
|
292
|
+
</UserArea>
|
293
|
+
</Degree>
|
294
|
+
</SchoolOrInstitution>
|
295
|
+
<SchoolOrInstitution schoolType="college">
|
296
|
+
<School>
|
297
|
+
<SchoolName>Butte College</SchoolName>
|
298
|
+
</School>
|
299
|
+
<Degree degreeType="associates">
|
300
|
+
<DegreeName>A.A.</DegreeName>
|
301
|
+
<DegreeDate>
|
302
|
+
<AnyDate>1996-01-01</AnyDate>
|
303
|
+
</DegreeDate>
|
304
|
+
<DatesOfAttendance>
|
305
|
+
<StartDate>
|
306
|
+
<AnyDate>1995-01-01</AnyDate>
|
307
|
+
</StartDate>
|
308
|
+
<EndDate>
|
309
|
+
<AnyDate>1996-01-01</AnyDate>
|
310
|
+
</EndDate>
|
311
|
+
</DatesOfAttendance>
|
312
|
+
<Comments>Butte College, A.A. 1995 - 1996</Comments>
|
313
|
+
<UserArea>
|
314
|
+
<sov:DegreeUserArea>
|
315
|
+
<sov:Id>DEG-2</sov:Id>
|
316
|
+
</sov:DegreeUserArea>
|
317
|
+
</UserArea>
|
318
|
+
</Degree>
|
319
|
+
</SchoolOrInstitution>
|
320
|
+
</EducationHistory>
|
321
|
+
<LicensesAndCertifications>
|
322
|
+
<LicenseOrCertification>
|
323
|
+
<Name>Watergate Master Plumber, Lic. #2445</Name>
|
324
|
+
<Description>license; found in LICENSES</Description>
|
325
|
+
</LicenseOrCertification>
|
326
|
+
<LicenseOrCertification>
|
327
|
+
<Name>Project Management Professional</Name>
|
328
|
+
<Description>certification; matched to list</Description>
|
329
|
+
</LicenseOrCertification>
|
330
|
+
<LicenseOrCertification>
|
331
|
+
<Name>Sun Secure Global Desktop (Tarantella) System Administration</Name>
|
332
|
+
<Description>certification</Description>
|
333
|
+
<EffectiveDate>
|
334
|
+
<FirstIssuedDate>
|
335
|
+
<AnyDate>2001-09-01</AnyDate>
|
336
|
+
</FirstIssuedDate>
|
337
|
+
</EffectiveDate>
|
338
|
+
</LicenseOrCertification>
|
339
|
+
<LicenseOrCertification>
|
340
|
+
<Name>• Watergate Master Plumber, Lic. #2445</Name>
|
341
|
+
<Description>certification</Description>
|
342
|
+
</LicenseOrCertification>
|
343
|
+
</LicensesAndCertifications>
|
344
|
+
<Qualifications>
|
345
|
+
<QualificationSummary/>
|
346
|
+
<Competency name="MARKETING">
|
347
|
+
<CompetencyId id="021241"/>
|
348
|
+
<TaxonomyId id="249" idOwner="14" description="Sovren"/>
|
349
|
+
<CompetencyEvidence name="MARKETING" typeDescription="Found in SUMMARY; WORK HISTORY; POS-1; POS-2; POS-3; POS-4" typeId="021241" lastUsed="2013-04-29">
|
350
|
+
<NumericValue description="Total Months">158</NumericValue>
|
351
|
+
</CompetencyEvidence>
|
352
|
+
</Competency>
|
353
|
+
<Competency name="SALES">
|
354
|
+
<CompetencyId id="007359"/>
|
355
|
+
<TaxonomyId id="105" idOwner="20" description="Sovren"/>
|
356
|
+
<CompetencyEvidence name="SALES" typeDescription="Found in WORK HISTORY; POS-1; POS-2; POS-4" typeId="007359" lastUsed="2013-04-29">
|
357
|
+
<NumericValue description="Total Months">149</NumericValue>
|
358
|
+
</CompetencyEvidence>
|
359
|
+
</Competency>
|
360
|
+
<Competency name="SQL">
|
361
|
+
<CompetencyId id="008481"/>
|
362
|
+
<TaxonomyId id="193" idOwner="10" description="Sovren"/>
|
363
|
+
<CompetencyEvidence name="SQL" typeDescription="Found in TRAINING; WORK HISTORY; POS-1; POS-2; POS-4" typeId="008481" lastUsed="2013-04-29">
|
364
|
+
<NumericValue description="Total Months">149</NumericValue>
|
365
|
+
</CompetencyEvidence>
|
366
|
+
</Competency>
|
367
|
+
<Competency name="WEB BASED">
|
368
|
+
<CompetencyId id="024402"/>
|
369
|
+
<TaxonomyId id="196" idOwner="10" description="Sovren"/>
|
370
|
+
<CompetencyEvidence name="WEB BASED" typeDescription="Found in WORK HISTORY; POS-1; POS-2; POS-3" typeId="024402" lastUsed="2013-04-29">
|
371
|
+
<NumericValue description="Total Months">136</NumericValue>
|
372
|
+
</CompetencyEvidence>
|
373
|
+
</Competency>
|
374
|
+
<Competency name="CLIENTS">
|
375
|
+
<CompetencyId id="030017"/>
|
376
|
+
<TaxonomyId id="105" idOwner="20" description="Sovren"/>
|
377
|
+
<CompetencyEvidence name="CLIENTS" typeDescription="Found in WORK HISTORY; POS-1; POS-2" typeId="030017" lastUsed="2013-04-29">
|
378
|
+
<NumericValue description="Total Months">125</NumericValue>
|
379
|
+
</CompetencyEvidence>
|
380
|
+
</Competency>
|
381
|
+
<Competency name="APPLICATIONS DEVELOPMENT">
|
382
|
+
<CompetencyId id="021803"/>
|
383
|
+
<TaxonomyId id="204" idOwner="10" description="Sovren"/>
|
384
|
+
<CompetencyEvidence name="APPLICATIONS DEVELOPMENT" typeDescription="Found in WORK HISTORY; POS-1" typeId="021803" lastUsed="2013-04-29">
|
385
|
+
<NumericValue description="Total Months">103</NumericValue>
|
386
|
+
</CompetencyEvidence>
|
387
|
+
</Competency>
|
388
|
+
<Competency name="ASP">
|
389
|
+
<CompetencyId id="004324"/>
|
390
|
+
<TaxonomyId id="196" idOwner="10" description="Sovren"/>
|
391
|
+
<CompetencyEvidence name="ASP" typeDescription="Found in WORK HISTORY; POS-1" typeId="004324" lastUsed="2013-04-29">
|
392
|
+
<NumericValue description="Total Months">103</NumericValue>
|
393
|
+
</CompetencyEvidence>
|
394
|
+
</Competency>
|
395
|
+
<Competency name="CODING">
|
396
|
+
<CompetencyId id="013740"/>
|
397
|
+
<TaxonomyId id="412" idOwner="19" description="Sovren"/>
|
398
|
+
<CompetencyEvidence name="CODING" typeDescription="Found in WORK HISTORY; POS-1" typeId="013740" lastUsed="2013-04-29">
|
399
|
+
<NumericValue description="Total Months">103</NumericValue>
|
400
|
+
</CompetencyEvidence>
|
401
|
+
</Competency>
|
402
|
+
<Competency name="CODING">
|
403
|
+
<CompetencyId id="013742"/>
|
404
|
+
<TaxonomyId id="270" idOwner="28" description="Sovren"/>
|
405
|
+
<CompetencyEvidence name="CODING" typeDescription="Found in WORK HISTORY; POS-1" typeId="013742" lastUsed="2013-04-29">
|
406
|
+
<NumericValue description="Total Months">103</NumericValue>
|
407
|
+
</CompetencyEvidence>
|
408
|
+
</Competency>
|
409
|
+
<Competency name="CODING">
|
410
|
+
<CompetencyId id="023716"/>
|
411
|
+
<TaxonomyId id="111" idOwner="1" description="Sovren"/>
|
412
|
+
<CompetencyEvidence name="CODING" typeDescription="Found in WORK HISTORY; POS-1" typeId="023716" lastUsed="2013-04-29">
|
413
|
+
<NumericValue description="Total Months">103</NumericValue>
|
414
|
+
</CompetencyEvidence>
|
415
|
+
</Competency>
|
416
|
+
<Competency name="CODING">
|
417
|
+
<CompetencyId id="023717"/>
|
418
|
+
<TaxonomyId id="421" idOwner="99" description="Sovren"/>
|
419
|
+
<CompetencyEvidence name="CODING" typeDescription="Found in WORK HISTORY; POS-1" typeId="023717" lastUsed="2013-04-29">
|
420
|
+
<NumericValue description="Total Months">103</NumericValue>
|
421
|
+
</CompetencyEvidence>
|
422
|
+
</Competency>
|
423
|
+
<Competency name="CUSTOMER SUPPORT">
|
424
|
+
<CompetencyId id="023486"/>
|
425
|
+
<TaxonomyId id="113" idOwner="1" description="Sovren"/>
|
426
|
+
<CompetencyEvidence name="CUSTOMER SUPPORT" typeDescription="Found in WORK HISTORY; POS-1" typeId="023486" lastUsed="2013-04-29">
|
427
|
+
<NumericValue description="Total Months">103</NumericValue>
|
428
|
+
</CompetencyEvidence>
|
429
|
+
</Competency>
|
430
|
+
<Competency name="CUSTOMER SUPPORT">
|
431
|
+
<CompetencyId id="023487"/>
|
432
|
+
<TaxonomyId id="194" idOwner="10" description="Sovren"/>
|
433
|
+
<CompetencyEvidence name="CUSTOMER SUPPORT" typeDescription="Found in WORK HISTORY; POS-1" typeId="023487" lastUsed="2013-04-29">
|
434
|
+
<NumericValue description="Total Months">103</NumericValue>
|
435
|
+
</CompetencyEvidence>
|
436
|
+
</Competency>
|
437
|
+
<Competency name="CUSTOMER SUPPORT">
|
438
|
+
<CompetencyId id="023488"/>
|
439
|
+
<TaxonomyId id="130" idOwner="46" description="Sovren"/>
|
440
|
+
<CompetencyEvidence name="CUSTOMER SUPPORT" typeDescription="Found in WORK HISTORY; POS-1" typeId="023488" lastUsed="2013-04-29">
|
441
|
+
<NumericValue description="Total Months">103</NumericValue>
|
442
|
+
</CompetencyEvidence>
|
443
|
+
</Competency>
|
444
|
+
<Competency name="ENCRYPTION">
|
445
|
+
<CompetencyId id="026706"/>
|
446
|
+
<TaxonomyId id="338" idOwner="10" description="Sovren"/>
|
447
|
+
<CompetencyEvidence name="ENCRYPTION" typeDescription="Found in WORK HISTORY; POS-1" typeId="026706" lastUsed="2013-04-29">
|
448
|
+
<NumericValue description="Total Months">103</NumericValue>
|
449
|
+
</CompetencyEvidence>
|
450
|
+
</Competency>
|
451
|
+
<Competency name="ENCRYPTION">
|
452
|
+
<CompetencyId id="026707"/>
|
453
|
+
<TaxonomyId id="144" idOwner="5" description="Sovren"/>
|
454
|
+
<CompetencyEvidence name="ENCRYPTION" typeDescription="Found in WORK HISTORY; POS-1" typeId="026707" lastUsed="2013-04-29">
|
455
|
+
<NumericValue description="Total Months">103</NumericValue>
|
456
|
+
</CompetencyEvidence>
|
457
|
+
</Competency>
|
458
|
+
<Competency name="HRIS">
|
459
|
+
<CompetencyId id="027117"/>
|
460
|
+
<TaxonomyId id="195" idOwner="10" description="Sovren"/>
|
461
|
+
<CompetencyEvidence name="HRIS" typeDescription="Found in WORK HISTORY; POS-1" typeId="027117" lastUsed="2013-04-29">
|
462
|
+
<NumericValue description="Total Months">103</NumericValue>
|
463
|
+
</CompetencyEvidence>
|
464
|
+
</Competency>
|
465
|
+
<Competency name="HRIS">
|
466
|
+
<CompetencyId id="027118"/>
|
467
|
+
<TaxonomyId id="259" idOwner="9" description="Sovren"/>
|
468
|
+
<CompetencyEvidence name="HRIS" typeDescription="Found in WORK HISTORY; POS-1" typeId="027118" lastUsed="2013-04-29">
|
469
|
+
<NumericValue description="Total Months">103</NumericValue>
|
470
|
+
</CompetencyEvidence>
|
471
|
+
</Competency>
|
472
|
+
<Competency name="INCREASE">
|
473
|
+
<CompetencyId id="030007"/>
|
474
|
+
<TaxonomyId id="105" idOwner="20" description="Sovren"/>
|
475
|
+
<CompetencyEvidence name="INCREASE" typeDescription="Found in WORK HISTORY; POS-1" typeId="030007" lastUsed="2013-04-29">
|
476
|
+
<NumericValue description="Total Months">103</NumericValue>
|
477
|
+
</CompetencyEvidence>
|
478
|
+
</Competency>
|
479
|
+
<Competency name="LEADS">
|
480
|
+
<CompetencyId id="030009"/>
|
481
|
+
<TaxonomyId id="105" idOwner="20" description="Sovren"/>
|
482
|
+
<CompetencyEvidence name="LEADS" typeDescription="Found in WORK HISTORY; POS-1" typeId="030009" lastUsed="2013-04-29">
|
483
|
+
<NumericValue description="Total Months">103</NumericValue>
|
484
|
+
</CompetencyEvidence>
|
485
|
+
</Competency>
|
486
|
+
<Competency name="NEW SALES">
|
487
|
+
<CompetencyId id="030543"/>
|
488
|
+
<TaxonomyId id="105" idOwner="20" description="Sovren"/>
|
489
|
+
<CompetencyEvidence name="NEW SALES" typeDescription="Found in WORK HISTORY; POS-1" typeId="030543" lastUsed="2013-04-29">
|
490
|
+
<NumericValue description="Total Months">103</NumericValue>
|
491
|
+
</CompetencyEvidence>
|
492
|
+
</Competency>
|
493
|
+
<Competency name="SALES AND">
|
494
|
+
<CompetencyId id="030004"/>
|
495
|
+
<TaxonomyId id="105" idOwner="20" description="Sovren"/>
|
496
|
+
<CompetencyEvidence name="SALES AND" typeDescription="Found in WORK HISTORY; POS-1" typeId="030004" lastUsed="2013-04-29">
|
497
|
+
<NumericValue description="Total Months">103</NumericValue>
|
498
|
+
</CompetencyEvidence>
|
499
|
+
</Competency>
|
500
|
+
<Competency name="AUTOMOTIVE">
|
501
|
+
<CompetencyId id="022139"/>
|
502
|
+
<TaxonomyId id="307" idOwner="5" description="Sovren"/>
|
503
|
+
<CompetencyEvidence name="AUTOMOTIVE" typeDescription="Found in WORK HISTORY; POS-2; POS-3; POS-4" typeId="022139" lastUsed="2004-12-01">
|
504
|
+
<NumericValue description="Total Months">57</NumericValue>
|
505
|
+
</CompetencyEvidence>
|
506
|
+
</Competency>
|
507
|
+
<Competency name="MS SQL SERVER">
|
508
|
+
<CompetencyId id="023733"/>
|
509
|
+
<TaxonomyId id="193" idOwner="10" description="Sovren"/>
|
510
|
+
<CompetencyEvidence name="MS SQL SERVER" typeDescription="Found in TRAINING; WORK HISTORY; POS-2; POS-4" typeId="023733" lastUsed="2004-12-01">
|
511
|
+
<NumericValue description="Total Months">46</NumericValue>
|
512
|
+
</CompetencyEvidence>
|
513
|
+
</Competency>
|
514
|
+
<Competency name="SQL SERVER">
|
515
|
+
<CompetencyId id="008483" idOwner="023733"/>
|
516
|
+
<TaxonomyId id="193" idOwner="10" description="Sovren"/>
|
517
|
+
<CompetencyEvidence name="SQL SERVER" typeDescription="Found in TRAINING; WORK HISTORY; POS-2; POS-4" typeId="008483" lastUsed="2004-12-01">
|
518
|
+
<NumericValue description="Total Months">46</NumericValue>
|
519
|
+
</CompetencyEvidence>
|
520
|
+
</Competency>
|
521
|
+
<Competency name="WEB-BASED">
|
522
|
+
<CompetencyId id="02440201" idOwner="024402"/>
|
523
|
+
<TaxonomyId id="196" idOwner="10" description="Sovren"/>
|
524
|
+
<CompetencyEvidence name="WEB-BASED" typeDescription="Found in WORK HISTORY; POS-2; POS-3" typeId="02440201" lastUsed="2004-12-01">
|
525
|
+
<NumericValue description="Total Months">33</NumericValue>
|
526
|
+
</CompetencyEvidence>
|
527
|
+
</Competency>
|
528
|
+
<Competency name="DEVELOPED SALES">
|
529
|
+
<CompetencyId id="030380"/>
|
530
|
+
<TaxonomyId id="105" idOwner="20" description="Sovren"/>
|
531
|
+
<CompetencyEvidence name="DEVELOPED SALES" typeDescription="Found in WORK HISTORY; POS-4" typeId="030380" lastUsed="2002-04-01">
|
532
|
+
<NumericValue description="Total Months">24</NumericValue>
|
533
|
+
</CompetencyEvidence>
|
534
|
+
</Competency>
|
535
|
+
<Competency name="DATABASE">
|
536
|
+
<CompetencyId id="015022"/>
|
537
|
+
<TaxonomyId id="228" idOwner="0" description="Sovren"/>
|
538
|
+
<CompetencyEvidence name="DATABASE" typeDescription="Found in WORK HISTORY; POS-2" typeId="015022" lastUsed="2004-12-01">
|
539
|
+
<NumericValue description="Total Months">22</NumericValue>
|
540
|
+
</CompetencyEvidence>
|
541
|
+
</Competency>
|
542
|
+
<Competency name="DATABASE">
|
543
|
+
<CompetencyId id="022486"/>
|
544
|
+
<TaxonomyId id="201" idOwner="10" description="Sovren"/>
|
545
|
+
<CompetencyEvidence name="DATABASE" typeDescription="Found in WORK HISTORY; POS-2" typeId="022486" lastUsed="2004-12-01">
|
546
|
+
<NumericValue description="Total Months">22</NumericValue>
|
547
|
+
</CompetencyEvidence>
|
548
|
+
</Competency>
|
549
|
+
<Competency name="FULFILLMENT">
|
550
|
+
<CompetencyId id="018024"/>
|
551
|
+
<TaxonomyId id="460" idOwner="97" description="Sovren"/>
|
552
|
+
<CompetencyEvidence name="FULFILLMENT" typeDescription="Found in WORK HISTORY; POS-3" typeId="018024" lastUsed="2003-03-01">
|
553
|
+
<NumericValue description="Total Months">11</NumericValue>
|
554
|
+
</CompetencyEvidence>
|
555
|
+
</Competency>
|
556
|
+
<Competency name="SUN">
|
557
|
+
<CompetencyId id="008895"/>
|
558
|
+
<TaxonomyId id="203" idOwner="10" description="Sovren"/>
|
559
|
+
<CompetencyEvidence name="SUN" typeDescription="Found in CERTIFICATIONS; LICENSES" typeId="008895" lastUsed="2001-09-01">
|
560
|
+
<NumericValue description="Total Months">6</NumericValue>
|
561
|
+
</CompetencyEvidence>
|
562
|
+
</Competency>
|
563
|
+
<Competency name="SYSTEM ADMINISTRATION">
|
564
|
+
<CompetencyId id="009077" idOwner="009105"/>
|
565
|
+
<TaxonomyId id="198" idOwner="10" description="Sovren"/>
|
566
|
+
<CompetencyEvidence name="SYSTEM ADMINISTRATION" typeDescription="Found in CERTIFICATIONS; LICENSES" typeId="009077" lastUsed="2001-09-01">
|
567
|
+
<NumericValue description="Total Months">6</NumericValue>
|
568
|
+
</CompetencyEvidence>
|
569
|
+
</Competency>
|
570
|
+
<Competency name="SYSTEMS ADMINISTRATION">
|
571
|
+
<CompetencyId id="009105"/>
|
572
|
+
<TaxonomyId id="198" idOwner="10" description="Sovren"/>
|
573
|
+
<CompetencyEvidence name="SYSTEMS ADMINISTRATION" typeDescription="Found in CERTIFICATIONS; LICENSES" typeId="009105" lastUsed="2001-09-01">
|
574
|
+
<NumericValue description="Total Months">6</NumericValue>
|
575
|
+
</CompetencyEvidence>
|
576
|
+
</Competency>
|
577
|
+
<Competency name=".NET">
|
578
|
+
<CompetencyId id="023039"/>
|
579
|
+
<TaxonomyId id="204" idOwner="10" description="Sovren"/>
|
580
|
+
<CompetencyEvidence name=".NET" typeDescription="Found in TRAINING" typeId="023039">
|
581
|
+
<NumericValue description="Total Months">6</NumericValue>
|
582
|
+
</CompetencyEvidence>
|
583
|
+
</Competency>
|
584
|
+
<Competency name="FORENSICS">
|
585
|
+
<CompetencyId id="017875"/>
|
586
|
+
<TaxonomyId id="376" idOwner="15" description="Sovren"/>
|
587
|
+
<CompetencyEvidence name="FORENSICS" typeDescription="Found in PERSONAL INTERESTS AND ACCOMPLISHMENTS" typeId="017875">
|
588
|
+
<NumericValue description="Total Months">6</NumericValue>
|
589
|
+
</CompetencyEvidence>
|
590
|
+
</Competency>
|
591
|
+
<Competency name="GPS">
|
592
|
+
<CompetencyId id="018529"/>
|
593
|
+
<TaxonomyId id="307" idOwner="5" description="Sovren"/>
|
594
|
+
<CompetencyEvidence name="GPS" typeDescription="Found in OTHER_PUBLICATIONS" typeId="018529">
|
595
|
+
<NumericValue description="Total Months">6</NumericValue>
|
596
|
+
</CompetencyEvidence>
|
597
|
+
</Competency>
|
598
|
+
<Competency name="GPS">
|
599
|
+
<CompetencyId id="018530"/>
|
600
|
+
<TaxonomyId id="144" idOwner="5" description="Sovren"/>
|
601
|
+
<CompetencyEvidence name="GPS" typeDescription="Found in OTHER_PUBLICATIONS" typeId="018530">
|
602
|
+
<NumericValue description="Total Months">6</NumericValue>
|
603
|
+
</CompetencyEvidence>
|
604
|
+
</Competency>
|
605
|
+
<Competency name="GPS">
|
606
|
+
<CompetencyId id="018531"/>
|
607
|
+
<TaxonomyId id="298" idOwner="5" description="Sovren"/>
|
608
|
+
<CompetencyEvidence name="GPS" typeDescription="Found in OTHER_PUBLICATIONS" typeId="018531">
|
609
|
+
<NumericValue description="Total Months">6</NumericValue>
|
610
|
+
</CompetencyEvidence>
|
611
|
+
</Competency>
|
612
|
+
<Competency name="INTERNET MARKETING">
|
613
|
+
<CompetencyId id="020053"/>
|
614
|
+
<TaxonomyId id="249" idOwner="14" description="Sovren"/>
|
615
|
+
<CompetencyEvidence name="INTERNET MARKETING" typeDescription="Found in SUMMARY" typeId="020053">
|
616
|
+
<NumericValue description="Total Months">6</NumericValue>
|
617
|
+
</CompetencyEvidence>
|
618
|
+
</Competency>
|
619
|
+
<Competency name="JOURNAL">
|
620
|
+
<CompetencyId id="026929"/>
|
621
|
+
<TaxonomyId id="944" idOwner="32" description="Sovren"/>
|
622
|
+
<CompetencyEvidence name="JOURNAL" typeDescription="Found in OTHER_PUBLICATIONS" typeId="026929">
|
623
|
+
<NumericValue description="Total Months">6</NumericValue>
|
624
|
+
</CompetencyEvidence>
|
625
|
+
</Competency>
|
626
|
+
<Competency name="JOURNAL">
|
627
|
+
<CompetencyId id="026930"/>
|
628
|
+
<TaxonomyId id="960" idOwner="32" description="Sovren"/>
|
629
|
+
<CompetencyEvidence name="JOURNAL" typeDescription="Found in OTHER_PUBLICATIONS" typeId="026930">
|
630
|
+
<NumericValue description="Total Months">6</NumericValue>
|
631
|
+
</CompetencyEvidence>
|
632
|
+
</Competency>
|
633
|
+
<Competency name="MICROSOFT SQL SERVER">
|
634
|
+
<CompetencyId id="022023" idOwner="023733"/>
|
635
|
+
<TaxonomyId id="193" idOwner="10" description="Sovren"/>
|
636
|
+
<CompetencyEvidence name="MICROSOFT SQL SERVER" typeDescription="Found in TRAINING" typeId="022023">
|
637
|
+
<NumericValue description="Total Months">6</NumericValue>
|
638
|
+
</CompetencyEvidence>
|
639
|
+
</Competency>
|
640
|
+
<Competency name="MICROSOFT VISUAL BASIC">
|
641
|
+
<CompetencyId id="022042" idOwner="022210"/>
|
642
|
+
<TaxonomyId id="204" idOwner="10" description="Sovren"/>
|
643
|
+
<CompetencyEvidence name="MICROSOFT VISUAL BASIC" typeDescription="Found in TRAINING" typeId="022042">
|
644
|
+
<NumericValue description="Total Months">6</NumericValue>
|
645
|
+
</CompetencyEvidence>
|
646
|
+
</Competency>
|
647
|
+
<Competency name="MICROSOFT VISUAL BASIC .NET">
|
648
|
+
<CompetencyId id="022043" idOwner="023284"/>
|
649
|
+
<TaxonomyId id="204" idOwner="10" description="Sovren"/>
|
650
|
+
<CompetencyEvidence name="MICROSOFT VISUAL BASIC .NET" typeDescription="Found in TRAINING" typeId="022043">
|
651
|
+
<NumericValue description="Total Months">6</NumericValue>
|
652
|
+
</CompetencyEvidence>
|
653
|
+
</Competency>
|
654
|
+
<Competency name="PATENT">
|
655
|
+
<CompetencyId id="200094"/>
|
656
|
+
<TaxonomyId id="395" idOwner="12" description="Sovren"/>
|
657
|
+
<CompetencyEvidence name="PATENT" typeDescription="Found in PATENTS" typeId="200094">
|
658
|
+
<NumericValue description="Total Months">6</NumericValue>
|
659
|
+
</CompetencyEvidence>
|
660
|
+
</Competency>
|
661
|
+
<Competency name="PROJECT MANAGEMENT">
|
662
|
+
<CompetencyId id="0216662"/>
|
663
|
+
<TaxonomyId id="199" idOwner="10" description="Sovren"/>
|
664
|
+
<CompetencyEvidence name="PROJECT MANAGEMENT" typeDescription="Found in CERTIFICATIONS; TRAINING" typeId="0216662">
|
665
|
+
<NumericValue description="Total Months">6</NumericValue>
|
666
|
+
</CompetencyEvidence>
|
667
|
+
</Competency>
|
668
|
+
<Competency name="SERVER ADMINISTRATION">
|
669
|
+
<CompetencyId id="007798"/>
|
670
|
+
<TaxonomyId id="349" idOwner="10" description="Sovren"/>
|
671
|
+
<CompetencyEvidence name="SERVER ADMINISTRATION" typeDescription="Found in TRAINING" typeId="007798">
|
672
|
+
<NumericValue description="Total Months">6</NumericValue>
|
673
|
+
</CompetencyEvidence>
|
674
|
+
</Competency>
|
675
|
+
<Competency name="VISUAL BASIC">
|
676
|
+
<CompetencyId id="022210"/>
|
677
|
+
<TaxonomyId id="204" idOwner="10" description="Sovren"/>
|
678
|
+
<CompetencyEvidence name="VISUAL BASIC" typeDescription="Found in TRAINING" typeId="022210">
|
679
|
+
<NumericValue description="Total Months">6</NumericValue>
|
680
|
+
</CompetencyEvidence>
|
681
|
+
</Competency>
|
682
|
+
<Competency name="VISUAL BASIC .NET">
|
683
|
+
<CompetencyId id="010595" idOwner="023284"/>
|
684
|
+
<TaxonomyId id="204" idOwner="10" description="Sovren"/>
|
685
|
+
<CompetencyEvidence name="VISUAL BASIC .NET" typeDescription="Found in TRAINING" typeId="010595">
|
686
|
+
<NumericValue description="Total Months">6</NumericValue>
|
687
|
+
</CompetencyEvidence>
|
688
|
+
</Competency>
|
689
|
+
<Competency name="VISUAL BASIC 6.0">
|
690
|
+
<CompetencyId id="023284"/>
|
691
|
+
<TaxonomyId id="204" idOwner="10" description="Sovren"/>
|
692
|
+
<CompetencyEvidence name="VISUAL BASIC 6.0" typeDescription="Found in TRAINING" typeId="023284">
|
693
|
+
<NumericValue description="Total Months">6</NumericValue>
|
694
|
+
</CompetencyEvidence>
|
695
|
+
</Competency>
|
696
|
+
</Qualifications>
|
697
|
+
<Languages>
|
698
|
+
<Language>
|
699
|
+
<LanguageCode>ps</LanguageCode>
|
700
|
+
<Read>true</Read>
|
701
|
+
<Write>true</Write>
|
702
|
+
<Speak>true</Speak>
|
703
|
+
<Comments>Fluent in Pashto, Urdu and</Comments>
|
704
|
+
</Language>
|
705
|
+
<Language>
|
706
|
+
<LanguageCode>ur</LanguageCode>
|
707
|
+
<Read>true</Read>
|
708
|
+
<Write>true</Write>
|
709
|
+
<Speak>true</Speak>
|
710
|
+
<Comments>Fluent in Pashto, Urdu and French.</Comments>
|
711
|
+
</Language>
|
712
|
+
<Language>
|
713
|
+
<LanguageCode>fr</LanguageCode>
|
714
|
+
<Read>true</Read>
|
715
|
+
<Write>true</Write>
|
716
|
+
<Speak>true</Speak>
|
717
|
+
<Comments>Pashto, Urdu and French.</Comments>
|
718
|
+
</Language>
|
719
|
+
</Languages>
|
720
|
+
<Achievements>
|
721
|
+
<Achievement>
|
722
|
+
<Description>Awarded Medal of Merit by the Royal Society of Forensics, 2005</Description>
|
723
|
+
</Achievement>
|
724
|
+
</Achievements>
|
725
|
+
<Associations>
|
726
|
+
<Association>
|
727
|
+
<Name>Association of Retired Military Document Examiners</Name>
|
728
|
+
<Role>
|
729
|
+
<Name>Member</Name>
|
730
|
+
</Role>
|
731
|
+
</Association>
|
732
|
+
</Associations>
|
733
|
+
<References>
|
734
|
+
<Reference>
|
735
|
+
<PersonName>
|
736
|
+
<FormattedName>Babs Smith</FormattedName>
|
737
|
+
<GivenName>Babs</GivenName>
|
738
|
+
<FamilyName>Smith</FamilyName>
|
739
|
+
</PersonName>
|
740
|
+
<PositionTitle>Manager</PositionTitle>
|
741
|
+
<ContactMethod>
|
742
|
+
<Use>business</Use>
|
743
|
+
<Location>office</Location>
|
744
|
+
<WhenAvailable>anytime</WhenAvailable>
|
745
|
+
<PostalAddress type="undefined">
|
746
|
+
<CountryCode>US</CountryCode>
|
747
|
+
<PostalCode>46559</PostalCode>
|
748
|
+
<Region>VA</Region>
|
749
|
+
<Municipality>Richmond</Municipality>
|
750
|
+
<DeliveryAddress>
|
751
|
+
<AddressLine>1234 Farmington Way</AddressLine>
|
752
|
+
</DeliveryAddress>
|
753
|
+
</PostalAddress>
|
754
|
+
</ContactMethod>
|
755
|
+
<ContactMethod>
|
756
|
+
<Use>business</Use>
|
757
|
+
<Location>office</Location>
|
758
|
+
<WhenAvailable>anytime</WhenAvailable>
|
759
|
+
<InternetEmailAddress>babs@somers.com</InternetEmailAddress>
|
760
|
+
</ContactMethod>
|
761
|
+
<ContactMethod>
|
762
|
+
<Telephone>
|
763
|
+
<FormattedNumber>845-876-0988</FormattedNumber>
|
764
|
+
</Telephone>
|
765
|
+
</ContactMethod>
|
766
|
+
<Comments>[OrgName=Somers Products, Inc]</Comments>
|
767
|
+
</Reference>
|
768
|
+
</References>
|
769
|
+
<RevisionDate>2013-04-29</RevisionDate>
|
770
|
+
</StructuredXMLResume>
|
771
|
+
<NonXMLResume>
|
772
|
+
<TextResume>Dear Sir or Madam,
|
773
|
+
|
774
|
+
I am very interested in the Director of Development position that you posted. I am eager to move to New York. I have extensive hands-on experience with the technologies your staff is using and I have been managing a similar size staff for the past 5 years.
|
775
|
+
|
776
|
+
Sincerely,
|
777
|
+
|
778
|
+
John
|
779
|
+
|
780
|
+
|
781
|
+
RESUME
|
782
|
+
|
783
|
+
John F. Adams III
|
784
|
+
|
785
|
+
930 Via Mil Cumbres Unit 119, Solana Beach, CA 92075
|
786
|
+
johnadams@yamoo.com
|
787
|
+
(858) 555-1000
|
788
|
+
(858) 555-1001 cell
|
789
|
+
(858) 555-1002 fax
|
790
|
+
http://www.linkedin.com/in/johnadams
|
791
|
+
|
792
|
+
|
793
|
+
Summary: Development manager with 10 years of hands-on experience, specializing in Internet marketing and data-driven web sites.
|
794
|
+
|
795
|
+
Objective: HRIS Applications development manager for a large ATS vendor or ASP in the HR space.
|
796
|
+
|
797
|
+
Experience: Technical Difference, Encinitas, CA October 2004 - Current
|
798
|
+
Director of Web Applications Development
|
799
|
+
• Managed email marketing campaigns to attract new sales and retain customers.
|
800
|
+
• Add new technology to website to manage leads, increase response time and provide pertinent information to new customers.
|
801
|
+
• Convert current HRIS from VB to ASP to create complete web based solution.
|
802
|
+
• Added custom encryption coding to SQL and ASP web applications.
|
803
|
+
• Designed custom applicant tracking ASP program for large client.
|
804
|
+
• Designed customer support application to receive requests/files from clients, divert to appropriate support staff, and track issue from open to resolve.
|
805
|
+
• Supervised 15 employees.
|
806
|
+
|
807
|
+
Convergence Inc. LLC, Del Mar, CA March 2003 - December 2004
|
808
|
+
Senior Web Developer/DBA
|
809
|
+
• Developed special package sales on website for the Mighty Ducks of Anaheim.
|
810
|
+
• Managed email marketing campaigns for Mighty Ducks of Anaheim to generate interest in season passes, group sales, and special promotions.
|
811
|
+
• Developed event registration sites for Mazda, Mercedes, Volvo, Cadillac Mitsubishi.
|
812
|
+
• Developed web-based email tracking system for bulk mail sends to track all consumer actions upon opening an email sent from the system.
|
813
|
+
• Developed analytical reporting tool for clients to access results of bulk mail sends.
|
814
|
+
• Set up/deployed bulk mail campaigns for various companies through Exact Target.
|
815
|
+
• Consulted with clients about bulk mail results to help find their target audience.
|
816
|
+
• Helped customers to build their email database through various bulk mail promotions.
|
817
|
+
• Developed web-based contest applications for various seasonal marketing campaigns that included Email Marketing, Web Registration, Email Tracking, and Contest Reporting for the State of Connecticut Tourism Department.
|
818
|
+
• Developed Meeting Planner marketing tool for customers to plan/book meetings at any of over 200 hotels in Connecticut for the Connecticut Tourism Department.
|
819
|
+
• Primary contact for Automotive Ride Drive Marketing Campaigns.
|
820
|
+
• DBA SQL Server 7 2000.
|
821
|
+
|
822
|
+
Avalon Digital Marketing Systems, Inc. May 2002 - March 2003
|
823
|
+
Contractor - Web Development
|
824
|
+
• Designed developed web-based gift fulfillment system for use by Mazda and their affiliates to intake consumer information from bulk mail sends, accept orders from consumers who completed their incentive program, and to report on all activity.
|
825
|
+
• Designed developed web-based event registration systems for Mercedes and Volvo including comprehensive reporting on system activity.
|
826
|
+
• Primary contact for Automotive Ride Drive Marketing Campaigns.
|
827
|
+
|
828
|
+
Avalon Digital Marketing Systems, Inc. (European Division) May 2000 - April 2002
|
829
|
+
Web Developer/Junior DBA
|
830
|
+
• Designed and developed reporting system for use by 200+ customers to retrieve analytical analysis of their bulk mail campaigns.
|
831
|
+
• Designed developed sales reporting tool to analyze and present information about industry and client specific productivity of email marketing campaigns.
|
832
|
+
• Engineered various email campaigns to provide comprehensive tracking.
|
833
|
+
• Primary contact for Automotive Ride Drive Marketing Campaigns.
|
834
|
+
• Designed developed time keeping/project tracking system for use by all employees.
|
835
|
+
• Junior DBA SQL Server 7/2000.
|
836
|
+
|
837
|
+
Technical: Languages: ASP, HTML, VBScript, JavaScript, VB, XML, PHP
|
838
|
+
Databases: SQL Server 6.5/7/2000, Oracle 9i, Access 97/2000
|
839
|
+
Operating Systems: Windows 98/2000/NT/XP/2003, UNIX, DOS
|
840
|
+
|
841
|
+
Education: California State University, Chico, CA 1996 - 1999
|
842
|
+
B.S. Business Administration
|
843
|
+
MINOR: American History
|
844
|
+
GPA: 3.66/4.0
|
845
|
+
|
846
|
+
Butte College, A.A. 1995 - 1996
|
847
|
+
|
848
|
+
Training
|
849
|
+
• Project Management Professional, Project Management Institute, 2005
|
850
|
+
• Microsoft Visual Basic .NET, 2001
|
851
|
+
• Microsoft SQL Server Administration, 2000
|
852
|
+
|
853
|
+
Languages
|
854
|
+
Fluent in Pashto, Urdu and French.
|
855
|
+
|
856
|
+
Professional Affiliations
|
857
|
+
Member of the Association of Retired Military Document Examiners
|
858
|
+
|
859
|
+
Awards
|
860
|
+
Awarded Medal of Merit by the Royal Society of Forensics, 2005
|
861
|
+
|
862
|
+
Certifications Licenses
|
863
|
+
• September, 2001: Sun Secure Global Desktop (Tarantella) System Administration
|
864
|
+
• Watergate Master Plumber, Lic. #2445
|
865
|
+
|
866
|
+
Patents
|
867
|
+
George Doam and Neil Griffin, inventors, "Method and Apparatus for Removing Corn Kernels From Dentures", Patent 1,064,098.
|
868
|
+
|
869
|
+
Speaking Engagements
|
870
|
+
Main Speaker, AYA Forum, 2006
|
871
|
+
|
872
|
+
Publications
|
873
|
+
"The Way Home: How GPS Restored My Profits and Saved My Business Life", published in the American Journal of the Lost And Clueless, Volume 1, Number 4. May 3, 2001
|
874
|
+
|
875
|
+
Military Service
|
876
|
+
FIRST LIEUTENANT, US Army, Vietnam theatre, 1966-1967
|
877
|
+
|
878
|
+
Security Clearances
|
879
|
+
Top Secret, expires 2007
|
880
|
+
|
881
|
+
References
|
882
|
+
Babs Smith
|
883
|
+
Manager, Somers Products, Inc.
|
884
|
+
1234 Farmington Way
|
885
|
+
Richmond, VA 46559
|
886
|
+
845-876-0988
|
887
|
+
babs@somers.com
|
888
|
+
|
889
|
+
Personal Information
|
890
|
+
|
891
|
+
|
892
|
+
|
893
|
+
|
894
|
+
|
895
|
+
Married: Yes
|
896
|
+
|
897
|
+
Current Location: Solana Beach, CA
|
898
|
+
Preferred Location: Boston, MA
|
899
|
+
|
900
|
+
Family: Wife and 2 children
|
901
|
+
|
902
|
+
|
903
|
+
Visa: None
|
904
|
+
Passport Number: US-456456456
|
905
|
+
|
906
|
+
</TextResume>
|
907
|
+
</NonXMLResume>
|
908
|
+
<UserArea>
|
909
|
+
<sov:ResumeUserArea>
|
910
|
+
<sov:Culture>
|
911
|
+
<sov:Language>en</sov:Language>
|
912
|
+
<sov:Country>US</sov:Country>
|
913
|
+
<sov:CultureInfo>en-US</sov:CultureInfo>
|
914
|
+
</sov:Culture>
|
915
|
+
<sov:ExperienceSummary>
|
916
|
+
<sov:Description>John F. Adams's experience appears to be concentrated in Information Technology / Database, with exposure to Sales / General. John F. Adams has 13 years of work experience, with 9 years of management experience, including a mid-level position.</sov:Description>
|
917
|
+
<sov:MonthsOfWorkExperience>158</sov:MonthsOfWorkExperience>
|
918
|
+
<sov:YearsOfWorkExperience>13</sov:YearsOfWorkExperience>
|
919
|
+
<sov:MonthsOfManagementExperience>104</sov:MonthsOfManagementExperience>
|
920
|
+
<sov:YearsOfManagementExperience>9</sov:YearsOfManagementExperience>
|
921
|
+
<sov:CurrentManagementLevel>mid-level</sov:CurrentManagementLevel>
|
922
|
+
<sov:HighestManagementScore>55</sov:HighestManagementScore>
|
923
|
+
<sov:ExecutiveType>business_dev</sov:ExecutiveType>
|
924
|
+
<sov:ManagementStory>The following management-related items were found:
|
925
|
+
• Supervised 15 employees.
|
926
|
+
|
927
|
+
Current position is a mid-level management role: Director of Web Applications Development
|
928
|
+
Starting on 10/1/2004, the candidate held the following mid-level management position for 8 years and 8 months:
|
929
|
+
Title: Director of Web Applications Development for Technical Difference</sov:ManagementStory>
|
930
|
+
<sov:BestFitTaxonomies>
|
931
|
+
<sov:BestFitTaxonomy id="10" rootId="Sovren" name="Information Technology" weight="1755.43" percentOfOverall="34.36" percentOfParent="34.36">
|
932
|
+
<sov:BestFitTaxonomy id="193" rootId="Sovren" name="Database" weight="568.77" percentOfOverall="11.13" percentOfParent="32.40"/>
|
933
|
+
<sov:BestFitTaxonomy id="196" rootId="Sovren" name="Internet" weight="499.26" percentOfOverall="9.77" percentOfParent="28.44"/>
|
934
|
+
</sov:BestFitTaxonomy>
|
935
|
+
<sov:BestFitTaxonomy id="20" rootId="Sovren" name="Sales" weight="1263.47" percentOfOverall="24.73" percentOfParent="24.73">
|
936
|
+
<sov:BestFitTaxonomy id="105" rootId="Sovren" name="General" weight="1263.47" percentOfOverall="24.73" percentOfParent="100.00"/>
|
937
|
+
</sov:BestFitTaxonomy>
|
938
|
+
</sov:BestFitTaxonomies>
|
939
|
+
</sov:ExperienceSummary>
|
940
|
+
<sov:Sections>
|
941
|
+
<sov:Section starts="21" ends="22" sectionType="SUMMARY">Summary</sov:Section>
|
942
|
+
<sov:Section starts="23" ends="24" sectionType="OBJECTIVE">Objective</sov:Section>
|
943
|
+
<sov:Section starts="25" ends="68" sectionType="WORK HISTORY">Experience</sov:Section>
|
944
|
+
<sov:Section starts="69" ends="75" sectionType="EDUCATION">Education</sov:Section>
|
945
|
+
<sov:Section starts="76" ends="80" sectionType="TRAINING">Training</sov:Section>
|
946
|
+
<sov:Section starts="81" ends="83" sectionType="LANGUAGES">Languages</sov:Section>
|
947
|
+
<sov:Section starts="84" ends="86" sectionType="PROFESSIONAL AFFILIATIONS">Professional Affiliations</sov:Section>
|
948
|
+
<sov:Section starts="87" ends="89" sectionType="PERSONAL INTERESTS AND ACCOMPLISHMENTS">Awards</sov:Section>
|
949
|
+
<sov:Section starts="90" ends="93" sectionType="LICENSES">Certifications Licenses</sov:Section>
|
950
|
+
<sov:Section starts="94" ends="96" sectionType="PATENTS">Patents</sov:Section>
|
951
|
+
<sov:Section starts="97" ends="99" sectionType="SPEAKING">Speaking Engagements</sov:Section>
|
952
|
+
<sov:Section starts="100" ends="102" sectionType="OTHER_PUBLICATIONS">Publications</sov:Section>
|
953
|
+
<sov:Section starts="103" ends="105" sectionType="MILITARY">Military Service</sov:Section>
|
954
|
+
<sov:Section starts="106" ends="108" sectionType="SECURITY_CLEARANCES">Security Clearances</sov:Section>
|
955
|
+
<sov:Section starts="109" ends="116" sectionType="REFERENCES">References</sov:Section>
|
956
|
+
<sov:Section starts="117" ends="134" sectionType="CONTACT INFO">Personal Information</sov:Section>
|
957
|
+
</sov:Sections>
|
958
|
+
<sov:CoverLetterText>Dear Sir or Madam,
|
959
|
+
|
960
|
+
I am very interested in the Director of Development position that you posted. I am eager to move to New York. I have extensive hands-on experience with the technologies your staff is using and I have been managing a similar size staff for the past 5 years.
|
961
|
+
|
962
|
+
Sincerely,</sov:CoverLetterText>
|
963
|
+
<sov:ParsedTextLength>6402</sov:ParsedTextLength>
|
964
|
+
<sov:ParseTime>344</sov:ParseTime>
|
965
|
+
<sov:ParserConfigurationString>_100000_0_00000001_1101010000101100_1_000000000000011111110200000000001000010000000000</sov:ParserConfigurationString>
|
966
|
+
<sov:ParserVersion>7.1.7100.7</sov:ParserVersion>
|
967
|
+
</sov:ResumeUserArea>
|
968
|
+
</UserArea>
|
969
|
+
<!-- Parser Version: 7.1.7100.7 -->
|
970
|
+
</Resume>
|