-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1689 lines (1225 loc) · 52.9 KB
/
index.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 class="no-js" lang="en">
<head>
<!-- meta data -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- title of site -->
<title>David Mossakowski</title>
<!-- For favicon png -->
<link rel="shortcut icon" type="image/icon" href="assets/images/favicon.png" />
<!--font-awesome.min.css-->
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<!--flat icon css-->
<link rel="stylesheet" href="assets/css/flaticon.css">
<!--animate.css-->
<link rel="stylesheet" href="assets/css/animate.css">
<!--owl.carousel.css-->
<link rel="stylesheet" href="assets/css/owl.carousel.min.css">
<link rel="stylesheet" href="assets/css/owl.theme.default.min.css">
<!--bootstrap.min.css-->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!-- bootsnav -->
<link rel="stylesheet" href="assets/css/bootsnav.css">
<!--style.css-->
<link rel="stylesheet" href="assets/css/style.css">
<!--responsive.css-->
<link rel="stylesheet" href="assets/css/responsive.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script type="text/javascript">
var taglines = ['Never stop', '29 = 700', 'I make awesome cup of Java', 'I can ride switch', '5.10d = 6b', 'invest in yourself', 'always growing', 'randomness rules our lives' ]
var intervalFunction;
function changeTagline() {
if (intervalFunction )return;
intervalFunction = setInterval(changeTaglineNow, 1700)
};
function changeTaglineNow() {
var i = Math.floor(Math.random() * taglines.length);
var myDiv = document.getElementById("tagline");
myDiv.innerHTML = "<p>" + taglines[i] + "</p>";
};
</script>
</head>
<body onload="changeTagline()">
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<!-- top-area Start -->
<header class="top-area">
<div class="header-area">
<!-- Start Navigation -->
<nav class="navbar navbar-default bootsnav navbar-fixed dark no-background">
<div class="container">
<!-- Start Header Navigation -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-menu">
<i class="fa fa-bars"></i>
</button>
<a class="navbar-brand" href="index.html">david mossakowski</a>
</div>
<!--/.navbar-header-->
<!-- End Header Navigation -->
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse menu-ui-design" id="navbar-menu">
<ul class="nav navbar-nav navbar-right" data-in="fadeInDown" data-out="fadeOutUp">
<!--li><a href="index3.html#">resume</a></li-->
<li class=" smooth-menu active"></li>
<li class="smooth-menu"><a href="#about">about</a></li>
<li class="smooth-menu"><a href="#apps">apps</a></li>
<li class="smooth-menu"><a href="#experience">experience</a></li>
<li class="smooth-menu"><a href="#links">links</a></li>
<li class="smooth-menu"><a href="#contact">contact</a></li>
</ul>
<!--/.nav -->
</div><!-- /.navbar-collapse -->
</div>
<!--/.container-->
</nav>
<!--/nav-->
<!-- End Navigation -->
</div>
<!--/.header-area-->
<div class="clearfix"></div>
</header><!-- /.top-area-->
<!-- top-area End -->
<!--welcome-hero start -->
<section id="welcome-hero" class="welcome-hero">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<div class="header-text">
<h2>hi<span>,</span> i<span>'</span>m david <br> <span>.</span> </h2>
<!--p>I code, climb, bike</p-->
<p>
<div id="tagline" onclick="changeTagline()"><p>I make awesome cup of Java</p></div>
</p>
<!--a href="assets/download/browney.txt" download>download resume</a-->
</div>
<!--/.header-text-->
</div>
<!--/.col-->
</div><!-- /.row-->
</div><!-- /.container-->
</section>
<!--/.welcome-hero-->
<!--welcome-hero end -->
<!--about start -->
<section id="about" class="about">
<div class="section-heading text-center">
</div>
<div class="container">
<div class="about-content">
<div class="single-about-txt text-center">
<h2>ABOUT ME</h2>
</div>
<hr>
<div class="row">
<div class="col-sm-6">
<div class="single-about-txt">
<h3>
Tech Lead and Engineering Development Manager with experience spearheading the research, development, and deployment of enterprise software solutions at scale. Hands-on leader focused on empowering cross-functional engineering teams to deliver solutions that best fit the business needs. Business knowledge of US Capital and FX Markets (Fixed Income and Foreign Exchange) and Retail Supply Chain and Category Management space. Strong interest in blockchain and related technologies.
</h3>
<p>
I’m a passionate, enthusiastic, optimistic and motivational leader with a vision and focus on details. I love to work with business on advancing common goals. With a breadth of experience and strong analytical skills I can deliver high quality solutions that will provide the most value to your company.
<br><br>
<a href="davidmossakowski.pdf">Resume download</a>
</p>
<div class="row">
<div class="col-sm-5">
<div class="single-about-add-info">
</div>
</div>
<div class="col-sm-5">
<div class="single-about-add-info">
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-offset-1 col-sm-5">
<div class="single-about-img">
<img src="assets/images/me.jpg" alt="profile_image">
<div class="about-list-icon">
<ul>
<li>
<a href="davidmossakowski.pdf" title="My resume">
<i class="fa fa-file-pdf-o" aria-hidden="true" alt="blal"></i>
</a>
</li>
<li>
<a href="https://github.com/dmossakowski" target="_tab" title="GitHub profile">
<i class="fa fa-github" aria-hidden="true"></i>
</a>
</li><!-- / li -->
<li>
<a href="https://hackernoon.com/u/davidski" target="_tab"
title="Hackernoon profile">
<i class="fa fa-clock-o" aria-hidden="true"></i>
</a>
</li><!-- / li -->
<li>
<a href="https://www.linkedin.com/in/davidmossakowski/" target="_tab"
title="LinkedIn profile">
<i class="fa fa-linkedin"></i>
</a>
</li><!-- / li -->
<!--li>
<a href="#">
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
</li>--<!-- / li -->
</ul><!-- / ul -->
</div><!-- /.about-list-icon -->
</div>
</div>
</div>
</div>
</div>
</section>
<!--/.about-->
<!--about end -->
<!--portfolio start -->
<section id="apps" class="portfolio">
<div class="portfolio-details">
<div class="section-heading text-center">
</div>
<div class="container">
<div class="portfolio-content">
<div class="single-about-txt text-center">
<h2>APPS</h2>
</div>
<hr>
<div class="isotope">
<div class="row">
<div class="col-sm-4">
<div class="item">
<a href="https://play.google.com/store/apps/details?id=com.rtstyk.linetextscanner"
target="_tab">
<img src="assets/images/linetextscanner-play.png" alt="portfolio image" />
</a>
<!--img src="assets/images/ic_launcher-playstore.png" alt="portfolio image" /-->
<div class="isotope-overlay">
<a href="https://play.google.com/store/apps/details?id=com.rtstyk.linetextscanner"
target="_tab">
Line Text Scanner
</a>
</div><!-- /.isotope-overlay -->
</div><!-- /.item -->
<div class="item">
</div><!-- /.item -->
</div><!-- /.col -->
<div class="col-sm-4">
<div class="item">
<h1>Line Text Scanner </h1>
<br>
Android app for scanning text from images. It uses Google's MLKit. It solves a problem scanning tabular data to keep scanned text in lines. Google's MLKit finds text and provides it as an unstructured list which works well with continuous text paragraphs but behaves very badly with tabular data. This application solves this problem and makes scanning receipts or tables much easier.
<br>
<br>
<i class="fab fa-google-play" fa="2x"></i><a
href="https://play.google.com/store/apps/details?id=com.rtstyk.linetextscanner"
target="_tab">
<i class="fa fa-android" aria-hidden="true"></i> Line Text Scanner
on
Play Store
</a><br>
<i class="fa fa-play" aria-hidden="true"></i> <a
href="https://hackernoon.com/using-google-mlkit-text-recognition-to-scan-tabular-data"
target="_tab">My Hackernoon article</a><br>
<i class="fa fa-github" fa="2x"></i> <a
href="https://github.com/dmossakowski/linetextscanner" target="_tab">
GitHub
repo</a>
</div><!-- /.item -->
</div><!-- /.col -->
<div class="col-sm-4">
<div class="item">
<img src="assets/images/lts-1.jpg" alt="portfolio image" />
<!-- /.isotope-overlay -->
</div><!-- /.item -->
</div><!-- /.col -->
</div><!-- /.row -->
<br><br>
<hr>
<div class="row">
<div class="col-sm-4">
<div class="item">
<a href="https://skala3ma.com" target="_tab">
<img src="assets/images/skala3ma-mainpage.png" alt="portfolio image" /><br><br>
<div class="isotope-overlay">
<a href="https://skala3ma.com" target="_tab">
Official app of FSGT
</a>
</div><!-- /.isotope-overlay -->
</a>
</div><!-- /.item -->
<div class="item">
<img src="assets/images/skala3ma-gym-bottom.png" alt="portfolio image" />
<div class="isotope-overlay">
<a href="https://skala3ma.com" target="_tab">
Gym routes
</a>
</div><!-- /.isotope-overlay -->
</div>
</div><!-- /.col -->
<div class="col-sm-4">
<div class="item">
<h1>SKALA3MA</h1>
<br>
An app for tracking climbing progress and an official app for FSGT contests. Includes management of
gym routes and competition results calculations for individuals and clubs across multiple categories.
<br><br>
<br><br>
<a href="https://skala3ma.com" target="_tab">
<i class="fa fa-trophy" aria-hidden="true"></i> SKALA3MA
</a><br>
<i class="fa fa-github" fa="2x"></i> <a
href="https://github.com/dmossakowski/additive-spotify-analyzer" target="_tab">
GitHub
repo</a>
</div><!-- /.item -->
</div><!-- /.col -->
<div class="col-sm-4">
<div class="item">
<img src="assets/images/skala3ma-results.png" alt="portfolio image" width=400/>
<div class="isotope-overlay">
<a href="https://skala3ma.com" target="_tab">
Competition results
</a>
</div>
<!-- /.isotope-overlay -->
</div><!-- /.item -->
<div class="item">
<img src="assets/images/skala3ma-gym-edit.png" alt="portfolio image" />
<div class="isotope-overlay">
<a href="https://skala3ma.com" target="_tab">
Routes editor
</a>
</div>
<!-- /.isotope-overlay -->
</div>
</div><!-- /.col -->
</div>
<br><br>
<hr>
<div class="row">
<div class="col-sm-4">
<div class="item">
<img src="assets/images/analyzer2-preview.png" alt="portfolio image" />
<div class="isotope-overlay">
<a href="https://addi.davidmossakowski.com/" target="_tab">
Spotify Additive Analyzer
</a>
</div><!-- /.isotope-overlay -->
</div><!-- /.item -->
</div><!-- /.col -->
<div class="col-sm-4">
<div class="item">
<h1>Spotify Additive Analyzer </h1>
<br>
A Python Flask-based webapp to analyze your Spotify library and view playlists with
a hover-over enabled audio clips. It uses sklearn, numpy, panda, plotly, sqlite.
<br><br>
<i class="fa fa-play" aria-hidden="true"></i> <a
href="https://hackernoon.com/visualizing-the-data-spotify-data-for-favorite-artists-over-time-3p9r35h1"
target="_tab">My Hackernoon article on plotly chart</a><br>
<i class="fa fa-play" aria-hidden="true"></i> <a
href="https://hackernoon.com/spotify-audio-features-time-series-in-additive-spotify-analyzer-lp1q34vh"
target="_tab">My Hackernoon article on data series</a><br>
<br><br>
<a href="https://addi.davidmossakowski.com" target="_tab">
<i class="fa fa-spotify" aria-hidden="true"></i> Spotify Additive
Analyzer
</a><br>
<i class="fa fa-github" fa="2x"></i> <a
href="https://github.com/dmossakowski/additive-spotify-analyzer" target="_tab">
GitHub
repo</a>
</div><!-- /.item -->
</div><!-- /.col -->
<div class="col-sm-4">
<div class="item">
<img src="assets/images/additive-spotify1.png" alt="portfolio image" />
<!-- /.isotope-overlay -->
</div><!-- /.item -->
</div><!-- /.col -->
</div>
<hr><br>
</div>
<!--/.isotope-->
</div>
<!--/.gallery-content-->
</div>
<!--/.container-->
</div>
<!--/.portfolio-details-->
</section>
<!--/.portfolio-->
<!--portfolio end -->
<!--experience start -->
<section id="experience" class="experience">
<div class="section-heading text-center">
</div>
<div class="container">
<div class="portfolio-content">
<div class="single-about-txt text-center">
<h2>EXPERIENCE</h2>
</div>
<hr>
<div class="main-timeline">
<ul>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
<h2>August 2018 - Present </h2>
<h3>R&D Technology Senior Project Manager</h3>
<br><br>
<img src="assets/images/symphonyretailailogo.svg" width="300">
</div>
<!--/.experience-time-->
</div>
<!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
<h4 class="title">
Symphony AI
</h4>
<h5>Paris, France</h5>
<p class="description">
Symphony AI is a leading provider of software for Retailers
and Consumer Packaged Goods (CPG) Manufacturers with clients ranging
from Dollar General in
US, Carrefour in Spain, to Intermarche in France.
<br><br>R&D Technology group of ten developers anticipates and drives the future
of technology needed to best serve our clients.
</p>
</div>
<!--/.timeline-content-->
</div>
<!--/.timeline-->
</div>
<!--/.col-->
</div>
</div>
<!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
</div>
<!--/.experience-time-->
</div>
<!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle-thin" aria-hidden="true"></i></span>
<p class="description">
Managed a distributed R&D Technology team of 10 successfully
integrating all members equally into a dynamic cross-functional
team through even, merit based task distribution and pairings
for tasks across the ocean divide.<br><br>
Spearheaded adoption and migration to Microsoft Azure Devops.
This included migration of source code, pull request development
workflow,
YAML based build scripts and adoption of Agile philosophy with
biweekly sprints,
estimation and retrospective sessions.
<br><br>
<h3><img src="assets/images/devopslogo.png" width="100"></h3>
</p>
</div>
<!--/.timeline-content-->
</div>
<!--/.timeline-->
</div>
<!--/.col-->
</div>
</div>
<!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
</div>
<!--/.experience-time-->
</div>
<!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle-thin" aria-hidden="true"></i></span>
<p class="description">
Modernized our mobile application by implementing
Shared Device Mode (MSAL) and AppConfig on Android and iOS to enable
automatic provisioning, single sign-on and automatic configuration
through Microsoft Endpoint Mobile Device Management and
Google Enterprise Play Store.
<h3><br>
<svg xmlns="http://www.w3.org/2000/svg" width="108" height="23" viewBox="72 72 337 74" preserveAspectRatio="xMidYMax slice">
<g data-name="MS-symbol">
<clipPath>
<path transform="matrix(1 0 0 -1 0 216)" d="M0 216h482V0H0z"></path>
</clipPath>
<g clip-path="url(#a)">
<path d="M394.942 104.59h-10.858v25.003h-7.38V104.59h-5.182v-5.965h5.182v-4.308c0-3.254 1.06-5.92 3.178-7.998 2.12-2.079 4.835-3.118 8.15-3.118.882 0 1.666.045 2.35.135a9.37 9.37 0 011.806.407v6.296c-.24-.14-.663-.31-1.265-.512-.603-.2-1.296-.3-2.078-.3-1.528 0-2.702.476-3.526 1.43-.824.954-1.235 2.365-1.235 4.232v3.736h10.858v-6.959l7.321-2.229v9.188h7.381v5.965h-7.38v14.49c0 1.91.345 3.254 1.038 4.037.693.783 1.782 1.175 3.27 1.175.42 0 .927-.1 1.52-.3a7.178 7.178 0 001.552-.724v6.025c-.463.261-1.23.502-2.305.723a15.742 15.742 0 01-3.178.331c-3.073 0-5.378-.817-6.914-2.455-1.537-1.637-2.305-4.102-2.305-7.396zm-48.407 9.73c0 3.233.733 5.703 2.2 7.411 1.465 1.707 3.564 2.56 6.295 2.56 2.652 0 4.67-.853 6.055-2.56 1.386-1.708 2.08-4.238 2.08-7.592 0-3.334-.719-5.849-2.155-7.547-1.436-1.697-3.45-2.545-6.04-2.545-2.67 0-4.745.888-6.22 2.666-1.477 1.777-2.215 4.313-2.215 7.607m-7.592.24c0-5.12 1.446-9.177 4.338-12.17 2.892-2.993 6.91-4.489 12.05-4.489 4.841 0 8.621 1.441 11.343 4.323 2.721 2.883 4.082 6.774 4.082 11.674 0 5.021-1.447 9.018-4.338 11.99-2.892 2.973-6.829 4.458-11.81 4.458-4.8 0-8.61-1.41-11.432-4.232-2.822-2.82-4.233-6.673-4.233-11.554m-16.417-7.802c0 1.045.331 1.863.994 2.456.662.592 2.128 1.34 4.398 2.243 2.912 1.166 4.956 2.476 6.131 3.932 1.175 1.456 1.762 3.22 1.762 5.287 0 2.912-1.12 5.252-3.359 7.02-2.24 1.767-5.267 2.65-9.083 2.65-1.285 0-2.706-.155-4.263-.467-1.556-.31-2.877-.707-3.96-1.19v-7.169a17.945 17.945 0 004.277 2.198c1.526.543 2.911.814 4.157.814 1.647 0 2.862-.23 3.645-.693.784-.46 1.175-1.235 1.175-2.319 0-1.005-.406-1.853-1.22-2.546-.813-.693-2.355-1.492-4.624-2.395-2.69-1.125-4.599-2.39-5.724-3.796-1.125-1.406-1.687-3.193-1.687-5.362 0-2.792 1.11-5.086 3.33-6.884 2.217-1.797 5.095-2.696 8.63-2.696 1.084 0 2.3.12 3.645.361 1.346.242 2.47.553 3.374.934v6.93c-.964-.644-2.089-1.195-3.374-1.658-1.286-.462-2.56-.693-3.826-.693-1.386 0-2.465.271-3.238.813-.774.543-1.16 1.286-1.16 2.23m-35.066 7.562c0 3.233.733 5.703 2.2 7.411 1.465 1.707 3.564 2.56 6.295 2.56 2.652 0 4.67-.853 6.055-2.56 1.386-1.708 2.08-4.238 2.08-7.592 0-3.334-.719-5.849-2.155-7.547-1.436-1.697-3.449-2.545-6.039-2.545-2.672 0-4.745.888-6.222 2.666-1.476 1.777-2.214 4.313-2.214 7.607m-7.592.24c0-5.12 1.446-9.177 4.338-12.17 2.893-2.993 6.91-4.489 12.051-4.489 4.84 0 8.621 1.441 11.342 4.323 2.721 2.883 4.082 6.774 4.082 11.674 0 5.021-1.446 9.018-4.338 11.99-2.892 2.973-6.828 4.458-11.809 4.458-4.8 0-8.61-1.41-11.433-4.232-2.822-2.82-4.233-6.673-4.233-11.554m-3.136-16.448c.582 0 1.105.041 1.567.121.462.08.853.18 1.175.301v7.38c-.382-.28-.939-.546-1.672-.798-.733-.25-1.622-.376-2.666-.376-1.788 0-3.299.753-4.534 2.26-1.235 1.505-1.853 3.825-1.853 6.958v15.635h-7.29V98.624h7.29v4.88h.12c.663-1.687 1.667-3.007 3.013-3.96 1.346-.954 2.962-1.432 4.85-1.432m-27.956 26.18c1.084 0 2.28-.25 3.585-.754a15.06 15.06 0 003.615-1.988v6.778c-1.165.663-2.485 1.165-3.962 1.506-1.475.342-3.098.512-4.865.512-4.559 0-8.265-1.44-11.116-4.323-2.852-2.88-4.278-6.562-4.278-11.04 0-4.98 1.456-9.083 4.37-12.307 2.91-3.224 7.037-4.835 12.38-4.835 1.366 0 2.746.176 4.143.527 1.395.352 2.504.758 3.328 1.22v6.99c-1.125-.824-2.274-1.462-3.45-1.914a9.966 9.966 0 00-3.599-.678c-2.872 0-5.192.934-6.959 2.802-1.768 1.868-2.652 4.388-2.652 7.562 0 3.132.85 5.573 2.546 7.32 1.697 1.748 4.002 2.621 6.914 2.621m-22.112 5.302h-7.29V98.624h7.29zm-8.044-39.916c0-1.205.437-2.214 1.311-3.028.874-.813 1.913-1.22 3.118-1.22 1.285 0 2.35.417 3.193 1.25.844.834 1.266 1.833 1.266 2.998 0 1.185-.432 2.18-1.296 2.982-.864.804-1.918 1.205-3.163 1.205-1.246 0-2.295-.406-3.148-1.219-.854-.815-1.28-1.803-1.28-2.968m-6.274-3.284v43.2h-7.5v-33.86h-.12l-13.408 33.86h-4.97l-13.738-33.86h-.09v33.86h-6.929v-43.2h10.755l12.412 32.024h.18l13.105-32.024z" class="fill-current-color fill-link-text-forced-colors color-text-subtle"></path>
<path d="M106.214 106.214H71.996V71.996h34.218z" fill="#f25022"></path>
<path d="M143.993 106.214h-34.218V71.996h34.218z" fill="#7fba00"></path>
<path d="M106.214 143.993H71.996v-34.218h34.218z" fill="#00a4ef"></path>
<path d="M143.993 143.993h-34.218v-34.218h34.218z" fill="#ffb900"></path>
</g>
</g>
</svg>
<img src="assets/images/androidlogo.png" width="120">
</h3>
</p>
</div>
<!--/.timeline-content-->
</div>
<!--/.timeline-->
</div>
<!--/.col-->
</div>
</div>
<!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
</div>
<!--/.experience-time-->
</div>
<!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle-thin" aria-hidden="true"></i></span>
<p class="description">
Drove adoption of testing as an integral part of the development
process. Implemented automated unit testing using Karma+Jasmine and
TestNG and automated functional testing using Katalon. For each pull
request we are building and deploying an application and running
battery of UI and REST API tests.
<h3><img src="assets/images/katalonlogo.png" width="120">
<img src="assets/images/jasmine-purple-horizontal.svg" width="130">
<img src="assets/images/testnglogo.png" width="50">
</h3>
</p>
</div>
<!--/.timeline-content-->
</div>
<!--/.timeline-->
</div>
<!--/.col-->
</div>
</div>
<!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
</div>
<!--/.experience-time-->
</div>
<!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle-thin" aria-hidden="true"></i></span>
<p class="description">
Implemented full mobile testing pipeline that includes building APK,
loading it onto an Android emulator and running Katalon tests
through it.
<h3><img src="assets/images/androidlogo.png" width="120"> <img
src="assets/images/cordova-logo.png" width="120"> </h3>
</p>
</div>
<!--/.timeline-content-->
</div>
<!--/.timeline-->
</div>
<!--/.col-->
</div>
</div>
<!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
</div>
<!--/.experience-time-->
</div>
<!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle-thin" aria-hidden="true"></i></span>
<p class="description">
Improved product demand forecasting AI system by instituting better Python
coding practices and model testing on sample canned historical data allowing
to quantify improved model performance.
<h3><img src="assets/images/python.png" width="50">
</h3>
</p>
</div>
<!--/.timeline-content-->
</div>
<!--/.timeline-->
</div>
<!--/.col-->
</div>
</div>
<!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
</div>
<!--/.experience-time-->
</div>
<!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle-thin" aria-hidden="true"></i></span>
<p class="description">
Overhauled server side to use Spring profiles to modify
functionality based on various product needs to avoid manual
modifications to XML files which was error prone and dreaded by the
client support teams. This improved tremendously confidence during
upgrades.
</p>
<h3><br><img src="assets/images/springlogo.png" width="120"> </h3>
</div>
<!--/.timeline-content-->
</div>
<!--/.timeline-->
</div>
<!--/.col-->
</div>
</div>
<!--/.single-timeline-box-->
</li>
<li><br><br>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
<h2>January 2014 - March 2018</h2>
<h3>Post Trade Team Lead</h3>
<br><br>
<img src="assets/images/trueex-logo.png" width="160">
<br><br>
</div>
<!--/.experience-time-->
</div>
<!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
<h4 class="title">
trueEx
</h4>
<h5>New York, NY</h5>
<p class="description">
trueEX is a global, electronic, CFTC-regulated exchange for interest
rate swaps. The Post Trade team of eight developers was responsible
for:</p>
<span><i class="fa fa-circle-o" aria-hidden="true"></i></span>
<p class="description">
<i class="fa fa-angle-right" aria-hidden="true"></i> real-time
processing of trades generated both on and off the exchange (from UI
and FIX) during London and New York trading sessions
<br><i class="fa fa-angle-right" aria-hidden="true"></i>increasing
product coverage (FRA, Swaptions, MAC) and business functionality
(two sided price, batch clearing, ANNA ISIN integration mandated by
MiFID II)
<br><i class="fa fa-angle-right" aria-hidden="true"></i> increasing
capabilities of the Regulatory team to do trade surveillance using
Nasdaq SMARTS application by adding context to transactions (market
data, participant CRM details)
<br><i class="fa fa-angle-right" aria-hidden="true"></i> providing
data for company dashboards which were used by sales and the
executive teams and for billing purposes (to calculate charges for
trades done on platform and discounts for customers streaming
prices)
<br><br>
<img src="assets/images/FIX-logo-fullcolor_small.jpg" width="150">
<img src="assets/images/cftclogo.png" width="150">
<img src="assets/images/ihsmarkit.svg" width="150">
<img src="assets/images/nasdaq-logo.png" width="150">
</p>
</div>
<!--/.timeline-content-->
</div>
<!--/.timeline-->
</div>
<!--/.col-->
</div>
</div>
<!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
</div>
<!--/.experience-time-->
</div>
<!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle-thin" aria-hidden="true"></i></span>
<p class="description">
The real time trade processing included number of interfaces with
external parties:
clearing the trade at a clearing house (LCH or CME) using messages
containing FpML (Financial products Markup Language) transmitted
over Websphere MQ
reporting trade to DTCC (a Securities Data Repository) by
transmitting FpML using Websphere MQ (with security exit
implemented)
notifying the parties of the trade for straight-through processing
over Markitwire native library using SWBML or SCML for the dealer
and cleared flows respectively
notifying the parties of the trade over FIX (either directly through
‘dropcopy’ or through Block Rock’s Aladdin offering)
generating and sending trade confirmation emails (PDFs)<br><img
src="assets/images/logo-rabbitmq.svg" width="150">
<img src="assets/images/dtcc.jpeg" width="110">
</p>
</div>
<!--/.timeline-content-->
</div>
<!--/.timeline-->
</div>
<!--/.col-->
</div>
</div>
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
</div>
<!--/.experience-time-->
</div>
<!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle-thin" aria-hidden="true"></i></span>
<p class="description">
Developed internal regression testing methodology which compared
over 40,000 artifacts generated by the Post Trade system (FpMLs,
SWBML, Emails, etc.) with the same artifacts generated using
previous version of the application. The resulting report was
reviewed by Product and Onboarding teams to verify all changes going
into a release were expected and correct.