-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1356 lines (1141 loc) · 74.4 KB
/
Copy pathindex.html
File metadata and controls
1356 lines (1141 loc) · 74.4 KB
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>
<!--[if lt IE 9 ]><html class="no-js oldie" lang="en"> <![endif]-->
<!--[if IE 9 ]><html class="no-js oldie ie9" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>Resume - Kassandra The Prosperous Heart</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- meta tags -->
<meta name="description" content="Page to highlight Kassandra Keeton's skills for finding a job or beginning discussions with clients.">
<meta name="author" content="Kassandra Keeton - the Prosperous Heart">
<!-- mobile specific metas
================================================== -->
<!--<meta name="viewport" content="width=device-width, initial-scale=1"> <!-- https://web.dev/responsive-web-design-basics/#:~:text=A%20meta%20viewport%20tag%20gives%20the%20browser%20instructions,better%20by%20increasing%20font%20sizes%20and%20scaling%20 -->
<meta content='width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no' name='viewport'>
<!-- CSS
================================================== -->
<!-- bootstrap: https://getbootstrap.com/ -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap"> <!-- do not remove unless complete removal of all traces - must wait AT LEAST until after blog is integrated -->
<!-- https://fonts.google.com/share?selection.family=Comfortaa:wght@300;400;500;600;700%7CFredoka:wght@300;400;500;600;700%7CGrandstander:wght@200%7CLibre%20Franklin:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400%7CNoto%20Sans%20Cherokee:wght@200;300;400;500;700%7CRadio%20Canada:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400%7CReadex%20Pro:wght@200;300;400;500;600;700%7CRed%20Hat%20Display:ital,wght@0,300;0,400;0,500;0,700;0,800;1,400%7CRubik:ital,wght@0,300;0,400;0,500;0,600;0,800;1,400;1,700%7CSpline%20Sans:wght@300;400;500;600;700%7CUrbanist:ital,wght@0,100;0,400;0,500;0,600;0,700;0,800;1,400%7CYaldevi:wght@400;500;600;700 -->
<link href="https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&family=Fredoka:wght@300;400;500;600;700&family=Grandstander:wght@200&family=Libre+Franklin:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Noto+Sans+Cherokee:wght@200;300;400;500;700&family=Radio+Canada:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Readex+Pro:wght@200;300;400;500;600;700&family=Red+Hat+Display:ital,wght@0,300;0,400;0,500;0,700;0,800;1,400&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,800;1,400;1,700&family=Spline+Sans:wght@300;400;500;600;700&family=Urbanist:ital,wght@0,100;0,400;0,500;0,600;0,700;0,800;1,400&family=Yaldevi:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- personal CSS tweaks -->
<!-- github.com/necolas/normalize.css && https://cdnjs.com/libraries/normalize -->
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<!-- slick.js: https://github.com/kenwheeler/slick -->
<!--<link rel="stylesheet" href="css/vendors/slick-slider.css">-->
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css"/>
<link rel="stylesheet" href="css/media.css">
<link rel="stylesheet" href="css/00-base.css">
<link rel="stylesheet" href="css/01-main.css">
<link rel="stylesheet" href="css/00-sections.css">
<link rel="stylesheet" href="css/02-header.css">
<link rel="stylesheet" href="css/02-home.css">
<link rel="stylesheet" href="css/03-about.css">
<!--<link rel="stylesheet" href="css/vendors/photoswipe.css">-->
<!--<link rel="stylesheet" href="css/vendors/prettyprint.css">-->
<link rel="stylesheet" href="css/04-xp.css">
<link rel="stylesheet" href="css/04-projects.css">
<link rel="stylesheet" href="css/06-testimonials.css">
<link rel="stylesheet" href="css/10-contact.css">
<link rel="stylesheet" href="css/11-footer.css">
<link rel="stylesheet" href="css/helpers.css">
<!-- pace: https://codebyzach.github.io/pace/ -->
<!--<script src="js/UNUSED/pace.min.js"></script>-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/pace-js@latest/pace-theme-default.min.css">
<link rel="stylesheet" href="css/vendors/pace-flash.css"> <!-- 3rd party: pace-flash -->
<script data-pace-options='{ "ajax": false }' src="https://cdn.jsdelivr.net/npm/pace-js@latest/pace.min.js"></script>
<!-- swiper: https://swiperjs.com/get-started -->
<!--<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css"/>-->
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<!-- favicons
================================================== -->
<!--<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">-->
<link rel="shortcut icon" href="IMGs/favicon.png" type="image/x-icon">
<link rel="icon" href="IMGs/favicon.png" type="image/x-icon">
</head>
<body id="top">
<!-- header
================================================== -->
<header class="s-header">
<div class="header-logo">
<!--<a class="site-logo" href="#"><img src="images/logo.png" alt="Homepage"></a>-->
<a class="site-logo" href="#"><img src="IMGs/white.png" alt="Homepage"></a>
</div>
<nav class="header-nav-wrap"> <!-- see ssMobileMenu in main.js -->
<ul class="header-nav"> <!-- see ssWaypoints in main.js -->
<li class="current"><a class="smoothscroll" href="#home" title="home">Home</a></li>
<li><a class="smoothscroll" href="#about" title="about">About</a></li>
<li><a class="smoothscroll" href="#XP" title="Experience">Experience</a></li>
<li><a class="smoothscroll" href="#Testimonials2" title="Testimonials">Testimonials</a></li>
<!--<li><a class="smoothscroll" href="#Projects" title="Projects">Projects</a></li>-->
<li><a class="smoothscroll" href="#contact" title="contact">Contact</a></li>
</ul>
</nav>
<a class="header-menu-toggle" href="#0"><span>Menu</span></a>
</header>
<!-- end s-header -->
<!-- home
================================================== -->
<!--<section id="home" class="s-home page-hero target-section reposition-home-img" data-parallax="scroll" data-image-src="IMGs/20180108.jpg" data-natural-width=3000 data-natural-height=2000 data-position-y=center>-->
<section id="home" class="s-home page-hero target-section parallax2">
<div class="overlay"></div>
<div class="shadow-overlay"></div>
<div class="home-content">
<h1 class="hidden-txt">Digital Resume for Kassandra Keeton</h1>
<div class="row home-content__main">
<!-- https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout/Mastering_Wrapping_of_Flex_Items -->
<div class="flex-row two-col">
<div class="h-intro">
<span class="h03 hdr-HL-gp">Welcome</span>
<!--<p class="h01">I am <span class="name">Kassandra Keeton</span>.</p>-->
<p class="h01">I am Kassandra Keeton.</p>
<div class="h02"><p> <!-- TODO: really liked the font & size for current h2 ... need to set for paragraph -->
Software Engineer.<br>
Digital Marketer.<br>
Compassionate Teacher.
</p></div>
</div>
<div class="home-content__buttons push-rt">
<!--<div class="home-content__buttons">-->
<a href="#XP" class="smoothscroll btn btn--stroke">
Latest Projects
</a>
<a href="#about" class="smoothscroll btn btn--stroke">
More About Me
</a>
</div>
</div> <!-- end of home before scrolling -->
<div class="home-content__scroll">
<!--<a href="#about" class="scroll-link smoothscroll">-->
<a href="#about" class="smoothscroll">
<span>Scroll Down</span>
</a>
</div>
</div>
</div> <!-- end home-content -->
<ul class="home-social">
<li>
<a href="https://www.linkedin.com/in/kkeeton/" target="_blank" rel="noreferrer noopener">
<i class="im im-linkedin" aria-hidden="true"></i><span>LinkedIn</span></a>
</li>
<li>
<a href="https://www.facebook.com/LearnToCodeOnline" target="_blank" rel="noreferrer noopener">
<i class="im im-facebook" aria-hidden="true"></i><span>Facebook</span></a>
</li>
<li>
<a href="https://stackoverflow.com/users/10474024/prosperousheart" target="_blank" rel="noreferrer noopener">
<i class="im im-stackoverflow" aria-hidden="true"></i><span>Stack Overflow</span>
</a></li>
<!--<li>
<a href="https://instagram.com/prosperousheart"><i class="im im-instagram" aria-hidden="true"></i>
<span>Instagram</span></a>
</li>-->
<li>
<a href="https://www.pinterest.com/ProsperousHeart/" target="_blank" rel="noreferrer noopener">
<i class="im im-pinterest" aria-hidden="true"></i><span>Pinterest</span></a>
</li>
</ul>
<!-- end home-social -->
</section> <!-- end s-home -->
<!-- about
================================================== -->
<section id="about" class="s-about target-section">
<div class="row narrow section-intro has-bottom-sep">
<div class="col-full text-center">
<h3>About</h3>
<h1>More About Me</h1>
<p class="lead">I am passionate about empowering others for greater success by breaking the tech stuff
down into easy-to-understand, byte-sized pieces.</p>
<p>I enjoy creating innovative software engineering solutions, mentoring other developers, and know the
importance of digital marketing - whether to find a job, grow a business, or simply to get the
word out on an event.</p>
</div>
<div id="xp-btns" class="about-content about-content--buttons">
<!--<div class="col-six tab-full left">-->
<div class="col-six tab-full">
<a href="https://prosperousheart.com/resume" target="_blank" rel="noreferrer noopener" class="btn btn--primary full-width">View My Resume (PDF)</a>
</div>
<!--<div class="col-six tab-full right" title="Training on programming, digital marketing, Human Design, and more!">-->
<div class="col-six tab-full" title="Training on programming, digital marketing, Human Design, and more!">
<a href="https://prosperousheart.com" target="_blank" rel="noreferrer noopener" class="btn full-width" title="Training on programming, digital marketing, Human Design, and more!">Access My Blog</a>
</div>
</div> <!-- end about-content buttons -->
</div>
<!--<div class="row about-content">
<div class="col-six tab-full left">
<h3>Howdy!</h3>
<p>Lorem ipsum Ut eiusmod ex magna sit dolor esse adipisicing minim ad cupidatat eu veniam nostrud mollit laboris sunt magna velit culpa consectetur nostrud consectetur labore sed do.</p>
<p>
Lorem ipsum Nisi officia Duis irure voluptate dolor commodo pariatur occaecat aliquip adipisicing voluptate Ut in qui ea sint occaecat in commodo in in in incididunt ut sunt in Ut Duis in ut ex qui anim cupidatat cupidatat ex in non dolore labore ea amet cillum ea qui dolor nisi sed velit mollit exercitation ex fugiat labore in deserunt culpa laborum culpa anim dolore laboris amet irure mollit proident velit fugiat aute ea elit magna consequat qui officia quis elit Duis dolor esse cupidatat tempor proident voluptate aliqua ex cupidatat do eiusmod veniam irure laborum ut magna nostrud dolore ullamco commodo elit sit magna aliqua laborum veniam officia dolor.
</p>
</div>
<div class="col-six tab-full right">
<h3>I've Got Some skills.</h3>
<ul class="skill-bars">
<li>
<div class="progress percent90"><span>90%</span></div>
<strong>HTML5</strong>
</li>
<li>
<div class="progress percent85"><span>85%</span></div>
<strong>CSS3</strong>
</li>
<li>
<div class="progress percent70"><span>70%</span></div>
<strong>JQuery</strong>
</li>
<li>
<div class="progress percent95"><span>95%</span></div>
<strong>PHP</strong>
</li>
<li>
<div class="progress percent75"><span>75%</span></div>
<strong>Wordpress</strong>
</li>
<li>
<div class="progress percent90"><span>90%</span></div>
<strong>Angular JS</strong>
</li>
</ul>
</div>
</div> <!-- end about-content -->
</section> <!-- end about -->
<section id="XP" class="target-section has-bottom-sep">
<div class="row about-content about-content--timeline"> <!-- start of about-content about-content--timeline (work timeline) -->
<div class="section-intro">
<div class="col-full text-center">
<h3>My Experience</h3>
<h1>Timeline</h1>
<p class="lead">
Here are the most recent roles with which I have had the pleasure of working on.
Due to the nature of most of them, I have worn many hats for several projects.
If you would like to see more details about what these roles entailed, please <b><a href="https://docs.google.com/document/d/1_UqCMOFebcXdRAKjrf5wLjpeFzTNEKht-hMHxCkXXno/edit?usp=sharing" target="_blank" rel="noreferrer noopener" >review this document</a></b>
or <b><a href="https://www.linkedin.com/in/kkeeton" target="_blank" rel="noreferrer noopener" >my LinkedIn</a></b>.
</p>
</div>
</div>
<div class="col-six tab-full left">
<div class="timeline">
<div class="timeline__block"> <!-- CEAD Software Engineer -->
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">June 2022 - Present</p>
<h3>Software Engineer</h3>
<h5>CEAD (Escalations) - <a class="str-HL-green-drk"
href="https://www.cisco.com"
target="_blank"
rel="noreferrer noopener">Cisco
Systems</a>, Inc</h5>
</div>
<div class="timeline__desc">
<!-- originally a paragraph section
<p>Planned & prioritized the work of 3 people. Introduced bi-weekly sprint retros &
planning in order to improve team clarity & minimize wasted time. Utilized event
management experience to support 2 events: an expo & hackathon. Created Communities of
Practice to ensure more streamlined development & to ensure at least 1 person reviewed
code before integration into production code. Facilitated multiple cross-team
development projects to support several high touch needs for the organization.
</p>-->
<ul class="lead">
<li>Planned & prioritized the work of 3 people.</li>
<li>
<span class="str-BG-green-lt">Introduced bi-weekly sprint retrospectives & planning
sessions</span> to improve team clarity while minimizing wasted time.
</li>
<li>
<span class="str-BG-green-lt">Created <b>Communities of Practice</b></span>
(including a team training plan) to ensure improved streamlined development, more
rounded support within the team, and ensure team was knowledgeable of expected
company standards.
</li>
<li>
<span class="str-BG-green-lt">Facilitated multiple cross-team development projects</span>
to support high touch needs for the organization.
</li>
<li>Utilized event management experience to support 2 events.</li>
</ul>
</div>
</div> <!-- end timeline__block for CEAD Software Engineer -->
<div class="timeline__block"> <!-- Community Advocate - ManyChat -->
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">January 2021 - June 2022</p>
<h3>Community Advocate</h3>
<h5>Marketing - <a class="str-HL-green-drk" href="https://manychat.com/" target="_blank" rel="noreferrer noopener">ManyChat</a></h5>
</div>
<div class="timeline__desc">
<!--<span class="lead">
I joined ManyChat to explore more in the <b>digital marketing</b> realm. At the time, I
had focused my business on teaching online marketing. This was an opportunity to see
behind the scenes of a similar company while also learning more about a product I was
already using.<br>
</span> -->
<ul class="lead">
<li>
Was the acting <span class="str-HL-pink-drk">Technical Director</span> and <span
class="str-HL-pink-drk">Head of Support</span> for the company's <b>first</b>
100% virtual event - <b><a class="str-HL-green-drk"
href="https://youtu.be/wPIK1ZsFLik" target="_blank"
rel="noreferrer noopener">Instagram Summit 2021</a></b>.
Become the sole company expert in <b><a class="str-HL-darkred"
href="https://splashthat.com/" target="_blank"
rel="noreferrer noopener">Splash</a></b> - the
event system chosen for hosting the technology. Created a front end system that
could do what was needed, even though Splash was not intended for what I
accomplished.
</li>
<li>Led a Facebook community of over 100k people.</li>
<li><span class="str-BG-green-lt">Created a monthly webinar program</span> to support ManyChat users through product training
and opportunities to connect with other chat bot creators.</li>
<li>Engaged with influencers and high-impact users in order to increase brand awareness
and find speakers for our different events. (See projects section.)</li>
<li>Supported company webinar initiatives with marketing to the community, tech setup, &
support.</li>
<li>
In less than 1 month, took provided information relating to a booth at <span
class="str-BG-pink-lt"><b>Traffic & Conversions 2021</b></span> and co-created a fun &
interactive experience for event attendees. Our booth had interactive QR codes, a
built-in photo booth using the wall design, and a working automation to inform
people about different booth experiences as well as how to win our booth's raffle.
</li>
</ul>
</div>
</div> <!-- end timeline__block for ManyChat Community Advocate -->
<div class="timeline__block"> <!-- Community Evangelist @ Cisco -->
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">June 2019 - January 2021</p>
<h3>Community Evangelist</h3>
<h5>Data & Analytics - <a class="str-HL-green-drk" href="https://www.cisco.com" target="_blank" rel="noreferrer noopener">Cisco Systems</a>, Inc</h5>
</div>
<div class="timeline__desc">
<!--<p>Highlight items just for this specific role relating to code ... Maybe have drop-downs for the different pieces</p>-->
<ul class="lead">
<li>
Took an automated training badging system that worked about 50% of the time, <span class="str-BG-green-lt">rewrote
the code within 1 month to resolve all issues</span>, and made it be more flexible to
support upcoming expected changes to the program(s).
</li>
<li>
At request of manager, started and ran the <b>Data Science Awards</b> in 2019 and
2020 for the annual <b><span class="str-BG-pink-lt">Data Symposium</span></b> event. This included marketing to all
Cisco employees for submissions of data science, machine learning, or artificial
intelligence projects as well as creating an award & additional bonuses for winners.
</li>
<li>
Co-led the <b><span class="str-BG-pink-lt">Data Symposium 2019</span></b> event, where the organization put on a 3 day
in-person event to provide training and bring awareness to innovative technologies
& tools in the data science, machine learning, and artificial intelligence space.
Lead the vendors booth section, developed templates for the next event, and was
on-site speaker support, event security, and overall timekeeper.
</li>
<li>
Lead the <b><span class="str-BG-pink-lt">Data Symposium 2020</span></b> event. Due to COVID, took a 3 day and 90%
in-person event using 50+ volunteers and our entire team of 5 down to myself,
support from my manager, and leveraging internal webex and production studio teams
for the event. <span class="str-BG-green-lt">Slashed the budget by over 75% from
previous year</span>, made the event a rolling training to support global attendees,
<span class="str-BG-green-lt">increased attendees by 800+ YoY</span>, and had <span class="str-BG-green-lt">highest
attendee approval ratings of all prior events</span>. Found and negotiated
pricing & expectations of external speakers (<a href="https://www.andrewng.org/"
target="_blank"
rel="noreferrer noopener">Andrew Ng</a>
and <a href="https://ranaelkaliouby.com/" target="_blank"
rel="noreferrer noopener">Rana el Kaliouby</a>) - including bonuses for the
event's award winners.
</li>
<li>
Led the <b><a class="str-HL-darkred"
href="https://blogs.cisco.com/analytics-automation/ds4g"
target="_blank" rel="noreferrer noopener">Data Science & AI For Good</a></b>
program. In this role, I met with non-profits to understand their need and determine
if there was a fit for leveraging data science solutions. If leadership approved a
project, I marketed to Cisco volunteers & we began working towards a solution.
</li>
<li>
Continued my work with the <b><span class="str-BG-pink-lt">Coding Hour</span></b> initiative I started as the <b><a
class="str-HL-darkred" onclick="window.location.href='#CSL'">Collaboration
Scripting Lead</a></b>.
</li>
</ul>
</div>
</div> <!-- end timeline__block -->
</div> <!-- end timeline -->
</div> <!-- end left -->
<div class="col-six tab-full right">
<div class="timeline">
<div id="CSL" class="timeline__block"> <!-- Collaboration Scripting Lead @ Cisco -->
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">June 2016 - Jun 2019</p>
<h3>Collaboration Scripting Lead</h3>
<h5>TAC - <a class="str-HL-green-drk" href="https://www.cisco.com" target="_blank" rel="noreferrer noopener">Cisco Systems</a>, Inc</h5>
</div>
<div class="timeline__desc">
<ul class="lead">
<li>
<span class="str-BG-green-lt">Python mentor</span> to several TAC engineers - some
went into full development roles.
</li>
<li>
<span class="str-BG-green-lt">Built & ran 3 day in-person python bootcamps</span>
for all 3 Cisco TAC Americas locations. This focused on python basics within the
internal proprietary case automation system.
</li>
<li>
<span class="str-BG-green-lt">Hosted & ran a 3 day hackathon</span> focused on
building more modules for internal TAC case review automation system. Collaborated
with Cisco TAC Tech Leads across TAC Americas involved with different gateways to
create not just a hackathon - but also train additional personnel on the system.
</li>
<li>
Participated in the planning, creation, updating, and review of miscellaneous
internal case review automation scripts as needed for different teams.
</li>
<li>
<span class="str-BG-green-lt">Started and ran a bi-weekly training</span> &
awareness program - <b><span class="str-BG-pink-lt">Coding Hour</span></b>. There
were (generally) 2 sessions (to support personnel across the globe) and everything
was recorded. Either myself or someone else in the company would teach on python,
data science, artificial intelligence, machine learning, etc - or simply sharing
their work on projects. By the time I left in January 2021, there were <span class="str-HL-pink-drk">3k+
people on the mailer</span> with <span class="str-HL-pink-drk">1k+ members</span> in the team chat room.
</li>
<li>
<span class="str-BG-green-lt">Created a support ticket health system for
management</span> that replaced an outdated and unsupported tool. Leveraged
multiple internal automations and APIs to provide a visual representation of case
backlogs for an individual, team, or organization. Examples of this health check
include but are not limited to case age, bugs attached, time elapsed since engineer
update, etc. It also provided an automated email and ability to download the data
via XLSX.
</li>
<li>
Created & ran a <a class="str-HL-green-lt" href="https://github.com/ProsperousHeart/Training-Events/tree/master/CiscoDevNetCreate2019" target="_blank" rel="noreferrer noopener">python introduction bootcamp</a>
for attendees at the <b><a class="str-HL-darkred" href="https://developer.cisco.com/devnetcreate/2019/campcreate" target="_blank" rel="noreferrer noopener">DevNet Camp Create 2019</a></b>. Also participated in person as
a local mentor & developer.
</li>
<li>
Was invited to speak at <span class="str-BG-pink-lt">Cisco Live LATAM 2018</span> - “<a class="str-HL-green-lt" href="https://www.linkedin.com/feed/update/urn:li:activity:6475399796298444800/" target="_blank" rel="noreferrer noopener">How To Think Like A Programmer</a>”.
</li>
</ul>
</div>
</div> <!-- end timeline__block for COL Scripting Lead -->
<div class="timeline__block"> <!-- My Business -->
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">2015 - CURRENT</p>
<h3>Marketer & Trainer</h3>
<h5>Business Owner - <a class="str-HL-green-drk" href="https://prosperousheart.com" target="_blank" rel="noreferrer noopener">Prosperous Heart</a>, LLC</h5>
</div>
<div class="timeline__desc">
<ul class="lead">
<li>
<span class="str-BG-green-lt">Provide training</span> on digital marketing and
programming.
</li>
<li>
Constantly learning new languages and best practices to support my students and
<a class="str-HL-green-drk" href="https://github.com/ProsperousHeart"
target="_blank" rel="noreferrer noopener">open source contributions</a>.
</li>
<li>
Was <span class="str-BG-pink-lt">invited to be a guest speaker</span> for “<a
class="str-HL-green-lt"
href="https://www.linkedin.com/feed/update/urn:li:activity:6811163473658093568?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_multiple_media_viewer%3BMNRFnXYlQqOTJTm%2BdSV7YQ%3D%3D" target="_blank" rel="noreferrer noopener">
The Inspirational Leaders Podcast</a>”.
</li>
</ul>
</div>
</div> <!-- end timeline__block for my business -->
</div> <!-- end timeline -->
</div> <!-- end right -->
</div> <!-- end about-content (work) timeline -->
</section> <!-- end about -->
<!-- testimonials
================================================== -->
<section id="Testimonials2" class="s-testimonials target-section">
<div class="overlay"></div>
<div class="row testimonials-header">
<div class="col-full">
<h1 class="h02">Testimonials</h1>
</div>
</div>
<div class="row testimonials">
<div class="col-full testimonials__slider">
<div class="testimonials__slide">
<a href="https://www.linkedin.com/in/david-mcallister-301250a8" target="_blank"
rel="noreferrer noopener"><img src="IMGs/avatars/Dave_McAllister.jpg"
alt="Testimonial Provider Image - Dave McAllister"
class="testimonials__avatar"></a>
<p>Kassandra is extremely knowledgeable of Python and I got a lot out of her class.
The material is very interactive and she helped me with any questions or issues that came up.</p>
<div class="testimonials__author h06">
<a class="str-testimonial-names" href="https://www.linkedin.com/in/david-mcallister-301250a8" target="_blank"
rel="noreferrer noopener">Dave McAllister</a>
<span>Senior Analyst - Global Pricing</span>
</div>
</div>
<div class="testimonials__slide">
<a href="https://www.linkedin.com/in/knickerbocker1/" target="_blank" rel="noreferrer noopener">
<img src="IMGs/avatars/Jennifer_Knickerbocker.jpg"
alt="Testimonial Provider Image - Jennifer Knickerbocker" class="testimonials__avatar"></a>
<p>I recall from our time together in the women's leadership course back in 2016, your tenacity and
passion around teaching coding. You should walk away from your time at Cisco knowing that you
have made an impact on so many people.<br>
- Once a Cisconian, always a Cisconian.</p>
<div class="testimonials__author h06">
<a class="str-testimonial-names" href="https://www.linkedin.com/in/knickerbocker1/"
target="_blank" rel="noreferrer noopener">Jennifer Knickerbocker</a>
<span>Risk Management of Information, Systems, and Resources</span>
</div>
</div>
<div class="testimonials__slide">
<a href="https://www.linkedin.com/in/santanu-ganguly-70512a1/" target="_blank"
rel="noreferrer noopener"><img src="IMGs/avatars/Santanu_Ganguly.jpg"
alt="Testimonial Provider Image - Santanu Ganguly"
class="testimonials__avatar"></a><p>I have known you when you were
training people on Python at Cisco, attended a lot of those coding hours and whereas I was your
worst student and can’t code to save my life (not your fault), you were an amazing teacher and
trainer.<br>Anyone willing to learn, upgrade or polish off Python skills will benefit amazingly from
your sessions. Highly recommended!</p>
<div class="testimonials__author h06">
<a class="str-testimonial-names" href="https://www.linkedin.com/in/santanu-ganguly-70512a1/"
target="_blank" rel="noreferrer noopener">Santanu Ganguly</a>
<span>Systems Architect at Cisco | Author | Advisor | MSc. Observational Astrophysics,
MSc. Mathematics, CEng, MBCS-CITP, Google Cloud Architect</span>
</div>
</div>
<div class="testimonials__slide">
<a href="https://www.linkedin.com/in/ariellesumits/" target="_blank" rel="noreferrer noopener">
<img src="IMGs/avatars/Arielle_Sumits.jpg" alt="Testimonial Provider Image - Arielle Sumits"
class="testimonials__avatar"></a>
<p>Kassandra you are a total go-getter! I have enjoyed partnering with you on Data Science for Good,
and I am sure exciting adventures await you wherever you go.</p>
<div class="testimonials__author h06">
<a class="str-testimonial-names" href="https://www.linkedin.com/in/ariellesumits/"
target="_blank" rel="noreferrer noopener">Arielle Sumits</a>
<span>Data Scientist</span>
</div>
</div>
<div class="testimonials__slide">
<a href="https://www.linkedin.com/in/kirtee-yadav/" target="_blank" rel="noreferrer noopener">
<img src="IMGs/avatars/Kirtee_Yadav.jpg" alt="Testimonial Provider Image - Kirtee Yadav"
class="testimonials__avatar"></a>
<p>I really enjoyed working with you on DS4Good program, appreciate your leadership skills in
building a team of volunteers and provide guidance on data science project!</p>
<div class="testimonials__author h06">
<a class="str-testimonial-names" href="https://www.linkedin.com/in/kirtee-yadav/"
target="_blank" rel="noreferrer noopener">Kirtee Yadav</a>
<span>Driving strategies to achieve key business outcomes</span>
</div>
</div>
<div class="testimonials__slide">
<a href="https://www.linkedin.com/in/larry-rios-b83a8866/" target="_blank"
rel="noreferrer noopener"><img src="IMGs/avatars/Larry_Rios.jpg"
alt="Testimonial Provider Image - Larry Rios"
class="testimonials__avatar"></a><p>Thank you so much for
everything you have done to improve our ML and Data Science skills Kassandra. Also, thanks for
helping new hires get connected to different groups in Cisco.</p>
<div class="testimonials__author h06">
<a class="str-testimonial-names" href="https://www.linkedin.com/in/larry-rios-b83a8866/"
target="_blank" rel="noreferrer noopener">Larry Rios</a>
<span>Software Developer at Cisco Systems</span>
</div>
</div>
<div class="testimonials__slide">
<a href="https://www.linkedin.com/in/david-spindola-15750274/" target="_blank"
rel="noreferrer noopener"><img src="IMGs/avatars/David_Spindola.jpg"
alt="Testimonial Provider Image - David Spindola"
class="testimonials__avatar"></a>
<p>It was amazing to work with you Kassandra, your passion to share knowledge and make innovation
happen is inspiring.</p>
<div class="testimonials__author h06">
<a class="str-testimonial-names" href="https://www.linkedin.com/in/david-spindola-15750274/"
target="_blank" rel="noreferrer noopener">David Spindola</a>
<span>Leader, Customer Delivery en Cisco (LATAM)</span>
</div>
</div>
</div> <!-- end testimonials__slider -->
</div> <!-- end testimonials -->
</section> <!-- end s-testimonials -->
<!-- testimonals put together by me with inspiration from LONELY
================================================== -->
<!--<section id="Testimonials" class="target-section">
<div class="t-container">
<div class="section-title">
<h2>Testimonials</h2>
<p>Testimonials are here</p>
</div>
<!-- Slider main container --
<div class="swiper">
<!-- Additional required wrapper --
<div class="swiper-wrapper">
<!-- Slides --
<div class="swiper-slide">Slide 1</div>
<div class="swiper-slide">Slide 2</div>
<div class="swiper-slide">Slide 3</div>
...
</div>
<!-- If we need pagination --
<div class="swiper-pagination"></div>
<!-- If we need navigation buttons --
<div class="swiper-button-prev"></div>
<div class="swiper-button-next"></div>
<!-- If we need scrollbar --
<div class="swiper-scrollbar"></div>
</div>
</div>
</section>-->
<!-- Projects
================================================== --
<section id="Projects" class="s-works target-section">
<div class="row narrow section-intro has-bottom-sep">
<div class="col-full">
<h3>Portfolio</h3>
<h1>See My Projects</h1>
<p class="lead">Here you will find out more about the different projects I have worked on.</p>
</div>
</div>
<div class="row masonry-wrap">
<div class="masonry">
<div class="masonry__brick"> <!-- beetle item --
<div class="item-folio">
<div class="item-folio__thumb">
<a href="IMGs/projs/OLD-TEMPLATE/gallery/g-beetle.jpg" class="thumb-link" title="The Beetle Car" data-size="1050x700">
<img src="IMGs/projs/OLD-TEMPLATE/beetle.jpg"
srcset="IMGs/projs/OLD-TEMPLATE/beetle.jpg 1x, IMGs/projs/OLD-TEMPLATE/beetle@2x.jpg 2x" alt="">
<span class="shadow-overlay"></span>
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
The Beetle
</h3>
<p class="item-folio__cat">
Web Development
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="im im-link"></i>
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div> <!-- end item-folio --
</div> <!-- end masonry__brick | beetle --
<div class="masonry__brick"> <!-- lighthouse --
<div class="item-folio">
<div class="item-folio__thumb">
<a href="IMGs/projs/OLD-TEMPLATE/gallery/g-lighthouse.jpg" class="thumb-link" title="Lighthouse" data-size="1050x700">
<img src="IMGs/projs/OLD-TEMPLATE/lighthouse.jpg"
srcset="IMGs/projs/OLD-TEMPLATE/lighthouse.jpg 1x, IMGs/projs/OLD-TEMPLATE/lighthouse@2x.jpg 2x" alt="">
<span class="shadow-overlay"></span>
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Lighthouse
</h3>
<p class="item-folio__cat">
Web Design
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="im im-link"></i>
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick | lighthouse --
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="IMGs/projs/OLD-TEMPLATE/gallery/g-salad.jpg" class="thumb-link" data-size="1050x700">
<img src="IMGs/projs/OLD-TEMPLATE/salad.jpg"
srcset="IMGs/projs/OLD-TEMPLATE/salad.jpg 1x, IMGs/projs/OLD-TEMPLATE/salad@2x.jpg 2x" alt="">
<span class="shadow-overlay"></span>
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Salad
</h3>
<p class="item-folio__cat">
Branding
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="im im-link"></i>
</a>
<span class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</span>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick | salad--
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="IMGs/projs/OLD-TEMPLATE/gallery/g-woodcraft.jpg" class="thumb-link" data-size="1050x700">
<img src="IMGs/projs/OLD-TEMPLATE/woodcraft.jpg"
srcset="IMGs/projs/OLD-TEMPLATE/woodcraft.jpg 1x, IMGs/projs/OLD-TEMPLATE/woodcraft@2x.jpg 2x" alt="">
<span class="shadow-overlay"></span>
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Woodcraft
</h3>
<p class="item-folio__cat">
Branding
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="im im-link"></i>
</a>
<span class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</span>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick | woodcraft --
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="IMGs/projs/OLD-TEMPLATE/gallery/g-skaterboy.jpg" class="thumb-link" data-size="1050x700">
<img src="IMGs/projs/OLD-TEMPLATE/skaterboy.jpg"
srcset="IMGs/projs/OLD-TEMPLATE/skaterboy.jpg 1x, IMGs/projs/OLD-TEMPLATE/skaterboy@2x.jpg 2x" alt="">
<span class="shadow-overlay"></span>
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Skaterboy
</h3>
<p class="item-folio__cat">
Web Development
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="im im-link"></i>
</a>
<span class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</span>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick | skater boy --
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="IMGs/projs/OLD-TEMPLATE/gallery/g-liberty.jpg" class="thumb-link" data-size="1050x700">
<img src="IMGs/projs/OLD-TEMPLATE/liberty.jpg"
srcset="IMGs/projs/OLD-TEMPLATE/liberty.jpg 1x, IMGs/projs/OLD-TEMPLATE/liberty@2x.jpg 2x" alt="">
<span class="shadow-overlay"></span>
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Liberty
</h3>
<p class="item-folio__cat">
Branding
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="im im-link"></i>
</a>
<span class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</span>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick | liberty --
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="IMGs/projs/OLD-TEMPLATE/gallery/g-minimalismo.jpg" class="thumb-link" data-size="1050x700">
<img src="IMGs/projs/OLD-TEMPLATE/minimalismo.jpg"
srcset="IMGs/projs/OLD-TEMPLATE/minimalismo.jpg 1x, IMGs/projs/OLD-TEMPLATE/minimalismo@2x.jpg 2x" alt="">
<span class="shadow-overlay"></span>
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Minimalismo
</h3>
<p class="item-folio__cat">
Web Design
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="im im-link"></i>
</a>
<span class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</span>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick | minimalismo --
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="IMGs/projs/OLD-TEMPLATE/gallery/g-shutterbug.jpg" class="thumb-link" data-size="1050x700">
<img src="IMGs/projs/OLD-TEMPLATE/shutterbug.jpg"
srcset="IMGs/projs/OLD-TEMPLATE/shutterbug.jpg 1x, IMGs/projs/OLD-TEMPLATE/shutterbug@2x.jpg 2x" alt="">
<span class="shadow-overlay"></span>
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Lady Shutterbug
</h3>
<p class="item-folio__cat">
Branding
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="im im-link"></i>
</a>
<span class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</span>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick | shutterbug --
</div> <!-- end masonry 1 --
</div> <!-- end masonry-wrap for row --
</section> <!-- end works -->
<!-- blog
================================================== -->
<!--<section id="blog" class="s-blog target-section">
<div class="row narrow section-intro has-bottom-sep">
<div class="col-full">
<h3>Journal</h3>
<h1>Latest From The Blog.</h1>
<p class="lead">Lorem ipsum Dolor adipisicing nostrud et aute.
Excepteur amet commodo ea dolore irure esse Duis nulla sint fugiat cillum
ullamco proident aliquip quis qui voluptate dolore veniam Ut laborum non est in officia.</p>
</div>
</div>
<div class="row blog-content">
<div class="col-full">
<div class="blog-list block-1-2 block-tab-full">
<article class="col-block">
<div class="blog-date">
<a href="blog-single.html">Sept 16, 2017</a>
</div>
<h2 class="h01"><a href="blog-single.html">The 10 Golden Rules of Clean Simple Design.</a></h2>
<p>
Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Pellentesque in ipsum id orci porta dapibus. Donec sollicitudin molestie malesuada. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Cras ultricies ligula sed magna dictum porta. Sed porttitor lectus nibh..
</p>
<div class="blog-cat">
<a href="blog.html">Branding</a><a href="blog.html">Design</a>
</div>
</article>
<article class="col-block">
<div class="blog-date">
<a href="blog-single.html">Sept 15, 2017</a>
</div>
<h2 class="h01"><a href="blog-single.html">Photography Can Improve Your Graphic Design.</a></h2>
<p>
Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Pellentesque in ipsum id orci porta dapibus. Donec sollicitudin molestie malesuada. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Cras ultricies ligula sed magna dictum porta. Sed porttitor lectus nibh..
</p>