-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.old.html
1719 lines (1662 loc) · 89.7 KB
/
index.old.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>An Interactive Resume Builder</title>
<link rel="stylesheet" href="_css/semanticcss.css">
<link rel="stylesheet" href="_css/tableSort.css">
<link rel="stylesheet" href="_css/popover.css">
<!-- <link rel="stylesheet" href="_css/bootstrap.min.css"> -->
<!-- <link rel="stylesheet" href="_css/bootstrap-responsive.min.css"> -->
<!-- <link rel="stylesheet" href="_css/style.css"> -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-33903909-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="_js/libs/modernizr-2.5.3-respond-1.1.0.min.js"></script>
<script type="text/javascript" src="_js/libs/jquery.tablesorter.min.js"></script>
<script type="text/javascript" src="_js/libs/jquery-ui-1.7.1.custom.min.js"></script>
<script type="text/javascript" src="_js/libs/popover/jquery.popover-1.1.2.js"></script>
<script type="text/javascript">
if (typeof jQuery == 'undefined') {
document.write(unescape("%3Cscript src='_js/libs/jquery-1.7.2.min.js' type='text/javascript'%3E%3C/script%3E"));
document.write(unescape("%3Cscript src='_js/libs/jquery.tablesorter.min.js' type='text/javascript'%3E%3C/script%3E"));
document.write(unescape("%3Cscript src='_js/libs/jquery-ui-1.7.1.custom.min.js' type='text/javascript'%3E%3C/script%3E"));
document.write(unescape("%3Cscript src='_js/libs/modernizr-2.5.3-respond-1.1.0.min.js' type='text/javascript'%3E%3C/script%3E"));
}
</script>
<!-- <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" ></script> -->
<!-- <script type="text/javascript" src="_js/libs/selectToUISlider.jQuery.js"></script> -->
<script type="text/javascript">
/* <![CDATA[ */
jQuery(document).ready(function($) {
$("#popover").click(function(event) {
event.preventDefault();
event.stopPropagation();
if ($(".popover").is(':visible')) {
$("#popover").popover('hide');
$("#popover h1").css('color', 'white')
} else {
$("#popover").popover('show');
$("#popover h1").css('color', 'black')
}
});
});
/* ]]> */
</script>
</head>
<body>
<div id="header-container">
<header style="text-align: center;" class="clearfix">
<div>
<div id="leftHeader">
<div style="width: 99%; margin: 0px auto;">
<div>
<span style="color: white; font-size:32px; font-weight: bold;">Chris Frisina</span>
</div>
<div>
<a href="mailto:[email protected]?subject=Resume Oppurtunity&body=Thank you for reviewing my resume and contacting me about a potential oppurtunity. -Chris" target="_blank">[email protected]</a> | <a href="tel:724-426-5676" target="_blank">724.426.5676</a> | <a href="http://goo.gl/sF6o7" target="_blank">Christiansburg, VA</a>
</div>
</div>
</div>
<div id="rightHeader" align="center">
<span style="display: inline-block;">Resume Templates :
<select style="" onchange="if(this.options[this.selectedIndex].value != ''){window.top.location.href=this.options[this.selectedIndex].value}">
<option value="" selected>Select:</option>
<option value="?1">Developer</option>
<option value="?2">PM</option>
<!-- <option value="?3">3</option> -->
</select>
</span>
</div>
</div>
</header>
</div>
<div id="main-container" class="wrapper">
<div id="main">
<div class="asideTrack" id="asideTrack">
<div class="block aside" id ="slideInfo">
<aside>
<form class="form">
<fieldset id="i_section_information" class="i section information">
<div>
<span id="popover" style="float: left"><h1 style="color:white; text-align:center; font-weight:normal">Information</h1></span>
</div>
</fieldset>
</form>
</aside>
</div>
<div class="block aside" id ="slideAside">
<aside>
<form class="form">
<fieldset id="fs_section_abstract" class="fs section abstract">
<label id="fs_abstract_heading" class="fs btn heading abstract">Abstract</label>
</fieldset>
<fieldset id="fs_section_businessapproach" class="fs section businessapproach">
<label id="fs_businessapproach_heading" class="fs btn heading businessapproach">Business Approach</label>
</fieldset>
<fieldset id="fs_section_workexperience" class="fs section workexperience">
<label id="fs_workexperience_heading" class="fs btn heading workexperience">Work Experience</label><br>
<label id="">Start Date </label><input id="startdate" name="startdate" type="text" value="" style="width:23%"/>
<label id="">End Date </label><input id="enddate" name="enddate" type="text" value="" style="width:23%"/><br>
</fieldset>
<fieldset id="fs_section_academic" class="fs section academic">
<label id="fs_academic_heading" class="fs btn heading academic">Academic</label>
</fieldset>
<fieldset id="fs_section_skillstable" class="fs section skillstable">
<label id="fs_skillstable_heading" class="fs btn heading skillstable">Skills Table</label><br>
</fieldset>
<fieldset id="fs_section_community" class="fs section community">
<label id="fs_community_heading" class="fs btn heading community">Community</label><br>
</fieldset>
<fieldset id="fs_section_oldresumes" class="fs section oldresumes">
<label id="fs_traditionalresumes_heading" class="fs btn heading traditionalresumes white">Traditional Resumes</label><br>
</fieldset>
</form>
</aside>
</div>
</div>
<div class="block gc" id="gc">
<section id="gc_section_ab" class="gc section abstract fr"><h1>Abstract</h1>
<section>
<h1>Design</h1>
<ul>
<li>heuristic evaluation</li>
<li>cognitive walkthrough</li>
<li>t<span class="blink">:</span>me and method engineering</li>
</ul>
</section>
<section>
<h1>Expertise</h1>
<ul>
<li>turnkey business solutions</li>
<li>systems analysis</li>
<li>change management</li>
<li>communication methodologies</li>
</ul>
</section>
<section>
<h1>Skills</h1>
<ul>
<li>data visualization</li>
<li>workflow optimization</li>
<li>presentation</li>
<li>communication design</li>
<li>statistical analysis</li>
<li>sdlc methods</li>
</ul>
</section>
<section>
<h1>Tools</h1>
<ul>
<li><a href="http://goo.gl/GjxlI" title="Me, Smiling" target="_blank"><span style="font-size: 20px;"> ☺</span></a></li>
<li><a href="http://goo.gl/RKAK8" title="R - statistical analysis" target="_blank">R</a></li>
<li><a href="http://goo.gl/4DUcg" title="Microsoft Excel Spreadsheet" target="_blank">excel</a></li>
<li><a href="http://goo.gl/BT8DD" title="JS Fiddle" target="_blank">jsfiddle</a></li>
<li><a href="http://goo.gl/kuifcd" title="StackExchange {StackOverflow}" target="_blank">stackexchange {stackoverflow}</a></li>
<li><a href="http://goo.gl/XcCH0" title="Sublime Text" target="_blank">sublime text</a></li>
</ul>
</section>
<section>
<h1>Projects</h1>
<ul>
<li><a href="http://goo.gl/INjqw6" title="angular" target="_blank">angular</a> | <a href="http://goo.gl/vND71J" title="ember" target="_blank">ember</a></li>
<li>pedagogy methods</li>
</ul>
</section>
<section>
<h1>Community</h1>
<ul>
<li>inter/national disaster relief</li>
<li>habitat for humanity</li>
<li>small group leadership</li>
<li>logistics mgmt (NPO/NGOs)</li>
</ul>
</section>
<section>
<h1>Interests</h1>
<ul>
<li><a href="http://goo.gl/w3yZp" target="_blank">neon art bending</a></li>
<li><a href="http://goo.gl/h7rwX" target="_blank">whitewater kayaking</a></li>
<li><a href="http://goo.gl/kJXvx" target="_blank">large scale gourmet cooking</a></li>
<li><a href="http://goo.gl/GIdn8" target="_blank">woodturning</a></li>
<li>hiking/camping</li>
</ul>
</section>
</section>
<section id="gc_section_ba" class="gc section businessapproaches"><h1>Business Approach</h1>
<section><h1>Analysis</h1>
<p>I use a multitude of tools and experiences that bring a comprehensive approach to evaluate systems, processes, objects, and personnel. I achieve this through a mix of initial communication with stakeholders and departments, and use this information to develop the framework for developing scope and planning resources to exceed client or project expectations.</p>
</section>
<section><h1>Communication</h1>
<p>I ensure that our team develops time-sensitive seminars, conferences, and meetings designed to explicate the scope and complexities of deadlines in a unified environment for clients and team members. I develop daily business interactions to maintain a positive milieu, within a prescribed common creative atmosphere, vital to the team’s success in daily challenges, ultimately to the project, company, and client.</p>
</section>
<section><h1>Budgeting</h1>
<p>Listening to the needs of the project’s stakeholders, I tailor a solution using a top down method for providing the needs of budget conscious clients, or a ground up design for customized turnkey solutions. These hybrid approaches are weighted towards the common voice of the client, where detail oriented solutions are applied along the common tones throughout the client’s organization.</p>
</section>
<section><h1>Teamwork</h1>
<p>Organizing teams to a preferable size of 7 persons, with a wide assortment of experience and a solid rubric for life cycle development of projects, enables synergistic teamwork practices and enables succinct solutions with minimal interruptions. When a group is given full control with the understanding of full accountability, time and time again the group as a whole is able to provide the necessary decisions to achieve positive progression.</p>
</section>
<section><h1>Intelligence</h1>
<p>With diverse hobbies, experiences, contacts, and interests, I bring a special perspective to providing successful solutions, on time, and above and beyond requirements. I owe my successes to borrowed approaches in scouting, mentorship, and previous successes where developing a strong approach to looking through a problem to see its solution has allowed me to approach situations with objective clarity.</p>
</section>
<section><h1>Enthusiasm</h1>
<p>Understanding the importance of the products and services needed of the end users and clients, and forming an environment, which highlights those needs, allows me to convey a quick, calm, succinct product. There is nothing more successful than a team with a common goal and the will to accomplish that goal as their own.</p>
</section>
<section><h1>Time</h1>
<p>I operate on a business healthy approach of meeting the requirements of the project; both personnel/clients’ and planning/execution are balanced to achieve an overall positive relationship with the client, team members, and other staff in a warm and inviting manner.</p>
</section>
</section>
<section id="gc_section_we" class="gc section workexperience"><h1>Work Experience</h1>
<section class="company"><h1>Virginia Tech</h1>
<section class="position"><h1>Graduate Student</h1>
<time class="start" datetime="2013-02">Sep 2013</time>
<time class="end" datetime=""></time>
<p>I am Graduate Student pursuing my PhD in Computer Science. My areas of interest are Information Visualization, Big Data, Human Computer Interaction, Usability, and Human in the Loop Engineering.</p>
<ul>
<li class="dev">Human Centered Methods - Fall 2014</li>
<li class="dev">Programming Languages - Fall 2014</li>
<li class="dev">Digital Libraries - Spring 2014</li>
<li class="dev"><a href="http://goo.gl/pMQuwW" title="Usability Engineering" target="_blank">Usability Engineering</a> - Spring 2014</li>
<li class="dev"><a href="http://goo.gl/FQVlXo" title="Computational Thinking" target="_blank">Computational Thinking</a> - Fall 2013</li>
<li class="dev">Research Methods - Fall 2013</li>
</ul>
</section>
<section class="position"><h1>Graduate Research Assistant ( Learning Analytics Dashboard )</h1>
<time class="start" datetime="2014-06">June 2014</time>
<time class="end" datetime=""></time>
<p>As the lead developer for datavisualizations, I help facilitate research around making data meaningful for students and teachers alike. We analyze large data sets and provide meaningful visualizations and <a href="http://goo.gl/XQAwXm" title="dashboards" target="_blank">dashboards</a> through particpatory design methodologies.
</section>
<section class="position"><h1>Graduate Research Assistant ( Candy Factory | Candy Depot [Fraction Learning] )</h1>
<time class="start" datetime="2014-01">Jan 2014</time>
<time class="end" datetime="2014-05">May 2014</time>
<p>I developed a set of Participatory design tools { <a href="http://goo.gl/GxwXen" title="graphs" target="_blank">graphs</a>, wireframes, multi-threaded video } to run usability studies with teachers to enhance the feedback system available to teachers, students, parents, and interested parties.</p>
<ul>
<li class="dev">Research and design wireframes for information visualization to benefit teachers for opportunities in areas of improvement.</li>
<li class="pm mgr dev">Design and structure the data structure and gathering for the current implementation</a></li>
<li class="pm mgr">Run usability studies on the concept ideas, and continue development on promising prototypes.</li>
</ul>
</section>
<section class="position"><h1>Graduate Research Assistant ( Sound of Fractions [Fraction Learning])</h1>
<time class="start" datetime="2013-02">Feb 2013</time>
<time class="end" datetime=""></time>
<p>I am on a multidisciplinary design team to help refine a proof of concept learning tool to help struggling middle school students to learn fractions, the largest road block in K-12 mathematics. The application uses a musically complex interface to help students understand part/whole concepts in different representations, building from their current strong musical skills.</p>
<ul>
<li class="dev">Research and design mockups to beta test intricate learning theories</li>
<li class="pm mgr dev">Convert the single page JS application into a robust front and backend, using <a href="http://goo.gl/70kNu" title="Require.js" target="_blank">require.js</a>, <a href="http://goo.gl/yOvn2" title="Backbone.js" target="_blank">backbone.js</a>, <a href="http://goo.gl/HU100" title="Underscore.js" target="_blank">underscore.js</a>, <a href="http://goo.gl/185z9" title="Ruby on Rails" target="_blank">RoR</a>, and an <a href="http://goo.gl/agSgR" title="Ubuntu 12.04.2 LTS" target="_blank">Ubuntu VM server</a></li>
<li class="pm mgr">Research current concepts and theories surrounding entrainment, child brain development, learning stages, music education, and fractions.</li>
<li class="dev">The Sound Of Fractions proof of concept can be found at <a href="http://goo.gl/LqO4Z" target="_blank">specialorange.org/sof</a> .The current implementation can be found at <a href="http://goo.gl/K0Wbz" target="_blank">compthink.cs.vt.edu:3000</a> .</li>
</ul>
</section>
<section class="position"><h1>Web Developer</h1>
<time class="start" datetime="2012-11">Nov 2012</time>
<time class="end" datetime="2013-5">May 2013</time>
<p>I help with a complete overhaul of the the <a href="http://goo.gl/QdgBI" title=" Institute for Creativity, Arts, & Technology" target="_blank">ICAT</a> website to integrate with two other main components, a project database and visualization, that help ICAT's accomplish it's mission to connect Virginia Tech both internally and externally for all.</p>
<ul>
<li class="dev">Website development using <a href="http://goo.gl/xFzNP" title="Drupal" target="_blank">Drupal</a>.</li>
<li class="pm dev">Discuss with other memebers of the team to organize the <a href="http://goo.gl/xFzNP" title="Drupal" target="_blank">Drupal</a> database across all three projects: website, project connections, and project visualization.</li>
</ul>
</section>
</section>
<section class="company"><h1>Democratic National Convention</h1>
<section class="position"><h1>Event Manager</h1>
<time class="start" datetime="2012-07">Jul 2012</time>
<time class="end" datetime="2012-09">Sep 2012</time>
<p>The 2012 Democratic National Convention is in Charlotte, NC, my hometown. Given the rare opportunity, I was excited to be a part of the select few overseeing the success of the event, as well as providing the true southern hospitality to those attending, by overseeing the entire staff for hospitality, transportation, and communication.</p>
<ul>
<li class="pm cs">Research and design transportation routes to support the media, staff, and guests</li>
<li class="pm mgr">Coordinate volunteers and staff training, materials, and presentations</li>
<li class="pm mgr">Incorporate safety, security, and access requirements into events and transportation</li>
<li class="dev">Construct a volunteer and staff management system that incorporates availability with restrictions enabling on the fly adjustments for various conflicts</li>
</ul>
</section>
</section>
<section class="company"><h1>FedEx Ground</h1>
<section class="position"><h1>Contractor Corporate Liaison - IT Development Projects</h1>
<time class="start" datetime="2010-07">Jul 2010</time>
<time class="end" datetime=""></time>
<p>After a massive business realignment resulting from the economy crash, IT resources available to independent delivery contractors were significantly reduced. I presented and developed an elective application that would allow the contractors to provide business analytics that provide daily performance feedback, as well as trending analysis that identifies areas of opportunity as well as high performing metrics, available to each contractor and their employees.</p>
<ul>
<li class="dev ocm cs pm bit eng">Contractor Optimization
<ul>
<li class="bit eng">After enough data aggregate was collected, I was able to identify atypical operational correlations previously unknown, including: low productivity and excessive tire wear for newer employees, brake pad lifespan and other specific vehicle component wear, and although easily highlighted - maintenance record upkeep with increased injury incidents</li>
<li class="dev">J2EE implementation including <span title="my Structured Query Language">mySQL</span>, <span title="JavaServer Faces">JSF</span>/myFaces, Spring, Hibernate, Tomcat, Maven, <span title="Extensible Markup Language">XML</span>, and <span title="Extensible / HyperText Markup Language">X/HTML</span>, with Git versioning, in a traditional Waterfall developing environment comprised solely of myself, end to end in Eclipse</li>
<li class="dev">Customized data reporting and data entry of <span title="Portable Document Format">PDF</span>, email (<span title="Simple Mail Transfer Protocol">SMTP</span>), <span title="Extensible Markup Language">XML</span>, and <span title="Concurrent Versions/Versioning System">CVS</span> into single comprehensive queryable presentations using <a href="http://sikuli.org/" target="_blank">Sikuli</a></li>
<li class="dev">Basic data verification and session/transaction steps within the bean to cleanse and prevent rogue data from entering database</li>
<li class="dev">Database design with Business level logic for security management of <span title="Create, Read, Update and Delete cycle">CRUD cycle</span> user and data history retention</li>
<li class="dev">Chose J2EE and associated technologies and self taught to account for 50 requirements including scaling and future support of the program</li>
<li class="ocm cs pm">Hold recurring contractor meetings to discuss functionality, best practices, requirement listing, and business potentials</li>
</ul>
</li>
<li class="dev pm ocm cs">Vehicle Rental standardization
<ul>
<li class="dev pm ocm cs">After making an excel version for proof of concept, a viable <span title="Javascript">JS</span>, <span title="Javascript Query">JQuery</span>, <span title="The fifth version of HTML (HyperText Markup Language)">HTML5</span>, and <span title="Cascading Style Sheets">CSS</span> version was constructed, eliminating time consuming paperwork, inventory controls, and management</li>
</ul>
</li>
</ul>
</section>
<section class="position"><h1>Vision Implementation Manager</h1>
<time class="start" datetime="2010-02">Feb 2010</time>
<time class="end" datetime="2011-12">Dec 2011</time>
<p>Vision, a live <span title="Geopgraphic Informations Systems">GIS</span>/<span title="Global Positioning System">GPS</span> aided <span title="Graphical User Interface">GUI</span> dispatch system developed in <a href="http://goo.gl/aI0EY" target="_blank">Java</a> to aid package handlers to load packages correctly on Contractor vehicles based on daily utilizations, thresholds, and temporary logistics, was 5 years behind a releasable product, and closing in on <span title="$125 Million">$125M</span> cost, despite an original and incorrect scoped project of <span title="$25 MIllion">$25M</span> in 9 months. I took over a team of seven engineers and 120 vendor developers, and restructured the reporting, deliverables release schedule, and testing around an Agile inspired environment. Focusing on releasing working deliverables to the field enabled for a more comprehensive testing environment for faster feedback, eliminating group think and finger pointing. A full release to 15 terminals was achieved in 8 months, affecting 25% of the daily package volume of the company. A two year scaled rollout was designed, with the first year achieving 70% of company package volume.</p>
<ul>
<li class="ocm">Train terminal management and employees on new processes, follow up with previous terminals, and prepare new rollouts</li>
<li class="bit pm eng cs">Engineer new technologies while communicating between field, programmers, and corporate to exceed deadlines</li>
<li class="pm mgr">Project Manager for 10 terminals with a proprietary sorting technology, while exceeding process standards, increasing staffing, and reducing task oriented processes, effecting 11% of daily package volume in the company, all on or ahead of a 10 month schedule</li>
<li class="bit">Identify an <span title="Structured Query Language">SQL</span> security hole in an outsourced employee information database, affecting +30% of FedEx Operations, saving +20M in liability</li>
<li class="pm bit">Restructure vendor <span title="Information Technology">IT</span> infrastructure to streamline reporting, feedback, and decrease downtime by implementing self-efficacy processes</li>
<li class="mgr cs">Manage budget of employees (7 direct), interact with external customers and vendors to plan and execute projects on time</li>
<li class="ocm pm">Facilitate business requirements gathering and definition in various formats including joint collaboration sessions with business and IT, targeted Q&A sessions with multiple Subject Mater Experts, and one-on-one user interviews in order to provide solutions that meet business and user needs</li>
<li class="ocm mgr eng dev">Vision
<ul>
<li class="ocm">Job Aids</li>
<li class="ocm mgr">Training manuals, classes, testing, and reporting materials design, printing and </li>
<li class="eng dev"><span title="Graphical User Interface">GUI</span>/<span title="User Experience">UX</span> Design of web based program from field user perspectives</li>
</ul>
</li>
</ul>
</section>
<section class="position"><h1>Southern Divisional Preload Quality Initiative Manager 2</h1>
<time class="start" datetime="2009-02">Feb 2009</time>
<time class="end" datetime="2010-01">Jan 2010</time>
<p>With the southeast <span title="United States">US</span> as my geographical area, I lead a team of two that identified struggling terminals and worked with the local management team to identify root problems, retraining of best practices, develop short term solutions, and used teleconferencing for long term follow up. Our Division went from a reactive focus to preventative measures within 6 months, exceeding all other divisions in 4 of every 5 metrics. Our team had an 87% success rate of management improvement, and we suggested individual Performance Improvement Plans to upper management for followup with extremely low performers.</p>
<ul>
<li class="mgr ocm pm">Retrain terminal management and employees on current processes and improve on new opportunities</li>
<li class="eng dev">SCADA process improvements using to reduce specific redundant or legacy workflows of hourly workers by 50%, totaling a 5% increase across all productivity</li>
<li class="mgr ocm pm">Support 116 terminals with 20+ different personal visits resulting in streamlined adjustments with $10K savings each</li>
<li class="pm mgr cs"><span title="First Action Response Team">FAST</span> Team Manager - Peak Season 2009</li>
</ul>
</section>
<section class="position"><h1>Dock Service Manager 3</h1>
<time class="start" datetime="2007-01">Jan 2007</time>
<time class="end" datetime="2009-01">Jan 2009</time>
<p>A veteran service manager responsible for training, service and production metrics, and internal and external customer issues on a daily basis, with long term junior manager mentorship programs.</p>
<ul>
<li class="cs">Encompass all aspects of customer service to ensure proper delivery of the customers' package(s)</li>
<li class="dev eng">Developed streamlined applications for inventory and daily workflows enabling users to visualize current and potential issues in real time</li>
<li class="eng dev">Sortation Charts
<ul>
<li class="dev eng">Melissa Data incorporation in Excel with color coding and van attribute listing</li>
</ul>
</li>
</ul>
</section>
<section class="position"><h1><span title="Part Time">P/T</span> Service Manager</h1>
<time class="start" datetime="2006-06">Jul 2006</time>
<time class="end" datetime="2006-12">Dec 2006</time>
<p>A self proposed training position to transition qualified package handlers into full time managers, focusing on management training, not training for metric requirements of typical full time manager positions.</p>
<ul>
<li class="mgr cs">Manage 15 Package Handlers in daily operations</li>
<li class="eng">Load Optimizations
<ul>
<li class="eng">Using time studies to improve productivity</li>
</ul>
</li>
</ul>
</section>
<section class="position"><h1><span title="Part Time">P/T</span> Package Handler</h1>
<time class="start" datetime="2006-03">Mar 2006</time>
<time class="end" datetime="2006-05">May 2006</time>
<p>Load packages on to contractor vehicles for daily dispatch, handling special customer requests as needed.</p>
<ul>
<li class="cs">Load Packages</li>
</ul>
</section>
</section>
<section class="company"><h1>Harris Teeter</h1>
<section class="position"><h1>Grocery Manager</h1>
<time class="start" datetime="2003-12">Dec 2003</time>
<time class="end" datetime="2006-03">Mar 2006</time>
<p>Heading a team that ensured the daily presentation of the grocery department, eventually connecting 3 stores' inventory to reduce product gaps to customers.</p>
<ul>
<li class="dev">QA test a prototype automated inventory control and ordering system and focus on inventory mismatches and business anomalies</li>
<li class="eng">Redesigned the store price sticker to reflect inventory of slow moving product, and created reports to track label issues that cause excess inventory</li>
<li class="mgr cs">Lead a team of six clerks to ensure proper ordering, stocking, rotation, and appearance of the Grocery Department with a <span title="$15 Million">$15M</span> inventory</li>
<li class="mgr cs">Manage three adjacent stores and retrain employees on the proper procedures, methodologies, and system processes</li>
</ul>
</section>
<section class="position"><h1>Customer Service Clerk</h1>
<time class="start" datetime="2002-06">Jun 2002</time>
<time class="end" datetime="2003-11">Nov 2003</time>
<p>Managing different part time employees to meet the needs of customers throughout the day.</p>
<ul>
<li class="cs">Assist a team of 10+ associates on the front line while ensuring the customers' needs/wants are met and exceeded</li>
</ul>
</section>
</section>
<section class="company"><h1>Winn-Dixie</h1>
<section class="position"><h1>Cashier</h1>
<time class="start" datetime="2001-01">Jan 2001</time>
<time class="end" datetime="2002-06">Jun 2002</time>
<ul>
<li class="cs">Cash</li>
</ul>
</section>
<section class="position"><h1>Bagger</h1>
<time class="start" datetime="2000-11">Nov 2000</time>
<time class="end" datetime="2000-12">Dec 2000</time>
<ul>
<li class="cs">Bag</li>
</ul>
</section>
</section>
</section>
<section id="gc_section_a" class="gc section academic"><h1>Academic</h1>
<section class="school"><h1>Virginia Tech</h1>
<section class="degree"><h1>Computer Science with a focus on Human Computer Interaction</h1>
<time class="start" datetime="2013-08">Aug 2013</time>
<time class="end" datetime=""></time>
<p>I am a graduate student persuing a CS PhD, with focus areas in Human Centered Design and Human Computer interaction</p>
<ul>
<li><a href="http://goo.gl/FQVlXo" title="Computational Thinking" target="_blank">Computational Thinking</a> - Fall 2013</li>
<li>Research Methods - Fall 2013</li>
<li><a href="http://goo.gl/pMQuwW" title="Usability Engineering" target="_blank">Usability Engineering</a> - Spring 2014</li>
<li>Digital Libraries - Spring 2014</li>
</ul>
</section>
</section>
<section class="school"><h1>University of North Carolina at Charlotte</h1>
<section class="degree"><h1>Gendered Communication with a focus on the Female Voice</h1>
<time class="start" datetime="2003-08">Aug 2003</time>
<time class="end" datetime="2007-12">Dec 2007</time>
<p>I pursued this specific track of Communication Studies to study the gender biased elements within social interactions.</p>
<ul>
<li>National South Eastern Women's Studies Association(SEWSA) invitational speaker on self researched topic surrounding gender neutral non-hegemonic communication - 2008</li>
<li>Habitat for Humanity Build Lead</li>
<li>Disaster Response Lead Coordinator
<ul>
<li>Katrina - 10+ visits within 3 years</li>
<li>Rita - 1 Visit</li>
</ul>
</li>
</ul>
</section>
</section>
<section class="school"><h1>Central Piedmont Community College</h1>
<section class="degree"><h1>Post-Graduate programs</h1>
<time class="start" datetime="2002-08">Aug 2002</time>
<time class="end" datetime=""></time>
<p>I utilize one of the best community colleges in the US to further my education in interdisciplinary areas.</p>
<ul>
<li><span title="Six Sigma">6σ</span> (Six Sigma) Black Belt Certification - 2012</li>
<li>Culinary Approaches - 2011</li>
<li>Car Mechanics - 2007</li>
<li>Masonry - 2006</li>
<li>Math - 2003</li>
<li>Music - 2002</li>
</ul>
</section>
</section>
</section>
<section id="gc_section_st" class="gc section skillstable">
<h1>Skills Table : <span class="skillstablevisibility">Certifications | Compliance | Technologies</span></h1>
<table cellspacing="0">
<colgroup>
<col id="col0">
<col id="col1">
<col id="col2">
<col id="col3">
<col id="col4">
<col id="col5">
<col id="col6">
</colgroup>
<thead>
<tr>
<th>Category</th>
<th>Skill</th>
<th>Version(s)</th>
<th>Start Date</th>
<th>End Date</th>
<th>Elapsed Time</th>
<th title="1 = I have used and implememted this, but very specifc to the project at hand. 2 = I am very familiar, and able to complete most projects with little oversight. 3 = I can teach this to others.">Expertise Rating</th>
</tr>
</thead>
<tbody>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/RNeEO" title="Ruby" target="_blank">Ruby on Rails</a></td>
<td>3.2</td>
<td>November, 2012</td>
<td></td>
<td></td>
<td><span title="1 = I have used and implememted this, but very specifc to the project at hand.">1</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/RNeEO" title="Ruby" target="_blank">Ruby</a></td>
<td>1.9</td>
<td>August, 2011</td>
<td></td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/xFzNP" title="Drupal" target="_blank">Drupal</a></td>
<td>8</td>
<td>November, 2012</td>
<td></td>
<td></td>
<td><span title="1 = I have used and implememted this, but very specifc to the project at hand.">1</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/IZko6" title="Java Enterprise Edition" target="_blank">J2EE</a></td>
<td>1.5, 1.6, 1.7</td>
<td>August, 2010</td>
<td></td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/wHD7X" title="Javascript" target="_blank">JS</a></td>
<td></td>
<td>April, 2012</td>
<td></td>
<td></td>
<td><span title="1 = I have used and implememted this, but very specifc to the project at hand.">1</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/DwDtX" title="Javascript Query" target="_blank">JQuery</a></td>
<td>1.6.4, 1.7.1, 1.7.2</td>
<td>June, 2012</td>
<td></td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Compliance</td>
<td><a href="http://goo.gl/kFpYV" title="Critical Infrastructure Protection" target="_blank">CIP</a></td>
<td></td>
<td>May, 2008</td>
<td>August, 2011</td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Certification</td>
<td><a href="http://goo.gl/bdG3v" target="_blank">Red Cross</a></td>
<td><a href="http://goo.gl/b4Klw" target="_blank">First Aid</a>, <a href="http://goo.gl/cbVvk" title="Cardiac Pulminary Resucitation" target="_blank">CPR</a>, <a href="http://goo.gl/lmi2u" target="_blank">Bloodborne Pathogens</a></td>
<td>May, 2007</td>
<td>April, 2013</td>
<td></td>
<td><span title="3 = I can teach this to others.">3</span></td>
</tr>
<tr>
<td>Compliance</td>
<td><a href="goo.gl/sQxd9" title="American National Standards Institute" target="_blank">ANSI</a></td>
<td></td>
<td>November, 2007</td>
<td>August, 2010</td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Certification</td>
<td><a href="http://goo.gl/FEKrz" title="International Organization for Standardization " target="_blank">ISO</a></td>
<td>9000, 9001</td>
<td>May, 2007</td>
<td>August, 2010</td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Certification</td>
<td><a href="http://goo.gl/5Fm1F" title="Department of Transportation" target="_blank">DOT</a></td>
<td><span title="United States of America">USA</span>, <span title="North Carolina">NC</span></td>
<td>June, 2006</td>
<td>April, 2013</td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Compliance</td>
<td><a href="http://goo.gl/vLCTQ" title="Occupations Safety and Helath Administration" target="_blank">OSHA</a></td>
<td><span title="United States of America">USA</span>, <span title="North Carolina">NC</span>, <span title="Tennessee">TN</span></td>
<td>June, 2007</td>
<td>April, 2012</td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Compliance</td>
<td><a href="http://goo.gl/gpPHr" title="National Electric Reliability Corporation" target="_blank">NERC</a></td>
<td><span title="United States of America">USA</span>, <span title="North Carolina">NC</span></td>
<td>April, 2006</td>
<td>April, 2012</td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/6GJHU" title="Lightweight Directory Access Protocol" target="_blank">LDAP</a></td>
<td></td>
<td>January, 2003</td>
<td>July, 2011</td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Certification</td>
<td>Leadership Principles</td>
<td></td>
<td>January, 2008</td>
<td></td>
<td></td>
<td><span title="3 = I can teach this to others.">3</span></td>
</tr>
<tr>
<td>Certification</td>
<td>Forklift / Pallet Jack</td>
<td></td>
<td>April, 2001</td>
<td></td>
<td></td>
<td><span title="3 = I can teach this to others.">3</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/nwlr1" target="_blank">Excel</a></td>
<td><a href="http://goo.gl/pJY07" title="Visual Basic for Applications" target="_blank">VBA</a></td>
<td>April, 1998</td>
<td></td>
<td></td>
<td><span title="3 = I can teach this to others.">3</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/N5AwB" target="_blank">SharePoint</a></td>
<td></td>
<td>May, 2007</td>
<td>May, 2009</td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/JgnFc" title="VMware" target="_blank">VMware</a></td>
<td></td>
<td>April, 2006</td>
<td></td>
<td></td>
<td><span title="3 = I can teach this to others.">3</span></td>
</tr>
<tr>
<td>Compliance</td>
<td><a href="http://goo.gl/YzyV6" title="Payment Card Industry" target="_blank">PCI</a></td>
<td></td>
<td>April, 2010</td>
<td></td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/yAA9A" target="_blank">Microsoft suite</a></td>
<td></td>
<td>April, 1998</td>
<td></td>
<td></td>
<td><span title="3 = I can teach this to others.">3</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/RKAK8" title="R" target="_blank">R</a></td>
<td>2.x</td>
<td>September, 2008</td>
<td></td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/URfX8" title="Structured Query Language" target="_blank">SQL</a></td>
<td><a href="http://goo.gl/N5oEi" title="my (named after the daughter of co-founder Michael Widenius, My) Structured Query Language" target="_blank">mySQL</a>, <a href="http://goo.gl/6O60S" target="_blank">postgreSQL</a>, <a href="http://goo.gl/e8P0u" target="_blank">SQLite</a></td>
<td>August, 2010</td>
<td></td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/Zna1s" target="_blank">Eclipse</a></td>
<td><a href="http://goo.gl/0ddg0" target="_blank">Helios</a> and Indigo for <a href="http://goo.gl/qUECh" target="_blank">Classic</a>, <a href="http://goo.gl/aI0EY" target="_blank">Java</a>, <a href="http://goo.gl/ipRKO" title="Java Enterprise Edition" target="_blank">J2EE</a>, <a href="http://goo.gl/TIVXw" title="Javascript" target="_blank">JS</a></td>
<td>August, 2009</td>
<td>August, 2012</td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/7ULG5" target="_blank">Maven</a></td>
<td>2, 3</td>
<td>August, 2010</td>
<td>August, 2012</td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/6ja5S" title="Extensible Markup Language" target="_blank">XML</a></td>
<td>1.0, 1.1</td>
<td>August, 2009</td>
<td></td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/5DrsJ" target="_blank">Spring</a></td>
<td>2.5, 3.0, 3.1</td>
<td>August, 2010</td>
<td>August, 2012</td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/vz9fB" target="_blank">Hibernate</a></td>
<td>3.x, 4.x</td>
<td>August, 2010</td>
<td>August, 2012</td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://tomcat.apache.org/" target="_blank">Tomcat</a></td>
<td>5.5, 6, 7</td>
<td>August, 2010</td>
<td>August, 2012</td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/gfpbV" title="Cascading Style Sheets" target="_blank">CSS</a></td>
<td></td>
<td>November, 2011</td>
<td></td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/OQrsC" title="HyperText Markup Language" target="_blank">HTML</a></td>
<td><span title="The fifth version of HTML (HyperText Markup Langugae)">HTML5</span></td>
<td>November, 2011</td>
<td></td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/OXJz1" title="Extensible HyperText Markup Language" target="_blank">XHTML</a></td>
<td></td>
<td>January, 2010</td>
<td></td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/l2Ag0" title="Supervisory Control And Data Acquisition" target="_blank">SCADA</a></td>
<td><a href="http://goo.gl/7LXXz" title="Certified SCADA Technology Specialist" target="_blank">CSTS</a>: Distributed, Networked</td>
<td>January, 2007</td>
<td></td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/qFgVl" target="_blank">Python</a></td>
<td></td>
<td>April, 2010</td>
<td></td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
<tr>
<td>Technology</td>
<td><a href="http://goo.gl/dFPZl" target="_blank">Unix</a></td>
<td><a href="http://goo.gl/SNGpt" target="blank">Linux</a>, <a href="http://goo.gl/WmJCR" target="_blank">Ubuntu</a></td>
<td>March, 2004</td>
<td></td>
<td></td>
<td><span title="2 = I am very familiar, and able to complete most projects with little oversight.">2</span></td>
</tr>
</tbody>
</table>
</section>
<section id="gc_section_c" class="gc section community"><h1>Community</h1>
<section class="org"><h1>Ecumenical Think Tank</h1>
<section class="event"><h1>Committee Chair</h1>
<time class="start" datetime="2001-02"></time>
<time class="end" datetime="2012-05">May 2012</time>
<time class="once" datetime=""></time>
<p>I was asked to sit on with select community members to develop appropriate potential opportunities to help increase young adult attendance and participation in community churches and small groups, and allocate and distribute <span title="$100 Thousand">$100K</span> to the oppurtunities.</p>
</section>
</section>
<section class="org"><h1>Habitat For Humanity</h1>
<section class="event"><h1>Builder</h1>
<time class="start" datetime="2001-02">Feb 2001</time>
<time class="end" datetime=""></time>
<time class="once" datetime=""></time>
<p>Starting with weekend builds, I have become specialized in framing and roofing.</p>
</section>
<section class="event"><h1>International Logistics</h1>
<time class="start" datetime="2008-05">Mar 2008</time>
<time class="end" datetime=""></time>
<time class="once" datetime=""></time>
<p>I oversee supply chain for the Bahamas Habitat, a country often not thought of requiring Habitat's resources, who help serve over 1000 families across the various islands.</p>
<ul>
<li>State-side fundraising</li>
<li>Flight scheduling</li>
<li>Critical inventory procurement</li>
<li>Disaster logistics for Haiti earthquake</li>
</ul>
</section>
<section class="event"><h1>Disaster Relief</h1>
<time class="start" datetime="2004-04">Apr 2004</time>
<time class="end" datetime="2009-09">Sep 2009</time>
<time class="once" datetime=""></time>
<p>Interested in providing relief to families in disaster areas, the complex situations surrounding the affected areas highlighted the need for effective solutions in a timely fashion, utilizing limited resources to repair and improve homes and community centers.</p>
<ul>
<li>Disaster Response Lead Coordinator
<ul>
<li>Haiti - 2 visits</li>
<li>Katrina - 10+ visits within 3 years</li>
<li>Rita - 1 Visit</li>
</ul>
</li>
</ul>
</section>
</section>
<section class="org"><h1>Scouts</h1>
<section class="event"><h1>NESA</h1>
<time class="start" datetime="2003-02">Feb 2003</time>
<time class="end" datetime=""></time>
<time class="once" datetime=""></time>
<p>I earned my Eagle Scout, and have participated in several NESA Sponsored events since, and enjoy providing individual support to younger scouts.</p>
</section>
<section class="event"><h1><span title="Order of the Arrow">OA</span></h1>
<time class="start" datetime="1999-06">Jun 1999</time>
<time class="end" datetime="2003-06">Jun 2003</time>
<time class="once" datetime=""></time>
<p>I achieved the rank of Brotherhood, and served different lodge positions.</p>
<ul>
<li>Webmaster</li>
<li>Chaplain</li>
</ul>
</section>
</section>
</section>
<section id="gc_section_traditionalresumes" class="gc section traditionalresumes hidden"><h1>Traditional Resumes</h1>
<section>This section of previous resumes is posted as a courtesy. Please note, content is valid until March 2012, and not updated.</section>
<select id="oldDocs" class="oldDocs">
<option value="d0" selected>Please select one:</option>
<option value="d1">PM.docx</option>
<option value="d2">PM.pdf</option>
<option value="d3">Java.docx</option>
<option value="d4">Java.pdf</option>
</select>
<div class="scroll-content" style="width: 75%">
<div class="dockList d0" id="d0">
</div>
<div class="dockList d1" id="d1">
<iframe src="http://docs.google.com/viewer?url=http%3A%2F%2Fspecialorange.org%2Fresume%2F_img%2Fpm.docx&embedded=true" width="100%" height="1250" style="border: none;"></iframe>
</div>
<div class="dockList d2" id="d2">
<iframe src="http://docs.google.com/viewer?url=http%3A%2F%2Fspecialorange.org%2Fresume%2F_img%2Fpm.pdf&embedded=true" width="100%" height="1250" style="border: none;"></iframe>
</div>
<div class="dockList d3" id="d3">
<iframe src="http://docs.google.com/viewer?url=http%3A%2F%2Fspecialorange.org%2Fresume%2F_img%2Fjava.docx&embedded=true" width="100%" height="1250" style="border: none;"></iframe>
</div>
<div class="dockList d4" id="d4">
<iframe src="http://docs.google.com/viewer?url=http%3A%2F%2Fspecialorange.org%2Fresume%2F_img%2Fjava.pdf&embedded=true" width="100%" height="1250" style="border: none;"></iframe>
</div>
</div>
</section>
<section id="gc_section_j" class="gc section jokes hidden">So you don't want to know something about me? Well, here are two of my favorite comics!
<span style="float: left;"><img src="_img/bee.jpeg" width="750" height="477" alt="Bee"></span>
<span style="float: right;"><img src="_img/investigator.jpeg" width="398" height="512" alt="Investigator"></span>
</section>
</div>
</div>
</div>
<footer class="footer">
<!-- <div> -->
<p>
<span style="float: left;">Specific references available upon request</span>
<span style="float: right;">For comprehensive information on this resume, please view <a href="http://goo.gl/MVxc5" target="_blank">this</a> post</span>
</p>
<!-- </div> -->
</footer>
</body>
</html>
<script>
// Generation
//SideBar
function addSidebarElems(ths, section, elem) {
var value = ths.toLowerCase().replace(/ /g,'');
var id = 'fs_' + section + '_' + value;
var newElem = $('<section><label id="' + id + '" class="fs btn element ' + value + ' hidden">' + ths + '</label></section>');
newElem.appendTo(elem);
}
//headers
//already in HTML via Form/Fieldset/Label
//sidebar elements
$('section.abstract section h1').each(function(){
return addSidebarElems($(this).html(), "ab", $('fieldset.abstract'));
});
$('section.businessapproaches section h1').each(function () {
return addSidebarElems($(this).html(), "ba", $('fieldset.businessapproach'));
});
$('section.academic section.school > h1').each(function () {
return addSidebarElems($(this).html(), "ac", $('fieldset.academic'));
});
$('section.community section.org > h1').each(function () {
return addSidebarElems($(this).html(), "c", $('fieldset.community'));
});
//Find all <li> class types, and make a button
(function li() {
//NOT DYNAMIC
var jtaa = {"bit" : "Business Information Technology",
"cs" : "Customer Service",
"dev" : "Developer",
"eng" : "Engineer",
"mgr" : "Manager",
"ocm" : "Organizational Change Management",
"pm" : "Project Management" };
var lis = [];
$('.workexperience li').each(function() {
var liCN = $(this).attr('class'); //li Class Name
var temp = [];
temp = liCN.split(' ');
for (var i = 0 ; i < temp.length ; i++) {
if ($.inArray(temp[i], lis)<0) {
lis.push(temp[i]);
}
}
});
lis.sort();
$.each(lis, function(idx, val){
var value = val.toLowerCase();
var name = jtaa[value];
$('<label id="wejt_' + value + '" class="btn jobtype" name="' + value + '">' + name + '</label>').appendTo($('fieldset.workexperience'));